mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Add isSubRegisterEq() and isSuperRegisterEq().
isSub and isSuper return false if RegA == RegB. Add variants which also include the identity function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170609 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e188fb7dd9
commit
16f3204b95
@ -386,14 +386,24 @@ public:
|
||||
return RegEncodingTable[RegNo];
|
||||
}
|
||||
|
||||
/// Returns true if regB is a sub-register of regA.
|
||||
bool isSubRegister(unsigned regA, unsigned regB) const {
|
||||
return isSuperRegister(regB, regA);
|
||||
/// Returns true if RegB is a sub-register of RegA.
|
||||
bool isSubRegister(unsigned RegA, unsigned RegB) const {
|
||||
return isSuperRegister(RegB, RegA);
|
||||
}
|
||||
|
||||
/// Returns true if regB is a super-register of regA.
|
||||
/// Returns true if RegB is a super-register of RegA.
|
||||
bool isSuperRegister(unsigned RegA, unsigned RegB) const;
|
||||
|
||||
/// Returns true if RegB is a sub-register of RegA or if RegB == RegA.
|
||||
bool isSubRegisterEq(unsigned RegA, unsigned RegB) const {
|
||||
return isSuperRegisterEq(RegB, RegA);
|
||||
}
|
||||
|
||||
/// Returns true if RegB is a super-register of RegA or if RegB == RegA.
|
||||
bool isSuperRegisterEq(unsigned RegA, unsigned RegB) const {
|
||||
return RegA == RegB || isSuperRegister(RegA, RegB);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
Loading…
Reference in New Issue
Block a user