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

  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 780 if (const OverflowingBinaryOperator *OBO =
782 if (OBO->hasNoUnsignedWrap()) WideBO->setHasNoUnsignedWrap();
783 if (OBO->hasNoSignedWrap()) WideBO->setHasNoSignedWrap();
804 const OverflowingBinaryOperator *OBO =
806 if (IsSigned && OBO->hasNoSignedWrap())
809 else if(!IsSigned && OBO->hasNoUnsignedWrap())
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 587 if (const OverflowingBinaryOperator *OBO =
589 if (OBO->hasNoSignedWrap())
591 if (OBO->hasNoUnsignedWrap())
    [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp 774 if (const OverflowingBinaryOperator *OBO =
776 if (OBO->hasNoUnsignedWrap())
778 if (OBO->hasNoSignedWrap())
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 133 OverflowingBinaryOperator *OBO = dyn_cast<OverflowingBinaryOperator>(&I);
134 if (!OBO || !OBO->hasNoSignedWrap()) {
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 567 if (const OverflowingBinaryOperator *OBO =
569 if (OBO->hasNoSignedWrap())
571 if (OBO->hasNoUnsignedWrap())
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 521 if (const OverflowingBinaryOperator *OBO =
523 if (OBO->hasNoSignedWrap())
525 if (OBO->hasNoUnsignedWrap())
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 544 if (const OverflowingBinaryOperator *OBO =
546 if (OBO->hasNoSignedWrap())
548 if (OBO->hasNoUnsignedWrap())
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]

Completed in 551 milliseconds