mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Add some "useful" methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10277 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9b527704f7
commit
786a518f47
@ -261,6 +261,8 @@ public:
|
||||
return regNum;
|
||||
}
|
||||
int64_t getImmedValue() const { assert(isImmediate()); return immedVal; }
|
||||
void setImmedValue(int64_t ImmVal) { assert(isImmediate()); immedVal=ImmVal; }
|
||||
|
||||
MachineBasicBlock *getMachineBasicBlock() const {
|
||||
assert(isMachineBasicBlock() && "Can't get MBB in non-MBB operand!");
|
||||
return MBB;
|
||||
@ -306,6 +308,10 @@ public:
|
||||
unsigned getReg() const {
|
||||
return getAllocatedRegNum();
|
||||
}
|
||||
void setReg(unsigned Reg) {
|
||||
assert(hasAllocatedReg() && "This operand cannot have a register number!");
|
||||
regNum = Reg;
|
||||
}
|
||||
|
||||
friend std::ostream& operator<<(std::ostream& os, const MachineOperand& mop);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user