blob: 4f5ab1f5860e347222f2f7ff0499f5ce33e0a19b [file] [log] [blame]
Chris Lattner62ed6b92008-01-01 01:12:31 +00001//===-- lib/Codegen/MachineRegisterInfo.cpp -------------------------------===//
Chris Lattner84bc5422007-12-31 04:13:23 +00002//
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
Dan Gohman6f0d0242008-02-10 18:45:23 +000017MachineRegisterInfo::MachineRegisterInfo(const TargetRegisterInfo &TRI) {
Chris Lattner84bc5422007-12-31 04:13:23 +000018 VRegInfo.reserve(256);
Evan Cheng11a26f32008-10-20 20:03:28 +000019 RegClass2VRegMap.resize(TRI.getNumRegClasses()+1); // RC ID starts at 1.
Dan Gohman6f0d0242008-02-10 18:45:23 +000020 UsedPhysRegs.resize(TRI.getNumRegs());
Chris Lattner62ed6b92008-01-01 01:12:31 +000021
22 // Create the physreg use/def lists.
Dan Gohman6f0d0242008-02-10 18:45:23 +000023 PhysRegUseDefLists = new MachineOperand*[TRI.getNumRegs()];
24 memset(PhysRegUseDefLists, 0, sizeof(MachineOperand*)*TRI.getNumRegs());
Chris Lattner62ed6b92008-01-01 01:12:31 +000025}
26
27MachineRegisterInfo::~MachineRegisterInfo() {
28#ifndef NDEBUG
29 for (unsigned i = 0, e = VRegInfo.size(); i != e; ++i)
30 assert(VRegInfo[i].second == 0 && "Vreg use list non-empty still?");
Dan Gohman03bafaf2008-07-07 19:55:35 +000031 for (unsigned i = 0, e = UsedPhysRegs.size(); i != e; ++i)
32 assert(!PhysRegUseDefLists[i] &&
33 "PhysRegUseDefLists has entries after all instructions are deleted");
Chris Lattner62ed6b92008-01-01 01:12:31 +000034#endif
35 delete [] PhysRegUseDefLists;
36}
37
Dan Gohman33f1c682009-04-15 01:19:35 +000038/// setRegClass - Set the register class of the specified virtual register.
39///
40void
41MachineRegisterInfo::setRegClass(unsigned Reg, const TargetRegisterClass *RC) {
42 unsigned VR = Reg;
43 Reg -= TargetRegisterInfo::FirstVirtualRegister;
44 assert(Reg < VRegInfo.size() && "Invalid vreg!");
45 const TargetRegisterClass *OldRC = VRegInfo[Reg].first;
46 VRegInfo[Reg].first = RC;
47
48 // Remove from old register class's vregs list. This may be slow but
49 // fortunately this operation is rarely needed.
50 std::vector<unsigned> &VRegs = RegClass2VRegMap[OldRC->getID()];
51 std::vector<unsigned>::iterator I=std::find(VRegs.begin(), VRegs.end(), VR);
52 VRegs.erase(I);
53
54 // Add to new register class's vregs list.
55 RegClass2VRegMap[RC->getID()].push_back(VR);
56}
57
Dan Gohman2e3e5bf2008-12-08 04:54:11 +000058/// createVirtualRegister - Create and return a new virtual register in the
59/// function with the specified register class.
60///
61unsigned
62MachineRegisterInfo::createVirtualRegister(const TargetRegisterClass *RegClass){
63 assert(RegClass && "Cannot create register without RegClass!");
64 // Add a reg, but keep track of whether the vector reallocated or not.
65 void *ArrayBase = VRegInfo.empty() ? 0 : &VRegInfo[0];
66 VRegInfo.push_back(std::make_pair(RegClass, (MachineOperand*)0));
67
68 if (!((&VRegInfo[0] == ArrayBase || VRegInfo.size() == 1)))
69 // The vector reallocated, handle this now.
70 HandleVRegListReallocation();
71 unsigned VR = getLastVirtReg();
72 RegClass2VRegMap[RegClass->getID()].push_back(VR);
73 return VR;
74}
75
Chris Lattner62ed6b92008-01-01 01:12:31 +000076/// HandleVRegListReallocation - We just added a virtual register to the
77/// VRegInfo info list and it reallocated. Update the use/def lists info
78/// pointers.
79void MachineRegisterInfo::HandleVRegListReallocation() {
80 // The back pointers for the vreg lists point into the previous vector.
81 // Update them to point to their correct slots.
82 for (unsigned i = 0, e = VRegInfo.size(); i != e; ++i) {
83 MachineOperand *List = VRegInfo[i].second;
84 if (!List) continue;
85 // Update the back-pointer to be accurate once more.
86 List->Contents.Reg.Prev = &VRegInfo[i].second;
87 }
Chris Lattner84bc5422007-12-31 04:13:23 +000088}
Chris Lattnera91a7d52008-01-01 03:07:29 +000089
Chris Lattnere138b3d2008-01-01 20:36:19 +000090/// replaceRegWith - Replace all instances of FromReg with ToReg in the
91/// machine function. This is like llvm-level X->replaceAllUsesWith(Y),
92/// except that it also changes any definitions of the register as well.
93void MachineRegisterInfo::replaceRegWith(unsigned FromReg, unsigned ToReg) {
94 assert(FromReg != ToReg && "Cannot replace a reg with itself");
95
96 // TODO: This could be more efficient by bulk changing the operands.
97 for (reg_iterator I = reg_begin(FromReg), E = reg_end(); I != E; ) {
98 MachineOperand &O = I.getOperand();
99 ++I;
100 O.setReg(ToReg);
101 }
102}
103
Chris Lattnera91a7d52008-01-01 03:07:29 +0000104
105/// getVRegDef - Return the machine instr that defines the specified virtual
106/// register or null if none is found. This assumes that the code is in SSA
107/// form, so there should only be one definition.
108MachineInstr *MachineRegisterInfo::getVRegDef(unsigned Reg) const {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000109 assert(Reg-TargetRegisterInfo::FirstVirtualRegister < VRegInfo.size() &&
Chris Lattnera91a7d52008-01-01 03:07:29 +0000110 "Invalid vreg!");
111 for (reg_iterator I = reg_begin(Reg), E = reg_end(); I != E; ++I) {
112 // Since we are in SSA form, we can stop at the first definition.
Chris Lattnere138b3d2008-01-01 20:36:19 +0000113 if (I.getOperand().isDef())
114 return &*I;
Chris Lattnera91a7d52008-01-01 03:07:29 +0000115 }
116 return 0;
117}
Evan Cheng1eb5cf92008-02-13 02:45:38 +0000118
119
120#ifndef NDEBUG
121void MachineRegisterInfo::dumpUses(unsigned Reg) const {
122 for (use_iterator I = use_begin(Reg), E = use_end(); I != E; ++I)
123 I.getOperand().getParent()->dump();
124}
125#endif