Implement automatically updated def/use lists for all MachineInstr register
[oota-llvm.git] / lib / CodeGen / MachineRegisterInfo.cpp
1 //===-- lib/Codegen/MachineRegisterInfo.cpp -------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Implementation of the MachineRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/CodeGen/MachineRegisterInfo.h"
15 using namespace llvm;
16
17 MachineRegisterInfo::MachineRegisterInfo(const MRegisterInfo &MRI) {
18   VRegInfo.reserve(256);
19   UsedPhysRegs.resize(MRI.getNumRegs());
20   
21   // Create the physreg use/def lists.
22   PhysRegUseDefLists = new MachineOperand*[MRI.getNumRegs()];
23   memset(PhysRegUseDefLists, 0, sizeof(MachineOperand*)*MRI.getNumRegs());
24 }
25
26 MachineRegisterInfo::~MachineRegisterInfo() {
27 #ifndef NDEBUG
28   for (unsigned i = 0, e = VRegInfo.size(); i != e; ++i)
29     assert(VRegInfo[i].second == 0 && "Vreg use list non-empty still?");
30 #endif
31   delete [] PhysRegUseDefLists;
32 }
33
34 /// HandleVRegListReallocation - We just added a virtual register to the
35 /// VRegInfo info list and it reallocated.  Update the use/def lists info
36 /// pointers.
37 void MachineRegisterInfo::HandleVRegListReallocation() {
38   // The back pointers for the vreg lists point into the previous vector.
39   // Update them to point to their correct slots.
40   for (unsigned i = 0, e = VRegInfo.size(); i != e; ++i) {
41     MachineOperand *List = VRegInfo[i].second;
42     if (!List) continue;
43     // Update the back-pointer to be accurate once more.
44     List->Contents.Reg.Prev = &VRegInfo[i].second;
45   }
46 }