summaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineBasicBlock.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-07-01 06:02:27 +0000
committerChris Lattner <sabre@nondot.org>2004-07-01 06:02:27 +0000
commitca48eb9f5175058a55c1818cb1d5d06052f0092d (patch)
tree0f457926529e24821a726b0de45682c6d6fd63f3 /lib/CodeGen/MachineBasicBlock.cpp
parent51289aa520c9839a0396eb3e76f5e0174dc67c09 (diff)
downloadllvm-ca48eb9f5175058a55c1818cb1d5d06052f0092d.tar.gz
llvm-ca48eb9f5175058a55c1818cb1d5d06052f0092d.tar.bz2
llvm-ca48eb9f5175058a55c1818cb1d5d06052f0092d.tar.xz
Change MBB autonumber a bit to get the reverse mapping as well as a forward
mapping git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14521 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r--lib/CodeGen/MachineBasicBlock.cpp16
1 files changed, 6 insertions, 10 deletions
diff --git a/lib/CodeGen/MachineBasicBlock.cpp b/lib/CodeGen/MachineBasicBlock.cpp
index f4ef3ee21e..a8a64dba51 100644
--- a/lib/CodeGen/MachineBasicBlock.cpp
+++ b/lib/CodeGen/MachineBasicBlock.cpp
@@ -29,27 +29,23 @@ MachineBasicBlock::~MachineBasicBlock() {
// MBBs start out as #-1. When a MBB is added to a MachineFunction, it
// gets the next available unique MBB number. If it is removed from a
// MachineFunction, it goes back to being #-1.
-void ilist_traits<MachineBasicBlock>::addNodeToList (MachineBasicBlock* N)
-{
+void ilist_traits<MachineBasicBlock>::addNodeToList(MachineBasicBlock* N) {
assert(N->Parent == 0 && "machine instruction already in a basic block");
N->Parent = Parent;
- N->Number = Parent->getNextMBBNumber();
+ N->Number = Parent->addToMBBNumbering(N);
LeakDetector::removeGarbageObject(N);
-
-
}
-void ilist_traits<MachineBasicBlock>::removeNodeFromList (MachineBasicBlock* N)
-{
+void ilist_traits<MachineBasicBlock>::removeNodeFromList(MachineBasicBlock* N) {
assert(N->Parent != 0 && "machine instruction not in a basic block");
- N->Parent = 0;
+ N->Parent->removeFromMBBNumbering(N->Number);
N->Number = -1;
+ N->Parent = 0;
LeakDetector::addGarbageObject(N);
}
-MachineInstr* ilist_traits<MachineInstr>::createNode()
-{
+MachineInstr* ilist_traits<MachineInstr>::createNode() {
MachineInstr* dummy = new MachineInstr(0, 0);
LeakDetector::removeGarbageObject(dummy);
return dummy;