mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Add a NextMBBNumber field w/ incrementing accessor method, for
function-level unique numbering of MBBs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13513 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -49,6 +49,9 @@ class MachineFunction : private Annotation {
|
|||||||
// Keep track of constants which are spilled to memory
|
// Keep track of constants which are spilled to memory
|
||||||
MachineConstantPool *ConstantPool;
|
MachineConstantPool *ConstantPool;
|
||||||
|
|
||||||
|
// Function-level unique numbering for MachineBasicBlocks
|
||||||
|
int NextMBBNumber;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
MachineFunction(const Function *Fn, const TargetMachine &TM);
|
MachineFunction(const Function *Fn, const TargetMachine &TM);
|
||||||
~MachineFunction();
|
~MachineFunction();
|
||||||
@@ -82,6 +85,10 @@ public:
|
|||||||
///
|
///
|
||||||
MachineFunctionInfo *getInfo() const { return MFInfo; }
|
MachineFunctionInfo *getInfo() const { return MFInfo; }
|
||||||
|
|
||||||
|
/// getNextMBBNumber - Returns the next unique number to be assigned
|
||||||
|
/// to a MachineBasicBlock in this MachineFunction.
|
||||||
|
///
|
||||||
|
int getNextMBBNumber() { return NextMBBNumber++; }
|
||||||
|
|
||||||
/// print - Print out the MachineFunction in a format suitable for debugging
|
/// print - Print out the MachineFunction in a format suitable for debugging
|
||||||
/// to the specified stream.
|
/// to the specified stream.
|
||||||
|
Reference in New Issue
Block a user