1 //===- TargetRegisterInfo.cpp - Target Register Information Implementation ===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the TargetRegisterInfo interface.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/Target/TargetMachine.h"
15 #include "llvm/Target/TargetRegisterInfo.h"
16 #include "llvm/CodeGen/MachineFunction.h"
17 #include "llvm/CodeGen/MachineFrameInfo.h"
18 #include "llvm/ADT/BitVector.h"
19 #include "llvm/Support/raw_ostream.h"
23 TargetRegisterInfo::TargetRegisterInfo(const TargetRegisterInfoDesc
*ID
,
24 regclass_iterator RCB
, regclass_iterator RCE
,
25 const char *const *subregindexnames
)
26 : InfoDesc(ID
), SubRegIndexNames(subregindexnames
),
27 RegClassBegin(RCB
), RegClassEnd(RCE
) {
30 TargetRegisterInfo::~TargetRegisterInfo() {}
32 void PrintReg::print(raw_ostream
&OS
) const {
35 else if (TargetRegisterInfo::isStackSlot(Reg
))
36 OS
<< "SS#" << TargetRegisterInfo::stackSlot2Index(Reg
);
37 else if (TargetRegisterInfo::isVirtualRegister(Reg
))
38 OS
<< "%vreg" << TargetRegisterInfo::virtReg2Index(Reg
);
39 else if (TRI
&& Reg
< TRI
->getNumRegs())
40 OS
<< '%' << TRI
->getName(Reg
);
42 OS
<< "%physreg" << Reg
;
45 OS
<< ':' << TRI
->getSubRegIndexName(SubIdx
);
47 OS
<< ":sub(" << SubIdx
<< ')';
51 /// getMinimalPhysRegClass - Returns the Register Class of a physical
52 /// register of the given type, picking the most sub register class of
53 /// the right type that contains this physreg.
54 const TargetRegisterClass
*
55 TargetRegisterInfo::getMinimalPhysRegClass(unsigned reg
, EVT VT
) const {
56 assert(isPhysicalRegister(reg
) && "reg must be a physical register");
58 // Pick the most sub register class of the right type that contains
60 const TargetRegisterClass
* BestRC
= 0;
61 for (regclass_iterator I
= regclass_begin(), E
= regclass_end(); I
!= E
; ++I
){
62 const TargetRegisterClass
* RC
= *I
;
63 if ((VT
== MVT::Other
|| RC
->hasType(VT
)) && RC
->contains(reg
) &&
64 (!BestRC
|| BestRC
->hasSubClass(RC
)))
68 assert(BestRC
&& "Couldn't find the register class");
72 /// getAllocatableSetForRC - Toggle the bits that represent allocatable
73 /// registers for the specific register class.
74 static void getAllocatableSetForRC(const MachineFunction
&MF
,
75 const TargetRegisterClass
*RC
, BitVector
&R
){
76 ArrayRef
<unsigned> Order
= RC
->getRawAllocationOrder(MF
);
77 for (unsigned i
= 0; i
!= Order
.size(); ++i
)
81 BitVector
TargetRegisterInfo::getAllocatableSet(const MachineFunction
&MF
,
82 const TargetRegisterClass
*RC
) const {
83 BitVector
Allocatable(getNumRegs());
85 getAllocatableSetForRC(MF
, RC
, Allocatable
);
87 for (TargetRegisterInfo::regclass_iterator I
= regclass_begin(),
88 E
= regclass_end(); I
!= E
; ++I
)
89 if ((*I
)->isAllocatable())
90 getAllocatableSetForRC(MF
, *I
, Allocatable
);
93 // Mask out the reserved registers
94 BitVector Reserved
= getReservedRegs(MF
);
95 Allocatable
&= Reserved
.flip();
100 const TargetRegisterClass
*
101 llvm::getCommonSubClass(const TargetRegisterClass
*A
,
102 const TargetRegisterClass
*B
) {
103 // First take care of the trivial cases
109 // If B is a subclass of A, it will be handled in the loop below
110 if (B
->hasSubClass(A
))
113 const TargetRegisterClass
*Best
= 0;
114 for (TargetRegisterClass::sc_iterator I
= A
->subclasses_begin();
115 const TargetRegisterClass
*X
= *I
; ++I
) {
117 return B
; // B is a subclass of A
119 // X must be a common subclass of A and B
120 if (!B
->hasSubClass(X
))
123 // A superclass is definitely better.
124 if (!Best
|| Best
->hasSuperClass(X
)) {
129 // A subclass is definitely worse
130 if (Best
->hasSubClass(X
))
133 // Best and *I have no super/sub class relation - pick the larger class, or
134 // the smaller spill size.
135 int nb
= std::distance(Best
->begin(), Best
->end());
136 int ni
= std::distance(X
->begin(), X
->end());
137 if (ni
>nb
|| (ni
==nb
&& X
->getSize() < Best
->getSize()))