mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
CodeGen: Add MachineInstr::getMF(). NFC
Similarly to how Instruction has getFunction, this adds a less verbose way to write MI->getParent()->getParent(). I'll follow up shortly with a change that changes a bunch of the uses. llvm-svn: 315388
This commit is contained in:
parent
0d141d6a28
commit
3653789e41
@ -139,6 +139,17 @@ public:
|
||||
const MachineBasicBlock* getParent() const { return Parent; }
|
||||
MachineBasicBlock* getParent() { return Parent; }
|
||||
|
||||
/// Return the function that contains the basic block that this instruction
|
||||
/// belongs to.
|
||||
///
|
||||
/// Note: this is undefined behaviour if the instruction does not have a
|
||||
/// parent.
|
||||
const MachineFunction *getMF() const;
|
||||
MachineFunction *getMF() {
|
||||
return const_cast<MachineFunction *>(
|
||||
static_cast<const MachineInstr *>(this)->getMF());
|
||||
}
|
||||
|
||||
/// Return the asm printer flags bitvector.
|
||||
uint8_t getAsmPrinterFlags() const { return AsmPrinterFlags; }
|
||||
|
||||
|
@ -1154,6 +1154,10 @@ bool MachineInstr::isIdenticalTo(const MachineInstr &Other,
|
||||
return true;
|
||||
}
|
||||
|
||||
const MachineFunction *MachineInstr::getMF() const {
|
||||
return getParent()->getParent();
|
||||
}
|
||||
|
||||
MachineInstr *MachineInstr::removeFromParent() {
|
||||
assert(getParent() && "Not embedded in a basic block!");
|
||||
return getParent()->remove(this);
|
||||
|
Loading…
Reference in New Issue
Block a user