Home
last modified time | relevance | path

Searched refs:NUW (Results 1 – 4 of 4) sorted by relevance

/external/llvm/include/llvm/
DInstrTypes.h268 DEFINE_HELPERS(Add, NUW) // CreateNUWAdd
270 DEFINE_HELPERS(Sub, NUW) // CreateNUWSub
272 DEFINE_HELPERS(Mul, NUW) // CreateNUWMul
274 DEFINE_HELPERS(Shl, NUW) // CreateNUWShl
/external/llvm/lib/AsmParser/
DLLParser.cpp2163 bool NUW = false; in ParseValID() local
2173 NUW = true; in ParseValID()
2177 NUW = true; in ParseValID()
2193 if (NUW) in ParseValID()
2224 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap; in ParseValID()
2872 bool NUW = EatIfPresent(lltok::kw_nuw); in ParseInstruction() local
2874 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw); in ParseInstruction()
2878 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true); in ParseInstruction()
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp1877 bool NUW = LBO->hasNoUnsignedWrap() && LBO->hasNoUnsignedWrap(); in SimplifyICmpInst() local
1879 if (!NUW && !NSW) in SimplifyICmpInst()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp2429 bool NUW = BO0->hasNoUnsignedWrap() && BO1->hasNoUnsignedWrap(); in visitICmpInst() local
2431 if (!NUW && !NSW) in visitICmpInst()