Searched refs:isNUW (Results 1 – 8 of 8) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | InstructionSimplify.h | 126 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 130 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 176 Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | PHITransAddr.cpp | 258 bool isNUW = cast<BinaryOperator>(Inst)->hasNoUnsignedWrap(); in PHITranslateSubExpr() local 269 isNSW = isNUW = false; in PHITranslateSubExpr() 279 if (Value *Res = SimplifyAddInst(LHS, RHS, isNSW, isNUW, {DL, TLI, DT, AC})) { in PHITranslateSubExpr()
|
D | InstructionSimplify.cpp | 737 static Value *SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, in SimplifySubInst() argument 758 if (isNUW) in SimplifySubInst() 865 Value *llvm::SimplifySubInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, in SimplifySubInst() argument 867 return ::SimplifySubInst(Op0, Op1, isNSW, isNUW, Q, RecursionLimit); in SimplifySubInst() 1313 static Value *SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, in SimplifyShlInst() argument 1321 return isNSW || isNUW ? Op0 : Constant::getNullValue(Op0->getType()); in SimplifyShlInst() 1330 if (isNUW && match(Op0, m_Negative())) in SimplifyShlInst() 1338 Value *llvm::SimplifyShlInst(Value *Op0, Value *Op1, bool isNSW, bool isNUW, in SimplifyShlInst() argument 1340 return ::SimplifyShlInst(Op0, Op1, isNSW, isNUW, Q, RecursionLimit); in SimplifyShlInst() 1669 bool isNUW = IIQ.hasNoUnsignedWrap(AddInst); in simplifyAndOfICmpsWithAdd() local [all …]
|
/third_party/mesa3d/src/amd/compiler/ |
D | aco_opt_value_numbering.cpp | 419 if (instr->definitions[i].isNUW()) in process_block()
|
D | aco_print_ir.cpp | 196 if (definition->isNUW()) in print_definition()
|
D | aco_ir.h | 970 constexpr bool isNUW() const noexcept { return isNUW_; } in isNUW() function
|
D | aco_optimizer.cpp | 783 if (prevent_overflow && !add_instr->definitions[0].isNUW()) in parse_base_offset()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineInternal.h | 373 Value *LHS, Value *RHS, Type *Ty, bool isNUW);
|