mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Add an isAllOnesValue utility function, similar to isZero and isOne.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74032 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ea080be986
commit
4d289bf4af
@ -82,6 +82,11 @@ namespace llvm {
|
||||
///
|
||||
bool isOne() const;
|
||||
|
||||
/// isAllOnesValue - Return true if the expression is a constant
|
||||
/// all-ones value.
|
||||
///
|
||||
bool isAllOnesValue() const;
|
||||
|
||||
/// replaceSymbolicValuesWithConcrete - If this SCEV internally references
|
||||
/// the symbolic value "Sym", construct and return a new SCEV that produces
|
||||
/// the same value, but which uses the concrete value Conc instead of the
|
||||
|
@ -132,6 +132,12 @@ bool SCEV::isOne() const {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool SCEV::isAllOnesValue() const {
|
||||
if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
|
||||
return SC->getValue()->isAllOnesValue();
|
||||
return false;
|
||||
}
|
||||
|
||||
SCEVCouldNotCompute::SCEVCouldNotCompute() :
|
||||
SCEV(scCouldNotCompute) {}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user