blob: 89aad0495f64c35f37a48679a72335c88f66f755 [file] [log] [blame]
Brian Gaekee3d68072004-02-25 18:44:15 +00001//===-- SparcV9RegInfo.cpp - SparcV9 Target Register Information --------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattnered5171e2002-02-03 07:52:04 +00009//
Brian Gaekee3d68072004-02-25 18:44:15 +000010// This file contains implementation of SparcV9 specific helper methods
Chris Lattnered5171e2002-02-03 07:52:04 +000011// used for register allocation.
12//
13//===----------------------------------------------------------------------===//
14
Misha Brukmanfce11432002-10-28 00:28:31 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner1b849be2002-12-28 20:21:29 +000016#include "llvm/CodeGen/MachineFunctionInfo.h"
Vikram S. Adve242a8082002-05-19 15:25:51 +000017#include "llvm/CodeGen/InstrSelection.h"
Chris Lattner00dca912003-01-15 17:47:49 +000018#include "llvm/CodeGen/MachineInstrBuilder.h"
Anand Shukla55afc332003-06-01 02:48:23 +000019#include "llvm/CodeGen/MachineCodeForInstruction.h"
Chris Lattner08d49632004-02-29 19:12:51 +000020#include "MachineInstrAnnot.h"
Chris Lattner1d415a92004-01-09 16:17:09 +000021#include "RegAlloc/LiveRangeInfo.h"
22#include "RegAlloc/LiveRange.h"
Misha Brukmand71295a2003-12-17 22:04:00 +000023#include "llvm/DerivedTypes.h"
24#include "llvm/Function.h"
Chris Lattner699683c2002-02-04 05:59:25 +000025#include "llvm/iTerminators.h"
26#include "llvm/iOther.h"
Brian Gaekee3d68072004-02-25 18:44:15 +000027#include "SparcV9Internals.h"
28#include "SparcV9RegClassInfo.h"
29#include "SparcV9RegInfo.h"
30#include "SparcV9TargetMachine.h"
Chris Lattner20b1ea02001-09-14 03:47:57 +000031
Brian Gaeked0fde302003-11-11 22:41:34 +000032namespace llvm {
33
Chris Lattner92ba2aa2003-01-14 23:05:08 +000034enum {
35 BadRegClass = ~0
36};
37
Brian Gaekee3d68072004-02-25 18:44:15 +000038SparcV9RegInfo::SparcV9RegInfo(const SparcV9TargetMachine &tgt)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +000039 : TargetRegInfo(tgt), NumOfIntArgRegs(6), NumOfFloatArgRegs(32)
40{
Brian Gaekee3d68072004-02-25 18:44:15 +000041 MachineRegClassArr.push_back(new SparcV9IntRegClass(IntRegClassID));
42 MachineRegClassArr.push_back(new SparcV9FloatRegClass(FloatRegClassID));
43 MachineRegClassArr.push_back(new SparcV9IntCCRegClass(IntCCRegClassID));
44 MachineRegClassArr.push_back(new SparcV9FloatCCRegClass(FloatCCRegClassID));
45 MachineRegClassArr.push_back(new SparcV9SpecialRegClass(SpecialRegClassID));
Vikram S. Adve76ee6f72002-07-08 23:23:12 +000046
Brian Gaekee3d68072004-02-25 18:44:15 +000047 assert(SparcV9FloatRegClass::StartOfNonVolatileRegs == 32 &&
Chris Lattner699683c2002-02-04 05:59:25 +000048 "32 Float regs are used for float arg passing");
49}
50
51
Vikram S. Advef1c15ee2002-03-18 03:12:16 +000052// getZeroRegNum - returns the register that contains always zero.
53// this is the unified register number
Chris Lattner699683c2002-02-04 05:59:25 +000054//
Brian Gaekee3d68072004-02-25 18:44:15 +000055unsigned SparcV9RegInfo::getZeroRegNum() const {
56 return getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
57 SparcV9IntRegClass::g0);
Vikram S. Advef1c15ee2002-03-18 03:12:16 +000058}
Chris Lattner699683c2002-02-04 05:59:25 +000059
60// getCallAddressReg - returns the reg used for pushing the address when a
61// method is called. This can be used for other purposes between calls
62//
Brian Gaekee3d68072004-02-25 18:44:15 +000063unsigned SparcV9RegInfo::getCallAddressReg() const {
64 return getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
65 SparcV9IntRegClass::o7);
Chris Lattner699683c2002-02-04 05:59:25 +000066}
67
68// Returns the register containing the return address.
69// It should be made sure that this register contains the return
70// value when a return instruction is reached.
71//
Brian Gaekee3d68072004-02-25 18:44:15 +000072unsigned SparcV9RegInfo::getReturnAddressReg() const {
73 return getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
74 SparcV9IntRegClass::i7);
Chris Lattner95685682002-08-12 21:25:05 +000075}
76
77// Register get name implementations...
78
Brian Gaekee3d68072004-02-25 18:44:15 +000079// Int register names in same order as enum in class SparcV9IntRegClass
Chris Lattner95685682002-08-12 21:25:05 +000080static const char * const IntRegNames[] = {
81 "o0", "o1", "o2", "o3", "o4", "o5", "o7",
82 "l0", "l1", "l2", "l3", "l4", "l5", "l6", "l7",
83 "i0", "i1", "i2", "i3", "i4", "i5",
84 "i6", "i7",
85 "g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7",
86 "o6"
87};
88
Brian Gaekee3d68072004-02-25 18:44:15 +000089const char * const SparcV9IntRegClass::getRegName(unsigned reg) const {
Chris Lattner95685682002-08-12 21:25:05 +000090 assert(reg < NumOfAllRegs);
91 return IntRegNames[reg];
92}
93
94static const char * const FloatRegNames[] = {
95 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "f9",
96 "f10", "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18", "f19",
97 "f20", "f21", "f22", "f23", "f24", "f25", "f26", "f27", "f28", "f29",
98 "f30", "f31", "f32", "f33", "f34", "f35", "f36", "f37", "f38", "f39",
99 "f40", "f41", "f42", "f43", "f44", "f45", "f46", "f47", "f48", "f49",
100 "f50", "f51", "f52", "f53", "f54", "f55", "f56", "f57", "f58", "f59",
101 "f60", "f61", "f62", "f63"
102};
103
Brian Gaekee3d68072004-02-25 18:44:15 +0000104const char * const SparcV9FloatRegClass::getRegName(unsigned reg) const {
Chris Lattner95685682002-08-12 21:25:05 +0000105 assert (reg < NumOfAllRegs);
106 return FloatRegNames[reg];
107}
108
Chris Lattner95685682002-08-12 21:25:05 +0000109static const char * const IntCCRegNames[] = {
Vikram S. Adve786833a2003-07-06 20:13:59 +0000110 "xcc", "icc", "ccr"
Chris Lattner95685682002-08-12 21:25:05 +0000111};
112
Brian Gaekee3d68072004-02-25 18:44:15 +0000113const char * const SparcV9IntCCRegClass::getRegName(unsigned reg) const {
Vikram S. Adve786833a2003-07-06 20:13:59 +0000114 assert(reg < 3);
Chris Lattner95685682002-08-12 21:25:05 +0000115 return IntCCRegNames[reg];
116}
117
118static const char * const FloatCCRegNames[] = {
119 "fcc0", "fcc1", "fcc2", "fcc3"
120};
121
Brian Gaekee3d68072004-02-25 18:44:15 +0000122const char * const SparcV9FloatCCRegClass::getRegName(unsigned reg) const {
Brian Gaeke03b562a2004-04-19 18:53:43 +0000123 assert (reg < 4);
Chris Lattner95685682002-08-12 21:25:05 +0000124 return FloatCCRegNames[reg];
Chris Lattner699683c2002-02-04 05:59:25 +0000125}
126
Vikram S. Adve78a4f232003-05-27 00:02:22 +0000127static const char * const SpecialRegNames[] = {
128 "fsr"
129};
130
Brian Gaekee3d68072004-02-25 18:44:15 +0000131const char * const SparcV9SpecialRegClass::getRegName(unsigned reg) const {
Vikram S. Adve78a4f232003-05-27 00:02:22 +0000132 assert (reg < 1);
133 return SpecialRegNames[reg];
Chris Lattner699683c2002-02-04 05:59:25 +0000134}
135
Vikram S. Advef1c15ee2002-03-18 03:12:16 +0000136// Get unified reg number for frame pointer
Brian Gaekee3d68072004-02-25 18:44:15 +0000137unsigned SparcV9RegInfo::getFramePointer() const {
138 return getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
139 SparcV9IntRegClass::i6);
Chris Lattner699683c2002-02-04 05:59:25 +0000140}
141
Vikram S. Advef1c15ee2002-03-18 03:12:16 +0000142// Get unified reg number for stack pointer
Brian Gaekee3d68072004-02-25 18:44:15 +0000143unsigned SparcV9RegInfo::getStackPointer() const {
144 return getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
145 SparcV9IntRegClass::o6);
Chris Lattner699683c2002-02-04 05:59:25 +0000146}
147
148
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000149//---------------------------------------------------------------------------
150// Finds whether a call is an indirect call
151//---------------------------------------------------------------------------
152
153inline bool
154isVarArgsFunction(const Type *funcType) {
155 return cast<FunctionType>(cast<PointerType>(funcType)
156 ->getElementType())->isVarArg();
157}
158
159inline bool
160isVarArgsCall(const MachineInstr *CallMI) {
161 Value* callee = CallMI->getOperand(0).getVRegValue();
162 // const Type* funcType = isa<Function>(callee)? callee->getType()
163 // : cast<PointerType>(callee->getType())->getElementType();
164 const Type* funcType = callee->getType();
165 return isVarArgsFunction(funcType);
166}
167
168
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000169// Get the register number for the specified argument #argNo,
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000170//
171// Return value:
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000172// getInvalidRegNum(), if there is no int register available for the arg.
173// regNum, otherwise (this is NOT the unified reg. num).
174// regClassId is set to the register class ID.
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000175//
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000176int
Brian Gaekee3d68072004-02-25 18:44:15 +0000177SparcV9RegInfo::regNumForIntArg(bool inCallee, bool isVarArgsCall,
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000178 unsigned argNo, unsigned& regClassId) const
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000179{
Vikram S. Adve242a8082002-05-19 15:25:51 +0000180 regClassId = IntRegClassID;
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000181 if (argNo >= NumOfIntArgRegs)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000182 return getInvalidRegNum();
Vikram S. Adve242a8082002-05-19 15:25:51 +0000183 else
Brian Gaekee3d68072004-02-25 18:44:15 +0000184 return argNo + (inCallee? SparcV9IntRegClass::i0 : SparcV9IntRegClass::o0);
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000185}
186
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000187// Get the register number for the specified FP argument #argNo,
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000188// Use INT regs for FP args if this is a varargs call.
189//
190// Return value:
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000191// getInvalidRegNum(), if there is no int register available for the arg.
192// regNum, otherwise (this is NOT the unified reg. num).
193// regClassId is set to the register class ID.
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000194//
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000195int
Brian Gaekee3d68072004-02-25 18:44:15 +0000196SparcV9RegInfo::regNumForFPArg(unsigned regType,
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000197 bool inCallee, bool isVarArgsCall,
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000198 unsigned argNo, unsigned& regClassId) const
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000199{
Vikram S. Adve242a8082002-05-19 15:25:51 +0000200 if (isVarArgsCall)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000201 return regNumForIntArg(inCallee, isVarArgsCall, argNo, regClassId);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000202 else
203 {
204 regClassId = FloatRegClassID;
205 if (regType == FPSingleRegType)
206 return (argNo*2+1 >= NumOfFloatArgRegs)?
Brian Gaekee3d68072004-02-25 18:44:15 +0000207 getInvalidRegNum() : SparcV9FloatRegClass::f0 + (argNo * 2 + 1);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000208 else if (regType == FPDoubleRegType)
209 return (argNo*2 >= NumOfFloatArgRegs)?
Brian Gaekee3d68072004-02-25 18:44:15 +0000210 getInvalidRegNum() : SparcV9FloatRegClass::f0 + (argNo * 2);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000211 else
212 assert(0 && "Illegal FP register type");
Chris Lattnerb82d97e2002-07-25 06:08:32 +0000213 return 0;
Vikram S. Adve242a8082002-05-19 15:25:51 +0000214 }
Vikram S. Advea44c6c02002-03-31 19:04:50 +0000215}
216
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000217
218//---------------------------------------------------------------------------
219// Finds the return address of a call sparc specific call instruction
220//---------------------------------------------------------------------------
Ruchira Sasankab3b6f532001-10-21 16:43:41 +0000221
Brian Gaekee3d68072004-02-25 18:44:15 +0000222// The following 4 methods are used to find the RegType (SparcV9Internals.h)
Vikram S. Adve242a8082002-05-19 15:25:51 +0000223// of a LiveRange, a Value, and for a given register unified reg number.
Chris Lattner699683c2002-02-04 05:59:25 +0000224//
Brian Gaekee3d68072004-02-25 18:44:15 +0000225int SparcV9RegInfo::getRegTypeForClassAndType(unsigned regClassID,
Vikram S. Adve78a4f232003-05-27 00:02:22 +0000226 const Type* type) const
227{
Vikram S. Adve242a8082002-05-19 15:25:51 +0000228 switch (regClassID) {
Vikram S. Adve78a4f232003-05-27 00:02:22 +0000229 case IntRegClassID: return IntRegType;
230 case FloatRegClassID:
231 if (type == Type::FloatTy) return FPSingleRegType;
232 else if (type == Type::DoubleTy) return FPDoubleRegType;
233 assert(0 && "Unknown type in FloatRegClass"); return 0;
234 case IntCCRegClassID: return IntCCRegType;
235 case FloatCCRegClassID: return FloatCCRegType;
236 case SpecialRegClassID: return SpecialRegType;
Vikram S. Adve242a8082002-05-19 15:25:51 +0000237 default: assert( 0 && "Unknown reg class ID"); return 0;
Chris Lattner699683c2002-02-04 05:59:25 +0000238 }
239}
240
Brian Gaekee3d68072004-02-25 18:44:15 +0000241int SparcV9RegInfo::getRegTypeForDataType(const Type* type) const
Vikram S. Adve78a4f232003-05-27 00:02:22 +0000242{
243 return getRegTypeForClassAndType(getRegClassIDOfType(type), type);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000244}
245
Brian Gaekee3d68072004-02-25 18:44:15 +0000246int SparcV9RegInfo::getRegTypeForLR(const LiveRange *LR) const
Vikram S. Adve78a4f232003-05-27 00:02:22 +0000247{
248 return getRegTypeForClassAndType(LR->getRegClassID(), LR->getType());
249}
Chris Lattner699683c2002-02-04 05:59:25 +0000250
Brian Gaekee3d68072004-02-25 18:44:15 +0000251int SparcV9RegInfo::getRegType(int unifiedRegNum) const
Vikram S. Adve78a4f232003-05-27 00:02:22 +0000252{
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000253 if (unifiedRegNum < 32)
Chris Lattner699683c2002-02-04 05:59:25 +0000254 return IntRegType;
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000255 else if (unifiedRegNum < (32 + 32))
Chris Lattner699683c2002-02-04 05:59:25 +0000256 return FPSingleRegType;
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000257 else if (unifiedRegNum < (64 + 32))
Chris Lattner699683c2002-02-04 05:59:25 +0000258 return FPDoubleRegType;
Brian Gaeke6896a7d2004-04-21 17:53:58 +0000259 else if (unifiedRegNum < (64+32+3))
260 return IntCCRegType;
261 else if (unifiedRegNum < (64+32+3+4))
262 return FloatCCRegType;
263 else if (unifiedRegNum < (64+32+3+4+1))
Brian Gaeke3f083d52004-04-20 20:12:57 +0000264 return SpecialRegType;
Chris Lattner699683c2002-02-04 05:59:25 +0000265 else
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000266 assert(0 && "Invalid unified register number in getRegType");
Chris Lattner49b8a9c2002-02-24 23:02:40 +0000267 return 0;
Chris Lattner699683c2002-02-04 05:59:25 +0000268}
269
270
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000271// To find the register class used for a specified Type
272//
Brian Gaekee3d68072004-02-25 18:44:15 +0000273unsigned SparcV9RegInfo::getRegClassIDOfType(const Type *type,
Chris Lattnerb82d97e2002-07-25 06:08:32 +0000274 bool isCCReg) const {
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000275 Type::PrimitiveID ty = type->getPrimitiveID();
276 unsigned res;
277
278 // FIXME: Comparing types like this isn't very safe...
279 if ((ty && ty <= Type::LongTyID) || (ty == Type::LabelTyID) ||
280 (ty == Type::FunctionTyID) || (ty == Type::PointerTyID) )
281 res = IntRegClassID; // sparc int reg (ty=0: void)
282 else if (ty <= Type::DoubleTyID)
283 res = FloatRegClassID; // sparc float reg class
284 else {
285 //std::cerr << "TypeID: " << ty << "\n";
286 assert(0 && "Cannot resolve register class for type");
287 return 0;
288 }
289
Chris Lattner3c3c82d2003-01-15 21:14:32 +0000290 if (isCCReg)
291 return res + 2; // corresponding condition code register
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000292 else
293 return res;
294}
295
Brian Gaekee3d68072004-02-25 18:44:15 +0000296unsigned SparcV9RegInfo::getRegClassIDOfRegType(int regType) const {
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000297 switch(regType) {
298 case IntRegType: return IntRegClassID;
299 case FPSingleRegType:
300 case FPDoubleRegType: return FloatRegClassID;
301 case IntCCRegType: return IntCCRegClassID;
302 case FloatCCRegType: return FloatCCRegClassID;
Brian Gaeke6896a7d2004-04-21 17:53:58 +0000303 case SpecialRegType: return SpecialRegClassID;
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000304 default:
305 assert(0 && "Invalid register type in getRegClassIDOfRegType");
306 return 0;
307 }
308}
309
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000310//---------------------------------------------------------------------------
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000311// Suggests a register for the ret address in the RET machine instruction.
312// We always suggest %i7 by convention.
313//---------------------------------------------------------------------------
Brian Gaekee3d68072004-02-25 18:44:15 +0000314void SparcV9RegInfo::suggestReg4RetAddr(MachineInstr *RetMI,
Ruchira Sasankacc3ccac2001-10-15 16:25:28 +0000315 LiveRangeInfo& LRI) const {
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000316
Brian Gaeke12c1d2c2004-02-11 20:47:34 +0000317 assert(target.getInstrInfo().isReturn(RetMI->getOpcode()));
Vikram S. Adve53fec862001-10-22 13:41:12 +0000318
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000319 // return address is always mapped to i7 so set it immediately
320 RetMI->SetRegForOperand(0, getUnifiedRegNum(IntRegClassID,
Brian Gaekee3d68072004-02-25 18:44:15 +0000321 SparcV9IntRegClass::i7));
Vikram S. Adve53fec862001-10-22 13:41:12 +0000322
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000323 // Possible Optimization:
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000324 // Instead of setting the color, we can suggest one. In that case,
Ruchira Sasankacc3ccac2001-10-15 16:25:28 +0000325 // we have to test later whether it received the suggested color.
326 // In that case, a LR has to be created at the start of method.
327 // It has to be done as follows (remove the setRegVal above):
Ruchira Sasanka91442282001-09-30 23:16:47 +0000328
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000329 // MachineOperand & MO = RetMI->getOperand(0);
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000330 // const Value *RetAddrVal = MO.getVRegValue();
331 // assert( RetAddrVal && "LR for ret address must be created at start");
332 // LiveRange * RetAddrLR = LRI.getLiveRangeForValue( RetAddrVal);
333 // RetAddrLR->setSuggestedColor(getUnifiedRegNum( IntRegClassID,
Brian Gaekee3d68072004-02-25 18:44:15 +0000334 // SparcV9IntRegOrdr::i7) );
Ruchira Sasanka91442282001-09-30 23:16:47 +0000335}
336
337
338//---------------------------------------------------------------------------
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000339// Suggests a register for the ret address in the JMPL/CALL machine instr.
Brian Gaekee3d68072004-02-25 18:44:15 +0000340// SparcV9 ABI dictates that %o7 be used for this purpose.
Ruchira Sasanka91442282001-09-30 23:16:47 +0000341//---------------------------------------------------------------------------
Vikram S. Adve87817652002-09-28 16:59:05 +0000342void
Brian Gaekee3d68072004-02-25 18:44:15 +0000343SparcV9RegInfo::suggestReg4CallAddr(MachineInstr * CallMI,
Vikram S. Adve87817652002-09-28 16:59:05 +0000344 LiveRangeInfo& LRI) const
345{
Vikram S. Adve242a8082002-05-19 15:25:51 +0000346 CallArgsDescriptor* argDesc = CallArgsDescriptor::get(CallMI);
347 const Value *RetAddrVal = argDesc->getReturnAddrReg();
Vikram S. Adve87817652002-09-28 16:59:05 +0000348 assert(RetAddrVal && "INTERNAL ERROR: Return address value is required");
Ruchira Sasanka91442282001-09-30 23:16:47 +0000349
Vikram S. Adve87817652002-09-28 16:59:05 +0000350 // A LR must already exist for the return address.
351 LiveRange *RetAddrLR = LRI.getLiveRangeForValue(RetAddrVal);
352 assert(RetAddrLR && "INTERNAL ERROR: No LR for return address of call!");
353
Chris Lattner3c3c82d2003-01-15 21:14:32 +0000354 unsigned RegClassID = RetAddrLR->getRegClassID();
Brian Gaekee3d68072004-02-25 18:44:15 +0000355 RetAddrLR->setColor(getUnifiedRegNum(IntRegClassID, SparcV9IntRegClass::o7));
Vikram S. Adve87817652002-09-28 16:59:05 +0000356}
Ruchira Sasankacc3ccac2001-10-15 16:25:28 +0000357
358
Ruchira Sasanka91442282001-09-30 23:16:47 +0000359
360//---------------------------------------------------------------------------
361// This method will suggest colors to incoming args to a method.
Brian Gaekee3d68072004-02-25 18:44:15 +0000362// According to the SparcV9 ABI, the first 6 incoming args are in
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000363// %i0 - %i5 (if they are integer) OR in %f0 - %f31 (if they are float).
Ruchira Sasanka91442282001-09-30 23:16:47 +0000364// If the arg is passed on stack due to the lack of regs, NOTHING will be
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000365// done - it will be colored (or spilled) as a normal live range.
Ruchira Sasanka91442282001-09-30 23:16:47 +0000366//---------------------------------------------------------------------------
Brian Gaekee3d68072004-02-25 18:44:15 +0000367void SparcV9RegInfo::suggestRegs4MethodArgs(const Function *Meth,
Ruchira Sasanka91442282001-09-30 23:16:47 +0000368 LiveRangeInfo& LRI) const
Chris Lattner20b1ea02001-09-14 03:47:57 +0000369{
Vikram S. Adve7dc7de52003-07-25 21:12:15 +0000370 // Check if this is a varArgs function. needed for choosing regs.
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000371 bool isVarArgs = isVarArgsFunction(Meth->getType());
372
Vikram S. Adve7dc7de52003-07-25 21:12:15 +0000373 // Count the arguments, *ignoring* whether they are int or FP args.
374 // Use this common arg numbering to pick the right int or fp register.
375 unsigned argNo=0;
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000376 for(Function::const_aiterator I = Meth->abegin(), E = Meth->aend();
377 I != E; ++I, ++argNo) {
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000378 LiveRange *LR = LRI.getLiveRangeForValue(I);
379 assert(LR && "No live range found for method arg");
380
Vikram S. Adve7dc7de52003-07-25 21:12:15 +0000381 unsigned regType = getRegTypeForLR(LR);
382 unsigned regClassIDOfArgReg = BadRegClass; // for chosen reg (unused)
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000383
384 int regNum = (regType == IntRegType)
Vikram S. Adve7dc7de52003-07-25 21:12:15 +0000385 ? regNumForIntArg(/*inCallee*/ true, isVarArgs, argNo, regClassIDOfArgReg)
386 : regNumForFPArg(regType, /*inCallee*/ true, isVarArgs, argNo,
387 regClassIDOfArgReg);
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000388
Vikram S. Adve7dc7de52003-07-25 21:12:15 +0000389 if (regNum != getInvalidRegNum())
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000390 LR->setSuggestedColor(regNum);
391 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000392}
393
Ruchira Sasanka91442282001-09-30 23:16:47 +0000394
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000395//---------------------------------------------------------------------------
396// This method is called after graph coloring to move incoming args to
397// the correct hardware registers if they did not receive the correct
398// (suggested) color through graph coloring.
399//---------------------------------------------------------------------------
Brian Gaekee3d68072004-02-25 18:44:15 +0000400void SparcV9RegInfo::colorMethodArgs(const Function *Meth,
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000401 LiveRangeInfo &LRI,
402 std::vector<MachineInstr*>& InstrnsBefore,
403 std::vector<MachineInstr*>& InstrnsAfter) const {
Ruchira Sasanka91442282001-09-30 23:16:47 +0000404
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000405 // check if this is a varArgs function. needed for choosing regs.
406 bool isVarArgs = isVarArgsFunction(Meth->getType());
Ruchira Sasanka91442282001-09-30 23:16:47 +0000407 MachineInstr *AdMI;
408
Ruchira Sasanka91442282001-09-30 23:16:47 +0000409 // for each argument
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000410 // for each argument. count INT and FP arguments separately.
411 unsigned argNo=0, intArgNo=0, fpArgNo=0;
412 for(Function::const_aiterator I = Meth->abegin(), E = Meth->aend();
413 I != E; ++I, ++argNo) {
Ruchira Sasanka91442282001-09-30 23:16:47 +0000414 // get the LR of arg
Chris Lattner0b12b5f2002-06-25 16:13:21 +0000415 LiveRange *LR = LRI.getLiveRangeForValue(I);
Ruchira Sasanka91442282001-09-30 23:16:47 +0000416 assert( LR && "No live range found for method arg");
417
Vikram S. Adve7dc7de52003-07-25 21:12:15 +0000418 unsigned regType = getRegTypeForLR(LR);
Chris Lattner3c3c82d2003-01-15 21:14:32 +0000419 unsigned RegClassID = LR->getRegClassID();
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000420
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000421 // Find whether this argument is coming in a register (if not, on stack)
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000422 // Also find the correct register the argument must use (UniArgReg)
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000423 //
Ruchira Sasanka91442282001-09-30 23:16:47 +0000424 bool isArgInReg = false;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000425 unsigned UniArgReg = getInvalidRegNum(); // reg that LR MUST be colored with
Chris Lattner92ba2aa2003-01-14 23:05:08 +0000426 unsigned regClassIDOfArgReg = BadRegClass; // reg class of chosen reg
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000427
428 int regNum = (regType == IntRegType)
Vikram S. Adve242a8082002-05-19 15:25:51 +0000429 ? regNumForIntArg(/*inCallee*/ true, isVarArgs,
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000430 argNo, regClassIDOfArgReg)
Vikram S. Adve242a8082002-05-19 15:25:51 +0000431 : regNumForFPArg(regType, /*inCallee*/ true, isVarArgs,
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000432 argNo, regClassIDOfArgReg);
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000433
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000434 if(regNum != getInvalidRegNum()) {
Ruchira Sasanka91442282001-09-30 23:16:47 +0000435 isArgInReg = true;
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000436 UniArgReg = getUnifiedRegNum( regClassIDOfArgReg, regNum);
Ruchira Sasanka91442282001-09-30 23:16:47 +0000437 }
Ruchira Sasanka91442282001-09-30 23:16:47 +0000438
Vikram S. Adveb15f8d42003-07-10 19:42:11 +0000439 if( ! LR->isMarkedForSpill() ) { // if this arg received a register
Ruchira Sasanka91442282001-09-30 23:16:47 +0000440
Ruchira Sasankac74a7202001-10-24 15:56:58 +0000441 unsigned UniLRReg = getUnifiedRegNum( RegClassID, LR->getColor() );
442
443 // if LR received the correct color, nothing to do
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000444 //
Ruchira Sasankac74a7202001-10-24 15:56:58 +0000445 if( UniLRReg == UniArgReg )
446 continue;
447
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000448 // We are here because the LR did not receive the suggested
449 // but LR received another register.
450 // Now we have to copy the %i reg (or stack pos of arg)
451 // to the register the LR was colored with.
Ruchira Sasankac74a7202001-10-24 15:56:58 +0000452
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000453 // if the arg is coming in UniArgReg register, it MUST go into
Ruchira Sasankac74a7202001-10-24 15:56:58 +0000454 // the UniLRReg register
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000455 //
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000456 if( isArgInReg ) {
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000457 if( regClassIDOfArgReg != RegClassID ) {
Vikram S. Adve242a8082002-05-19 15:25:51 +0000458 assert(0 && "This could should work but it is not tested yet");
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000459
460 // It is a variable argument call: the float reg must go in a %o reg.
461 // We have to move an int reg to a float reg via memory.
462 //
463 assert(isVarArgs &&
464 RegClassID == FloatRegClassID &&
465 regClassIDOfArgReg == IntRegClassID &&
466 "This should only be an Int register for an FP argument");
467
Chris Lattner1b849be2002-12-28 20:21:29 +0000468 int TmpOff = MachineFunction::get(Meth).getInfo()->pushTempValue(
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000469 getSpilledRegSize(regType));
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000470 cpReg2MemMI(InstrnsBefore,
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000471 UniArgReg, getFramePointer(), TmpOff, IntRegType);
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000472
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000473 cpMem2RegMI(InstrnsBefore,
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000474 getFramePointer(), TmpOff, UniLRReg, regType);
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000475 }
476 else {
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000477 cpReg2RegMI(InstrnsBefore, UniArgReg, UniLRReg, regType);
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000478 }
479 }
Ruchira Sasanka20c82b12001-10-28 18:15:12 +0000480 else {
Ruchira Sasanka91442282001-09-30 23:16:47 +0000481
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000482 // Now the arg is coming on stack. Since the LR received a register,
Ruchira Sasanka20c82b12001-10-28 18:15:12 +0000483 // we just have to load the arg on stack into that register
Ruchira Sasankad00982a2002-01-07 19:20:28 +0000484 //
Chris Lattner1b849be2002-12-28 20:21:29 +0000485 const TargetFrameInfo& frameInfo = target.getFrameInfo();
Vikram S. Adve1c0fba62001-11-08 04:56:41 +0000486 int offsetFromFP =
Misha Brukmanfce11432002-10-28 00:28:31 +0000487 frameInfo.getIncomingArgOffset(MachineFunction::get(Meth),
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000488 argNo);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000489
490 // float arguments on stack are right justified so adjust the offset!
491 // int arguments are also right justified but they are always loaded as
492 // a full double-word so the offset does not need to be adjusted.
493 if (regType == FPSingleRegType) {
494 unsigned argSize = target.getTargetData().getTypeSize(LR->getType());
495 unsigned slotSize = frameInfo.getSizeOfEachArgOnStack();
496 assert(argSize <= slotSize && "Insufficient slot size!");
497 offsetFromFP += slotSize - argSize;
498 }
499
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000500 cpMem2RegMI(InstrnsBefore,
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000501 getFramePointer(), offsetFromFP, UniLRReg, regType);
Ruchira Sasanka20c82b12001-10-28 18:15:12 +0000502 }
Ruchira Sasanka20c82b12001-10-28 18:15:12 +0000503
504 } // if LR received a color
505
506 else {
507
508 // Now, the LR did not receive a color. But it has a stack offset for
509 // spilling.
Ruchira Sasanka20c82b12001-10-28 18:15:12 +0000510 // So, if the arg is coming in UniArgReg register, we can just move
511 // that on to the stack pos of LR
512
Ruchira Sasanka20c82b12001-10-28 18:15:12 +0000513 if( isArgInReg ) {
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000514
515 if( regClassIDOfArgReg != RegClassID ) {
516 assert(0 &&
517 "FP arguments to a varargs function should be explicitly "
518 "copied to/from int registers by instruction selection!");
519
520 // It must be a float arg for a variable argument call, which
521 // must come in a %o reg. Move the int reg to the stack.
522 //
523 assert(isVarArgs && regClassIDOfArgReg == IntRegClassID &&
524 "This should only be an Int register for an FP argument");
525
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000526 cpReg2MemMI(InstrnsBefore, UniArgReg,
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000527 getFramePointer(), LR->getSpillOffFromFP(), IntRegType);
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000528 }
529 else {
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000530 cpReg2MemMI(InstrnsBefore, UniArgReg,
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000531 getFramePointer(), LR->getSpillOffFromFP(), regType);
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000532 }
Ruchira Sasanka20c82b12001-10-28 18:15:12 +0000533 }
534
535 else {
536
537 // Now the arg is coming on stack. Since the LR did NOT
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000538 // received a register as well, it is allocated a stack position. We
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000539 // can simply change the stack position of the LR. We can do this,
Ruchira Sasanka20c82b12001-10-28 18:15:12 +0000540 // since this method is called before any other method that makes
541 // uses of the stack pos of the LR (e.g., updateMachineInstr)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000542 //
Chris Lattner1b849be2002-12-28 20:21:29 +0000543 const TargetFrameInfo& frameInfo = target.getFrameInfo();
Vikram S. Adve1c0fba62001-11-08 04:56:41 +0000544 int offsetFromFP =
Misha Brukmanfce11432002-10-28 00:28:31 +0000545 frameInfo.getIncomingArgOffset(MachineFunction::get(Meth),
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000546 argNo);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000547
548 // FP arguments on stack are right justified so adjust offset!
549 // int arguments are also right justified but they are always loaded as
550 // a full double-word so the offset does not need to be adjusted.
551 if (regType == FPSingleRegType) {
552 unsigned argSize = target.getTargetData().getTypeSize(LR->getType());
553 unsigned slotSize = frameInfo.getSizeOfEachArgOnStack();
554 assert(argSize <= slotSize && "Insufficient slot size!");
555 offsetFromFP += slotSize - argSize;
556 }
Vikram S. Adve1c0fba62001-11-08 04:56:41 +0000557
558 LR->modifySpillOffFromFP( offsetFromFP );
Ruchira Sasanka20c82b12001-10-28 18:15:12 +0000559 }
Ruchira Sasanka91442282001-09-30 23:16:47 +0000560
561 }
562
Ruchira Sasanka91442282001-09-30 23:16:47 +0000563 } // for each incoming argument
564
565}
566
Chris Lattner20b1ea02001-09-14 03:47:57 +0000567
568
Ruchira Sasanka91442282001-09-30 23:16:47 +0000569//---------------------------------------------------------------------------
570// This method is called before graph coloring to suggest colors to the
571// outgoing call args and the return value of the call.
572//---------------------------------------------------------------------------
Brian Gaekee3d68072004-02-25 18:44:15 +0000573void SparcV9RegInfo::suggestRegs4CallArgs(MachineInstr *CallMI,
Vikram S. Adve87817652002-09-28 16:59:05 +0000574 LiveRangeInfo& LRI) const {
Brian Gaeke12c1d2c2004-02-11 20:47:34 +0000575 assert ( (target.getInstrInfo()).isCall(CallMI->getOpcode()) );
Chris Lattner20b1ea02001-09-14 03:47:57 +0000576
Vikram S. Adve242a8082002-05-19 15:25:51 +0000577 CallArgsDescriptor* argDesc = CallArgsDescriptor::get(CallMI);
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000578
Vikram S. Adve87817652002-09-28 16:59:05 +0000579 suggestReg4CallAddr(CallMI, LRI);
Ruchira Sasankacc3ccac2001-10-15 16:25:28 +0000580
Vikram S. Adve87817652002-09-28 16:59:05 +0000581 // First color the return value of the call instruction, if any.
582 // The return value will be in %o0 if the value is an integer type,
583 // or in %f0 if the value is a float type.
584 //
585 if (const Value *RetVal = argDesc->getReturnValue()) {
586 LiveRange *RetValLR = LRI.getLiveRangeForValue(RetVal);
587 assert(RetValLR && "No LR for return Value of call!");
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000588
Chris Lattner3c3c82d2003-01-15 21:14:32 +0000589 unsigned RegClassID = RetValLR->getRegClassID();
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000590
Ruchira Sasankab3b6f532001-10-21 16:43:41 +0000591 // now suggest a register depending on the register class of ret arg
Ruchira Sasankab3b6f532001-10-21 16:43:41 +0000592 if( RegClassID == IntRegClassID )
Brian Gaekee3d68072004-02-25 18:44:15 +0000593 RetValLR->setSuggestedColor(SparcV9IntRegClass::o0);
Ruchira Sasankab3b6f532001-10-21 16:43:41 +0000594 else if (RegClassID == FloatRegClassID )
Brian Gaekee3d68072004-02-25 18:44:15 +0000595 RetValLR->setSuggestedColor(SparcV9FloatRegClass::f0 );
Ruchira Sasankab3b6f532001-10-21 16:43:41 +0000596 else assert( 0 && "Unknown reg class for return value of call\n");
Chris Lattner20b1ea02001-09-14 03:47:57 +0000597 }
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000598
Ruchira Sasanka91442282001-09-30 23:16:47 +0000599 // Now suggest colors for arguments (operands) of the call instruction.
600 // Colors are suggested only if the arg number is smaller than the
601 // the number of registers allocated for argument passing.
Ruchira Sasankab3b6f532001-10-21 16:43:41 +0000602 // Now, go thru call args - implicit operands of the call MI
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000603
Vikram S. Adve242a8082002-05-19 15:25:51 +0000604 unsigned NumOfCallArgs = argDesc->getNumArgs();
Ruchira Sasanka91442282001-09-30 23:16:47 +0000605
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000606 for(unsigned argNo=0, i=0, intArgNo=0, fpArgNo=0;
607 i < NumOfCallArgs; ++i, ++argNo) {
Ruchira Sasankacc3ccac2001-10-15 16:25:28 +0000608
Vikram S. Adve242a8082002-05-19 15:25:51 +0000609 const Value *CallArg = argDesc->getArgInfo(i).getArgVal();
Ruchira Sasanka91442282001-09-30 23:16:47 +0000610
611 // get the LR of call operand (parameter)
Ruchira Sasankacc3ccac2001-10-15 16:25:28 +0000612 LiveRange *const LR = LRI.getLiveRangeForValue(CallArg);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000613 if (!LR)
614 continue; // no live ranges for constants and labels
Vikram S. Adve87817652002-09-28 16:59:05 +0000615
Vikram S. Adve7dc7de52003-07-25 21:12:15 +0000616 unsigned regType = getRegTypeForLR(LR);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000617 unsigned regClassIDOfArgReg = BadRegClass; // chosen reg class (unused)
Vikram S. Adve87817652002-09-28 16:59:05 +0000618
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000619 // Choose a register for this arg depending on whether it is
Vikram S. Adve242a8082002-05-19 15:25:51 +0000620 // an INT or FP value. Here we ignore whether or not it is a
621 // varargs calls, because FP arguments will be explicitly copied
622 // to an integer Value and handled under (argCopy != NULL) below.
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000623 int regNum = (regType == IntRegType)
Vikram S. Adve242a8082002-05-19 15:25:51 +0000624 ? regNumForIntArg(/*inCallee*/ false, /*isVarArgs*/ false,
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000625 argNo, regClassIDOfArgReg)
Vikram S. Adve242a8082002-05-19 15:25:51 +0000626 : regNumForFPArg(regType, /*inCallee*/ false, /*isVarArgs*/ false,
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000627 argNo, regClassIDOfArgReg);
Ruchira Sasanka91442282001-09-30 23:16:47 +0000628
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000629 // If a register could be allocated, use it.
630 // If not, do NOTHING as this will be colored as a normal value.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000631 if(regNum != getInvalidRegNum())
Vikram S. Adve31f78c42002-04-25 04:42:21 +0000632 LR->setSuggestedColor(regNum);
Ruchira Sasanka91442282001-09-30 23:16:47 +0000633 } // for all call arguments
Chris Lattner20b1ea02001-09-14 03:47:57 +0000634}
635
636
Ruchira Sasanka91442282001-09-30 23:16:47 +0000637//---------------------------------------------------------------------------
Anand Shukla55afc332003-06-01 02:48:23 +0000638// this method is called for an LLVM return instruction to identify which
Ruchira Sasanka91442282001-09-30 23:16:47 +0000639// values will be returned from this method and to suggest colors.
640//---------------------------------------------------------------------------
Brian Gaekee3d68072004-02-25 18:44:15 +0000641void SparcV9RegInfo::suggestReg4RetValue(MachineInstr *RetMI,
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000642 LiveRangeInfo& LRI) const {
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000643
Brian Gaeke12c1d2c2004-02-11 20:47:34 +0000644 assert( (target.getInstrInfo()).isReturn( RetMI->getOpcode() ) );
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000645
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000646 suggestReg4RetAddr(RetMI, LRI);
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000647
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000648 // To find the return value (if any), we can get the LLVM return instr.
649 // from the return address register, which is the first operand
650 Value* tmpI = RetMI->getOperand(0).getVRegValue();
651 ReturnInst* retI=cast<ReturnInst>(cast<TmpInstruction>(tmpI)->getOperand(0));
652 if (const Value *RetVal = retI->getReturnValue())
653 if (LiveRange *const LR = LRI.getLiveRangeForValue(RetVal))
654 LR->setSuggestedColor(LR->getRegClassID() == IntRegClassID
Brian Gaekee3d68072004-02-25 18:44:15 +0000655 ? (unsigned) SparcV9IntRegClass::i0
656 : (unsigned) SparcV9FloatRegClass::f0);
Ruchira Sasanka91442282001-09-30 23:16:47 +0000657}
658
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000659//---------------------------------------------------------------------------
660// Check if a specified register type needs a scratch register to be
661// copied to/from memory. If it does, the reg. type that must be used
662// for scratch registers is returned in scratchRegType.
663//
664// Only the int CC register needs such a scratch register.
665// The FP CC registers can (and must) be copied directly to/from memory.
666//---------------------------------------------------------------------------
667
668bool
Brian Gaekee3d68072004-02-25 18:44:15 +0000669SparcV9RegInfo::regTypeNeedsScratchReg(int RegType,
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000670 int& scratchRegType) const
671{
672 if (RegType == IntCCRegType)
673 {
674 scratchRegType = IntRegType;
675 return true;
676 }
677 return false;
678}
Ruchira Sasanka91442282001-09-30 23:16:47 +0000679
680//---------------------------------------------------------------------------
681// Copy from a register to register. Register number must be the unified
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000682// register number.
Ruchira Sasanka91442282001-09-30 23:16:47 +0000683//---------------------------------------------------------------------------
684
Vikram S. Adve242a8082002-05-19 15:25:51 +0000685void
Brian Gaekee3d68072004-02-25 18:44:15 +0000686SparcV9RegInfo::cpReg2RegMI(std::vector<MachineInstr*>& mvec,
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000687 unsigned SrcReg,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000688 unsigned DestReg,
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000689 int RegType) const {
Misha Brukmand36e30e2003-06-06 09:52:23 +0000690 assert( ((int)SrcReg != getInvalidRegNum()) &&
691 ((int)DestReg != getInvalidRegNum()) &&
Ruchira Sasanka91442282001-09-30 23:16:47 +0000692 "Invalid Register");
693
694 MachineInstr * MI = NULL;
Vikram S. Adve242a8082002-05-19 15:25:51 +0000695
Ruchira Sasanka91442282001-09-30 23:16:47 +0000696 switch( RegType ) {
697
Ruchira Sasanka735d6e32001-10-18 22:38:52 +0000698 case IntCCRegType:
Misha Brukmana98cd452003-05-20 20:32:24 +0000699 if (getRegType(DestReg) == IntRegType) {
700 // copy intCC reg to int reg
Vikram S. Adveb15f8d42003-07-10 19:42:11 +0000701 MI = (BuildMI(V9::RDCCR, 2)
Brian Gaekee3d68072004-02-25 18:44:15 +0000702 .addMReg(getUnifiedRegNum(SparcV9RegInfo::IntCCRegClassID,
703 SparcV9IntCCRegClass::ccr))
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000704 .addMReg(DestReg,MachineOperand::Def));
Misha Brukmana98cd452003-05-20 20:32:24 +0000705 } else {
706 // copy int reg to intCC reg
Misha Brukmana98cd452003-05-20 20:32:24 +0000707 assert(getRegType(SrcReg) == IntRegType
708 && "Can only copy CC reg to/from integer reg");
Vikram S. Adveb15f8d42003-07-10 19:42:11 +0000709 MI = (BuildMI(V9::WRCCRr, 3)
710 .addMReg(SrcReg)
Brian Gaekee3d68072004-02-25 18:44:15 +0000711 .addMReg(SparcV9IntRegClass::g0)
712 .addMReg(getUnifiedRegNum(SparcV9RegInfo::IntCCRegClassID,
713 SparcV9IntCCRegClass::ccr),
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000714 MachineOperand::Def));
Misha Brukmana98cd452003-05-20 20:32:24 +0000715 }
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000716 break;
717
Ruchira Sasanka735d6e32001-10-18 22:38:52 +0000718 case FloatCCRegType:
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000719 assert(0 && "Cannot copy FPCC register to any other register");
Vikram S. Adve242a8082002-05-19 15:25:51 +0000720 break;
721
722 case IntRegType:
Misha Brukmanaf6f38e2003-05-27 22:40:34 +0000723 MI = BuildMI(V9::ADDr, 3).addMReg(SrcReg).addMReg(getZeroRegNum())
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000724 .addMReg(DestReg, MachineOperand::Def);
Ruchira Sasanka91442282001-09-30 23:16:47 +0000725 break;
Vikram S. Adve242a8082002-05-19 15:25:51 +0000726
Ruchira Sasanka91442282001-09-30 23:16:47 +0000727 case FPSingleRegType:
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000728 MI = BuildMI(V9::FMOVS, 2).addMReg(SrcReg)
729 .addMReg(DestReg, MachineOperand::Def);
Ruchira Sasanka91442282001-09-30 23:16:47 +0000730 break;
731
732 case FPDoubleRegType:
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000733 MI = BuildMI(V9::FMOVD, 2).addMReg(SrcReg)
734 .addMReg(DestReg, MachineOperand::Def);
Ruchira Sasanka91442282001-09-30 23:16:47 +0000735 break;
736
737 default:
Vikram S. Adve242a8082002-05-19 15:25:51 +0000738 assert(0 && "Unknown RegType");
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000739 break;
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000740 }
Vikram S. Adve242a8082002-05-19 15:25:51 +0000741
742 if (MI)
743 mvec.push_back(MI);
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000744}
Chris Lattner20b1ea02001-09-14 03:47:57 +0000745
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000746//---------------------------------------------------------------------------
Ruchira Sasanka7dcd6122001-10-24 22:05:34 +0000747// Copy from a register to memory (i.e., Store). Register number must
748// be the unified register number
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000749//---------------------------------------------------------------------------
750
751
Vikram S. Adve242a8082002-05-19 15:25:51 +0000752void
Brian Gaekee3d68072004-02-25 18:44:15 +0000753SparcV9RegInfo::cpReg2MemMI(std::vector<MachineInstr*>& mvec,
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000754 unsigned SrcReg,
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000755 unsigned PtrReg,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000756 int Offset, int RegType,
Chris Lattnerb82d97e2002-07-25 06:08:32 +0000757 int scratchReg) const {
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000758 MachineInstr * MI = NULL;
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000759 int OffReg = -1;
760
761 // If the Offset will not fit in the signed-immediate field, find an
762 // unused register to hold the offset value. This takes advantage of
763 // the fact that all the opcodes used below have the same size immed. field.
764 // Use the register allocator, PRA, to find an unused reg. at this MI.
765 //
766 if (RegType != IntCCRegType) // does not use offset below
767 if (! target.getInstrInfo().constantFitsInImmedField(V9::LDXi, Offset)) {
768#ifdef CAN_FIND_FREE_REGISTER_TRANSPARENTLY
769 RegClass* RC = PRA.getRegClassByID(this->getRegClassIDOfRegType(RegType));
770 OffReg = PRA.getUnusedUniRegAtMI(RC, RegType, MInst, LVSetBef);
771#else
Brian Gaeke641271d2003-11-08 18:12:24 +0000772 // Default to using register g4 for holding large offsets
Brian Gaekee3d68072004-02-25 18:44:15 +0000773 OffReg = getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
774 SparcV9IntRegClass::g4);
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000775#endif
776 assert(OffReg >= 0 && "FIXME: cpReg2MemMI cannot find an unused reg.");
777 mvec.push_back(BuildMI(V9::SETSW, 2).addZImm(Offset).addReg(OffReg));
778 }
779
Chris Lattner00dca912003-01-15 17:47:49 +0000780 switch (RegType) {
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000781 case IntRegType:
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000782 if (target.getInstrInfo().constantFitsInImmedField(V9::STXi, Offset))
783 MI = BuildMI(V9::STXi,3).addMReg(SrcReg).addMReg(PtrReg).addSImm(Offset);
784 else
785 MI = BuildMI(V9::STXr,3).addMReg(SrcReg).addMReg(PtrReg).addMReg(OffReg);
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000786 break;
787
788 case FPSingleRegType:
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000789 if (target.getInstrInfo().constantFitsInImmedField(V9::STFi, Offset))
790 MI = BuildMI(V9::STFi, 3).addMReg(SrcReg).addMReg(PtrReg).addSImm(Offset);
791 else
792 MI = BuildMI(V9::STFr, 3).addMReg(SrcReg).addMReg(PtrReg).addMReg(OffReg);
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000793 break;
794
795 case FPDoubleRegType:
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000796 if (target.getInstrInfo().constantFitsInImmedField(V9::STDFi, Offset))
797 MI = BuildMI(V9::STDFi,3).addMReg(SrcReg).addMReg(PtrReg).addSImm(Offset);
798 else
799 MI = BuildMI(V9::STDFr,3).addMReg(SrcReg).addMReg(PtrReg).addSImm(OffReg);
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000800 break;
801
Ruchira Sasanka3839e6e2001-11-03 19:59:59 +0000802 case IntCCRegType:
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000803 assert(scratchReg >= 0 && "Need scratch reg to store %ccr to memory");
Chris Lattner95685682002-08-12 21:25:05 +0000804 assert(getRegType(scratchReg) ==IntRegType && "Invalid scratch reg");
Vikram S. Adveb15f8d42003-07-10 19:42:11 +0000805 MI = (BuildMI(V9::RDCCR, 2)
Brian Gaekee3d68072004-02-25 18:44:15 +0000806 .addMReg(getUnifiedRegNum(SparcV9RegInfo::IntCCRegClassID,
807 SparcV9IntCCRegClass::ccr))
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000808 .addMReg(scratchReg, MachineOperand::Def));
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000809 mvec.push_back(MI);
810
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000811 cpReg2MemMI(mvec, scratchReg, PtrReg, Offset, IntRegType);
Chris Lattner00dca912003-01-15 17:47:49 +0000812 return;
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000813
Brian Gaeke0eb61032004-04-19 19:12:12 +0000814 case SpecialRegType: // used only for %fsr itself.
Vikram S. Adve78a4f232003-05-27 00:02:22 +0000815 case FloatCCRegType: {
Brian Gaekee3d68072004-02-25 18:44:15 +0000816 unsigned fsrReg = getUnifiedRegNum(SparcV9RegInfo::SpecialRegClassID,
817 SparcV9SpecialRegClass::fsr);
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000818 if (target.getInstrInfo().constantFitsInImmedField(V9::STXFSRi, Offset))
819 MI=BuildMI(V9::STXFSRi,3).addMReg(fsrReg).addMReg(PtrReg).addSImm(Offset);
820 else
821 MI=BuildMI(V9::STXFSRr,3).addMReg(fsrReg).addMReg(PtrReg).addMReg(OffReg);
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000822 break;
Vikram S. Adve78a4f232003-05-27 00:02:22 +0000823 }
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000824 default:
Vikram S. Adve242a8082002-05-19 15:25:51 +0000825 assert(0 && "Unknown RegType in cpReg2MemMI");
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000826 }
Chris Lattner00dca912003-01-15 17:47:49 +0000827 mvec.push_back(MI);
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000828}
829
830
831//---------------------------------------------------------------------------
Ruchira Sasanka7dcd6122001-10-24 22:05:34 +0000832// Copy from memory to a reg (i.e., Load) Register number must be the unified
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000833// register number
834//---------------------------------------------------------------------------
835
836
Vikram S. Adve242a8082002-05-19 15:25:51 +0000837void
Brian Gaekee3d68072004-02-25 18:44:15 +0000838SparcV9RegInfo::cpMem2RegMI(std::vector<MachineInstr*>& mvec,
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000839 unsigned PtrReg,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000840 int Offset,
841 unsigned DestReg,
842 int RegType,
Chris Lattnerb82d97e2002-07-25 06:08:32 +0000843 int scratchReg) const {
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000844 MachineInstr * MI = NULL;
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000845 int OffReg = -1;
846
847 // If the Offset will not fit in the signed-immediate field, find an
848 // unused register to hold the offset value. This takes advantage of
849 // the fact that all the opcodes used below have the same size immed. field.
850 // Use the register allocator, PRA, to find an unused reg. at this MI.
851 //
852 if (RegType != IntCCRegType) // does not use offset below
853 if (! target.getInstrInfo().constantFitsInImmedField(V9::LDXi, Offset)) {
854#ifdef CAN_FIND_FREE_REGISTER_TRANSPARENTLY
855 RegClass* RC = PRA.getRegClassByID(this->getRegClassIDOfRegType(RegType));
856 OffReg = PRA.getUnusedUniRegAtMI(RC, RegType, MInst, LVSetBef);
857#else
Brian Gaeke641271d2003-11-08 18:12:24 +0000858 // Default to using register g4 for holding large offsets
Brian Gaekee3d68072004-02-25 18:44:15 +0000859 OffReg = getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
860 SparcV9IntRegClass::g4);
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000861#endif
862 assert(OffReg >= 0 && "FIXME: cpReg2MemMI cannot find an unused reg.");
863 mvec.push_back(BuildMI(V9::SETSW, 2).addZImm(Offset).addReg(OffReg));
864 }
865
Chris Lattner699683c2002-02-04 05:59:25 +0000866 switch (RegType) {
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000867 case IntRegType:
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000868 if (target.getInstrInfo().constantFitsInImmedField(V9::LDXi, Offset))
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000869 MI = BuildMI(V9::LDXi, 3).addMReg(PtrReg).addSImm(Offset)
870 .addMReg(DestReg, MachineOperand::Def);
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000871 else
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000872 MI = BuildMI(V9::LDXr, 3).addMReg(PtrReg).addMReg(OffReg)
873 .addMReg(DestReg, MachineOperand::Def);
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000874 break;
875
876 case FPSingleRegType:
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000877 if (target.getInstrInfo().constantFitsInImmedField(V9::LDFi, Offset))
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000878 MI = BuildMI(V9::LDFi, 3).addMReg(PtrReg).addSImm(Offset)
879 .addMReg(DestReg, MachineOperand::Def);
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000880 else
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000881 MI = BuildMI(V9::LDFr, 3).addMReg(PtrReg).addMReg(OffReg)
882 .addMReg(DestReg, MachineOperand::Def);
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000883 break;
884
885 case FPDoubleRegType:
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000886 if (target.getInstrInfo().constantFitsInImmedField(V9::LDDFi, Offset))
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000887 MI= BuildMI(V9::LDDFi, 3).addMReg(PtrReg).addSImm(Offset)
888 .addMReg(DestReg, MachineOperand::Def);
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000889 else
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000890 MI= BuildMI(V9::LDDFr, 3).addMReg(PtrReg).addMReg(OffReg)
891 .addMReg(DestReg, MachineOperand::Def);
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000892 break;
893
Ruchira Sasanka3839e6e2001-11-03 19:59:59 +0000894 case IntCCRegType:
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000895 assert(scratchReg >= 0 && "Need scratch reg to load %ccr from memory");
Chris Lattner95685682002-08-12 21:25:05 +0000896 assert(getRegType(scratchReg) ==IntRegType && "Invalid scratch reg");
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000897 cpMem2RegMI(mvec, PtrReg, Offset, scratchReg, IntRegType);
Vikram S. Adveb15f8d42003-07-10 19:42:11 +0000898 MI = (BuildMI(V9::WRCCRr, 3)
899 .addMReg(scratchReg)
Brian Gaekee3d68072004-02-25 18:44:15 +0000900 .addMReg(SparcV9IntRegClass::g0)
901 .addMReg(getUnifiedRegNum(SparcV9RegInfo::IntCCRegClassID,
902 SparcV9IntCCRegClass::ccr), MachineOperand::Def));
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000903 break;
904
Brian Gaeke0eb61032004-04-19 19:12:12 +0000905 case SpecialRegType: // used only for %fsr itself
Vikram S. Adve78a4f232003-05-27 00:02:22 +0000906 case FloatCCRegType: {
Brian Gaekee3d68072004-02-25 18:44:15 +0000907 unsigned fsrRegNum = getUnifiedRegNum(SparcV9RegInfo::SpecialRegClassID,
908 SparcV9SpecialRegClass::fsr);
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000909 if (target.getInstrInfo().constantFitsInImmedField(V9::LDXFSRi, Offset))
910 MI = BuildMI(V9::LDXFSRi, 3).addMReg(PtrReg).addSImm(Offset)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000911 .addMReg(fsrRegNum, MachineOperand::UseAndDef);
Vikram S. Adve83d30c82003-07-29 19:53:21 +0000912 else
913 MI = BuildMI(V9::LDXFSRr, 3).addMReg(PtrReg).addMReg(OffReg)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000914 .addMReg(fsrRegNum, MachineOperand::UseAndDef);
Vikram S. Adve76ee6f72002-07-08 23:23:12 +0000915 break;
Vikram S. Adve78a4f232003-05-27 00:02:22 +0000916 }
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000917 default:
Ruchira Sasankaae4bcd72001-11-10 21:20:43 +0000918 assert(0 && "Unknown RegType in cpMem2RegMI");
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000919 }
Chris Lattner00dca912003-01-15 17:47:49 +0000920 mvec.push_back(MI);
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000921}
922
923
Ruchira Sasanka67a463a2001-11-12 14:45:33 +0000924//---------------------------------------------------------------------------
925// Generate a copy instruction to copy a value to another. Temporarily
926// used by PhiElimination code.
927//---------------------------------------------------------------------------
928
929
Vikram S. Adve242a8082002-05-19 15:25:51 +0000930void
Brian Gaekee3d68072004-02-25 18:44:15 +0000931SparcV9RegInfo::cpValue2Value(Value *Src, Value *Dest,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000932 std::vector<MachineInstr*>& mvec) const {
Vikram S. Adve7dc7de52003-07-25 21:12:15 +0000933 int RegType = getRegTypeForDataType(Src->getType());
Ruchira Sasankaef1b0cb2001-11-03 17:13:27 +0000934 MachineInstr * MI = NULL;
935
Ruchira Sasanka67a463a2001-11-12 14:45:33 +0000936 switch( RegType ) {
Ruchira Sasanka67a463a2001-11-12 14:45:33 +0000937 case IntRegType:
Misha Brukmanaf6f38e2003-05-27 22:40:34 +0000938 MI = BuildMI(V9::ADDr, 3).addReg(Src).addMReg(getZeroRegNum())
Misha Brukmana98cd452003-05-20 20:32:24 +0000939 .addRegDef(Dest);
Ruchira Sasanka67a463a2001-11-12 14:45:33 +0000940 break;
Ruchira Sasanka67a463a2001-11-12 14:45:33 +0000941 case FPSingleRegType:
Misha Brukmana98cd452003-05-20 20:32:24 +0000942 MI = BuildMI(V9::FMOVS, 2).addReg(Src).addRegDef(Dest);
Ruchira Sasanka67a463a2001-11-12 14:45:33 +0000943 break;
Ruchira Sasanka67a463a2001-11-12 14:45:33 +0000944 case FPDoubleRegType:
Misha Brukmana98cd452003-05-20 20:32:24 +0000945 MI = BuildMI(V9::FMOVD, 2).addReg(Src).addRegDef(Dest);
Ruchira Sasanka67a463a2001-11-12 14:45:33 +0000946 break;
Ruchira Sasanka67a463a2001-11-12 14:45:33 +0000947 default:
948 assert(0 && "Unknow RegType in CpValu2Value");
949 }
Ruchira Sasankaef1b0cb2001-11-03 17:13:27 +0000950
Chris Lattner0fa600d2002-10-28 20:10:56 +0000951 mvec.push_back(MI);
Ruchira Sasankaef1b0cb2001-11-03 17:13:27 +0000952}
Ruchira Sasankac4d4b762001-10-16 01:23:19 +0000953
954
955
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000956//---------------------------------------------------------------------------
957// Print the register assigned to a LR
958//---------------------------------------------------------------------------
959
Brian Gaekee3d68072004-02-25 18:44:15 +0000960void SparcV9RegInfo::printReg(const LiveRange *LR) const {
Chris Lattner3c3c82d2003-01-15 21:14:32 +0000961 unsigned RegClassID = LR->getRegClassID();
Chris Lattnerfdba3932003-09-01 19:58:02 +0000962 std::cerr << " Node ";
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000963
Chris Lattner699683c2002-02-04 05:59:25 +0000964 if (!LR->hasColor()) {
Misha Brukmanee563cb2003-05-21 17:59:06 +0000965 std::cerr << " - could not find a color\n";
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000966 return;
967 }
968
969 // if a color is found
970
Misha Brukmanee563cb2003-05-21 17:59:06 +0000971 std::cerr << " colored with color "<< LR->getColor();
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000972
Vikram S. Adve78a4f232003-05-27 00:02:22 +0000973 unsigned uRegName = getUnifiedRegNum(RegClassID, LR->getColor());
974
975 std::cerr << "[";
976 std::cerr<< getUnifiedRegName(uRegName);
977 if (RegClassID == FloatRegClassID && LR->getType() == Type::DoubleTy)
978 std::cerr << "+" << getUnifiedRegName(uRegName+1);
979 std::cerr << "]\n";
Ruchira Sasanka89fb46b2001-09-18 22:52:44 +0000980}
Brian Gaeked0fde302003-11-11 22:41:34 +0000981
982} // End llvm namespace