OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isNUW
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Analysis/
PHITransAddr.cpp
265
bool
isNUW
= cast<BinaryOperator>(Inst)->hasNoUnsignedWrap();
276
isNSW =
isNUW
= false;
286
if (Value *Res = SimplifyAddInst(LHS, RHS, isNSW,
isNUW
, DL, TLI, DT)) {
/external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp
36
bool
isNUW
= false, isNSW = false, isExact = false;
39
isNUW
= BO->hasNoUnsignedWrap();
60
if (
isNUW
)
61
isNUW
= cast<OverflowingBinaryOperator>(I)->hasNoUnsignedWrap();
125
if (
isNUW
) NewBinOp->setHasNoUnsignedWrap();
405
bool
isNUW
= false, isNSW = false, isExact = false;
425
isNUW
= BO->hasNoUnsignedWrap();
446
if (
isNUW
)
447
isNUW
= cast<OverflowingBinaryOperator>(I)->hasNoUnsignedWrap();
492
if (
isNUW
) BinOp->setHasNoUnsignedWrap()
[
all
...]
Completed in 136 milliseconds