mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 20:23:59 +00:00
Use pre-inc, pre-dec when possible.
They are generally faster (at least not slower) than post-inc, post-dec. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177608 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -3000,8 +3000,8 @@ ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
|
||||
uint32_t BitWidth = C.getBitWidth();
|
||||
switch (pred) {
|
||||
default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
|
||||
case ICmpInst::ICMP_EQ: Upper++; break;
|
||||
case ICmpInst::ICMP_NE: Lower++; break;
|
||||
case ICmpInst::ICMP_EQ: ++Upper; break;
|
||||
case ICmpInst::ICMP_NE: ++Lower; break;
|
||||
case ICmpInst::ICMP_ULT:
|
||||
Lower = APInt::getMinValue(BitWidth);
|
||||
// Check for an empty-set condition.
|
||||
@ -3015,25 +3015,25 @@ ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
|
||||
return ConstantRange(BitWidth, /*isFullSet=*/false);
|
||||
break;
|
||||
case ICmpInst::ICMP_UGT:
|
||||
Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
|
||||
++Lower; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
|
||||
// Check for an empty-set condition.
|
||||
if (Lower == Upper)
|
||||
return ConstantRange(BitWidth, /*isFullSet=*/false);
|
||||
break;
|
||||
case ICmpInst::ICMP_SGT:
|
||||
Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
|
||||
++Lower; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
|
||||
// Check for an empty-set condition.
|
||||
if (Lower == Upper)
|
||||
return ConstantRange(BitWidth, /*isFullSet=*/false);
|
||||
break;
|
||||
case ICmpInst::ICMP_ULE:
|
||||
Lower = APInt::getMinValue(BitWidth); Upper++;
|
||||
Lower = APInt::getMinValue(BitWidth); ++Upper;
|
||||
// Check for a full-set condition.
|
||||
if (Lower == Upper)
|
||||
return ConstantRange(BitWidth, /*isFullSet=*/true);
|
||||
break;
|
||||
case ICmpInst::ICMP_SLE:
|
||||
Lower = APInt::getSignedMinValue(BitWidth); Upper++;
|
||||
Lower = APInt::getSignedMinValue(BitWidth); ++Upper;
|
||||
// Check for a full-set condition.
|
||||
if (Lower == Upper)
|
||||
return ConstantRange(BitWidth, /*isFullSet=*/true);
|
||||
|
Reference in New Issue
Block a user