blob: b6da2e6403dd7caf101a0e40b45626c72d362d76 [file] [log] [blame]
Brian Gaeke94e95d22004-02-25 18:44:15 +00001//===-- SparcV9RegInfo.cpp - SparcV9 Target Register Information --------------===//
John Criswell482202a2003-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 Lattner029af0b2002-02-03 07:52:04 +00009//
Brian Gaeke94e95d22004-02-25 18:44:15 +000010// This file contains implementation of SparcV9 specific helper methods
Chris Lattner029af0b2002-02-03 07:52:04 +000011// used for register allocation.
12//
13//===----------------------------------------------------------------------===//
14
Misha Brukman7ae7f842002-10-28 00:28:31 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattnerd47aac92002-12-28 20:21:29 +000016#include "llvm/CodeGen/MachineFunctionInfo.h"
Vikram S. Advee9327f02002-05-19 15:25:51 +000017#include "llvm/CodeGen/InstrSelection.h"
Chris Lattner1ebaa902003-01-15 17:47:49 +000018#include "llvm/CodeGen/MachineInstrBuilder.h"
Anand Shuklae6c3ee62003-06-01 02:48:23 +000019#include "llvm/CodeGen/MachineCodeForInstruction.h"
Chris Lattner38590312004-02-29 19:12:51 +000020#include "MachineInstrAnnot.h"
Chris Lattnerbb6fa4b2004-01-09 16:17:09 +000021#include "RegAlloc/LiveRangeInfo.h"
22#include "RegAlloc/LiveRange.h"
Misha Brukmanb01a80a2003-12-17 22:04:00 +000023#include "llvm/DerivedTypes.h"
24#include "llvm/Function.h"
Chris Lattner5216cc52002-02-04 05:59:25 +000025#include "llvm/iTerminators.h"
26#include "llvm/iOther.h"
Brian Gaeke94e95d22004-02-25 18:44:15 +000027#include "SparcV9Internals.h"
28#include "SparcV9RegClassInfo.h"
29#include "SparcV9RegInfo.h"
30#include "SparcV9TargetMachine.h"
Chris Lattnerb0ddffa2001-09-14 03:47:57 +000031
Brian Gaeke960707c2003-11-11 22:41:34 +000032namespace llvm {
33
Chris Lattner24c1d5e2003-01-14 23:05:08 +000034enum {
35 BadRegClass = ~0
36};
37
Brian Gaeke94e95d22004-02-25 18:44:15 +000038SparcV9RegInfo::SparcV9RegInfo(const SparcV9TargetMachine &tgt)
Vikram S. Advea83804a2003-05-31 07:32:01 +000039 : TargetRegInfo(tgt), NumOfIntArgRegs(6), NumOfFloatArgRegs(32)
40{
Brian Gaeke94e95d22004-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. Adveaee67012002-07-08 23:23:12 +000046
Brian Gaeke94e95d22004-02-25 18:44:15 +000047 assert(SparcV9FloatRegClass::StartOfNonVolatileRegs == 32 &&
Chris Lattner5216cc52002-02-04 05:59:25 +000048 "32 Float regs are used for float arg passing");
49}
50
51
Vikram S. Advedb1435f2002-03-18 03:12:16 +000052// getZeroRegNum - returns the register that contains always zero.
53// this is the unified register number
Chris Lattner5216cc52002-02-04 05:59:25 +000054//
Brian Gaeke94e95d22004-02-25 18:44:15 +000055unsigned SparcV9RegInfo::getZeroRegNum() const {
56 return getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
57 SparcV9IntRegClass::g0);
Vikram S. Advedb1435f2002-03-18 03:12:16 +000058}
Chris Lattner5216cc52002-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 Gaeke94e95d22004-02-25 18:44:15 +000063unsigned SparcV9RegInfo::getCallAddressReg() const {
64 return getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
65 SparcV9IntRegClass::o7);
Chris Lattner5216cc52002-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 Gaeke94e95d22004-02-25 18:44:15 +000072unsigned SparcV9RegInfo::getReturnAddressReg() const {
73 return getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
74 SparcV9IntRegClass::i7);
Chris Lattner56e91662002-08-12 21:25:05 +000075}
76
77// Register get name implementations...
78
Brian Gaeke94e95d22004-02-25 18:44:15 +000079// Int register names in same order as enum in class SparcV9IntRegClass
Chris Lattner56e91662002-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 Gaeke94e95d22004-02-25 18:44:15 +000089const char * const SparcV9IntRegClass::getRegName(unsigned reg) const {
Chris Lattner56e91662002-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 Gaeke94e95d22004-02-25 18:44:15 +0000104const char * const SparcV9FloatRegClass::getRegName(unsigned reg) const {
Chris Lattner56e91662002-08-12 21:25:05 +0000105 assert (reg < NumOfAllRegs);
106 return FloatRegNames[reg];
107}
108
Chris Lattner56e91662002-08-12 21:25:05 +0000109static const char * const IntCCRegNames[] = {
Vikram S. Adved09c4c32003-07-06 20:13:59 +0000110 "xcc", "icc", "ccr"
Chris Lattner56e91662002-08-12 21:25:05 +0000111};
112
Brian Gaeke94e95d22004-02-25 18:44:15 +0000113const char * const SparcV9IntCCRegClass::getRegName(unsigned reg) const {
Vikram S. Adved09c4c32003-07-06 20:13:59 +0000114 assert(reg < 3);
Chris Lattner56e91662002-08-12 21:25:05 +0000115 return IntCCRegNames[reg];
116}
117
118static const char * const FloatCCRegNames[] = {
119 "fcc0", "fcc1", "fcc2", "fcc3"
120};
121
Brian Gaeke94e95d22004-02-25 18:44:15 +0000122const char * const SparcV9FloatCCRegClass::getRegName(unsigned reg) const {
Brian Gaeke2fd25362004-04-19 18:53:43 +0000123 assert (reg < 4);
Chris Lattner56e91662002-08-12 21:25:05 +0000124 return FloatCCRegNames[reg];
Chris Lattner5216cc52002-02-04 05:59:25 +0000125}
126
Vikram S. Adve8adb9942003-05-27 00:02:22 +0000127static const char * const SpecialRegNames[] = {
128 "fsr"
129};
130
Brian Gaeke94e95d22004-02-25 18:44:15 +0000131const char * const SparcV9SpecialRegClass::getRegName(unsigned reg) const {
Vikram S. Adve8adb9942003-05-27 00:02:22 +0000132 assert (reg < 1);
133 return SpecialRegNames[reg];
Chris Lattner5216cc52002-02-04 05:59:25 +0000134}
135
Vikram S. Advedb1435f2002-03-18 03:12:16 +0000136// Get unified reg number for frame pointer
Brian Gaeke94e95d22004-02-25 18:44:15 +0000137unsigned SparcV9RegInfo::getFramePointer() const {
138 return getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
139 SparcV9IntRegClass::i6);
Chris Lattner5216cc52002-02-04 05:59:25 +0000140}
141
Vikram S. Advedb1435f2002-03-18 03:12:16 +0000142// Get unified reg number for stack pointer
Brian Gaeke94e95d22004-02-25 18:44:15 +0000143unsigned SparcV9RegInfo::getStackPointer() const {
144 return getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
145 SparcV9IntRegClass::o6);
Chris Lattner5216cc52002-02-04 05:59:25 +0000146}
147
148
Vikram S. Advea6d94c92002-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. Advea83804a2003-05-31 07:32:01 +0000169// Get the register number for the specified argument #argNo,
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000170//
171// Return value:
Vikram S. Advea83804a2003-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. Advea6d94c92002-04-25 04:42:21 +0000175//
Vikram S. Advea83804a2003-05-31 07:32:01 +0000176int
Brian Gaeke94e95d22004-02-25 18:44:15 +0000177SparcV9RegInfo::regNumForIntArg(bool inCallee, bool isVarArgsCall,
Vikram S. Advea83804a2003-05-31 07:32:01 +0000178 unsigned argNo, unsigned& regClassId) const
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000179{
Vikram S. Advee9327f02002-05-19 15:25:51 +0000180 regClassId = IntRegClassID;
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000181 if (argNo >= NumOfIntArgRegs)
Vikram S. Advea83804a2003-05-31 07:32:01 +0000182 return getInvalidRegNum();
Vikram S. Advee9327f02002-05-19 15:25:51 +0000183 else
Brian Gaeke94e95d22004-02-25 18:44:15 +0000184 return argNo + (inCallee? SparcV9IntRegClass::i0 : SparcV9IntRegClass::o0);
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000185}
186
Vikram S. Advea83804a2003-05-31 07:32:01 +0000187// Get the register number for the specified FP argument #argNo,
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000188// Use INT regs for FP args if this is a varargs call.
189//
190// Return value:
Vikram S. Advea83804a2003-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. Advea6d94c92002-04-25 04:42:21 +0000194//
Vikram S. Advea83804a2003-05-31 07:32:01 +0000195int
Brian Gaeke94e95d22004-02-25 18:44:15 +0000196SparcV9RegInfo::regNumForFPArg(unsigned regType,
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000197 bool inCallee, bool isVarArgsCall,
Vikram S. Advea83804a2003-05-31 07:32:01 +0000198 unsigned argNo, unsigned& regClassId) const
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000199{
Vikram S. Advee9327f02002-05-19 15:25:51 +0000200 if (isVarArgsCall)
Vikram S. Advea83804a2003-05-31 07:32:01 +0000201 return regNumForIntArg(inCallee, isVarArgsCall, argNo, regClassId);
Vikram S. Advee9327f02002-05-19 15:25:51 +0000202 else
203 {
204 regClassId = FloatRegClassID;
205 if (regType == FPSingleRegType)
206 return (argNo*2+1 >= NumOfFloatArgRegs)?
Brian Gaeke94e95d22004-02-25 18:44:15 +0000207 getInvalidRegNum() : SparcV9FloatRegClass::f0 + (argNo * 2 + 1);
Vikram S. Advee9327f02002-05-19 15:25:51 +0000208 else if (regType == FPDoubleRegType)
209 return (argNo*2 >= NumOfFloatArgRegs)?
Brian Gaeke94e95d22004-02-25 18:44:15 +0000210 getInvalidRegNum() : SparcV9FloatRegClass::f0 + (argNo * 2);
Vikram S. Advee9327f02002-05-19 15:25:51 +0000211 else
212 assert(0 && "Illegal FP register type");
Chris Lattner3091e112002-07-25 06:08:32 +0000213 return 0;
Vikram S. Advee9327f02002-05-19 15:25:51 +0000214 }
Vikram S. Adve02662bd2002-03-31 19:04:50 +0000215}
216
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000217
218//---------------------------------------------------------------------------
219// Finds the return address of a call sparc specific call instruction
220//---------------------------------------------------------------------------
Ruchira Sasanka24729a32001-10-21 16:43:41 +0000221
Brian Gaeke94e95d22004-02-25 18:44:15 +0000222// The following 4 methods are used to find the RegType (SparcV9Internals.h)
Vikram S. Advee9327f02002-05-19 15:25:51 +0000223// of a LiveRange, a Value, and for a given register unified reg number.
Chris Lattner5216cc52002-02-04 05:59:25 +0000224//
Brian Gaeke94e95d22004-02-25 18:44:15 +0000225int SparcV9RegInfo::getRegTypeForClassAndType(unsigned regClassID,
Vikram S. Adve8adb9942003-05-27 00:02:22 +0000226 const Type* type) const
227{
Vikram S. Advee9327f02002-05-19 15:25:51 +0000228 switch (regClassID) {
Vikram S. Adve8adb9942003-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. Advee9327f02002-05-19 15:25:51 +0000237 default: assert( 0 && "Unknown reg class ID"); return 0;
Chris Lattner5216cc52002-02-04 05:59:25 +0000238 }
239}
240
Brian Gaeke94e95d22004-02-25 18:44:15 +0000241int SparcV9RegInfo::getRegTypeForDataType(const Type* type) const
Vikram S. Adve8adb9942003-05-27 00:02:22 +0000242{
243 return getRegTypeForClassAndType(getRegClassIDOfType(type), type);
Vikram S. Advee9327f02002-05-19 15:25:51 +0000244}
245
Brian Gaeke94e95d22004-02-25 18:44:15 +0000246int SparcV9RegInfo::getRegTypeForLR(const LiveRange *LR) const
Vikram S. Adve8adb9942003-05-27 00:02:22 +0000247{
248 return getRegTypeForClassAndType(LR->getRegClassID(), LR->getType());
249}
Chris Lattner5216cc52002-02-04 05:59:25 +0000250
Brian Gaeke94e95d22004-02-25 18:44:15 +0000251int SparcV9RegInfo::getRegType(int unifiedRegNum) const
Vikram S. Adve8adb9942003-05-27 00:02:22 +0000252{
Vikram S. Adveaee67012002-07-08 23:23:12 +0000253 if (unifiedRegNum < 32)
Chris Lattner5216cc52002-02-04 05:59:25 +0000254 return IntRegType;
Vikram S. Adveaee67012002-07-08 23:23:12 +0000255 else if (unifiedRegNum < (32 + 32))
Chris Lattner5216cc52002-02-04 05:59:25 +0000256 return FPSingleRegType;
Vikram S. Adveaee67012002-07-08 23:23:12 +0000257 else if (unifiedRegNum < (64 + 32))
Chris Lattner5216cc52002-02-04 05:59:25 +0000258 return FPDoubleRegType;
Vikram S. Adveaee67012002-07-08 23:23:12 +0000259 else if (unifiedRegNum < (64+32+4))
Chris Lattner5216cc52002-02-04 05:59:25 +0000260 return FloatCCRegType;
Vikram S. Adveaee67012002-07-08 23:23:12 +0000261 else if (unifiedRegNum < (64+32+4+2))
Chris Lattner5216cc52002-02-04 05:59:25 +0000262 return IntCCRegType;
263 else
Vikram S. Adveaee67012002-07-08 23:23:12 +0000264 assert(0 && "Invalid unified register number in getRegType");
Chris Lattner5536c9c2002-02-24 23:02:40 +0000265 return 0;
Chris Lattner5216cc52002-02-04 05:59:25 +0000266}
267
268
Vikram S. Adveaee67012002-07-08 23:23:12 +0000269// To find the register class used for a specified Type
270//
Brian Gaeke94e95d22004-02-25 18:44:15 +0000271unsigned SparcV9RegInfo::getRegClassIDOfType(const Type *type,
Chris Lattner3091e112002-07-25 06:08:32 +0000272 bool isCCReg) const {
Vikram S. Adveaee67012002-07-08 23:23:12 +0000273 Type::PrimitiveID ty = type->getPrimitiveID();
274 unsigned res;
275
276 // FIXME: Comparing types like this isn't very safe...
277 if ((ty && ty <= Type::LongTyID) || (ty == Type::LabelTyID) ||
278 (ty == Type::FunctionTyID) || (ty == Type::PointerTyID) )
279 res = IntRegClassID; // sparc int reg (ty=0: void)
280 else if (ty <= Type::DoubleTyID)
281 res = FloatRegClassID; // sparc float reg class
282 else {
283 //std::cerr << "TypeID: " << ty << "\n";
284 assert(0 && "Cannot resolve register class for type");
285 return 0;
286 }
287
Chris Lattnerf9fd5912003-01-15 21:14:32 +0000288 if (isCCReg)
289 return res + 2; // corresponding condition code register
Vikram S. Adveaee67012002-07-08 23:23:12 +0000290 else
291 return res;
292}
293
Brian Gaeke94e95d22004-02-25 18:44:15 +0000294unsigned SparcV9RegInfo::getRegClassIDOfRegType(int regType) const {
Vikram S. Adveaee67012002-07-08 23:23:12 +0000295 switch(regType) {
296 case IntRegType: return IntRegClassID;
297 case FPSingleRegType:
298 case FPDoubleRegType: return FloatRegClassID;
299 case IntCCRegType: return IntCCRegClassID;
300 case FloatCCRegType: return FloatCCRegClassID;
301 default:
302 assert(0 && "Invalid register type in getRegClassIDOfRegType");
303 return 0;
304 }
305}
306
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000307//---------------------------------------------------------------------------
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000308// Suggests a register for the ret address in the RET machine instruction.
309// We always suggest %i7 by convention.
310//---------------------------------------------------------------------------
Brian Gaeke94e95d22004-02-25 18:44:15 +0000311void SparcV9RegInfo::suggestReg4RetAddr(MachineInstr *RetMI,
Ruchira Sasanka086bf0f2001-10-15 16:25:28 +0000312 LiveRangeInfo& LRI) const {
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000313
Brian Gaekeb22186a2004-02-11 20:47:34 +0000314 assert(target.getInstrInfo().isReturn(RetMI->getOpcode()));
Vikram S. Adve84982772001-10-22 13:41:12 +0000315
Vikram S. Adveaee67012002-07-08 23:23:12 +0000316 // return address is always mapped to i7 so set it immediately
317 RetMI->SetRegForOperand(0, getUnifiedRegNum(IntRegClassID,
Brian Gaeke94e95d22004-02-25 18:44:15 +0000318 SparcV9IntRegClass::i7));
Vikram S. Adve84982772001-10-22 13:41:12 +0000319
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000320 // Possible Optimization:
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000321 // Instead of setting the color, we can suggest one. In that case,
Ruchira Sasanka086bf0f2001-10-15 16:25:28 +0000322 // we have to test later whether it received the suggested color.
323 // In that case, a LR has to be created at the start of method.
324 // It has to be done as follows (remove the setRegVal above):
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000325
Vikram S. Adveaee67012002-07-08 23:23:12 +0000326 // MachineOperand & MO = RetMI->getOperand(0);
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000327 // const Value *RetAddrVal = MO.getVRegValue();
328 // assert( RetAddrVal && "LR for ret address must be created at start");
329 // LiveRange * RetAddrLR = LRI.getLiveRangeForValue( RetAddrVal);
330 // RetAddrLR->setSuggestedColor(getUnifiedRegNum( IntRegClassID,
Brian Gaeke94e95d22004-02-25 18:44:15 +0000331 // SparcV9IntRegOrdr::i7) );
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000332}
333
334
335//---------------------------------------------------------------------------
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000336// Suggests a register for the ret address in the JMPL/CALL machine instr.
Brian Gaeke94e95d22004-02-25 18:44:15 +0000337// SparcV9 ABI dictates that %o7 be used for this purpose.
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000338//---------------------------------------------------------------------------
Vikram S. Adve6d1036d2002-09-28 16:59:05 +0000339void
Brian Gaeke94e95d22004-02-25 18:44:15 +0000340SparcV9RegInfo::suggestReg4CallAddr(MachineInstr * CallMI,
Vikram S. Adve6d1036d2002-09-28 16:59:05 +0000341 LiveRangeInfo& LRI) const
342{
Vikram S. Advee9327f02002-05-19 15:25:51 +0000343 CallArgsDescriptor* argDesc = CallArgsDescriptor::get(CallMI);
344 const Value *RetAddrVal = argDesc->getReturnAddrReg();
Vikram S. Adve6d1036d2002-09-28 16:59:05 +0000345 assert(RetAddrVal && "INTERNAL ERROR: Return address value is required");
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000346
Vikram S. Adve6d1036d2002-09-28 16:59:05 +0000347 // A LR must already exist for the return address.
348 LiveRange *RetAddrLR = LRI.getLiveRangeForValue(RetAddrVal);
349 assert(RetAddrLR && "INTERNAL ERROR: No LR for return address of call!");
350
Chris Lattnerf9fd5912003-01-15 21:14:32 +0000351 unsigned RegClassID = RetAddrLR->getRegClassID();
Brian Gaeke94e95d22004-02-25 18:44:15 +0000352 RetAddrLR->setColor(getUnifiedRegNum(IntRegClassID, SparcV9IntRegClass::o7));
Vikram S. Adve6d1036d2002-09-28 16:59:05 +0000353}
Ruchira Sasanka086bf0f2001-10-15 16:25:28 +0000354
355
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000356
357//---------------------------------------------------------------------------
358// This method will suggest colors to incoming args to a method.
Brian Gaeke94e95d22004-02-25 18:44:15 +0000359// According to the SparcV9 ABI, the first 6 incoming args are in
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000360// %i0 - %i5 (if they are integer) OR in %f0 - %f31 (if they are float).
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000361// If the arg is passed on stack due to the lack of regs, NOTHING will be
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000362// done - it will be colored (or spilled) as a normal live range.
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000363//---------------------------------------------------------------------------
Brian Gaeke94e95d22004-02-25 18:44:15 +0000364void SparcV9RegInfo::suggestRegs4MethodArgs(const Function *Meth,
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000365 LiveRangeInfo& LRI) const
Chris Lattnerb0ddffa2001-09-14 03:47:57 +0000366{
Vikram S. Adve536b1922003-07-25 21:12:15 +0000367 // Check if this is a varArgs function. needed for choosing regs.
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000368 bool isVarArgs = isVarArgsFunction(Meth->getType());
369
Vikram S. Adve536b1922003-07-25 21:12:15 +0000370 // Count the arguments, *ignoring* whether they are int or FP args.
371 // Use this common arg numbering to pick the right int or fp register.
372 unsigned argNo=0;
Chris Lattner7076ff22002-06-25 16:13:21 +0000373 for(Function::const_aiterator I = Meth->abegin(), E = Meth->aend();
374 I != E; ++I, ++argNo) {
Chris Lattner7076ff22002-06-25 16:13:21 +0000375 LiveRange *LR = LRI.getLiveRangeForValue(I);
376 assert(LR && "No live range found for method arg");
377
Vikram S. Adve536b1922003-07-25 21:12:15 +0000378 unsigned regType = getRegTypeForLR(LR);
379 unsigned regClassIDOfArgReg = BadRegClass; // for chosen reg (unused)
Chris Lattner7076ff22002-06-25 16:13:21 +0000380
381 int regNum = (regType == IntRegType)
Vikram S. Adve536b1922003-07-25 21:12:15 +0000382 ? regNumForIntArg(/*inCallee*/ true, isVarArgs, argNo, regClassIDOfArgReg)
383 : regNumForFPArg(regType, /*inCallee*/ true, isVarArgs, argNo,
384 regClassIDOfArgReg);
Chris Lattner7076ff22002-06-25 16:13:21 +0000385
Vikram S. Adve536b1922003-07-25 21:12:15 +0000386 if (regNum != getInvalidRegNum())
Chris Lattner7076ff22002-06-25 16:13:21 +0000387 LR->setSuggestedColor(regNum);
388 }
Chris Lattnerb0ddffa2001-09-14 03:47:57 +0000389}
390
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000391
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000392//---------------------------------------------------------------------------
393// This method is called after graph coloring to move incoming args to
394// the correct hardware registers if they did not receive the correct
395// (suggested) color through graph coloring.
396//---------------------------------------------------------------------------
Brian Gaeke94e95d22004-02-25 18:44:15 +0000397void SparcV9RegInfo::colorMethodArgs(const Function *Meth,
Vikram S. Adve23535842003-07-29 19:53:21 +0000398 LiveRangeInfo &LRI,
399 std::vector<MachineInstr*>& InstrnsBefore,
400 std::vector<MachineInstr*>& InstrnsAfter) const {
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000401
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000402 // check if this is a varArgs function. needed for choosing regs.
403 bool isVarArgs = isVarArgsFunction(Meth->getType());
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000404 MachineInstr *AdMI;
405
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000406 // for each argument
Chris Lattner7076ff22002-06-25 16:13:21 +0000407 // for each argument. count INT and FP arguments separately.
408 unsigned argNo=0, intArgNo=0, fpArgNo=0;
409 for(Function::const_aiterator I = Meth->abegin(), E = Meth->aend();
410 I != E; ++I, ++argNo) {
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000411 // get the LR of arg
Chris Lattner7076ff22002-06-25 16:13:21 +0000412 LiveRange *LR = LRI.getLiveRangeForValue(I);
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000413 assert( LR && "No live range found for method arg");
414
Vikram S. Adve536b1922003-07-25 21:12:15 +0000415 unsigned regType = getRegTypeForLR(LR);
Chris Lattnerf9fd5912003-01-15 21:14:32 +0000416 unsigned RegClassID = LR->getRegClassID();
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000417
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000418 // Find whether this argument is coming in a register (if not, on stack)
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000419 // Also find the correct register the argument must use (UniArgReg)
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000420 //
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000421 bool isArgInReg = false;
Vikram S. Advea83804a2003-05-31 07:32:01 +0000422 unsigned UniArgReg = getInvalidRegNum(); // reg that LR MUST be colored with
Chris Lattner24c1d5e2003-01-14 23:05:08 +0000423 unsigned regClassIDOfArgReg = BadRegClass; // reg class of chosen reg
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000424
425 int regNum = (regType == IntRegType)
Vikram S. Advee9327f02002-05-19 15:25:51 +0000426 ? regNumForIntArg(/*inCallee*/ true, isVarArgs,
Vikram S. Advea83804a2003-05-31 07:32:01 +0000427 argNo, regClassIDOfArgReg)
Vikram S. Advee9327f02002-05-19 15:25:51 +0000428 : regNumForFPArg(regType, /*inCallee*/ true, isVarArgs,
Vikram S. Advea83804a2003-05-31 07:32:01 +0000429 argNo, regClassIDOfArgReg);
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000430
Vikram S. Advea83804a2003-05-31 07:32:01 +0000431 if(regNum != getInvalidRegNum()) {
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000432 isArgInReg = true;
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000433 UniArgReg = getUnifiedRegNum( regClassIDOfArgReg, regNum);
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000434 }
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000435
Vikram S. Adve65280672003-07-10 19:42:11 +0000436 if( ! LR->isMarkedForSpill() ) { // if this arg received a register
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000437
Ruchira Sasanka36bcd792001-10-24 15:56:58 +0000438 unsigned UniLRReg = getUnifiedRegNum( RegClassID, LR->getColor() );
439
440 // if LR received the correct color, nothing to do
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000441 //
Ruchira Sasanka36bcd792001-10-24 15:56:58 +0000442 if( UniLRReg == UniArgReg )
443 continue;
444
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000445 // We are here because the LR did not receive the suggested
446 // but LR received another register.
447 // Now we have to copy the %i reg (or stack pos of arg)
448 // to the register the LR was colored with.
Ruchira Sasanka36bcd792001-10-24 15:56:58 +0000449
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000450 // if the arg is coming in UniArgReg register, it MUST go into
Ruchira Sasanka36bcd792001-10-24 15:56:58 +0000451 // the UniLRReg register
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000452 //
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000453 if( isArgInReg ) {
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000454 if( regClassIDOfArgReg != RegClassID ) {
Vikram S. Advee9327f02002-05-19 15:25:51 +0000455 assert(0 && "This could should work but it is not tested yet");
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000456
457 // It is a variable argument call: the float reg must go in a %o reg.
458 // We have to move an int reg to a float reg via memory.
459 //
460 assert(isVarArgs &&
461 RegClassID == FloatRegClassID &&
462 regClassIDOfArgReg == IntRegClassID &&
463 "This should only be an Int register for an FP argument");
464
Chris Lattnerd47aac92002-12-28 20:21:29 +0000465 int TmpOff = MachineFunction::get(Meth).getInfo()->pushTempValue(
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000466 getSpilledRegSize(regType));
Vikram S. Adve23535842003-07-29 19:53:21 +0000467 cpReg2MemMI(InstrnsBefore,
Vikram S. Adveaee67012002-07-08 23:23:12 +0000468 UniArgReg, getFramePointer(), TmpOff, IntRegType);
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000469
Vikram S. Adve23535842003-07-29 19:53:21 +0000470 cpMem2RegMI(InstrnsBefore,
Vikram S. Adveaee67012002-07-08 23:23:12 +0000471 getFramePointer(), TmpOff, UniLRReg, regType);
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000472 }
473 else {
Vikram S. Adve23535842003-07-29 19:53:21 +0000474 cpReg2RegMI(InstrnsBefore, UniArgReg, UniLRReg, regType);
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000475 }
476 }
Ruchira Sasanka9c38dbc2001-10-28 18:15:12 +0000477 else {
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000478
Misha Brukman8b2bd4e2003-10-10 17:57:28 +0000479 // Now the arg is coming on stack. Since the LR received a register,
Ruchira Sasanka9c38dbc2001-10-28 18:15:12 +0000480 // we just have to load the arg on stack into that register
Ruchira Sasanka4cfbfd52002-01-07 19:20:28 +0000481 //
Chris Lattnerd47aac92002-12-28 20:21:29 +0000482 const TargetFrameInfo& frameInfo = target.getFrameInfo();
Vikram S. Adve7a1524f2001-11-08 04:56:41 +0000483 int offsetFromFP =
Misha Brukman7ae7f842002-10-28 00:28:31 +0000484 frameInfo.getIncomingArgOffset(MachineFunction::get(Meth),
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000485 argNo);
Vikram S. Advea83804a2003-05-31 07:32:01 +0000486
487 // float arguments on stack are right justified so adjust the offset!
488 // int arguments are also right justified but they are always loaded as
489 // a full double-word so the offset does not need to be adjusted.
490 if (regType == FPSingleRegType) {
491 unsigned argSize = target.getTargetData().getTypeSize(LR->getType());
492 unsigned slotSize = frameInfo.getSizeOfEachArgOnStack();
493 assert(argSize <= slotSize && "Insufficient slot size!");
494 offsetFromFP += slotSize - argSize;
495 }
496
Vikram S. Adve23535842003-07-29 19:53:21 +0000497 cpMem2RegMI(InstrnsBefore,
Vikram S. Adveaee67012002-07-08 23:23:12 +0000498 getFramePointer(), offsetFromFP, UniLRReg, regType);
Ruchira Sasanka9c38dbc2001-10-28 18:15:12 +0000499 }
Ruchira Sasanka9c38dbc2001-10-28 18:15:12 +0000500
501 } // if LR received a color
502
503 else {
504
505 // Now, the LR did not receive a color. But it has a stack offset for
506 // spilling.
Ruchira Sasanka9c38dbc2001-10-28 18:15:12 +0000507 // So, if the arg is coming in UniArgReg register, we can just move
508 // that on to the stack pos of LR
509
Ruchira Sasanka9c38dbc2001-10-28 18:15:12 +0000510 if( isArgInReg ) {
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000511
512 if( regClassIDOfArgReg != RegClassID ) {
513 assert(0 &&
514 "FP arguments to a varargs function should be explicitly "
515 "copied to/from int registers by instruction selection!");
516
517 // It must be a float arg for a variable argument call, which
518 // must come in a %o reg. Move the int reg to the stack.
519 //
520 assert(isVarArgs && regClassIDOfArgReg == IntRegClassID &&
521 "This should only be an Int register for an FP argument");
522
Vikram S. Adve23535842003-07-29 19:53:21 +0000523 cpReg2MemMI(InstrnsBefore, UniArgReg,
Vikram S. Adveaee67012002-07-08 23:23:12 +0000524 getFramePointer(), LR->getSpillOffFromFP(), IntRegType);
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000525 }
526 else {
Vikram S. Adve23535842003-07-29 19:53:21 +0000527 cpReg2MemMI(InstrnsBefore, UniArgReg,
Vikram S. Adveaee67012002-07-08 23:23:12 +0000528 getFramePointer(), LR->getSpillOffFromFP(), regType);
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000529 }
Ruchira Sasanka9c38dbc2001-10-28 18:15:12 +0000530 }
531
532 else {
533
534 // Now the arg is coming on stack. Since the LR did NOT
Misha Brukman8b2bd4e2003-10-10 17:57:28 +0000535 // received a register as well, it is allocated a stack position. We
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000536 // can simply change the stack position of the LR. We can do this,
Ruchira Sasanka9c38dbc2001-10-28 18:15:12 +0000537 // since this method is called before any other method that makes
538 // uses of the stack pos of the LR (e.g., updateMachineInstr)
Vikram S. Advea83804a2003-05-31 07:32:01 +0000539 //
Chris Lattnerd47aac92002-12-28 20:21:29 +0000540 const TargetFrameInfo& frameInfo = target.getFrameInfo();
Vikram S. Adve7a1524f2001-11-08 04:56:41 +0000541 int offsetFromFP =
Misha Brukman7ae7f842002-10-28 00:28:31 +0000542 frameInfo.getIncomingArgOffset(MachineFunction::get(Meth),
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000543 argNo);
Vikram S. Advea83804a2003-05-31 07:32:01 +0000544
545 // FP arguments on stack are right justified so adjust offset!
546 // int arguments are also right justified but they are always loaded as
547 // a full double-word so the offset does not need to be adjusted.
548 if (regType == FPSingleRegType) {
549 unsigned argSize = target.getTargetData().getTypeSize(LR->getType());
550 unsigned slotSize = frameInfo.getSizeOfEachArgOnStack();
551 assert(argSize <= slotSize && "Insufficient slot size!");
552 offsetFromFP += slotSize - argSize;
553 }
Vikram S. Adve7a1524f2001-11-08 04:56:41 +0000554
555 LR->modifySpillOffFromFP( offsetFromFP );
Ruchira Sasanka9c38dbc2001-10-28 18:15:12 +0000556 }
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000557
558 }
559
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000560 } // for each incoming argument
561
562}
563
Chris Lattnerb0ddffa2001-09-14 03:47:57 +0000564
565
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000566//---------------------------------------------------------------------------
567// This method is called before graph coloring to suggest colors to the
568// outgoing call args and the return value of the call.
569//---------------------------------------------------------------------------
Brian Gaeke94e95d22004-02-25 18:44:15 +0000570void SparcV9RegInfo::suggestRegs4CallArgs(MachineInstr *CallMI,
Vikram S. Adve6d1036d2002-09-28 16:59:05 +0000571 LiveRangeInfo& LRI) const {
Brian Gaekeb22186a2004-02-11 20:47:34 +0000572 assert ( (target.getInstrInfo()).isCall(CallMI->getOpcode()) );
Chris Lattnerb0ddffa2001-09-14 03:47:57 +0000573
Vikram S. Advee9327f02002-05-19 15:25:51 +0000574 CallArgsDescriptor* argDesc = CallArgsDescriptor::get(CallMI);
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000575
Vikram S. Adve6d1036d2002-09-28 16:59:05 +0000576 suggestReg4CallAddr(CallMI, LRI);
Ruchira Sasanka086bf0f2001-10-15 16:25:28 +0000577
Vikram S. Adve6d1036d2002-09-28 16:59:05 +0000578 // First color the return value of the call instruction, if any.
579 // The return value will be in %o0 if the value is an integer type,
580 // or in %f0 if the value is a float type.
581 //
582 if (const Value *RetVal = argDesc->getReturnValue()) {
583 LiveRange *RetValLR = LRI.getLiveRangeForValue(RetVal);
584 assert(RetValLR && "No LR for return Value of call!");
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000585
Chris Lattnerf9fd5912003-01-15 21:14:32 +0000586 unsigned RegClassID = RetValLR->getRegClassID();
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000587
Ruchira Sasanka24729a32001-10-21 16:43:41 +0000588 // now suggest a register depending on the register class of ret arg
Ruchira Sasanka24729a32001-10-21 16:43:41 +0000589 if( RegClassID == IntRegClassID )
Brian Gaeke94e95d22004-02-25 18:44:15 +0000590 RetValLR->setSuggestedColor(SparcV9IntRegClass::o0);
Ruchira Sasanka24729a32001-10-21 16:43:41 +0000591 else if (RegClassID == FloatRegClassID )
Brian Gaeke94e95d22004-02-25 18:44:15 +0000592 RetValLR->setSuggestedColor(SparcV9FloatRegClass::f0 );
Ruchira Sasanka24729a32001-10-21 16:43:41 +0000593 else assert( 0 && "Unknown reg class for return value of call\n");
Chris Lattnerb0ddffa2001-09-14 03:47:57 +0000594 }
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000595
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000596 // Now suggest colors for arguments (operands) of the call instruction.
597 // Colors are suggested only if the arg number is smaller than the
598 // the number of registers allocated for argument passing.
Ruchira Sasanka24729a32001-10-21 16:43:41 +0000599 // Now, go thru call args - implicit operands of the call MI
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000600
Vikram S. Advee9327f02002-05-19 15:25:51 +0000601 unsigned NumOfCallArgs = argDesc->getNumArgs();
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000602
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000603 for(unsigned argNo=0, i=0, intArgNo=0, fpArgNo=0;
604 i < NumOfCallArgs; ++i, ++argNo) {
Ruchira Sasanka086bf0f2001-10-15 16:25:28 +0000605
Vikram S. Advee9327f02002-05-19 15:25:51 +0000606 const Value *CallArg = argDesc->getArgInfo(i).getArgVal();
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000607
608 // get the LR of call operand (parameter)
Ruchira Sasanka086bf0f2001-10-15 16:25:28 +0000609 LiveRange *const LR = LRI.getLiveRangeForValue(CallArg);
Vikram S. Advea83804a2003-05-31 07:32:01 +0000610 if (!LR)
611 continue; // no live ranges for constants and labels
Vikram S. Adve6d1036d2002-09-28 16:59:05 +0000612
Vikram S. Adve536b1922003-07-25 21:12:15 +0000613 unsigned regType = getRegTypeForLR(LR);
Vikram S. Advea83804a2003-05-31 07:32:01 +0000614 unsigned regClassIDOfArgReg = BadRegClass; // chosen reg class (unused)
Vikram S. Adve6d1036d2002-09-28 16:59:05 +0000615
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000616 // Choose a register for this arg depending on whether it is
Vikram S. Advee9327f02002-05-19 15:25:51 +0000617 // an INT or FP value. Here we ignore whether or not it is a
618 // varargs calls, because FP arguments will be explicitly copied
619 // to an integer Value and handled under (argCopy != NULL) below.
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000620 int regNum = (regType == IntRegType)
Vikram S. Advee9327f02002-05-19 15:25:51 +0000621 ? regNumForIntArg(/*inCallee*/ false, /*isVarArgs*/ false,
Vikram S. Advea83804a2003-05-31 07:32:01 +0000622 argNo, regClassIDOfArgReg)
Vikram S. Advee9327f02002-05-19 15:25:51 +0000623 : regNumForFPArg(regType, /*inCallee*/ false, /*isVarArgs*/ false,
Vikram S. Advea83804a2003-05-31 07:32:01 +0000624 argNo, regClassIDOfArgReg);
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000625
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000626 // If a register could be allocated, use it.
627 // If not, do NOTHING as this will be colored as a normal value.
Vikram S. Advea83804a2003-05-31 07:32:01 +0000628 if(regNum != getInvalidRegNum())
Vikram S. Advea6d94c92002-04-25 04:42:21 +0000629 LR->setSuggestedColor(regNum);
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000630 } // for all call arguments
Chris Lattnerb0ddffa2001-09-14 03:47:57 +0000631}
632
633
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000634//---------------------------------------------------------------------------
Anand Shuklae6c3ee62003-06-01 02:48:23 +0000635// this method is called for an LLVM return instruction to identify which
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000636// values will be returned from this method and to suggest colors.
637//---------------------------------------------------------------------------
Brian Gaeke94e95d22004-02-25 18:44:15 +0000638void SparcV9RegInfo::suggestReg4RetValue(MachineInstr *RetMI,
Vikram S. Adve23535842003-07-29 19:53:21 +0000639 LiveRangeInfo& LRI) const {
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000640
Brian Gaekeb22186a2004-02-11 20:47:34 +0000641 assert( (target.getInstrInfo()).isReturn( RetMI->getOpcode() ) );
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000642
Vikram S. Adveaee67012002-07-08 23:23:12 +0000643 suggestReg4RetAddr(RetMI, LRI);
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000644
Vikram S. Advea83804a2003-05-31 07:32:01 +0000645 // To find the return value (if any), we can get the LLVM return instr.
646 // from the return address register, which is the first operand
647 Value* tmpI = RetMI->getOperand(0).getVRegValue();
648 ReturnInst* retI=cast<ReturnInst>(cast<TmpInstruction>(tmpI)->getOperand(0));
649 if (const Value *RetVal = retI->getReturnValue())
650 if (LiveRange *const LR = LRI.getLiveRangeForValue(RetVal))
651 LR->setSuggestedColor(LR->getRegClassID() == IntRegClassID
Brian Gaeke94e95d22004-02-25 18:44:15 +0000652 ? (unsigned) SparcV9IntRegClass::i0
653 : (unsigned) SparcV9FloatRegClass::f0);
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000654}
655
Vikram S. Adveaee67012002-07-08 23:23:12 +0000656//---------------------------------------------------------------------------
657// Check if a specified register type needs a scratch register to be
658// copied to/from memory. If it does, the reg. type that must be used
659// for scratch registers is returned in scratchRegType.
660//
661// Only the int CC register needs such a scratch register.
662// The FP CC registers can (and must) be copied directly to/from memory.
663//---------------------------------------------------------------------------
664
665bool
Brian Gaeke94e95d22004-02-25 18:44:15 +0000666SparcV9RegInfo::regTypeNeedsScratchReg(int RegType,
Vikram S. Adveaee67012002-07-08 23:23:12 +0000667 int& scratchRegType) const
668{
669 if (RegType == IntCCRegType)
670 {
671 scratchRegType = IntRegType;
672 return true;
673 }
674 return false;
675}
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000676
677//---------------------------------------------------------------------------
678// Copy from a register to register. Register number must be the unified
Vikram S. Adveaee67012002-07-08 23:23:12 +0000679// register number.
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000680//---------------------------------------------------------------------------
681
Vikram S. Advee9327f02002-05-19 15:25:51 +0000682void
Brian Gaeke94e95d22004-02-25 18:44:15 +0000683SparcV9RegInfo::cpReg2RegMI(std::vector<MachineInstr*>& mvec,
Vikram S. Adveaee67012002-07-08 23:23:12 +0000684 unsigned SrcReg,
Vikram S. Advee9327f02002-05-19 15:25:51 +0000685 unsigned DestReg,
Vikram S. Adveaee67012002-07-08 23:23:12 +0000686 int RegType) const {
Misha Brukman2969ec52003-06-06 09:52:23 +0000687 assert( ((int)SrcReg != getInvalidRegNum()) &&
688 ((int)DestReg != getInvalidRegNum()) &&
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000689 "Invalid Register");
690
691 MachineInstr * MI = NULL;
Vikram S. Advee9327f02002-05-19 15:25:51 +0000692
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000693 switch( RegType ) {
694
Ruchira Sasanka5f629312001-10-18 22:38:52 +0000695 case IntCCRegType:
Misha Brukman56f4fa12003-05-20 20:32:24 +0000696 if (getRegType(DestReg) == IntRegType) {
697 // copy intCC reg to int reg
Vikram S. Adve65280672003-07-10 19:42:11 +0000698 MI = (BuildMI(V9::RDCCR, 2)
Brian Gaeke94e95d22004-02-25 18:44:15 +0000699 .addMReg(getUnifiedRegNum(SparcV9RegInfo::IntCCRegClassID,
700 SparcV9IntCCRegClass::ccr))
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000701 .addMReg(DestReg,MachineOperand::Def));
Misha Brukman56f4fa12003-05-20 20:32:24 +0000702 } else {
703 // copy int reg to intCC reg
Misha Brukman56f4fa12003-05-20 20:32:24 +0000704 assert(getRegType(SrcReg) == IntRegType
705 && "Can only copy CC reg to/from integer reg");
Vikram S. Adve65280672003-07-10 19:42:11 +0000706 MI = (BuildMI(V9::WRCCRr, 3)
707 .addMReg(SrcReg)
Brian Gaeke94e95d22004-02-25 18:44:15 +0000708 .addMReg(SparcV9IntRegClass::g0)
709 .addMReg(getUnifiedRegNum(SparcV9RegInfo::IntCCRegClassID,
710 SparcV9IntCCRegClass::ccr),
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000711 MachineOperand::Def));
Misha Brukman56f4fa12003-05-20 20:32:24 +0000712 }
Vikram S. Adveaee67012002-07-08 23:23:12 +0000713 break;
714
Ruchira Sasanka5f629312001-10-18 22:38:52 +0000715 case FloatCCRegType:
Vikram S. Adveaee67012002-07-08 23:23:12 +0000716 assert(0 && "Cannot copy FPCC register to any other register");
Vikram S. Advee9327f02002-05-19 15:25:51 +0000717 break;
718
719 case IntRegType:
Misha Brukmanaf96d392003-05-27 22:40:34 +0000720 MI = BuildMI(V9::ADDr, 3).addMReg(SrcReg).addMReg(getZeroRegNum())
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000721 .addMReg(DestReg, MachineOperand::Def);
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000722 break;
Vikram S. Advee9327f02002-05-19 15:25:51 +0000723
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000724 case FPSingleRegType:
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000725 MI = BuildMI(V9::FMOVS, 2).addMReg(SrcReg)
726 .addMReg(DestReg, MachineOperand::Def);
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000727 break;
728
729 case FPDoubleRegType:
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000730 MI = BuildMI(V9::FMOVD, 2).addMReg(SrcReg)
731 .addMReg(DestReg, MachineOperand::Def);
Ruchira Sasanka5867c7a2001-09-30 23:16:47 +0000732 break;
733
734 default:
Vikram S. Advee9327f02002-05-19 15:25:51 +0000735 assert(0 && "Unknown RegType");
Vikram S. Adveaee67012002-07-08 23:23:12 +0000736 break;
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000737 }
Vikram S. Advee9327f02002-05-19 15:25:51 +0000738
739 if (MI)
740 mvec.push_back(MI);
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000741}
Chris Lattnerb0ddffa2001-09-14 03:47:57 +0000742
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000743//---------------------------------------------------------------------------
Ruchira Sasanka0863c162001-10-24 22:05:34 +0000744// Copy from a register to memory (i.e., Store). Register number must
745// be the unified register number
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000746//---------------------------------------------------------------------------
747
748
Vikram S. Advee9327f02002-05-19 15:25:51 +0000749void
Brian Gaeke94e95d22004-02-25 18:44:15 +0000750SparcV9RegInfo::cpReg2MemMI(std::vector<MachineInstr*>& mvec,
Vikram S. Adveaee67012002-07-08 23:23:12 +0000751 unsigned SrcReg,
Vikram S. Adve23535842003-07-29 19:53:21 +0000752 unsigned PtrReg,
Vikram S. Advee9327f02002-05-19 15:25:51 +0000753 int Offset, int RegType,
Chris Lattner3091e112002-07-25 06:08:32 +0000754 int scratchReg) const {
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000755 MachineInstr * MI = NULL;
Vikram S. Adve23535842003-07-29 19:53:21 +0000756 int OffReg = -1;
757
758 // If the Offset will not fit in the signed-immediate field, find an
759 // unused register to hold the offset value. This takes advantage of
760 // the fact that all the opcodes used below have the same size immed. field.
761 // Use the register allocator, PRA, to find an unused reg. at this MI.
762 //
763 if (RegType != IntCCRegType) // does not use offset below
764 if (! target.getInstrInfo().constantFitsInImmedField(V9::LDXi, Offset)) {
765#ifdef CAN_FIND_FREE_REGISTER_TRANSPARENTLY
766 RegClass* RC = PRA.getRegClassByID(this->getRegClassIDOfRegType(RegType));
767 OffReg = PRA.getUnusedUniRegAtMI(RC, RegType, MInst, LVSetBef);
768#else
Brian Gaekef8cb2412003-11-08 18:12:24 +0000769 // Default to using register g4 for holding large offsets
Brian Gaeke94e95d22004-02-25 18:44:15 +0000770 OffReg = getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
771 SparcV9IntRegClass::g4);
Vikram S. Adve23535842003-07-29 19:53:21 +0000772#endif
773 assert(OffReg >= 0 && "FIXME: cpReg2MemMI cannot find an unused reg.");
774 mvec.push_back(BuildMI(V9::SETSW, 2).addZImm(Offset).addReg(OffReg));
775 }
776
Chris Lattner1ebaa902003-01-15 17:47:49 +0000777 switch (RegType) {
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000778 case IntRegType:
Vikram S. Adve23535842003-07-29 19:53:21 +0000779 if (target.getInstrInfo().constantFitsInImmedField(V9::STXi, Offset))
780 MI = BuildMI(V9::STXi,3).addMReg(SrcReg).addMReg(PtrReg).addSImm(Offset);
781 else
782 MI = BuildMI(V9::STXr,3).addMReg(SrcReg).addMReg(PtrReg).addMReg(OffReg);
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000783 break;
784
785 case FPSingleRegType:
Vikram S. Adve23535842003-07-29 19:53:21 +0000786 if (target.getInstrInfo().constantFitsInImmedField(V9::STFi, Offset))
787 MI = BuildMI(V9::STFi, 3).addMReg(SrcReg).addMReg(PtrReg).addSImm(Offset);
788 else
789 MI = BuildMI(V9::STFr, 3).addMReg(SrcReg).addMReg(PtrReg).addMReg(OffReg);
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000790 break;
791
792 case FPDoubleRegType:
Vikram S. Adve23535842003-07-29 19:53:21 +0000793 if (target.getInstrInfo().constantFitsInImmedField(V9::STDFi, Offset))
794 MI = BuildMI(V9::STDFi,3).addMReg(SrcReg).addMReg(PtrReg).addSImm(Offset);
795 else
796 MI = BuildMI(V9::STDFr,3).addMReg(SrcReg).addMReg(PtrReg).addSImm(OffReg);
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000797 break;
798
Ruchira Sasanka9d8950d2001-11-03 19:59:59 +0000799 case IntCCRegType:
Vikram S. Adveaee67012002-07-08 23:23:12 +0000800 assert(scratchReg >= 0 && "Need scratch reg to store %ccr to memory");
Chris Lattner56e91662002-08-12 21:25:05 +0000801 assert(getRegType(scratchReg) ==IntRegType && "Invalid scratch reg");
Vikram S. Adve65280672003-07-10 19:42:11 +0000802 MI = (BuildMI(V9::RDCCR, 2)
Brian Gaeke94e95d22004-02-25 18:44:15 +0000803 .addMReg(getUnifiedRegNum(SparcV9RegInfo::IntCCRegClassID,
804 SparcV9IntCCRegClass::ccr))
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000805 .addMReg(scratchReg, MachineOperand::Def));
Vikram S. Adveaee67012002-07-08 23:23:12 +0000806 mvec.push_back(MI);
807
Vikram S. Adve23535842003-07-29 19:53:21 +0000808 cpReg2MemMI(mvec, scratchReg, PtrReg, Offset, IntRegType);
Chris Lattner1ebaa902003-01-15 17:47:49 +0000809 return;
Vikram S. Adve23535842003-07-29 19:53:21 +0000810
Vikram S. Adve8adb9942003-05-27 00:02:22 +0000811 case FloatCCRegType: {
Brian Gaeke94e95d22004-02-25 18:44:15 +0000812 unsigned fsrReg = getUnifiedRegNum(SparcV9RegInfo::SpecialRegClassID,
813 SparcV9SpecialRegClass::fsr);
Vikram S. Adve23535842003-07-29 19:53:21 +0000814 if (target.getInstrInfo().constantFitsInImmedField(V9::STXFSRi, Offset))
815 MI=BuildMI(V9::STXFSRi,3).addMReg(fsrReg).addMReg(PtrReg).addSImm(Offset);
816 else
817 MI=BuildMI(V9::STXFSRr,3).addMReg(fsrReg).addMReg(PtrReg).addMReg(OffReg);
Vikram S. Adveaee67012002-07-08 23:23:12 +0000818 break;
Vikram S. Adve8adb9942003-05-27 00:02:22 +0000819 }
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000820 default:
Vikram S. Advee9327f02002-05-19 15:25:51 +0000821 assert(0 && "Unknown RegType in cpReg2MemMI");
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000822 }
Chris Lattner1ebaa902003-01-15 17:47:49 +0000823 mvec.push_back(MI);
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000824}
825
826
827//---------------------------------------------------------------------------
Ruchira Sasanka0863c162001-10-24 22:05:34 +0000828// Copy from memory to a reg (i.e., Load) Register number must be the unified
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000829// register number
830//---------------------------------------------------------------------------
831
832
Vikram S. Advee9327f02002-05-19 15:25:51 +0000833void
Brian Gaeke94e95d22004-02-25 18:44:15 +0000834SparcV9RegInfo::cpMem2RegMI(std::vector<MachineInstr*>& mvec,
Vikram S. Adve23535842003-07-29 19:53:21 +0000835 unsigned PtrReg,
Vikram S. Advee9327f02002-05-19 15:25:51 +0000836 int Offset,
837 unsigned DestReg,
838 int RegType,
Chris Lattner3091e112002-07-25 06:08:32 +0000839 int scratchReg) const {
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000840 MachineInstr * MI = NULL;
Vikram S. Adve23535842003-07-29 19:53:21 +0000841 int OffReg = -1;
842
843 // If the Offset will not fit in the signed-immediate field, find an
844 // unused register to hold the offset value. This takes advantage of
845 // the fact that all the opcodes used below have the same size immed. field.
846 // Use the register allocator, PRA, to find an unused reg. at this MI.
847 //
848 if (RegType != IntCCRegType) // does not use offset below
849 if (! target.getInstrInfo().constantFitsInImmedField(V9::LDXi, Offset)) {
850#ifdef CAN_FIND_FREE_REGISTER_TRANSPARENTLY
851 RegClass* RC = PRA.getRegClassByID(this->getRegClassIDOfRegType(RegType));
852 OffReg = PRA.getUnusedUniRegAtMI(RC, RegType, MInst, LVSetBef);
853#else
Brian Gaekef8cb2412003-11-08 18:12:24 +0000854 // Default to using register g4 for holding large offsets
Brian Gaeke94e95d22004-02-25 18:44:15 +0000855 OffReg = getUnifiedRegNum(SparcV9RegInfo::IntRegClassID,
856 SparcV9IntRegClass::g4);
Vikram S. Adve23535842003-07-29 19:53:21 +0000857#endif
858 assert(OffReg >= 0 && "FIXME: cpReg2MemMI cannot find an unused reg.");
859 mvec.push_back(BuildMI(V9::SETSW, 2).addZImm(Offset).addReg(OffReg));
860 }
861
Chris Lattner5216cc52002-02-04 05:59:25 +0000862 switch (RegType) {
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000863 case IntRegType:
Vikram S. Adve23535842003-07-29 19:53:21 +0000864 if (target.getInstrInfo().constantFitsInImmedField(V9::LDXi, Offset))
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000865 MI = BuildMI(V9::LDXi, 3).addMReg(PtrReg).addSImm(Offset)
866 .addMReg(DestReg, MachineOperand::Def);
Vikram S. Adve23535842003-07-29 19:53:21 +0000867 else
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000868 MI = BuildMI(V9::LDXr, 3).addMReg(PtrReg).addMReg(OffReg)
869 .addMReg(DestReg, MachineOperand::Def);
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000870 break;
871
872 case FPSingleRegType:
Vikram S. Adve23535842003-07-29 19:53:21 +0000873 if (target.getInstrInfo().constantFitsInImmedField(V9::LDFi, Offset))
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000874 MI = BuildMI(V9::LDFi, 3).addMReg(PtrReg).addSImm(Offset)
875 .addMReg(DestReg, MachineOperand::Def);
Vikram S. Adve23535842003-07-29 19:53:21 +0000876 else
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000877 MI = BuildMI(V9::LDFr, 3).addMReg(PtrReg).addMReg(OffReg)
878 .addMReg(DestReg, MachineOperand::Def);
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000879 break;
880
881 case FPDoubleRegType:
Vikram S. Adve23535842003-07-29 19:53:21 +0000882 if (target.getInstrInfo().constantFitsInImmedField(V9::LDDFi, Offset))
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000883 MI= BuildMI(V9::LDDFi, 3).addMReg(PtrReg).addSImm(Offset)
884 .addMReg(DestReg, MachineOperand::Def);
Vikram S. Adve23535842003-07-29 19:53:21 +0000885 else
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000886 MI= BuildMI(V9::LDDFr, 3).addMReg(PtrReg).addMReg(OffReg)
887 .addMReg(DestReg, MachineOperand::Def);
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000888 break;
889
Ruchira Sasanka9d8950d2001-11-03 19:59:59 +0000890 case IntCCRegType:
Vikram S. Adveaee67012002-07-08 23:23:12 +0000891 assert(scratchReg >= 0 && "Need scratch reg to load %ccr from memory");
Chris Lattner56e91662002-08-12 21:25:05 +0000892 assert(getRegType(scratchReg) ==IntRegType && "Invalid scratch reg");
Vikram S. Adve23535842003-07-29 19:53:21 +0000893 cpMem2RegMI(mvec, PtrReg, Offset, scratchReg, IntRegType);
Vikram S. Adve65280672003-07-10 19:42:11 +0000894 MI = (BuildMI(V9::WRCCRr, 3)
895 .addMReg(scratchReg)
Brian Gaeke94e95d22004-02-25 18:44:15 +0000896 .addMReg(SparcV9IntRegClass::g0)
897 .addMReg(getUnifiedRegNum(SparcV9RegInfo::IntCCRegClassID,
898 SparcV9IntCCRegClass::ccr), MachineOperand::Def));
Vikram S. Adveaee67012002-07-08 23:23:12 +0000899 break;
900
Vikram S. Adve8adb9942003-05-27 00:02:22 +0000901 case FloatCCRegType: {
Brian Gaeke94e95d22004-02-25 18:44:15 +0000902 unsigned fsrRegNum = getUnifiedRegNum(SparcV9RegInfo::SpecialRegClassID,
903 SparcV9SpecialRegClass::fsr);
Vikram S. Adve23535842003-07-29 19:53:21 +0000904 if (target.getInstrInfo().constantFitsInImmedField(V9::LDXFSRi, Offset))
905 MI = BuildMI(V9::LDXFSRi, 3).addMReg(PtrReg).addSImm(Offset)
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000906 .addMReg(fsrRegNum, MachineOperand::UseAndDef);
Vikram S. Adve23535842003-07-29 19:53:21 +0000907 else
908 MI = BuildMI(V9::LDXFSRr, 3).addMReg(PtrReg).addMReg(OffReg)
Alkis Evlogimenos8358cc52004-02-22 19:23:26 +0000909 .addMReg(fsrRegNum, MachineOperand::UseAndDef);
Vikram S. Adveaee67012002-07-08 23:23:12 +0000910 break;
Vikram S. Adve8adb9942003-05-27 00:02:22 +0000911 }
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000912 default:
Ruchira Sasanka0c085982001-11-10 21:20:43 +0000913 assert(0 && "Unknown RegType in cpMem2RegMI");
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000914 }
Chris Lattner1ebaa902003-01-15 17:47:49 +0000915 mvec.push_back(MI);
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000916}
917
918
Ruchira Sasankafcdc2ff2001-11-12 14:45:33 +0000919//---------------------------------------------------------------------------
920// Generate a copy instruction to copy a value to another. Temporarily
921// used by PhiElimination code.
922//---------------------------------------------------------------------------
923
924
Vikram S. Advee9327f02002-05-19 15:25:51 +0000925void
Brian Gaeke94e95d22004-02-25 18:44:15 +0000926SparcV9RegInfo::cpValue2Value(Value *Src, Value *Dest,
Misha Brukman352f7ac2003-05-21 17:59:06 +0000927 std::vector<MachineInstr*>& mvec) const {
Vikram S. Adve536b1922003-07-25 21:12:15 +0000928 int RegType = getRegTypeForDataType(Src->getType());
Ruchira Sasankab7a39722001-11-03 17:13:27 +0000929 MachineInstr * MI = NULL;
930
Ruchira Sasankafcdc2ff2001-11-12 14:45:33 +0000931 switch( RegType ) {
Ruchira Sasankafcdc2ff2001-11-12 14:45:33 +0000932 case IntRegType:
Misha Brukmanaf96d392003-05-27 22:40:34 +0000933 MI = BuildMI(V9::ADDr, 3).addReg(Src).addMReg(getZeroRegNum())
Misha Brukman56f4fa12003-05-20 20:32:24 +0000934 .addRegDef(Dest);
Ruchira Sasankafcdc2ff2001-11-12 14:45:33 +0000935 break;
Ruchira Sasankafcdc2ff2001-11-12 14:45:33 +0000936 case FPSingleRegType:
Misha Brukman56f4fa12003-05-20 20:32:24 +0000937 MI = BuildMI(V9::FMOVS, 2).addReg(Src).addRegDef(Dest);
Ruchira Sasankafcdc2ff2001-11-12 14:45:33 +0000938 break;
Ruchira Sasankafcdc2ff2001-11-12 14:45:33 +0000939 case FPDoubleRegType:
Misha Brukman56f4fa12003-05-20 20:32:24 +0000940 MI = BuildMI(V9::FMOVD, 2).addReg(Src).addRegDef(Dest);
Ruchira Sasankafcdc2ff2001-11-12 14:45:33 +0000941 break;
Ruchira Sasankafcdc2ff2001-11-12 14:45:33 +0000942 default:
943 assert(0 && "Unknow RegType in CpValu2Value");
944 }
Ruchira Sasankab7a39722001-11-03 17:13:27 +0000945
Chris Lattner9bebf832002-10-28 20:10:56 +0000946 mvec.push_back(MI);
Ruchira Sasankab7a39722001-11-03 17:13:27 +0000947}
Ruchira Sasanka5b8971f2001-10-16 01:23:19 +0000948
949
950
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000951//---------------------------------------------------------------------------
952// Print the register assigned to a LR
953//---------------------------------------------------------------------------
954
Brian Gaeke94e95d22004-02-25 18:44:15 +0000955void SparcV9RegInfo::printReg(const LiveRange *LR) const {
Chris Lattnerf9fd5912003-01-15 21:14:32 +0000956 unsigned RegClassID = LR->getRegClassID();
Chris Lattner69382172003-09-01 19:58:02 +0000957 std::cerr << " Node ";
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000958
Chris Lattner5216cc52002-02-04 05:59:25 +0000959 if (!LR->hasColor()) {
Misha Brukman352f7ac2003-05-21 17:59:06 +0000960 std::cerr << " - could not find a color\n";
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000961 return;
962 }
963
964 // if a color is found
965
Misha Brukman352f7ac2003-05-21 17:59:06 +0000966 std::cerr << " colored with color "<< LR->getColor();
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000967
Vikram S. Adve8adb9942003-05-27 00:02:22 +0000968 unsigned uRegName = getUnifiedRegNum(RegClassID, LR->getColor());
969
970 std::cerr << "[";
971 std::cerr<< getUnifiedRegName(uRegName);
972 if (RegClassID == FloatRegClassID && LR->getType() == Type::DoubleTy)
973 std::cerr << "+" << getUnifiedRegName(uRegName+1);
974 std::cerr << "]\n";
Ruchira Sasankadfc6c882001-09-18 22:52:44 +0000975}
Brian Gaeke960707c2003-11-11 22:41:34 +0000976
977} // End llvm namespace