OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isNUW
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/Analysis/
InstructionSimplify.h
50
Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool
isNUW
,
57
Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool
isNUW
,
128
Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool
isNUW
,
/external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp
34
bool
isNUW
= false, isNSW = false, isExact = false;
37
isNUW
= BO->hasNoUnsignedWrap();
58
if (
isNUW
)
59
isNUW
= cast<OverflowingBinaryOperator>(I)->hasNoUnsignedWrap();
123
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
...]
/external/llvm/lib/Analysis/
PHITransAddr.cpp
267
bool
isNUW
= cast<BinaryOperator>(Inst)->hasNoUnsignedWrap();
278
isNSW =
isNUW
= false;
288
if (Value *Res = SimplifyAddInst(LHS, RHS, isNSW,
isNUW
, TD, TLI, DT)) {
InstructionSimplify.cpp
592
static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool
isNUW
,
653
Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool isNSW, bool
isNUW
,
656
return ::SimplifyAddInst(Op0, Op1, isNSW,
isNUW
, Query (TD, TLI, DT),
732
static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool
isNUW
,
[
all
...]
Completed in 679 milliseconds