Searched refs:LHSKnownNegative (Results 1 – 5 of 5) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | InstructionSimplify.cpp | 1496 bool LHSKnownNonNegative, LHSKnownNegative; in SimplifyICmpInst() local 1515 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, TD); in SimplifyICmpInst() 1516 if (LHSKnownNegative) in SimplifyICmpInst() 1522 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, TD); in SimplifyICmpInst() 1523 if (LHSKnownNegative) in SimplifyICmpInst() 1529 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, TD); in SimplifyICmpInst() 1530 if (LHSKnownNegative) in SimplifyICmpInst() 1536 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, TD); in SimplifyICmpInst() 1537 if (LHSKnownNegative) in SimplifyICmpInst()
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 2237 bool LHSKnownNonNegative, LHSKnownNegative; in SimplifyICmpInst() local 2255 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC, in SimplifyICmpInst() 2257 if (LHSKnownNegative) in SimplifyICmpInst() 2263 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC, in SimplifyICmpInst() 2265 if (LHSKnownNegative) in SimplifyICmpInst() 2272 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC, in SimplifyICmpInst() 2274 if (LHSKnownNegative) in SimplifyICmpInst() 2280 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, Q.DL, 0, Q.AC, in SimplifyICmpInst() 2282 if (LHSKnownNegative) in SimplifyICmpInst() 2709 bool LHSKnownNonNegative, LHSKnownNegative; in SimplifyICmpInst() local [all …]
|
D | ValueTracking.cpp | 3330 bool LHSKnownNonNegative, LHSKnownNegative; in computeOverflowForUnsignedAdd() local 3331 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, DL, /*Depth=*/0, in computeOverflowForUnsignedAdd() 3333 if (LHSKnownNonNegative || LHSKnownNegative) { in computeOverflowForUnsignedAdd() 3338 if (LHSKnownNegative && RHSKnownNegative) { in computeOverflowForUnsignedAdd() 3361 bool LHSKnownNonNegative, LHSKnownNegative; in computeOverflowForSignedAdd() local 3363 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, DL, /*Depth=*/0, in computeOverflowForSignedAdd() 3369 (LHSKnownNegative && RHSKnownNonNegative)) { in computeOverflowForSignedAdd() 3384 bool LHSOrRHSKnownNegative = (LHSKnownNegative || RHSKnownNegative); in computeOverflowForSignedAdd()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 399 bool LHSKnownNegative = LHSKnownOne[BitWidth - 1]; in visitCallInst() local 402 if (LHSKnownNegative || LHSKnownPositive) { in visitCallInst() 408 if (LHSKnownNegative && RHSKnownNegative) { in visitCallInst()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 957 bool LHSKnownNonNegative, LHSKnownNegative; in WillNotOverflowUnsignedSub() local 959 ComputeSignBit(LHS, LHSKnownNonNegative, LHSKnownNegative, /*Depth=*/0, in WillNotOverflowUnsignedSub() 963 if (LHSKnownNegative && RHSKnownNonNegative) in WillNotOverflowUnsignedSub()
|