HomeSort by relevance Sort by last modified time
    Searched refs:OverflowingBinaryOperator (Results 1 - 25 of 26) sorted by null

1 2

  /external/llvm/include/llvm/IR/
Operator.h 75 /// OverflowingBinaryOperator - Utility class for integer arithmetic operators
79 class OverflowingBinaryOperator : public Operator {
329 : public ConcreteOperator<OverflowingBinaryOperator, Instruction::Add> {
332 : public ConcreteOperator<OverflowingBinaryOperator, Instruction::Sub> {
335 : public ConcreteOperator<OverflowingBinaryOperator, Instruction::Mul> {
338 : public ConcreteOperator<OverflowingBinaryOperator, Instruction::Shl> {
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 35 if (OverflowingBinaryOperator *BO =
36 dyn_cast<OverflowingBinaryOperator>(FirstInst)) {
59 isNUW = cast<OverflowingBinaryOperator>(I)->hasNoUnsignedWrap();
61 isNSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
423 if (OverflowingBinaryOperator *BO =
424 dyn_cast<OverflowingBinaryOperator>(FirstInst)) {
447 isNUW = cast<OverflowingBinaryOperator>(I)->hasNoUnsignedWrap();
449 isNSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
    [all...]
InstCombineSelect.cpp 239 if (isa<OverflowingBinaryOperator>(BO)) {
274 if (isa<OverflowingBinaryOperator>(BO)) {
    [all...]
InstCombineCasts.cpp 36 OverflowingBinaryOperator *OBI = dyn_cast<OverflowingBinaryOperator>(Val);
    [all...]
InstCombineShifts.cpp 774 if (cast<OverflowingBinaryOperator>(Op0)->hasNoSignedWrap())
InstCombineVectorOps.cpp 602 if (isa<OverflowingBinaryOperator>(BO)) {
    [all...]
InstructionCombining.cpp 133 OverflowingBinaryOperator *OBO = dyn_cast<OverflowingBinaryOperator>(&I);
    [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 101 if (isa<OverflowingBinaryOperator>(BinOp)) {
104 BinOp->hasNoSignedWrap() * OverflowingBinaryOperator::NoSignedWrap |
105 BinOp->hasNoUnsignedWrap() * OverflowingBinaryOperator::NoUnsignedWrap;
165 if (isa<OverflowingBinaryOperator>(LHSBinOp)) {
166 assert(isa<OverflowingBinaryOperator>(RHSBinOp)
IndVarSimplify.cpp 819 if (const OverflowingBinaryOperator *OBO =
820 dyn_cast<OverflowingBinaryOperator>(NarrowBO)) {
843 const OverflowingBinaryOperator *OBO =
844 cast<OverflowingBinaryOperator>(DU.NarrowUse);
    [all...]
GVN.cpp     [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 383 bool NSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
533 bool NSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
540 bool NSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
    [all...]
InstructionSimplify.cpp     [all...]
ScalarEvolutionExpander.cpp     [all...]
  /external/llvm/lib/IR/
Constants.cpp     [all...]
Instructions.cpp     [all...]
AsmWriter.cpp 748 if (const OverflowingBinaryOperator *OBO =
749 dyn_cast<OverflowingBinaryOperator>(U)) {
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 670 if (const OverflowingBinaryOperator *OBO =
671 dyn_cast<OverflowingBinaryOperator>(V)) {
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 571 if (const OverflowingBinaryOperator *OBO =
572 dyn_cast<OverflowingBinaryOperator>(V)) {
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 525 if (const OverflowingBinaryOperator *OBO =
526 dyn_cast<OverflowingBinaryOperator>(V)) {
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 544 if (const OverflowingBinaryOperator *OBO =
545 dyn_cast<OverflowingBinaryOperator>(V)) {
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]

Completed in 971 milliseconds

1 2