OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isNSW
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Analysis/
PHITransAddr.cpp
266
bool
isNSW
= cast<BinaryOperator>(Inst)->hasNoSignedWrap();
278
isNSW
= isNUW = false;
288
if (Value *Res = SimplifyAddInst(LHS, RHS,
isNSW
, isNUW, TD, TLI, DT)) {
/external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp
34
bool isNUW = false,
isNSW
= false, isExact = false;
38
isNSW
= BO->hasNoSignedWrap();
60
if (
isNSW
)
61
isNSW
= cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
124
if (
isNSW
) NewBinOp->setHasNoSignedWrap();
405
bool isNUW = false,
isNSW
= false, isExact = false;
426
isNSW
= BO->hasNoSignedWrap();
448
if (
isNSW
)
449
isNSW
= cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap();
493
if (
isNSW
) BinOp->setHasNoSignedWrap()
[
all
...]
Completed in 145 milliseconds