HomeSort by relevance Sort by last modified time
    Searched refs:OBO (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 778 if (const OverflowingBinaryOperator *OBO =
780 if (OBO->hasNoUnsignedWrap()) WideBO->setHasNoUnsignedWrap();
781 if (OBO->hasNoSignedWrap()) WideBO->setHasNoSignedWrap();
802 const OverflowingBinaryOperator *OBO =
804 if (IsSigned && OBO->hasNoSignedWrap())
807 else if(!IsSigned && OBO->hasNoUnsignedWrap())
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 123 OverflowingBinaryOperator *OBO = dyn_cast<OverflowingBinaryOperator>(&I);
124 if (!OBO || !OBO->hasNoSignedWrap()) {
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 545 if (const OverflowingBinaryOperator *OBO =
547 if (OBO->hasNoSignedWrap())
549 if (OBO->hasNoUnsignedWrap())
    [all...]
  /external/llvm/lib/VMCore/
AsmWriter.cpp 681 if (const OverflowingBinaryOperator *OBO =
683 if (OBO->hasNoUnsignedWrap())
685 if (OBO->hasNoSignedWrap())
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 583 if (const OverflowingBinaryOperator *OBO =
585 if (OBO->hasNoSignedWrap())
587 if (OBO->hasNoUnsignedWrap())
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 537 if (const OverflowingBinaryOperator *OBO =
539 if (OBO->hasNoSignedWrap())
541 if (OBO->hasNoUnsignedWrap())
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]

Completed in 6731 milliseconds