Searched refs:OBO (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp780 if (const OverflowingBinaryOperator *OBO =
782 if (OBO->hasNoUnsignedWrap()) WideBO->setHasNoUnsignedWrap();
783 if (OBO->hasNoSignedWrap()) WideBO->setHasNoSignedWrap();
804 const OverflowingBinaryOperator *OBO = local
806 if (IsSigned && OBO->hasNoSignedWrap())
809 else if(!IsSigned && OBO->hasNoUnsignedWrap())
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp548 if (const OverflowingBinaryOperator *OBO =
550 if (OBO->hasNoSignedWrap())
552 if (OBO->hasNoUnsignedWrap())
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp127 OverflowingBinaryOperator *OBO = dyn_cast<OverflowingBinaryOperator>(&I); local
128 if (!OBO || !OBO->hasNoSignedWrap()) {
/external/llvm/lib/VMCore/
H A DAsmWriter.cpp687 if (const OverflowingBinaryOperator *OBO =
689 if (OBO->hasNoUnsignedWrap())
691 if (OBO->hasNoSignedWrap())
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp3052 if (const AddOperator *OBO = dyn_cast<AddOperator>(BEValueV)) {
3053 if (OBO->hasNoUnsignedWrap())
3055 if (OBO->hasNoSignedWrap())

Completed in 116 milliseconds