Searched refs:IsNSW (Results 1 – 3 of 3) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 572 static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW, in SimplifyAddInst() argument 606 if ((IsNSW || IsNUW) && match(Op1, m_SignMask()) && in SimplifyAddInst() 636 Value *llvm::SimplifyAddInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW, in SimplifyAddInst() argument 638 return ::SimplifyAddInst(Op0, Op1, IsNSW, IsNUW, Query, RecursionLimit); in SimplifyAddInst()
|
D | ScalarEvolution.cpp | 4452 bool IsNSW = false; member 4463 IsNSW = OBO->hasNoSignedWrap(); in BinaryOp() 4468 explicit BinaryOp(unsigned Opcode, Value *LHS, Value *RHS, bool IsNSW = false, in BinaryOp() 4470 : Opcode(Opcode), LHS(LHS), RHS(RHS), IsNSW(IsNSW), IsNUW(IsNUW) {} in BinaryOp() 4994 if (BO->IsNSW) in createSimpleAffineAddRec() 5092 if (BO->IsNSW) in createAddRecFromPHI() 6444 if (BO->Opcode == Instruction::Sub && BO->IsNSW) { in createSCEV()
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 3793 bool IsNSW; member 3802 IsNSW(false), IsNUW(false), Op(Op) { in BinaryOp() 3804 IsNSW = OBO->hasNoSignedWrap(); in BinaryOp() 3809 explicit BinaryOp(unsigned Opcode, Value *LHS, Value *RHS, bool IsNSW = false, in BinaryOp() 3811 : Opcode(Opcode), LHS(LHS), RHS(RHS), IsNSW(IsNSW), IsNUW(IsNUW), in BinaryOp() 3986 if (BO->IsNSW) in createAddRecFromPHI()
|