mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
[LVI] Hide a confusing internal interface
llvm-svn: 288764
This commit is contained in:
parent
62bc2fc3e6
commit
05a52c24d5
@ -148,6 +148,7 @@ public:
|
||||
return true;
|
||||
}
|
||||
|
||||
private:
|
||||
/// Return true if this is a change in status.
|
||||
bool markConstant(Constant *V) {
|
||||
assert(V && "Marking constant with NULL");
|
||||
@ -202,6 +203,8 @@ public:
|
||||
return true;
|
||||
}
|
||||
|
||||
public:
|
||||
|
||||
/// Merge the specified lattice value into this one, updating this
|
||||
/// one and returning true if anything changed.
|
||||
bool mergeIn(const LVILatticeVal &RHS, const DataLayout &DL) {
|
||||
@ -1028,22 +1031,22 @@ bool LazyValueInfoImpl::solveBlockValueSelect(LVILatticeVal &BBLV,
|
||||
// ValueTracking getting smarter looking back past our immediate inputs.)
|
||||
if (SelectPatternResult::isMinOrMax(SPR.Flavor) &&
|
||||
LHS == SI->getTrueValue() && RHS == SI->getFalseValue()) {
|
||||
switch (SPR.Flavor) {
|
||||
default:
|
||||
llvm_unreachable("unexpected minmax type!");
|
||||
case SPF_SMIN: /// Signed minimum
|
||||
BBLV.markConstantRange(TrueCR.smin(FalseCR));
|
||||
return true;
|
||||
case SPF_UMIN: /// Unsigned minimum
|
||||
BBLV.markConstantRange(TrueCR.umin(FalseCR));
|
||||
return true;
|
||||
case SPF_SMAX: /// Signed maximum
|
||||
BBLV.markConstantRange(TrueCR.smax(FalseCR));
|
||||
return true;
|
||||
case SPF_UMAX: /// Unsigned maximum
|
||||
BBLV.markConstantRange(TrueCR.umax(FalseCR));
|
||||
return true;
|
||||
};
|
||||
ConstantRange ResultCR = [&]() {
|
||||
switch (SPR.Flavor) {
|
||||
default:
|
||||
llvm_unreachable("unexpected minmax type!");
|
||||
case SPF_SMIN: /// Signed minimum
|
||||
return TrueCR.smin(FalseCR);
|
||||
case SPF_UMIN: /// Unsigned minimum
|
||||
return TrueCR.umin(FalseCR);
|
||||
case SPF_SMAX: /// Signed maximum
|
||||
return TrueCR.smax(FalseCR);
|
||||
case SPF_UMAX: /// Unsigned maximum
|
||||
return TrueCR.umax(FalseCR);
|
||||
};
|
||||
}();
|
||||
BBLV = LVILatticeVal::getRange(ResultCR);
|
||||
return true;
|
||||
}
|
||||
|
||||
// TODO: ABS, NABS from the SelectPatternResult
|
||||
|
Loading…
Reference in New Issue
Block a user