Add some "useful" methods

llvm-svn: 10277
This commit is contained in:
Chris Lattner 2003-12-01 05:30:29 +00:00
parent 6d760d7cb3
commit cc04614ee5
1 changed files with 6 additions and 0 deletions

View File

@ -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);