blob: ffec82445dce15f4038f0934099be25c16b1d806 [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 }
Chris Lattner0c4e8862002-09-03 01:08:28 +0000311 else if (valType->isIntegral())
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000312 {
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. Adve84c0fcb2002-09-05 18:33:59 +0000384// Create an instruction sequence to copy an integer register `val'
385// to a floating point register `dest' by copying to memory and back.
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000386// 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{
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000399 assert((val->getType()->isIntegral() || isa<PointerType>(val->getType()))
400 && "Source type must be integral (integer or bool) or pointer");
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");
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000403
404 // Get a stack slot to use for the copy
Vikram S. Adve242a8082002-05-19 15:25:51 +0000405 int offset = MachineCodeForMethod::get(F).allocateLocalVar(target, val);
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000406
407 // Get the size of the source value being copied.
408 size_t srcSize = target.DataLayout.getTypeSize(val->getType());
409
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000410 // Store instruction stores `val' to [%fp+offset].
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000411 // The store and load opCodes are based on the size of the source value.
412 // If the value is smaller than 32 bits, we must sign- or zero-extend it
413 // to 32 bits since the load-float will load 32 bits.
Vikram S. Advec190c012002-07-31 21:13:31 +0000414 // Note that the store instruction is the same for signed and unsigned ints.
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000415 const Type* storeType = (srcSize <= 4)? Type::IntTy : Type::LongTy;
416 Value* storeVal = val;
417 if (srcSize < target.DataLayout.getTypeSize(Type::FloatTy))
418 { // sign- or zero-extend respectively
419 storeVal = new TmpInstruction(storeType, val);
420 if (val->getType()->isSigned())
421 CreateSignExtensionInstructions(target, F, val, 8*srcSize, storeVal,
422 mvec, mcfi);
423 else
424 CreateZeroExtensionInstructions(target, F, val, 8*srcSize, storeVal,
425 mvec, mcfi);
426 }
427 MachineInstr* store=new MachineInstr(ChooseStoreInstruction(storeType));
428 store->SetMachineOperandVal(0, MachineOperand::MO_VirtualRegister, storeVal);
Vikram S. Advee76af292002-03-18 03:09:15 +0000429 store->SetMachineOperandReg(1, target.getRegInfo().getFramePointer());
Vikram S. Adve242a8082002-05-19 15:25:51 +0000430 store->SetMachineOperandConst(2,MachineOperand::MO_SignExtendedImmed,offset);
431 mvec.push_back(store);
Vikram S. Adve30764b82001-10-18 00:01:48 +0000432
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000433 // Load instruction loads [%fp+offset] to `dest'.
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000434 // The type of the load opCode is the floating point type that matches the
435 // stored type in size:
436 // On SparcV9: float for int or smaller, double for long.
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000437 //
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000438 const Type* loadType = (srcSize <= 4)? Type::FloatTy : Type::DoubleTy;
439 MachineInstr* load = new MachineInstr(ChooseLoadInstruction(loadType));
Vikram S. Advee76af292002-03-18 03:09:15 +0000440 load->SetMachineOperandReg(0, target.getRegInfo().getFramePointer());
441 load->SetMachineOperandConst(1, MachineOperand::MO_SignExtendedImmed,offset);
442 load->SetMachineOperandVal(2, MachineOperand::MO_VirtualRegister, dest);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000443 mvec.push_back(load);
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000444}
445
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000446// Similarly, create an instruction sequence to copy an FP register
447// `val' to an integer register `dest' by copying to memory and back.
Vikram S. Adve242a8082002-05-19 15:25:51 +0000448// The generated instructions are returned in `mvec'.
449// Any temp. registers (TmpInstruction) created are recorded in mcfi.
450// Any stack space required is allocated via MachineCodeForMethod.
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000451//
452void
Vikram S. Adve242a8082002-05-19 15:25:51 +0000453UltraSparcInstrInfo::CreateCodeToCopyFloatToInt(const TargetMachine& target,
454 Function* F,
Chris Lattner697954c2002-01-20 22:54:45 +0000455 Value* val,
456 Instruction* dest,
Chris Lattner035dfbe2002-08-09 20:08:06 +0000457 vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000458 MachineCodeForInstruction& mcfi) const
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000459{
Vikram S. Advec190c012002-07-31 21:13:31 +0000460 const Type* opTy = val->getType();
461 const Type* destTy = dest->getType();
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000462
Vikram S. Advec190c012002-07-31 21:13:31 +0000463 assert(opTy->isFloatingPoint() && "Source type must be float/double");
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000464 assert((destTy->isIntegral() || isa<PointerType>(destTy))
465 && "Dest type must be integer, bool or pointer");
Vikram S. Advec190c012002-07-31 21:13:31 +0000466
Vikram S. Adve242a8082002-05-19 15:25:51 +0000467 int offset = MachineCodeForMethod::get(F).allocateLocalVar(target, val);
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000468
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000469 // Store instruction stores `val' to [%fp+offset].
Vikram S. Advec190c012002-07-31 21:13:31 +0000470 // The store opCode is based only the source value being copied.
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000471 //
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000472 MachineInstr* store=new MachineInstr(ChooseStoreInstruction(opTy));
Vikram S. Advee76af292002-03-18 03:09:15 +0000473 store->SetMachineOperandVal(0, MachineOperand::MO_VirtualRegister, val);
474 store->SetMachineOperandReg(1, target.getRegInfo().getFramePointer());
475 store->SetMachineOperandConst(2,MachineOperand::MO_SignExtendedImmed,offset);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000476 mvec.push_back(store);
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000477
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000478 // Load instruction loads [%fp+offset] to `dest'.
Vikram S. Advec190c012002-07-31 21:13:31 +0000479 // The type of the load opCode is the integer type that matches the
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000480 // source type in size:
Vikram S. Advec190c012002-07-31 21:13:31 +0000481 // On SparcV9: int for float, long for double.
482 // Note that we *must* use signed loads even for unsigned dest types, to
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000483 // ensure correct sign-extension for UByte, UShort or UInt:
484 //
485 const Type* loadTy = (opTy == Type::FloatTy)? Type::IntTy : Type::LongTy;
Vikram S. Advec190c012002-07-31 21:13:31 +0000486 MachineInstr* load = new MachineInstr(ChooseLoadInstruction(loadTy));
Vikram S. Advee76af292002-03-18 03:09:15 +0000487 load->SetMachineOperandReg(0, target.getRegInfo().getFramePointer());
Vikram S. Adve242a8082002-05-19 15:25:51 +0000488 load->SetMachineOperandConst(1, MachineOperand::MO_SignExtendedImmed,offset);
Vikram S. Advee76af292002-03-18 03:09:15 +0000489 load->SetMachineOperandVal(2, MachineOperand::MO_VirtualRegister, dest);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000490 mvec.push_back(load);
491}
492
493
494// Create instruction(s) to copy src to dest, for arbitrary types
495// The generated instructions are returned in `mvec'.
496// Any temp. registers (TmpInstruction) created are recorded in mcfi.
497// Any stack space required is allocated via MachineCodeForMethod.
498//
499void
500UltraSparcInstrInfo::CreateCopyInstructionsByType(const TargetMachine& target,
501 Function *F,
502 Value* src,
503 Instruction* dest,
504 vector<MachineInstr*>& mvec,
505 MachineCodeForInstruction& mcfi) const
506{
507 bool loadConstantToReg = false;
508
509 const Type* resultType = dest->getType();
510
511 MachineOpCode opCode = ChooseAddInstructionByType(resultType);
512 if (opCode == INVALID_OPCODE)
513 {
514 assert(0 && "Unsupported result type in CreateCopyInstructionsByType()");
515 return;
516 }
517
518 // if `src' is a constant that doesn't fit in the immed field or if it is
519 // a global variable (i.e., a constant address), generate a load
520 // instruction instead of an add
521 //
522 if (isa<Constant>(src))
523 {
524 unsigned int machineRegNum;
525 int64_t immedValue;
526 MachineOperand::MachineOperandType opType =
527 ChooseRegOrImmed(src, opCode, target, /*canUseImmed*/ true,
528 machineRegNum, immedValue);
529
530 if (opType == MachineOperand::MO_VirtualRegister)
531 loadConstantToReg = true;
532 }
533 else if (isa<GlobalValue>(src))
534 loadConstantToReg = true;
535
536 if (loadConstantToReg)
537 { // `src' is constant and cannot fit in immed field for the ADD
538 // Insert instructions to "load" the constant into a register
539 target.getInstrInfo().CreateCodeToLoadConst(target, F, src, dest,
540 mvec, mcfi);
541 }
542 else
543 { // Create an add-with-0 instruction of the appropriate type.
544 // Make `src' the second operand, in case it is a constant
545 // Use (unsigned long) 0 for a NULL pointer value.
546 //
547 const Type* zeroValueType =
548 isa<PointerType>(resultType) ? Type::ULongTy : resultType;
549 MachineInstr* minstr =
550 Create3OperandInstr(opCode, Constant::getNullValue(zeroValueType),
551 src, dest);
552 mvec.push_back(minstr);
553 }
554}
555
556
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000557// Helper function for sign-extension and zero-extension.
558// For SPARC v9, we sign-extend the given operand using SLL; SRA/SRL.
559inline void
560CreateBitExtensionInstructions(bool signExtend,
561 const TargetMachine& target,
562 Function* F,
563 Value* srcVal,
564 unsigned int srcSizeInBits,
565 Value* dest,
566 vector<MachineInstr*>& mvec,
567 MachineCodeForInstruction& mcfi)
568{
569 MachineInstr* M;
570 assert(srcSizeInBits <= 32 &&
571 "Hmmm... 32 < srcSizeInBits < 64 unexpected but could be handled.");
572
573 if (srcSizeInBits < 32)
574 { // SLL is needed since operand size is < 32 bits.
575 TmpInstruction *tmpI = new TmpInstruction(dest->getType(),
576 srcVal, dest,"make32");
577 mcfi.addTemp(tmpI);
578 M = Create3OperandInstr_UImmed(SLLX, srcVal, 32-srcSizeInBits, tmpI);
579 mvec.push_back(M);
580 srcVal = tmpI;
581 }
582
583 M = Create3OperandInstr_UImmed(signExtend? SRA : SRL,
584 srcVal, 32-srcSizeInBits, dest);
585 mvec.push_back(M);
586}
587
588
Vikram S. Adve242a8082002-05-19 15:25:51 +0000589// Create instruction sequence to produce a sign-extended register value
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000590// from an arbitrary-sized integer value (sized in bits, not bytes).
Vikram S. Adve242a8082002-05-19 15:25:51 +0000591// The generated instructions are returned in `mvec'.
592// Any temp. registers (TmpInstruction) created are recorded in mcfi.
593// Any stack space required is allocated via MachineCodeForMethod.
594//
595void
596UltraSparcInstrInfo::CreateSignExtensionInstructions(
597 const TargetMachine& target,
598 Function* F,
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000599 Value* srcVal,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000600 unsigned int srcSizeInBits,
601 Value* dest,
602 vector<MachineInstr*>& mvec,
603 MachineCodeForInstruction& mcfi) const
604{
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000605 CreateBitExtensionInstructions(/*signExtend*/ true, target, F, srcVal,
606 srcSizeInBits, dest, mvec, mcfi);
607}
608
609
610// Create instruction sequence to produce a zero-extended register value
611// from an arbitrary-sized integer value (sized in bits, not bytes).
612// For SPARC v9, we sign-extend the given operand using SLL; SRL.
613// The generated instructions are returned in `mvec'.
614// Any temp. registers (TmpInstruction) created are recorded in mcfi.
615// Any stack space required is allocated via MachineCodeForMethod.
616//
617void
618UltraSparcInstrInfo::CreateZeroExtensionInstructions(
619 const TargetMachine& target,
620 Function* F,
621 Value* srcVal,
622 unsigned int srcSizeInBits,
623 Value* dest,
624 vector<MachineInstr*>& mvec,
625 MachineCodeForInstruction& mcfi) const
626{
627 CreateBitExtensionInstructions(/*signExtend*/ false, target, F, srcVal,
628 srcSizeInBits, dest, mvec, mcfi);
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000629}