blob: 993f2a2ffa131312f87e767644470d768d8693bc [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"
Vikram S. Adve49001162002-09-16 15:56:01 +000014#include <stdlib.h>
Anand Shuklacfb22d32002-06-25 20:55:50 +000015using std::vector;
Vikram S. Adve30764b82001-10-18 00:01:48 +000016
Vikram S. Adve53fd4002002-07-10 21:39:50 +000017static const uint32_t MAXLO = (1 << 10) - 1; // set bits set by %lo(*)
18static const uint32_t MAXSIMM = (1 << 12) - 1; // set bits in simm13 field of OR
19
20
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000021//----------------------------------------------------------------------------
22// Function: CreateSETUWConst
Vikram S. Adve53fd4002002-07-10 21:39:50 +000023//
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000024// Set a 32-bit unsigned constant in the register `dest', using
25// SETHI, OR in the worst case. This function correctly emulates
26// the SETUW pseudo-op for SPARC v9 (if argument isSigned == false).
27//
28// The isSigned=true case is used to implement SETSW without duplicating code.
29//
30// Optimize some common cases:
31// (1) Small value that fits in simm13 field of OR: don't need SETHI.
32// (2) isSigned = true and C is a small negative signed value, i.e.,
33// high bits are 1, and the remaining bits fit in simm13(OR).
34//----------------------------------------------------------------------------
35
Vikram S. Adve53fd4002002-07-10 21:39:50 +000036static inline void
37CreateSETUWConst(const TargetMachine& target, uint32_t C,
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000038 Instruction* dest, vector<MachineInstr*>& mvec,
39 bool isSigned = false)
Vikram S. Adve53fd4002002-07-10 21:39:50 +000040{
41 MachineInstr *miSETHI = NULL, *miOR = NULL;
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000042
Vikram S. Adve53fd4002002-07-10 21:39:50 +000043 // In order to get efficient code, we should not generate the SETHI if
44 // all high bits are 1 (i.e., this is a small signed value that fits in
45 // the simm13 field of OR). So we check for and handle that case specially.
46 // NOTE: The value C = 0x80000000 is bad: sC < 0 *and* -sC < 0.
47 // In fact, sC == -sC, so we have to check for this explicitly.
48 int32_t sC = (int32_t) C;
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000049 bool smallNegValue =isSigned && sC < 0 && sC != -sC && -sC < (int32_t)MAXSIMM;
50
Vikram S. Adve53fd4002002-07-10 21:39:50 +000051 // 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 +000052 if (!smallNegValue && (C & ~MAXLO) && C > MAXSIMM)
Vikram S. Adve53fd4002002-07-10 21:39:50 +000053 {
54 miSETHI = Create2OperandInstr_UImmed(SETHI, C, dest);
55 miSETHI->setOperandHi32(0);
56 mvec.push_back(miSETHI);
57 }
58
59 // Set the low 10 or 12 bits in dest. This is necessary if no SETHI
60 // was generated, or if the low 10 bits are non-zero.
61 if (miSETHI==NULL || C & MAXLO)
62 {
63 if (miSETHI)
64 { // unsigned value with high-order bits set using SETHI
65 miOR = Create3OperandInstr_UImmed(OR, dest, C, dest);
66 miOR->setOperandLo32(1);
67 }
68 else
69 { // unsigned or small signed value that fits in simm13 field of OR
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000070 assert(smallNegValue || (C & ~MAXSIMM) == 0);
Vikram S. Adve53fd4002002-07-10 21:39:50 +000071 miOR = new MachineInstr(OR);
72 miOR->SetMachineOperandReg(0, target.getRegInfo().getZeroRegNum());
73 miOR->SetMachineOperandConst(1, MachineOperand::MO_SignExtendedImmed,
74 sC);
75 miOR->SetMachineOperandVal(2,MachineOperand::MO_VirtualRegister,dest);
76 }
77 mvec.push_back(miOR);
78 }
79
80 assert((miSETHI || miOR) && "Oops, no code was generated!");
81}
82
Vikram S. Adve53fd4002002-07-10 21:39:50 +000083
Vikram S. Adve6c0c3012002-08-13 18:04:08 +000084//----------------------------------------------------------------------------
85// Function: CreateSETSWConst
86//
87// Set a 32-bit signed constant in the register `dest', with sign-extension
88// to 64 bits. This uses SETHI, OR, SRA in the worst case.
89// This function correctly emulates the SETSW pseudo-op for SPARC v9.
90//
91// Optimize the same cases as SETUWConst, plus:
92// (1) SRA is not needed for positive or small negative values.
93//----------------------------------------------------------------------------
Vikram S. Adve53fd4002002-07-10 21:39:50 +000094
Vikram S. Adve53fd4002002-07-10 21:39:50 +000095static inline void
96CreateSETSWConst(const TargetMachine& target, int32_t C,
Chris Lattner035dfbe2002-08-09 20:08:06 +000097 Instruction* dest, vector<MachineInstr*>& mvec)
Vikram S. Adve53fd4002002-07-10 21:39:50 +000098{
99 MachineInstr* MI;
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000100
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000101 // Set the low 32 bits of dest
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000102 CreateSETUWConst(target, (uint32_t) C, dest, mvec, /*isSigned*/true);
103
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000104 // Sign-extend to the high 32 bits if needed
105 if (C < 0 && (-C) > (int32_t) MAXSIMM)
106 {
107 MI = Create3OperandInstr_UImmed(SRA, dest, 0, dest);
108 mvec.push_back(MI);
109 }
110}
111
112
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000113//----------------------------------------------------------------------------
114// Function: CreateSETXConst
115//
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000116// Set a 64-bit signed or unsigned constant in the register `dest'.
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000117// Use SETUWConst for each 32 bit word, plus a left-shift-by-32 in between.
118// This function correctly emulates the SETX pseudo-op for SPARC v9.
119//
120// Optimize the same cases as SETUWConst for each 32 bit word.
121//----------------------------------------------------------------------------
122
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000123static inline void
124CreateSETXConst(const TargetMachine& target, uint64_t C,
125 Instruction* tmpReg, Instruction* dest,
Chris Lattner035dfbe2002-08-09 20:08:06 +0000126 vector<MachineInstr*>& mvec)
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000127{
128 assert(C > (unsigned int) ~0 && "Use SETUW/SETSW for 32-bit values!");
129
130 MachineInstr* MI;
131
132 // Code to set the upper 32 bits of the value in register `tmpReg'
133 CreateSETUWConst(target, (C >> 32), tmpReg, mvec);
134
135 // Shift tmpReg left by 32 bits
136 MI = Create3OperandInstr_UImmed(SLLX, tmpReg, 32, tmpReg);
137 mvec.push_back(MI);
138
139 // Code to set the low 32 bits of the value in register `dest'
140 CreateSETUWConst(target, C, dest, mvec);
141
142 // dest = OR(tmpReg, dest)
143 MI = Create3OperandInstr(OR, dest, tmpReg, dest);
144 mvec.push_back(MI);
145}
146
147
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000148//----------------------------------------------------------------------------
149// Function: CreateSETUWLabel
150//
151// Set a 32-bit constant (given by a symbolic label) in the register `dest'.
152//----------------------------------------------------------------------------
153
154static inline void
155CreateSETUWLabel(const TargetMachine& target, Value* val,
156 Instruction* dest, vector<MachineInstr*>& mvec)
157{
158 MachineInstr* MI;
159
160 // Set the high 22 bits in dest
161 MI = Create2OperandInstr(SETHI, val, dest);
162 MI->setOperandHi32(0);
163 mvec.push_back(MI);
164
165 // Set the low 10 bits in dest
166 MI = Create3OperandInstr(OR, dest, val, dest);
167 MI->setOperandLo32(1);
168 mvec.push_back(MI);
169}
170
171
172//----------------------------------------------------------------------------
173// Function: CreateSETXLabel
174//
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000175// Set a 64-bit constant (given by a symbolic label) in the register `dest'.
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000176//----------------------------------------------------------------------------
177
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000178static inline void
179CreateSETXLabel(const TargetMachine& target,
180 Value* val, Instruction* tmpReg, Instruction* dest,
Chris Lattner035dfbe2002-08-09 20:08:06 +0000181 vector<MachineInstr*>& mvec)
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000182{
183 assert(isa<Constant>(val) || isa<GlobalValue>(val) &&
184 "I only know about constant values and global addresses");
185
186 MachineInstr* MI;
187
188 MI = Create2OperandInstr_Addr(SETHI, val, tmpReg);
189 MI->setOperandHi64(0);
190 mvec.push_back(MI);
191
192 MI = Create3OperandInstr_Addr(OR, tmpReg, val, tmpReg);
193 MI->setOperandLo64(1);
194 mvec.push_back(MI);
195
196 MI = Create3OperandInstr_UImmed(SLLX, tmpReg, 32, tmpReg);
197 mvec.push_back(MI);
198
199 MI = Create2OperandInstr_Addr(SETHI, val, dest);
200 MI->setOperandHi32(0);
201 mvec.push_back(MI);
202
203 MI = Create3OperandInstr(OR, dest, tmpReg, dest);
204 mvec.push_back(MI);
205
206 MI = Create3OperandInstr_Addr(OR, dest, val, dest);
207 MI->setOperandLo32(1);
208 mvec.push_back(MI);
209}
210
Vikram S. Adve30764b82001-10-18 00:01:48 +0000211
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000212//----------------------------------------------------------------------------
213// Function: CreateUIntSetInstruction
214//
215// Create code to Set an unsigned constant in the register `dest'.
216// Uses CreateSETUWConst, CreateSETSWConst or CreateSETXConst as needed.
217// CreateSETSWConst is an optimization for the case that the unsigned value
218// has all ones in the 33 high bits (so that sign-extension sets them all).
219//----------------------------------------------------------------------------
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000220
Vikram S. Adve242a8082002-05-19 15:25:51 +0000221static inline void
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000222CreateUIntSetInstruction(const TargetMachine& target,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000223 uint64_t C, Instruction* dest,
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000224 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000225 MachineCodeForInstruction& mcfi)
Vikram S. Advecee9d1c2001-12-15 00:33:36 +0000226{
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000227 static const uint64_t lo32 = (uint32_t) ~0;
228 if (C <= lo32) // High 32 bits are 0. Set low 32 bits.
229 CreateSETUWConst(target, (uint32_t) C, dest, mvec);
230 else if ((C & ~lo32) == ~lo32 && (C & (1 << 31)))
231 { // All high 33 (not 32) bits are 1s: sign-extension will take care
232 // of high 32 bits, so use the sequence for signed int
233 CreateSETSWConst(target, (int32_t) C, dest, mvec);
234 }
235 else if (C > lo32)
Vikram S. Advecee9d1c2001-12-15 00:33:36 +0000236 { // C does not fit in 32 bits
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000237 TmpInstruction* tmpReg = new TmpInstruction(Type::IntTy);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000238 mcfi.addTemp(tmpReg);
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000239 CreateSETXConst(target, C, tmpReg, dest, mvec);
Vikram S. Advecee9d1c2001-12-15 00:33:36 +0000240 }
Vikram S. Adve30764b82001-10-18 00:01:48 +0000241}
242
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000243
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000244//----------------------------------------------------------------------------
245// Function: CreateIntSetInstruction
246//
247// Create code to Set a signed constant in the register `dest'.
248// Really the same as CreateUIntSetInstruction.
249//----------------------------------------------------------------------------
250
251static inline void
252CreateIntSetInstruction(const TargetMachine& target,
253 int64_t C, Instruction* dest,
254 std::vector<MachineInstr*>& mvec,
255 MachineCodeForInstruction& mcfi)
256{
257 CreateUIntSetInstruction(target, (uint64_t) C, dest, mvec, mcfi);
258}
Chris Lattner035dfbe2002-08-09 20:08:06 +0000259
Vikram S. Adve30764b82001-10-18 00:01:48 +0000260
261//---------------------------------------------------------------------------
Vikram S. Adve49001162002-09-16 15:56:01 +0000262// Create a table of LLVM opcode -> max. immediate constant likely to
263// be usable for that operation.
264//---------------------------------------------------------------------------
265
266// Entry == 0 ==> no immediate constant field exists at all.
267// Entry > 0 ==> abs(immediate constant) <= Entry
268//
269vector<unsigned int> MaxConstantsTable(Instruction::NumOtherOps);
270
271static int
272MaxConstantForInstr(unsigned llvmOpCode)
273{
274 int modelOpCode = -1;
275
276 if (llvmOpCode >= Instruction::FirstBinaryOp &&
277 llvmOpCode < Instruction::NumBinaryOps)
278 modelOpCode = ADD;
279 else
280 switch(llvmOpCode) {
281 case Instruction::Ret: modelOpCode = JMPLCALL; break;
282
283 case Instruction::Malloc:
284 case Instruction::Alloca:
285 case Instruction::GetElementPtr:
286 case Instruction::PHINode:
287 case Instruction::Cast:
288 case Instruction::Call: modelOpCode = ADD; break;
289
290 case Instruction::Shl:
291 case Instruction::Shr: modelOpCode = SLLX; break;
292
293 default: break;
294 };
295
296 return (modelOpCode < 0)? 0: SparcMachineInstrDesc[modelOpCode].maxImmedConst;
297}
298
299static void
300InitializeMaxConstantsTable()
301{
302 unsigned op;
303 assert(MaxConstantsTable.size() == Instruction::NumOtherOps &&
304 "assignments below will be illegal!");
305 for (op = Instruction::FirstTermOp; op < Instruction::NumTermOps; ++op)
306 MaxConstantsTable[op] = MaxConstantForInstr(op);
307 for (op = Instruction::FirstBinaryOp; op < Instruction::NumBinaryOps; ++op)
308 MaxConstantsTable[op] = MaxConstantForInstr(op);
309 for (op = Instruction::FirstMemoryOp; op < Instruction::NumMemoryOps; ++op)
310 MaxConstantsTable[op] = MaxConstantForInstr(op);
311 for (op = Instruction::FirstOtherOp; op < Instruction::NumOtherOps; ++op)
312 MaxConstantsTable[op] = MaxConstantForInstr(op);
313}
314
315
316//---------------------------------------------------------------------------
Vikram S. Adve30764b82001-10-18 00:01:48 +0000317// class UltraSparcInstrInfo
318//
319// Purpose:
320// Information about individual instructions.
321// Most information is stored in the SparcMachineInstrDesc array above.
322// Other information is computed on demand, and most such functions
323// default to member functions in base class MachineInstrInfo.
324//---------------------------------------------------------------------------
325
326/*ctor*/
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000327UltraSparcInstrInfo::UltraSparcInstrInfo(const TargetMachine& tgt)
328 : MachineInstrInfo(tgt, SparcMachineInstrDesc,
Vikram S. Adve30764b82001-10-18 00:01:48 +0000329 /*descSize = */ NUM_TOTAL_OPCODES,
330 /*numRealOpCodes = */ NUM_REAL_OPCODES)
331{
Vikram S. Adve49001162002-09-16 15:56:01 +0000332 InitializeMaxConstantsTable();
333}
334
335bool
336UltraSparcInstrInfo::ConstantMayNotFitInImmedField(const Constant* CV,
337 const Instruction* I) const
338{
339 if (I->getOpcode() >= MaxConstantsTable.size()) // user-defined op (or bug!)
340 return true;
341
342 if (isa<ConstantPointerNull>(CV)) // can always use %g0
343 return false;
344
345 if (const ConstantUInt* U = dyn_cast<ConstantUInt>(CV))
346 return (U->getValue() > MaxConstantsTable[I->getOpcode()]);
347
348 if (const ConstantSInt* S = dyn_cast<ConstantSInt>(CV))
349 return (labs(S->getValue()) > (int) MaxConstantsTable[I->getOpcode()]);
350
351 if (isa<ConstantBool>(CV))
352 return (1U > MaxConstantsTable[I->getOpcode()]);
353
354 return true;
Vikram S. Adve30764b82001-10-18 00:01:48 +0000355}
356
Vikram S. Advee76af292002-03-18 03:09:15 +0000357//
Vikram S. Adve30764b82001-10-18 00:01:48 +0000358// Create an instruction sequence to put the constant `val' into
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000359// the virtual register `dest'. `val' may be a Constant or a
Vikram S. Adve30764b82001-10-18 00:01:48 +0000360// GlobalValue, viz., the constant address of a global variable or function.
Vikram S. Adve242a8082002-05-19 15:25:51 +0000361// The generated instructions are returned in `mvec'.
362// Any temp. registers (TmpInstruction) created are recorded in mcfi.
363// Any stack space required is allocated via MachineCodeForMethod.
Vikram S. Adve30764b82001-10-18 00:01:48 +0000364//
365void
Vikram S. Adve242a8082002-05-19 15:25:51 +0000366UltraSparcInstrInfo::CreateCodeToLoadConst(const TargetMachine& target,
367 Function* F,
368 Value* val,
Vikram S. Advee76af292002-03-18 03:09:15 +0000369 Instruction* dest,
Chris Lattner035dfbe2002-08-09 20:08:06 +0000370 vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000371 MachineCodeForInstruction& mcfi) const
Vikram S. Adve30764b82001-10-18 00:01:48 +0000372{
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000373 assert(isa<Constant>(val) || isa<GlobalValue>(val) &&
Vikram S. Adve30764b82001-10-18 00:01:48 +0000374 "I only know about constant values and global addresses");
375
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000376 // Use a "set" instruction for known constants or symbolic constants (labels)
377 // that can go in an integer reg.
378 // We have to use a "load" instruction for all other constants,
379 // in particular, floating point constants.
Vikram S. Adve30764b82001-10-18 00:01:48 +0000380 //
381 const Type* valType = val->getType();
382
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000383 if (isa<GlobalValue>(val))
Vikram S. Adve30764b82001-10-18 00:01:48 +0000384 {
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000385 TmpInstruction* tmpReg =
386 new TmpInstruction(PointerType::get(val->getType()), val);
387 mcfi.addTemp(tmpReg);
388 CreateSETXLabel(target, val, tmpReg, dest, mvec);
389 }
Chris Lattner0c4e8862002-09-03 01:08:28 +0000390 else if (valType->isIntegral())
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000391 {
392 bool isValidConstant;
393 unsigned opSize = target.DataLayout.getTypeSize(val->getType());
394 unsigned destSize = target.DataLayout.getTypeSize(dest->getType());
395
396 if (! dest->getType()->isSigned())
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000397 {
Vikram S. Advea40cbb32002-08-04 20:55:37 +0000398 uint64_t C = GetConstantValueAsUnsignedInt(val, isValidConstant);
399 assert(isValidConstant && "Unrecognized constant");
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000400
401 if (opSize > destSize ||
402 (val->getType()->isSigned()
403 && destSize < target.DataLayout.getIntegerRegize()))
404 { // operand is larger than dest,
405 // OR both are equal but smaller than the full register size
406 // AND operand is signed, so it may have extra sign bits:
407 // mask high bits
408 C = C & ((1U << 8*destSize) - 1);
409 }
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000410 CreateUIntSetInstruction(target, C, dest, mvec, mcfi);
Vikram S. Advecee9d1c2001-12-15 00:33:36 +0000411 }
412 else
413 {
Vikram S. Advecee9d1c2001-12-15 00:33:36 +0000414 int64_t C = GetConstantValueAsSignedInt(val, isValidConstant);
415 assert(isValidConstant && "Unrecognized constant");
Vikram S. Adve6c0c3012002-08-13 18:04:08 +0000416
417 if (opSize > destSize)
418 // operand is larger than dest: mask high bits
419 C = C & ((1U << 8*destSize) - 1);
420
421 if (opSize > destSize ||
422 (opSize == destSize && !val->getType()->isSigned()))
423 // sign-extend from destSize to 64 bits
424 C = ((C & (1U << (8*destSize - 1)))
425 ? C | ~((1U << 8*destSize) - 1)
426 : C);
427
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000428 CreateIntSetInstruction(target, C, dest, mvec, mcfi);
Vikram S. Advecee9d1c2001-12-15 00:33:36 +0000429 }
Vikram S. Adve30764b82001-10-18 00:01:48 +0000430 }
431 else
432 {
433 // Make an instruction sequence to load the constant, viz:
Vikram S. Advea2a70942001-10-28 21:41:46 +0000434 // SETX <addr-of-constant>, tmpReg, addrReg
Vikram S. Adve30764b82001-10-18 00:01:48 +0000435 // LOAD /*addr*/ addrReg, /*offset*/ 0, dest
Vikram S. Adve30764b82001-10-18 00:01:48 +0000436
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000437 // First, create a tmp register to be used by the SETX sequence.
Vikram S. Advea2a70942001-10-28 21:41:46 +0000438 TmpInstruction* tmpReg =
Chris Lattnercb0a1202002-02-03 07:49:49 +0000439 new TmpInstruction(PointerType::get(val->getType()), val);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000440 mcfi.addTemp(tmpReg);
Vikram S. Advea2a70942001-10-28 21:41:46 +0000441
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000442 // Create another TmpInstruction for the address register
443 TmpInstruction* addrReg =
Chris Lattnercb0a1202002-02-03 07:49:49 +0000444 new TmpInstruction(PointerType::get(val->getType()), val);
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000445 mcfi.addTemp(addrReg);
Vikram S. Adve30764b82001-10-18 00:01:48 +0000446
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000447 // Put the address (a symbolic name) into a register
448 CreateSETXLabel(target, val, tmpReg, addrReg, mvec);
Vikram S. Adve30764b82001-10-18 00:01:48 +0000449
Vikram S. Adve53fd4002002-07-10 21:39:50 +0000450 // Generate the load instruction
451 int64_t zeroOffset = 0; // to avoid ambiguity with (Value*) 0
452 MachineInstr* MI =
453 Create3OperandInstr_SImmed(ChooseLoadInstruction(val->getType()),
454 addrReg, zeroOffset, dest);
455 mvec.push_back(MI);
456
457 // Make sure constant is emitted to constant pool in assembly code.
458 MachineCodeForMethod::get(F).addToConstantPool(cast<Constant>(val));
Vikram S. Adve30764b82001-10-18 00:01:48 +0000459 }
460}
461
462
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000463// Create an instruction sequence to copy an integer register `val'
464// to a floating point register `dest' by copying to memory and back.
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000465// val must be an integral type. dest must be a Float or Double.
Vikram S. Adve242a8082002-05-19 15:25:51 +0000466// The generated instructions are returned in `mvec'.
467// Any temp. registers (TmpInstruction) created are recorded in mcfi.
468// Any stack space required is allocated via MachineCodeForMethod.
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000469//
470void
Vikram S. Adve242a8082002-05-19 15:25:51 +0000471UltraSparcInstrInfo::CreateCodeToCopyIntToFloat(const TargetMachine& target,
472 Function* F,
473 Value* val,
474 Instruction* dest,
Chris Lattner035dfbe2002-08-09 20:08:06 +0000475 vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000476 MachineCodeForInstruction& mcfi) const
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000477{
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000478 assert((val->getType()->isIntegral() || isa<PointerType>(val->getType()))
479 && "Source type must be integral (integer or bool) or pointer");
Chris Lattner9b625032002-05-06 16:15:30 +0000480 assert(dest->getType()->isFloatingPoint()
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000481 && "Dest type must be float/double");
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000482
483 // Get a stack slot to use for the copy
Vikram S. Adve242a8082002-05-19 15:25:51 +0000484 int offset = MachineCodeForMethod::get(F).allocateLocalVar(target, val);
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000485
486 // Get the size of the source value being copied.
487 size_t srcSize = target.DataLayout.getTypeSize(val->getType());
488
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000489 // Store instruction stores `val' to [%fp+offset].
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000490 // The store and load opCodes are based on the size of the source value.
491 // If the value is smaller than 32 bits, we must sign- or zero-extend it
492 // to 32 bits since the load-float will load 32 bits.
Vikram S. Advec190c012002-07-31 21:13:31 +0000493 // Note that the store instruction is the same for signed and unsigned ints.
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000494 const Type* storeType = (srcSize <= 4)? Type::IntTy : Type::LongTy;
495 Value* storeVal = val;
496 if (srcSize < target.DataLayout.getTypeSize(Type::FloatTy))
497 { // sign- or zero-extend respectively
498 storeVal = new TmpInstruction(storeType, val);
499 if (val->getType()->isSigned())
Vikram S. Adve5cedede2002-09-27 14:29:45 +0000500 CreateSignExtensionInstructions(target, F, val, storeVal, 8*srcSize,
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000501 mvec, mcfi);
502 else
Vikram S. Adve5cedede2002-09-27 14:29:45 +0000503 CreateZeroExtensionInstructions(target, F, val, storeVal, 8*srcSize,
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000504 mvec, mcfi);
505 }
506 MachineInstr* store=new MachineInstr(ChooseStoreInstruction(storeType));
507 store->SetMachineOperandVal(0, MachineOperand::MO_VirtualRegister, storeVal);
Vikram S. Advee76af292002-03-18 03:09:15 +0000508 store->SetMachineOperandReg(1, target.getRegInfo().getFramePointer());
Vikram S. Adve242a8082002-05-19 15:25:51 +0000509 store->SetMachineOperandConst(2,MachineOperand::MO_SignExtendedImmed,offset);
510 mvec.push_back(store);
Vikram S. Adve30764b82001-10-18 00:01:48 +0000511
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000512 // Load instruction loads [%fp+offset] to `dest'.
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000513 // The type of the load opCode is the floating point type that matches the
514 // stored type in size:
515 // On SparcV9: float for int or smaller, double for long.
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000516 //
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000517 const Type* loadType = (srcSize <= 4)? Type::FloatTy : Type::DoubleTy;
518 MachineInstr* load = new MachineInstr(ChooseLoadInstruction(loadType));
Vikram S. Advee76af292002-03-18 03:09:15 +0000519 load->SetMachineOperandReg(0, target.getRegInfo().getFramePointer());
520 load->SetMachineOperandConst(1, MachineOperand::MO_SignExtendedImmed,offset);
521 load->SetMachineOperandVal(2, MachineOperand::MO_VirtualRegister, dest);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000522 mvec.push_back(load);
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000523}
524
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000525// Similarly, create an instruction sequence to copy an FP register
526// `val' to an integer register `dest' by copying to memory and back.
Vikram S. Adve242a8082002-05-19 15:25:51 +0000527// The generated instructions are returned in `mvec'.
528// Any temp. registers (TmpInstruction) created are recorded in mcfi.
529// Any stack space required is allocated via MachineCodeForMethod.
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000530//
531void
Vikram S. Adve242a8082002-05-19 15:25:51 +0000532UltraSparcInstrInfo::CreateCodeToCopyFloatToInt(const TargetMachine& target,
533 Function* F,
Chris Lattner697954c2002-01-20 22:54:45 +0000534 Value* val,
535 Instruction* dest,
Chris Lattner035dfbe2002-08-09 20:08:06 +0000536 vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000537 MachineCodeForInstruction& mcfi) const
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000538{
Vikram S. Advec190c012002-07-31 21:13:31 +0000539 const Type* opTy = val->getType();
540 const Type* destTy = dest->getType();
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000541
Vikram S. Advec190c012002-07-31 21:13:31 +0000542 assert(opTy->isFloatingPoint() && "Source type must be float/double");
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000543 assert((destTy->isIntegral() || isa<PointerType>(destTy))
544 && "Dest type must be integer, bool or pointer");
Vikram S. Advec190c012002-07-31 21:13:31 +0000545
Vikram S. Adve242a8082002-05-19 15:25:51 +0000546 int offset = MachineCodeForMethod::get(F).allocateLocalVar(target, val);
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000547
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000548 // Store instruction stores `val' to [%fp+offset].
Vikram S. Advec190c012002-07-31 21:13:31 +0000549 // The store opCode is based only the source value being copied.
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000550 //
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000551 MachineInstr* store=new MachineInstr(ChooseStoreInstruction(opTy));
Vikram S. Advee76af292002-03-18 03:09:15 +0000552 store->SetMachineOperandVal(0, MachineOperand::MO_VirtualRegister, val);
553 store->SetMachineOperandReg(1, target.getRegInfo().getFramePointer());
554 store->SetMachineOperandConst(2,MachineOperand::MO_SignExtendedImmed,offset);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000555 mvec.push_back(store);
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000556
Vikram S. Adve5b6082e2001-11-09 02:16:40 +0000557 // Load instruction loads [%fp+offset] to `dest'.
Vikram S. Advec190c012002-07-31 21:13:31 +0000558 // The type of the load opCode is the integer type that matches the
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000559 // source type in size:
Vikram S. Advec190c012002-07-31 21:13:31 +0000560 // On SparcV9: int for float, long for double.
561 // Note that we *must* use signed loads even for unsigned dest types, to
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000562 // ensure correct sign-extension for UByte, UShort or UInt:
563 //
564 const Type* loadTy = (opTy == Type::FloatTy)? Type::IntTy : Type::LongTy;
Vikram S. Advec190c012002-07-31 21:13:31 +0000565 MachineInstr* load = new MachineInstr(ChooseLoadInstruction(loadTy));
Vikram S. Advee76af292002-03-18 03:09:15 +0000566 load->SetMachineOperandReg(0, target.getRegInfo().getFramePointer());
Vikram S. Adve242a8082002-05-19 15:25:51 +0000567 load->SetMachineOperandConst(1, MachineOperand::MO_SignExtendedImmed,offset);
Vikram S. Advee76af292002-03-18 03:09:15 +0000568 load->SetMachineOperandVal(2, MachineOperand::MO_VirtualRegister, dest);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000569 mvec.push_back(load);
570}
571
572
573// Create instruction(s) to copy src to dest, for arbitrary types
574// The generated instructions are returned in `mvec'.
575// Any temp. registers (TmpInstruction) created are recorded in mcfi.
576// Any stack space required is allocated via MachineCodeForMethod.
577//
578void
579UltraSparcInstrInfo::CreateCopyInstructionsByType(const TargetMachine& target,
580 Function *F,
581 Value* src,
582 Instruction* dest,
583 vector<MachineInstr*>& mvec,
584 MachineCodeForInstruction& mcfi) const
585{
586 bool loadConstantToReg = false;
587
588 const Type* resultType = dest->getType();
589
590 MachineOpCode opCode = ChooseAddInstructionByType(resultType);
591 if (opCode == INVALID_OPCODE)
592 {
593 assert(0 && "Unsupported result type in CreateCopyInstructionsByType()");
594 return;
595 }
596
597 // if `src' is a constant that doesn't fit in the immed field or if it is
598 // a global variable (i.e., a constant address), generate a load
599 // instruction instead of an add
600 //
601 if (isa<Constant>(src))
602 {
603 unsigned int machineRegNum;
604 int64_t immedValue;
605 MachineOperand::MachineOperandType opType =
606 ChooseRegOrImmed(src, opCode, target, /*canUseImmed*/ true,
607 machineRegNum, immedValue);
608
609 if (opType == MachineOperand::MO_VirtualRegister)
610 loadConstantToReg = true;
611 }
612 else if (isa<GlobalValue>(src))
613 loadConstantToReg = true;
614
615 if (loadConstantToReg)
616 { // `src' is constant and cannot fit in immed field for the ADD
617 // Insert instructions to "load" the constant into a register
618 target.getInstrInfo().CreateCodeToLoadConst(target, F, src, dest,
619 mvec, mcfi);
620 }
621 else
622 { // Create an add-with-0 instruction of the appropriate type.
623 // Make `src' the second operand, in case it is a constant
624 // Use (unsigned long) 0 for a NULL pointer value.
625 //
626 const Type* zeroValueType =
627 isa<PointerType>(resultType) ? Type::ULongTy : resultType;
628 MachineInstr* minstr =
629 Create3OperandInstr(opCode, Constant::getNullValue(zeroValueType),
630 src, dest);
631 mvec.push_back(minstr);
632 }
633}
634
635
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000636// Helper function for sign-extension and zero-extension.
637// For SPARC v9, we sign-extend the given operand using SLL; SRA/SRL.
638inline void
639CreateBitExtensionInstructions(bool signExtend,
640 const TargetMachine& target,
641 Function* F,
642 Value* srcVal,
Vikram S. Adve5cedede2002-09-27 14:29:45 +0000643 Value* destVal,
644 unsigned int numLowBits,
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000645 vector<MachineInstr*>& mvec,
646 MachineCodeForInstruction& mcfi)
647{
648 MachineInstr* M;
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000649
Vikram S. Adve5cedede2002-09-27 14:29:45 +0000650 assert(numLowBits <= 32 && "Otherwise, nothing should be done here!");
651
652 if (numLowBits < 32)
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000653 { // SLL is needed since operand size is < 32 bits.
Vikram S. Adve5cedede2002-09-27 14:29:45 +0000654 TmpInstruction *tmpI = new TmpInstruction(destVal->getType(),
655 srcVal, destVal, "make32");
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000656 mcfi.addTemp(tmpI);
Vikram S. Adve5cedede2002-09-27 14:29:45 +0000657 M = Create3OperandInstr_UImmed(SLLX, srcVal, 32-numLowBits, tmpI);
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000658 mvec.push_back(M);
659 srcVal = tmpI;
660 }
661
662 M = Create3OperandInstr_UImmed(signExtend? SRA : SRL,
Vikram S. Adve5cedede2002-09-27 14:29:45 +0000663 srcVal, 32-numLowBits, destVal);
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000664 mvec.push_back(M);
665}
666
667
Vikram S. Adve242a8082002-05-19 15:25:51 +0000668// Create instruction sequence to produce a sign-extended register value
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000669// from an arbitrary-sized integer value (sized in bits, not bytes).
Vikram S. Adve242a8082002-05-19 15:25:51 +0000670// The generated instructions are returned in `mvec'.
671// Any temp. registers (TmpInstruction) created are recorded in mcfi.
672// Any stack space required is allocated via MachineCodeForMethod.
673//
674void
675UltraSparcInstrInfo::CreateSignExtensionInstructions(
676 const TargetMachine& target,
677 Function* F,
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000678 Value* srcVal,
Vikram S. Adve5cedede2002-09-27 14:29:45 +0000679 Value* destVal,
680 unsigned int numLowBits,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000681 vector<MachineInstr*>& mvec,
682 MachineCodeForInstruction& mcfi) const
683{
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000684 CreateBitExtensionInstructions(/*signExtend*/ true, target, F, srcVal,
Vikram S. Adve5cedede2002-09-27 14:29:45 +0000685 destVal, numLowBits, mvec, mcfi);
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000686}
687
688
689// Create instruction sequence to produce a zero-extended register value
690// from an arbitrary-sized integer value (sized in bits, not bytes).
691// For SPARC v9, we sign-extend the given operand using SLL; SRL.
692// The generated instructions are returned in `mvec'.
693// Any temp. registers (TmpInstruction) created are recorded in mcfi.
694// Any stack space required is allocated via MachineCodeForMethod.
695//
696void
697UltraSparcInstrInfo::CreateZeroExtensionInstructions(
698 const TargetMachine& target,
699 Function* F,
700 Value* srcVal,
Vikram S. Adve5cedede2002-09-27 14:29:45 +0000701 Value* destVal,
702 unsigned int numLowBits,
Vikram S. Adve84c0fcb2002-09-05 18:33:59 +0000703 vector<MachineInstr*>& mvec,
704 MachineCodeForInstruction& mcfi) const
705{
706 CreateBitExtensionInstructions(/*signExtend*/ false, target, F, srcVal,
Vikram S. Adve5cedede2002-09-27 14:29:45 +0000707 destVal, numLowBits, mvec, mcfi);
Vikram S. Adveb9c38632001-11-08 04:57:53 +0000708}