MachineRegisterInfo.cpp revision e138b3dd1ff02d826233482831318708a166ed93
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"
15using namespace llvm;
16
17MachineRegisterInfo::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
26MachineRegisterInfo::~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.
37void 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}
47
48/// replaceRegWith - Replace all instances of FromReg with ToReg in the
49/// machine function.  This is like llvm-level X->replaceAllUsesWith(Y),
50/// except that it also changes any definitions of the register as well.
51void MachineRegisterInfo::replaceRegWith(unsigned FromReg, unsigned ToReg) {
52  assert(FromReg != ToReg && "Cannot replace a reg with itself");
53
54  // TODO: This could be more efficient by bulk changing the operands.
55  for (reg_iterator I = reg_begin(FromReg), E = reg_end(); I != E; ) {
56    MachineOperand &O = I.getOperand();
57    ++I;
58    O.setReg(ToReg);
59  }
60}
61
62
63/// getVRegDef - Return the machine instr that defines the specified virtual
64/// register or null if none is found.  This assumes that the code is in SSA
65/// form, so there should only be one definition.
66MachineInstr *MachineRegisterInfo::getVRegDef(unsigned Reg) const {
67  assert(Reg-MRegisterInfo::FirstVirtualRegister < VRegInfo.size() &&
68         "Invalid vreg!");
69  for (reg_iterator I = reg_begin(Reg), E = reg_end(); I != E; ++I) {
70    // Since we are in SSA form, we can stop at the first definition.
71    if (I.getOperand().isDef())
72      return &*I;
73  }
74  return 0;
75}
76