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

/freebsd-9.3-release/contrib/llvm/include/llvm/IR/
H A DInstrTypes.h266 DEFINE_HELPERS(Add, NUW) // CreateNUWAdd
268 DEFINE_HELPERS(Sub, NUW) // CreateNUWSub
270 DEFINE_HELPERS(Mul, NUW) // CreateNUWMul
272 DEFINE_HELPERS(Shl, NUW) // CreateNUWShl
/freebsd-9.3-release/contrib/llvm/lib/AsmParser/
H A DLLParser.cpp2532 bool NUW = false;
2542 NUW = true;
2546 NUW = true;
2562 if (NUW)
2593 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
3260 bool NUW = EatIfPresent(lltok::kw_nuw);
3262 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
3266 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DInstructionSimplify.cpp2346 bool NUW = LBO->hasNoUnsignedWrap() && RBO->hasNoUnsignedWrap(); local
2348 if (!NUW && !NSW)
/freebsd-9.3-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1447 // If the shift is NUW, then it is just shifting out zeros, no need for an
2834 bool NUW = BO0->hasNoUnsignedWrap() && BO1->hasNoUnsignedWrap(); local
2836 if (!NUW && !NSW)

Completed in 201 milliseconds