blob: 9c82d8083e14b6b12e1420a6177e1c510fcb2d4f [file] [log] [blame]
Chris Lattner035dfbe2002-08-09 20:08:06 +00001//===-- SparcInstrInfo.cpp ------------------------------------------------===//
2//
3//===----------------------------------------------------------------------===//
Vikram S. Adve30764b82001-10-18 00:01:48 +00004
5#include "SparcInternals.h"
6#include "SparcInstrSelectionSupport.h"
Vikram S. Adve30764b82001-10-18 00:01:48 +00007#include "llvm/CodeGen/InstrSelection.h"
8#include "llvm/CodeGen/InstrSelectionSupport.h"
Chris Lattnercb0a1202002-02-03 07:49:49 +00009#include "llvm/CodeGen/MachineCodeForMethod.h"
Vikram S. Adve242a8082002-05-19 15:25:51 +000010#include "llvm/CodeGen/MachineCodeForInstruction.h"
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000011#include "llvm/Function.h"
Chris Lattner31bcdb82002-04-28 19:55:58 +000012#include "llvm/Constants.h"
Vikram S. Adveb9c38632001-11-08 04:57:53 +000013#include "llvm/DerivedTypes.h"
Anand Shuklacfb22d32002-06-25 20:55:50 +000014using std::vector;
Vikram S. Adve30764b82001-10-18 00:01:48 +000015
Vikram S. Adve53fd4002002-07-10 21:39:50 +000016static const uint32_t MAXLO = (1 << 10) - 1; // set bits set by %lo(*)
17static const uint32_t MAXSIMM = (1 << 12) - 1; // set bits in simm13 field of OR
18
19
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000020//----------------------------------------------------------------------------
21// Function: CreateSETUWConst
Vikram S. Adve53fd4002002-07-10 21:39:50 +000022//
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000023// Set a 32-bit unsigned constant in the register `dest', using
24// SETHI, OR in the worst case. This function correctly emulates
25// the SETUW pseudo-op for SPARC v9 (if argument isSigned == false).
26//
27// The isSigned=true case is used to implement SETSW without duplicating code.
28//
29// Optimize some common cases:
30// (1) Small value that fits in simm13 field of OR: don't need SETHI.
31// (2) isSigned = true and C is a small negative signed value, i.e.,
32// high bits are 1, and the remaining bits fit in simm13(OR).
33//----------------------------------------------------------------------------
34
Vikram S. Adve53fd4002002-07-10 21:39:50 +000035static inline void
36CreateSETUWConst(const TargetMachine& target, uint32_t C,
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000037 Instruction* dest, vector<MachineInstr*>& mvec,
38 bool isSigned = false)
Vikram S. Adve53fd4002002-07-10 21:39:50 +000039{
40 MachineInstr *miSETHI = NULL, *miOR = NULL;
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000041
Vikram S. Adve53fd4002002-07-10 21:39:50 +000042 // In order to get efficient code, we should not generate the SETHI if
43 // all high bits are 1 (i.e., this is a small signed value that fits in
44 // the simm13 field of OR). So we check for and handle that case specially.
45 // NOTE: The value C = 0x80000000 is bad: sC < 0 *and* -sC < 0.
46 // In fact, sC == -sC, so we have to check for this explicitly.
47 int32_t sC = (int32_t) C;
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000048 bool smallNegValue =isSigned && sC < 0 && sC != -sC && -sC < (int32_t)MAXSIMM;
49
Vikram S. Adve53fd4002002-07-10 21:39:50 +000050 // Set the high 22 bits in dest if non-zero and simm13 field of OR not enough
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000051 if (!smallNegValue && (C & ~MAXLO) && C > MAXSIMM)
Vikram S. Adve53fd4002002-07-10 21:39:50 +000052 {
53 miSETHI = Create2OperandInstr_UImmed(SETHI, C, dest);
54 miSETHI->setOperandHi32(0);
55 mvec.push_back(miSETHI);
56 }
57
58 // Set the low 10 or 12 bits in dest. This is necessary if no SETHI
59 // was generated, or if the low 10 bits are non-zero.
60 if (miSETHI==NULL || C & MAXLO)
61 {
62 if (miSETHI)
63 { // unsigned value with high-order bits set using SETHI
64 miOR = Create3OperandInstr_UImmed(OR, dest, C, dest);
65 miOR->setOperandLo32(1);
66 }
67 else
68 { // unsigned or small signed value that fits in simm13 field of OR
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000069 assert(smallNegValue || (C & ~MAXSIMM) == 0);
Vikram S. Adve53fd4002002-07-10 21:39:50 +000070 miOR = new MachineInstr(OR);
71 miOR->SetMachineOperandReg(0, target.getRegInfo().getZeroRegNum());
72 miOR->SetMachineOperandConst(1, MachineOperand::MO_SignExtendedImmed,
73 sC);
74 miOR->SetMachineOperandVal(2,MachineOperand::MO_VirtualRegister,dest);
75 }
76 mvec.push_back(miOR);
77 }
78
79 assert((miSETHI || miOR) && "Oops, no code was generated!");
80}
81
Vikram S. Adve53fd4002002-07-10 21:39:50 +000082
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000083//----------------------------------------------------------------------------
84// Function: CreateSETSWConst
85//
86// Set a 32-bit signed constant in the register `dest', with sign-extension
87// to 64 bits. This uses SETHI, OR, SRA in the worst case.
88// This function correctly emulates the SETSW pseudo-op for SPARC v9.
89//
90// Optimize the same cases as SETUWConst, plus:
91// (1) SRA is not needed for positive or small negative values.
92//----------------------------------------------------------------------------
Vikram S. Adve53fd4002002-07-10 21:39:50 +000093
Vikram S. Adve53fd4002002-07-10 21:39:50 +000094static inline void
95CreateSETSWConst(const TargetMachine& target, int32_t C,
Chris Lattner035dfbe2002-08-09 20:08:06 +000096 Instruction* dest, vector<MachineInstr*>& mvec)
Vikram S. Adve53fd4002002-07-10 21:39:50 +000097{
98 MachineInstr* MI;
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000099
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000100 // Set the low 32 bits of dest
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000101 CreateSETUWConst(target, (uint32_t) C, dest, mvec, /*isSigned*/true);
102
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000103 // Sign-extend to the high 32 bits if needed
104 if (C < 0 && (-C) > (int32_t) MAXSIMM)
105 {
106 MI = Create3OperandInstr_UImmed(SRA, dest, 0, dest);
107 mvec.push_back(MI);
108 }
109}
110
111
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000112//----------------------------------------------------------------------------
113// Function: CreateSETXConst
114//
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000115// Set a 64-bit signed or unsigned constant in the register `dest'.
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000116// Use SETUWConst for each 32 bit word, plus a left-shift-by-32 in between.
117// This function correctly emulates the SETX pseudo-op for SPARC v9.
118//
119// Optimize the same cases as SETUWConst for each 32 bit word.
120//----------------------------------------------------------------------------
121
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000122static inline void
123CreateSETXConst(const TargetMachine& target, uint64_t C,
124 Instruction* tmpReg, Instruction* dest,
Chris Lattner035dfbe2002-08-09 20:08:06 +0000125 vector<MachineInstr*>& mvec)
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000126{
127 assert(C > (unsigned int) ~0 && "Use SETUW/SETSW for 32-bit values!");
128
129 MachineInstr* MI;
130
131 // Code to set the upper 32 bits of the value in register `tmpReg'
132 CreateSETUWConst(target, (C >> 32), tmpReg, mvec);
133
134 // Shift tmpReg left by 32 bits
135 MI = Create3OperandInstr_UImmed(SLLX, tmpReg, 32, tmpReg);
136 mvec.push_back(MI);
137
138 // Code to set the low 32 bits of the value in register `dest'
139 CreateSETUWConst(target, C, dest, mvec);
140
141 // dest = OR(tmpReg, dest)
142 MI = Create3OperandInstr(OR, dest, tmpReg, dest);
143 mvec.push_back(MI);
144}
145
146
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000147//----------------------------------------------------------------------------
148// Function: CreateSETUWLabel
149//
150// Set a 32-bit constant (given by a symbolic label) in the register `dest'.
151//----------------------------------------------------------------------------
152
153static inline void
154CreateSETUWLabel(const TargetMachine& target, Value* val,
155 Instruction* dest, vector<MachineInstr*>& mvec)
156{
157 MachineInstr* MI;
158
159 // Set the high 22 bits in dest
160 MI = Create2OperandInstr(SETHI, val, dest);
161 MI->setOperandHi32(0);
162 mvec.push_back(MI);
163
164 // Set the low 10 bits in dest
165 MI = Create3OperandInstr(OR, dest, val, dest);
166 MI->setOperandLo32(1);
167 mvec.push_back(MI);
168}
169
170
171//----------------------------------------------------------------------------
172// Function: CreateSETXLabel
173//
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000174// Set a 64-bit constant (given by a symbolic label) in the register `dest'.
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000175//----------------------------------------------------------------------------
176
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000177static inline void
178CreateSETXLabel(const TargetMachine& target,
179 Value* val, Instruction* tmpReg, Instruction* dest,
Chris Lattner035dfbe2002-08-09 20:08:06 +0000180 vector<MachineInstr*>& mvec)
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000181{
182 assert(isa<Constant>(val) || isa<GlobalValue>(val) &&
183 "I only know about constant values and global addresses");
184
185 MachineInstr* MI;
186
187 MI = Create2OperandInstr_Addr(SETHI, val, tmpReg);
188 MI->setOperandHi64(0);
189 mvec.push_back(MI);
190
191 MI = Create3OperandInstr_Addr(OR, tmpReg, val, tmpReg);
192 MI->setOperandLo64(1);
193 mvec.push_back(MI);
194
195 MI = Create3OperandInstr_UImmed(SLLX, tmpReg, 32, tmpReg);
196 mvec.push_back(MI);
197
198 MI = Create2OperandInstr_Addr(SETHI, val, dest);
199 MI->setOperandHi32(0);
200 mvec.push_back(MI);
201
202 MI = Create3OperandInstr(OR, dest, tmpReg, dest);
203 mvec.push_back(MI);
204
205 MI = Create3OperandInstr_Addr(OR, dest, val, dest);
206 MI->setOperandLo32(1);
207 mvec.push_back(MI);
208}
209
Vikram S. Adve30764b82001-10-18 00:01:48 +0000210
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000211//----------------------------------------------------------------------------
212// Function: CreateUIntSetInstruction
213//
214// Create code to Set an unsigned constant in the register `dest'.
215// Uses CreateSETUWConst, CreateSETSWConst or CreateSETXConst as needed.
216// CreateSETSWConst is an optimization for the case that the unsigned value
217// has all ones in the 33 high bits (so that sign-extension sets them all).
218//----------------------------------------------------------------------------
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000219
Vikram S. Adve242a8082002-05-19 15:25:51 +0000220static inline void
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000221CreateUIntSetInstruction(const TargetMachine& target,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000222 uint64_t C, Instruction* dest,
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000223 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000224 MachineCodeForInstruction& mcfi)
Vikram S. Advecee9d1c2001-12-15 00:33:36 +0000225{
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000226 static const uint64_t lo32 = (uint32_t) ~0;
227 if (C <= lo32) // High 32 bits are 0. Set low 32 bits.
228 CreateSETUWConst(target, (uint32_t) C, dest, mvec);
229 else if ((C & ~lo32) == ~lo32 && (C & (1 << 31)))
230 { // All high 33 (not 32) bits are 1s: sign-extension will take care
231 // of high 32 bits, so use the sequence for signed int
232 CreateSETSWConst(target, (int32_t) C, dest, mvec);
233 }
234 else if (C > lo32)
Vikram S. Advecee9d1c2001-12-15 00:33:36 +0000235 { // C does not fit in 32 bits
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000236 TmpInstruction* tmpReg = new TmpInstruction(Type::IntTy);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000237 mcfi.addTemp(tmpReg);
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000238 CreateSETXConst(target, C, tmpReg, dest, mvec);
Vikram S. Advecee9d1c2001-12-15 00:33:36 +0000239 }
Vikram S. Adve30764b82001-10-18 00:01:48 +0000240}
241
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000242
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000243//----------------------------------------------------------------------------
244// Function: CreateIntSetInstruction
245//
246// Create code to Set a signed constant in the register `dest'.
247// Really the same as CreateUIntSetInstruction.
248//----------------------------------------------------------------------------
249
250static inline void
251CreateIntSetInstruction(const TargetMachine& target,
252 int64_t C, Instruction* dest,
253 std::vector<MachineInstr*>& mvec,
254 MachineCodeForInstruction& mcfi)
255{
256 CreateUIntSetInstruction(target, (uint64_t) C, dest, mvec, mcfi);
257}
Chris Lattner035dfbe2002-08-09 20:08:06 +0000258
Vikram S. Adve30764b82001-10-18 00:01:48 +0000259
260//---------------------------------------------------------------------------
261// class UltraSparcInstrInfo
262//
263// Purpose:
264// Information about individual instructions.
265// Most information is stored in the SparcMachineInstrDesc array above.
266// Other information is computed on demand, and most such functions
267// default to member functions in base class MachineInstrInfo.
268//---------------------------------------------------------------------------
269
270/*ctor*/
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000271UltraSparcInstrInfo::UltraSparcInstrInfo(const TargetMachine& tgt)
272 : MachineInstrInfo(tgt, SparcMachineInstrDesc,
Vikram S. Adve30764b82001-10-18 00:01:48 +0000273 /*descSize = */ NUM_TOTAL_OPCODES,
274 /*numRealOpCodes = */ NUM_REAL_OPCODES)
275{
276}
277
Vikram S. Advee76af292002-03-18 03:09:15 +0000278//
Vikram S. Adve30764b82001-10-18 00:01:48 +0000279// Create an instruction sequence to put the constant `val' into
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000280// the virtual register `dest'. `val' may be a Constant or a
Vikram S. Adve30764b82001-10-18 00:01:48 +0000281// GlobalValue, viz., the constant address of a global variable or function.
Vikram S. Adve242a8082002-05-19 15:25:51 +0000282// The generated instructions are returned in `mvec'.
283// Any temp. registers (TmpInstruction) created are recorded in mcfi.
284// Any stack space required is allocated via MachineCodeForMethod.
Vikram S. Adve30764b82001-10-18 00:01:48 +0000285//
286void
Vikram S. Adve242a8082002-05-19 15:25:51 +0000287UltraSparcInstrInfo::CreateCodeToLoadConst(const TargetMachine& target,
288 Function* F,
289 Value* val,
Vikram S. Advee76af292002-03-18 03:09:15 +0000290 Instruction* dest,
Chris Lattner035dfbe2002-08-09 20:08:06 +0000291 vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000292 MachineCodeForInstruction& mcfi) const
Vikram S. Adve30764b82001-10-18 00:01:48 +0000293{
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000294 assert(isa<Constant>(val) || isa<GlobalValue>(val) &&
Vikram S. Adve30764b82001-10-18 00:01:48 +0000295 "I only know about constant values and global addresses");
296
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000297 // Use a "set" instruction for known constants or symbolic constants (labels)
298 // that can go in an integer reg.
299 // We have to use a "load" instruction for all other constants,
300 // in particular, floating point constants.
Vikram S. Adve30764b82001-10-18 00:01:48 +0000301 //
302 const Type* valType = val->getType();
303
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000304 if (isa<GlobalValue>(val))
Vikram S. Adve30764b82001-10-18 00:01:48 +0000305 {
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000306 TmpInstruction* tmpReg =
307 new TmpInstruction(PointerType::get(val->getType()), val);
308 mcfi.addTemp(tmpReg);
309 CreateSETXLabel(target, val, tmpReg, dest, mvec);
310 }
311 else if (valType->isIntegral() || valType == Type::BoolTy)
312 {
313 bool isValidConstant;
314 unsigned opSize = target.DataLayout.getTypeSize(val->getType());
315 unsigned destSize = target.DataLayout.getTypeSize(dest->getType());
316
317 if (! dest->getType()->isSigned())
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000318 {
Vikram S. Advea40cbb32002-08-04 20:55:37 +0000319 uint64_t C = GetConstantValueAsUnsignedInt(val, isValidConstant);
320 assert(isValidConstant && "Unrecognized constant");
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000321
322 if (opSize > destSize ||
323 (val->getType()->isSigned()
324 && destSize < target.DataLayout.getIntegerRegize()))
325 { // operand is larger than dest,
326 // OR both are equal but smaller than the full register size
327 // AND operand is signed, so it may have extra sign bits:
328 // mask high bits
329 C = C & ((1U << 8*destSize) - 1);
330 }
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000331 CreateUIntSetInstruction(target, C, dest, mvec, mcfi);
Vikram S. Advecee9d1c2001-12-15 00:33:36 +0000332 }
333 else
334 {
Vikram S. Advecee9d1c2001-12-15 00:33:36 +0000335 int64_t C = GetConstantValueAsSignedInt(val, isValidConstant);
336 assert(isValidConstant && "Unrecognized constant");
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000337
338 if (opSize > destSize)
339 // operand is larger than dest: mask high bits
340 C = C & ((1U << 8*destSize) - 1);
341
342 if (opSize > destSize ||
343 (opSize == destSize && !val->getType()->isSigned()))
344 // sign-extend from destSize to 64 bits
345 C = ((C & (1U << (8*destSize - 1)))
346 ? C | ~((1U << 8*destSize) - 1)
347 : C);
348
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000349 CreateIntSetInstruction(target, C, dest, mvec, mcfi);
Vikram S. Advecee9d1c2001-12-15 00:33:36 +0000350 }
Vikram S. Adve30764b82001-10-18 00:01:48 +0000351 }
352 else
353 {
354 // Make an instruction sequence to load the constant, viz:
Vikram S. Advea2a70942001-10-28 21:41:46 +0000355 // SETX <addr-of-constant>, tmpReg, addrReg
Vikram S. Adve30764b82001-10-18 00:01:48 +0000356 // LOAD /*addr*/ addrReg, /*offset*/ 0, dest
Vikram S. Adve30764b82001-10-18 00:01:48 +0000357
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000358 // First, create a tmp register to be used by the SETX sequence.
Vikram S. Advea2a70942001-10-28 21:41:46 +0000359 TmpInstruction* tmpReg =
Chris Lattnercb0a1202002-02-03 07:49:49 +0000360 new TmpInstruction(PointerType::get(val->getType()), val);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000361 mcfi.addTemp(tmpReg);
Vikram S. Advea2a70942001-10-28 21:41:46 +0000362
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000363 // Create another TmpInstruction for the address register
364 TmpInstruction* addrReg =
Chris Lattnercb0a1202002-02-03 07:49:49 +0000365 new TmpInstruction(PointerType::get(val->getType()), val);
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000366 mcfi.addTemp(addrReg);
Vikram S. Adve30764b82001-10-18 00:01:48 +0000367
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000368 // Put the address (a symbolic name) into a register
369 CreateSETXLabel(target, val, tmpReg, addrReg, mvec);
Vikram S. Adve30764b82001-10-18 00:01:48 +0000370
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000371 // Generate the load instruction
372 int64_t zeroOffset = 0; // to avoid ambiguity with (Value*) 0
373 MachineInstr* MI =
374 Create3OperandInstr_SImmed(ChooseLoadInstruction(val->getType()),
375 addrReg, zeroOffset, dest);
376 mvec.push_back(MI);
377
378 // Make sure constant is emitted to constant pool in assembly code.
379 MachineCodeForMethod::get(F).addToConstantPool(cast<Constant>(val));
Vikram S. Adve30764b82001-10-18 00:01:48 +0000380 }
381}
382
383
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000384// Create an instruction sequence to copy an integer value `val'
385// to a floating point value `dest' by copying to memory and back.
386// val must be an integral type. dest must be a Float or Double.
Vikram S. Adve242a8082002-05-19 15:25:51 +0000387// The generated instructions are returned in `mvec'.
388// Any temp. registers (TmpInstruction) created are recorded in mcfi.
389// Any stack space required is allocated via MachineCodeForMethod.
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000390//
391void
Vikram S. Adve242a8082002-05-19 15:25:51 +0000392UltraSparcInstrInfo::CreateCodeToCopyIntToFloat(const TargetMachine& target,
393 Function* F,
394 Value* val,
395 Instruction* dest,
Chris Lattner035dfbe2002-08-09 20:08:06 +0000396 vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000397 MachineCodeForInstruction& mcfi) const
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000398{
Chris Lattner9b625032002-05-06 16:15:30 +0000399 assert((val->getType()->isIntegral() || isa<PointerType>(val->getType()))
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000400 && "Source type must be integral");
Chris Lattner9b625032002-05-06 16:15:30 +0000401 assert(dest->getType()->isFloatingPoint()
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000402 && "Dest type must be float/double");
403
Vikram S. Adve242a8082002-05-19 15:25:51 +0000404 int offset = MachineCodeForMethod::get(F).allocateLocalVar(target, val);
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000405
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000406 // Store instruction stores `val' to [%fp+offset].
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000407 // The store and load opCodes are based on the value being copied, and
Vikram S. Adveb9959d82001-11-15 14:59:56 +0000408 // they use integer and float types that accomodate the
409 // larger of the source type and the destination type:
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000410 // On SparcV9: int for float, long for double.
Vikram S. Advec190c012002-07-31 21:13:31 +0000411 // Note that the store instruction is the same for signed and unsigned ints.
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000412 Type* tmpType = (dest->getType() == Type::FloatTy)? Type::IntTy
413 : Type::LongTy;
414 MachineInstr* store = new MachineInstr(ChooseStoreInstruction(tmpType));
Vikram S. Advee76af292002-03-18 03:09:15 +0000415 store->SetMachineOperandVal(0, MachineOperand::MO_VirtualRegister, val);
416 store->SetMachineOperandReg(1, target.getRegInfo().getFramePointer());
Vikram S. Adve242a8082002-05-19 15:25:51 +0000417 store->SetMachineOperandConst(2,MachineOperand::MO_SignExtendedImmed,offset);
418 mvec.push_back(store);
Vikram S. Adve30764b82001-10-18 00:01:48 +0000419
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000420 // Load instruction loads [%fp+offset] to `dest'.
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000421 //
Vikram S. Adveb9959d82001-11-15 14:59:56 +0000422 MachineInstr* load =new MachineInstr(ChooseLoadInstruction(dest->getType()));
Vikram S. Advee76af292002-03-18 03:09:15 +0000423 load->SetMachineOperandReg(0, target.getRegInfo().getFramePointer());
424 load->SetMachineOperandConst(1, MachineOperand::MO_SignExtendedImmed,offset);
425 load->SetMachineOperandVal(2, MachineOperand::MO_VirtualRegister, dest);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000426 mvec.push_back(load);
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000427}
428
429
430// Similarly, create an instruction sequence to copy an FP value
431// `val' to an integer value `dest' by copying to memory and back.
Vikram S. Adve242a8082002-05-19 15:25:51 +0000432// The generated instructions are returned in `mvec'.
433// Any temp. registers (TmpInstruction) created are recorded in mcfi.
434// Any stack space required is allocated via MachineCodeForMethod.
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000435//
436void
Vikram S. Adve242a8082002-05-19 15:25:51 +0000437UltraSparcInstrInfo::CreateCodeToCopyFloatToInt(const TargetMachine& target,
438 Function* F,
Chris Lattner697954c2002-01-20 22:54:45 +0000439 Value* val,
440 Instruction* dest,
Chris Lattner035dfbe2002-08-09 20:08:06 +0000441 vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000442 MachineCodeForInstruction& mcfi) const
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000443{
Vikram S. Advec190c012002-07-31 21:13:31 +0000444 const Type* opTy = val->getType();
445 const Type* destTy = dest->getType();
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000446
Vikram S. Advec190c012002-07-31 21:13:31 +0000447 assert(opTy->isFloatingPoint() && "Source type must be float/double");
448 assert((destTy->isIntegral() || isa<PointerType>(destTy))
449 && "Dest type must be integral");
450
Vikram S. Adve242a8082002-05-19 15:25:51 +0000451 int offset = MachineCodeForMethod::get(F).allocateLocalVar(target, val);
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000452
453 // Store instruction stores `val' to [%fp+offset].
Vikram S. Advec190c012002-07-31 21:13:31 +0000454 // The store opCode is based only the source value being copied.
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000455 //
Vikram S. Adveb9959d82001-11-15 14:59:56 +0000456 MachineInstr* store=new MachineInstr(ChooseStoreInstruction(val->getType()));
Vikram S. Advee76af292002-03-18 03:09:15 +0000457 store->SetMachineOperandVal(0, MachineOperand::MO_VirtualRegister, val);
458 store->SetMachineOperandReg(1, target.getRegInfo().getFramePointer());
459 store->SetMachineOperandConst(2,MachineOperand::MO_SignExtendedImmed,offset);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000460 mvec.push_back(store);
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000461
462 // Load instruction loads [%fp+offset] to `dest'.
Vikram S. Advec190c012002-07-31 21:13:31 +0000463 // The type of the load opCode is the integer type that matches the
464 // source type in size: (and the dest type in sign):
465 // On SparcV9: int for float, long for double.
466 // Note that we *must* use signed loads even for unsigned dest types, to
467 // ensure that we get the right sign-extension for smaller-than-64-bit
468 // unsigned dest. types (i.e., UByte, UShort or UInt):
469 const Type* loadTy = opTy == Type::FloatTy? Type::IntTy : Type::LongTy;
470 MachineInstr* load = new MachineInstr(ChooseLoadInstruction(loadTy));
Vikram S. Advee76af292002-03-18 03:09:15 +0000471 load->SetMachineOperandReg(0, target.getRegInfo().getFramePointer());
Vikram S. Adve242a8082002-05-19 15:25:51 +0000472 load->SetMachineOperandConst(1, MachineOperand::MO_SignExtendedImmed,offset);
Vikram S. Advee76af292002-03-18 03:09:15 +0000473 load->SetMachineOperandVal(2, MachineOperand::MO_VirtualRegister, dest);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000474 mvec.push_back(load);
475}
476
477
478// Create instruction(s) to copy src to dest, for arbitrary types
479// The generated instructions are returned in `mvec'.
480// Any temp. registers (TmpInstruction) created are recorded in mcfi.
481// Any stack space required is allocated via MachineCodeForMethod.
482//
483void
484UltraSparcInstrInfo::CreateCopyInstructionsByType(const TargetMachine& target,
485 Function *F,
486 Value* src,
487 Instruction* dest,
488 vector<MachineInstr*>& mvec,
489 MachineCodeForInstruction& mcfi) const
490{
491 bool loadConstantToReg = false;
492
493 const Type* resultType = dest->getType();
494
495 MachineOpCode opCode = ChooseAddInstructionByType(resultType);
496 if (opCode == INVALID_OPCODE)
497 {
498 assert(0 && "Unsupported result type in CreateCopyInstructionsByType()");
499 return;
500 }
501
502 // if `src' is a constant that doesn't fit in the immed field or if it is
503 // a global variable (i.e., a constant address), generate a load
504 // instruction instead of an add
505 //
506 if (isa<Constant>(src))
507 {
508 unsigned int machineRegNum;
509 int64_t immedValue;
510 MachineOperand::MachineOperandType opType =
511 ChooseRegOrImmed(src, opCode, target, /*canUseImmed*/ true,
512 machineRegNum, immedValue);
513
514 if (opType == MachineOperand::MO_VirtualRegister)
515 loadConstantToReg = true;
516 }
517 else if (isa<GlobalValue>(src))
518 loadConstantToReg = true;
519
520 if (loadConstantToReg)
521 { // `src' is constant and cannot fit in immed field for the ADD
522 // Insert instructions to "load" the constant into a register
523 target.getInstrInfo().CreateCodeToLoadConst(target, F, src, dest,
524 mvec, mcfi);
525 }
526 else
527 { // Create an add-with-0 instruction of the appropriate type.
528 // Make `src' the second operand, in case it is a constant
529 // Use (unsigned long) 0 for a NULL pointer value.
530 //
531 const Type* zeroValueType =
532 isa<PointerType>(resultType) ? Type::ULongTy : resultType;
533 MachineInstr* minstr =
534 Create3OperandInstr(opCode, Constant::getNullValue(zeroValueType),
535 src, dest);
536 mvec.push_back(minstr);
537 }
538}
539
540
541// Create instruction sequence to produce a sign-extended register value
542// from an arbitrary sized value (sized in bits, not bytes).
543// For SPARC v9, we sign-extend the given unsigned operand using SLL; SRA.
544// The generated instructions are returned in `mvec'.
545// Any temp. registers (TmpInstruction) created are recorded in mcfi.
546// Any stack space required is allocated via MachineCodeForMethod.
547//
548void
549UltraSparcInstrInfo::CreateSignExtensionInstructions(
550 const TargetMachine& target,
551 Function* F,
552 Value* unsignedSrcVal,
553 unsigned int srcSizeInBits,
554 Value* dest,
555 vector<MachineInstr*>& mvec,
556 MachineCodeForInstruction& mcfi) const
557{
558 MachineInstr* M;
Vikram S. Advec190c012002-07-31 21:13:31 +0000559 assert(srcSizeInBits < 64 && "Sign extension unnecessary!");
Vikram S. Adve242a8082002-05-19 15:25:51 +0000560 assert(srcSizeInBits > 0 && srcSizeInBits <= 32
Vikram S. Advec190c012002-07-31 21:13:31 +0000561 && "Hmmm... 32 < srcSizeInBits < 64 unexpected but could be handled here.");
Vikram S. Adve242a8082002-05-19 15:25:51 +0000562
563 if (srcSizeInBits < 32)
564 { // SLL is needed since operand size is < 32 bits.
565 TmpInstruction *tmpI = new TmpInstruction(dest->getType(),
566 unsignedSrcVal, dest,"make32");
567 mcfi.addTemp(tmpI);
568 M = Create3OperandInstr_UImmed(SLL,unsignedSrcVal,32-srcSizeInBits,tmpI);
569 mvec.push_back(M);
570 unsignedSrcVal = tmpI;
571 }
572
573 M = Create3OperandInstr_UImmed(SRA, unsignedSrcVal, 32-srcSizeInBits, dest);
574 mvec.push_back(M);
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000575}