blob: 9b3e38a49dfca7db358c1cdc34e53262c14024bd [file] [log] [blame]
Chris Lattner035dfbe2002-08-09 20:08:06 +00001//===-- SparcInstrSelection.cpp -------------------------------------------===//
2//
3// BURS instruction selection for SPARC V9 architecture.
4//
5//===----------------------------------------------------------------------===//
Chris Lattner20b1ea02001-09-14 03:47:57 +00006
7#include "SparcInternals.h"
Vikram S. Adve7fe27872001-10-18 00:26:20 +00008#include "SparcInstrSelectionSupport.h"
Vikram S. Adve74825322002-03-18 03:15:35 +00009#include "SparcRegClassInfo.h"
Vikram S. Adve8557b222001-10-10 20:56:33 +000010#include "llvm/CodeGen/InstrSelectionSupport.h"
Chris Lattnere5b1ed92003-01-15 00:03:28 +000011#include "llvm/CodeGen/MachineInstrBuilder.h"
Vikram S. Adve242a8082002-05-19 15:25:51 +000012#include "llvm/CodeGen/MachineInstrAnnot.h"
Chris Lattner20b1ea02001-09-14 03:47:57 +000013#include "llvm/CodeGen/InstrForest.h"
14#include "llvm/CodeGen/InstrSelection.h"
Misha Brukmanfce11432002-10-28 00:28:31 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattnerea45d7b2002-12-28 20:19:44 +000016#include "llvm/CodeGen/MachineFunctionInfo.h"
Chris Lattner9c461082002-02-03 07:50:56 +000017#include "llvm/CodeGen/MachineCodeForInstruction.h"
Chris Lattner20b1ea02001-09-14 03:47:57 +000018#include "llvm/DerivedTypes.h"
19#include "llvm/iTerminators.h"
20#include "llvm/iMemory.h"
21#include "llvm/iOther.h"
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000022#include "llvm/Function.h"
Chris Lattner31bcdb82002-04-28 19:55:58 +000023#include "llvm/Constants.h"
Vikram S. Adved3e26482002-10-13 00:18:57 +000024#include "llvm/ConstantHandling.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000025#include "Support/MathExtras.h"
Chris Lattner749655f2001-10-13 06:54:30 +000026#include <math.h>
Chris Lattner20b1ea02001-09-14 03:47:57 +000027
Chris Lattner54e898e2003-01-15 19:23:34 +000028static inline void Add3OperandInstr(unsigned Opcode, InstructionNode* Node,
Misha Brukmanee563cb2003-05-21 17:59:06 +000029 std::vector<MachineInstr*>& mvec) {
Chris Lattner54e898e2003-01-15 19:23:34 +000030 mvec.push_back(BuildMI(Opcode, 3).addReg(Node->leftChild()->getValue())
31 .addReg(Node->rightChild()->getValue())
32 .addRegDef(Node->getValue()));
33}
34
35
36
Chris Lattner795ba6c2003-01-15 21:36:50 +000037//---------------------------------------------------------------------------
38// Function: GetMemInstArgs
39//
40// Purpose:
41// Get the pointer value and the index vector for a memory operation
42// (GetElementPtr, Load, or Store). If all indices of the given memory
43// operation are constant, fold in constant indices in a chain of
44// preceding GetElementPtr instructions (if any), and return the
45// pointer value of the first instruction in the chain.
46// All folded instructions are marked so no code is generated for them.
47//
48// Return values:
49// Returns the pointer Value to use.
50// Returns the resulting IndexVector in idxVec.
51// Returns true/false in allConstantIndices if all indices are/aren't const.
52//---------------------------------------------------------------------------
53
54
55//---------------------------------------------------------------------------
56// Function: FoldGetElemChain
57//
58// Purpose:
59// Fold a chain of GetElementPtr instructions containing only
60// constant offsets into an equivalent (Pointer, IndexVector) pair.
61// Returns the pointer Value, and stores the resulting IndexVector
62// in argument chainIdxVec. This is a helper function for
63// FoldConstantIndices that does the actual folding.
64//---------------------------------------------------------------------------
65
66
67// Check for a constant 0.
68inline bool
69IsZero(Value* idx)
70{
71 return (idx == ConstantSInt::getNullValue(idx->getType()));
72}
73
74static Value*
Misha Brukmanee563cb2003-05-21 17:59:06 +000075FoldGetElemChain(InstrTreeNode* ptrNode, std::vector<Value*>& chainIdxVec,
Chris Lattner795ba6c2003-01-15 21:36:50 +000076 bool lastInstHasLeadingNonZero)
77{
78 InstructionNode* gepNode = dyn_cast<InstructionNode>(ptrNode);
79 GetElementPtrInst* gepInst =
80 dyn_cast_or_null<GetElementPtrInst>(gepNode ? gepNode->getInstruction() :0);
81
82 // ptr value is not computed in this tree or ptr value does not come from GEP
83 // instruction
84 if (gepInst == NULL)
85 return NULL;
86
87 // Return NULL if we don't fold any instructions in.
88 Value* ptrVal = NULL;
89
90 // Now chase the chain of getElementInstr instructions, if any.
91 // Check for any non-constant indices and stop there.
92 // Also, stop if the first index of child is a non-zero array index
93 // and the last index of the current node is a non-array index:
94 // in that case, a non-array declared type is being accessed as an array
95 // which is not type-safe, but could be legal.
96 //
97 InstructionNode* ptrChild = gepNode;
98 while (ptrChild && (ptrChild->getOpLabel() == Instruction::GetElementPtr ||
99 ptrChild->getOpLabel() == GetElemPtrIdx))
100 {
101 // Child is a GetElemPtr instruction
102 gepInst = cast<GetElementPtrInst>(ptrChild->getValue());
103 User::op_iterator OI, firstIdx = gepInst->idx_begin();
104 User::op_iterator lastIdx = gepInst->idx_end();
105 bool allConstantOffsets = true;
106
107 // The first index of every GEP must be an array index.
108 assert((*firstIdx)->getType() == Type::LongTy &&
109 "INTERNAL ERROR: Structure index for a pointer type!");
110
111 // If the last instruction had a leading non-zero index, check if the
112 // current one references a sequential (i.e., indexable) type.
113 // If not, the code is not type-safe and we would create an illegal GEP
114 // by folding them, so don't fold any more instructions.
115 //
116 if (lastInstHasLeadingNonZero)
117 if (! isa<SequentialType>(gepInst->getType()->getElementType()))
118 break; // cannot fold in any preceding getElementPtr instrs.
119
120 // Check that all offsets are constant for this instruction
121 for (OI = firstIdx; allConstantOffsets && OI != lastIdx; ++OI)
122 allConstantOffsets = isa<ConstantInt>(*OI);
123
124 if (allConstantOffsets)
125 { // Get pointer value out of ptrChild.
126 ptrVal = gepInst->getPointerOperand();
127
128 // Remember if it has leading zero index: it will be discarded later.
129 lastInstHasLeadingNonZero = ! IsZero(*firstIdx);
130
131 // Insert its index vector at the start, skipping any leading [0]
132 chainIdxVec.insert(chainIdxVec.begin(),
133 firstIdx + !lastInstHasLeadingNonZero, lastIdx);
134
135 // Mark the folded node so no code is generated for it.
136 ((InstructionNode*) ptrChild)->markFoldedIntoParent();
137
138 // Get the previous GEP instruction and continue trying to fold
139 ptrChild = dyn_cast<InstructionNode>(ptrChild->leftChild());
140 }
141 else // cannot fold this getElementPtr instr. or any preceding ones
142 break;
143 }
144
145 // If the first getElementPtr instruction had a leading [0], add it back.
146 // Note that this instruction is the *last* one successfully folded above.
147 if (ptrVal && ! lastInstHasLeadingNonZero)
148 chainIdxVec.insert(chainIdxVec.begin(), ConstantSInt::get(Type::LongTy,0));
149
150 return ptrVal;
151}
152
153
154//---------------------------------------------------------------------------
155// Function: GetGEPInstArgs
156//
157// Purpose:
158// Helper function for GetMemInstArgs that handles the final getElementPtr
159// instruction used by (or same as) the memory operation.
160// Extracts the indices of the current instruction and tries to fold in
161// preceding ones if all indices of the current one are constant.
162//---------------------------------------------------------------------------
163
164static Value *
165GetGEPInstArgs(InstructionNode* gepNode,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000166 std::vector<Value*>& idxVec,
Chris Lattner795ba6c2003-01-15 21:36:50 +0000167 bool& allConstantIndices)
168{
169 allConstantIndices = true;
170 GetElementPtrInst* gepI = cast<GetElementPtrInst>(gepNode->getInstruction());
171
172 // Default pointer is the one from the current instruction.
173 Value* ptrVal = gepI->getPointerOperand();
174 InstrTreeNode* ptrChild = gepNode->leftChild();
175
176 // Extract the index vector of the GEP instructin.
177 // If all indices are constant and first index is zero, try to fold
178 // in preceding GEPs with all constant indices.
179 for (User::op_iterator OI=gepI->idx_begin(), OE=gepI->idx_end();
180 allConstantIndices && OI != OE; ++OI)
181 if (! isa<Constant>(*OI))
182 allConstantIndices = false; // note: this also terminates loop!
183
184 // If we have only constant indices, fold chains of constant indices
185 // in this and any preceding GetElemPtr instructions.
186 bool foldedGEPs = false;
187 bool leadingNonZeroIdx = gepI && ! IsZero(*gepI->idx_begin());
188 if (allConstantIndices)
189 if (Value* newPtr = FoldGetElemChain(ptrChild, idxVec, leadingNonZeroIdx))
190 {
191 ptrVal = newPtr;
192 foldedGEPs = true;
193 }
194
195 // Append the index vector of the current instruction.
196 // Skip the leading [0] index if preceding GEPs were folded into this.
197 idxVec.insert(idxVec.end(),
198 gepI->idx_begin() + (foldedGEPs && !leadingNonZeroIdx),
199 gepI->idx_end());
200
201 return ptrVal;
202}
203
204//---------------------------------------------------------------------------
205// Function: GetMemInstArgs
206//
207// Purpose:
208// Get the pointer value and the index vector for a memory operation
209// (GetElementPtr, Load, or Store). If all indices of the given memory
210// operation are constant, fold in constant indices in a chain of
211// preceding GetElementPtr instructions (if any), and return the
212// pointer value of the first instruction in the chain.
213// All folded instructions are marked so no code is generated for them.
214//
215// Return values:
216// Returns the pointer Value to use.
217// Returns the resulting IndexVector in idxVec.
218// Returns true/false in allConstantIndices if all indices are/aren't const.
219//---------------------------------------------------------------------------
220
221static Value*
222GetMemInstArgs(InstructionNode* memInstrNode,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000223 std::vector<Value*>& idxVec,
Chris Lattner795ba6c2003-01-15 21:36:50 +0000224 bool& allConstantIndices)
225{
226 allConstantIndices = false;
227 Instruction* memInst = memInstrNode->getInstruction();
228 assert(idxVec.size() == 0 && "Need empty vector to return indices");
229
230 // If there is a GetElemPtr instruction to fold in to this instr,
231 // it must be in the left child for Load and GetElemPtr, and in the
232 // right child for Store instructions.
233 InstrTreeNode* ptrChild = (memInst->getOpcode() == Instruction::Store
234 ? memInstrNode->rightChild()
235 : memInstrNode->leftChild());
236
237 // Default pointer is the one from the current instruction.
238 Value* ptrVal = ptrChild->getValue();
239
240 // Find the "last" GetElemPtr instruction: this one or the immediate child.
241 // There will be none if this is a load or a store from a scalar pointer.
242 InstructionNode* gepNode = NULL;
243 if (isa<GetElementPtrInst>(memInst))
244 gepNode = memInstrNode;
245 else if (isa<InstructionNode>(ptrChild) && isa<GetElementPtrInst>(ptrVal))
246 { // Child of load/store is a GEP and memInst is its only use.
247 // Use its indices and mark it as folded.
248 gepNode = cast<InstructionNode>(ptrChild);
249 gepNode->markFoldedIntoParent();
250 }
251
252 // If there are no indices, return the current pointer.
253 // Else extract the pointer from the GEP and fold the indices.
254 return gepNode ? GetGEPInstArgs(gepNode, idxVec, allConstantIndices)
255 : ptrVal;
256}
257
Chris Lattner54e898e2003-01-15 19:23:34 +0000258
Chris Lattner20b1ea02001-09-14 03:47:57 +0000259//************************ Internal Functions ******************************/
260
Chris Lattner20b1ea02001-09-14 03:47:57 +0000261
Chris Lattner20b1ea02001-09-14 03:47:57 +0000262static inline MachineOpCode
263ChooseBprInstruction(const InstructionNode* instrNode)
264{
265 MachineOpCode opCode;
266
267 Instruction* setCCInstr =
268 ((InstructionNode*) instrNode->leftChild())->getInstruction();
269
270 switch(setCCInstr->getOpcode())
271 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000272 case Instruction::SetEQ: opCode = V9::BRZ; break;
273 case Instruction::SetNE: opCode = V9::BRNZ; break;
274 case Instruction::SetLE: opCode = V9::BRLEZ; break;
275 case Instruction::SetGE: opCode = V9::BRGEZ; break;
276 case Instruction::SetLT: opCode = V9::BRLZ; break;
277 case Instruction::SetGT: opCode = V9::BRGZ; break;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000278 default:
279 assert(0 && "Unrecognized VM instruction!");
Misha Brukmana98cd452003-05-20 20:32:24 +0000280 opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000281 break;
282 }
283
284 return opCode;
285}
286
287
288static inline MachineOpCode
Chris Lattner20b1ea02001-09-14 03:47:57 +0000289ChooseBpccInstruction(const InstructionNode* instrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000290 const BinaryOperator* setCCInstr)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000291{
Misha Brukmana98cd452003-05-20 20:32:24 +0000292 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000293
294 bool isSigned = setCCInstr->getOperand(0)->getType()->isSigned();
295
296 if (isSigned)
297 {
298 switch(setCCInstr->getOpcode())
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000299 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000300 case Instruction::SetEQ: opCode = V9::BE; break;
301 case Instruction::SetNE: opCode = V9::BNE; break;
302 case Instruction::SetLE: opCode = V9::BLE; break;
303 case Instruction::SetGE: opCode = V9::BGE; break;
304 case Instruction::SetLT: opCode = V9::BL; break;
305 case Instruction::SetGT: opCode = V9::BG; break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000306 default:
307 assert(0 && "Unrecognized VM instruction!");
308 break;
309 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000310 }
311 else
312 {
313 switch(setCCInstr->getOpcode())
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000314 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000315 case Instruction::SetEQ: opCode = V9::BE; break;
316 case Instruction::SetNE: opCode = V9::BNE; break;
317 case Instruction::SetLE: opCode = V9::BLEU; break;
318 case Instruction::SetGE: opCode = V9::BCC; break;
319 case Instruction::SetLT: opCode = V9::BCS; break;
320 case Instruction::SetGT: opCode = V9::BGU; break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000321 default:
322 assert(0 && "Unrecognized VM instruction!");
323 break;
324 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000325 }
326
327 return opCode;
328}
329
330static inline MachineOpCode
331ChooseBFpccInstruction(const InstructionNode* instrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000332 const BinaryOperator* setCCInstr)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000333{
Misha Brukmana98cd452003-05-20 20:32:24 +0000334 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000335
336 switch(setCCInstr->getOpcode())
337 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000338 case Instruction::SetEQ: opCode = V9::FBE; break;
339 case Instruction::SetNE: opCode = V9::FBNE; break;
340 case Instruction::SetLE: opCode = V9::FBLE; break;
341 case Instruction::SetGE: opCode = V9::FBGE; break;
342 case Instruction::SetLT: opCode = V9::FBL; break;
343 case Instruction::SetGT: opCode = V9::FBG; break;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000344 default:
345 assert(0 && "Unrecognized VM instruction!");
346 break;
347 }
348
349 return opCode;
350}
351
352
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000353// Create a unique TmpInstruction for a boolean value,
354// representing the CC register used by a branch on that value.
355// For now, hack this using a little static cache of TmpInstructions.
356// Eventually the entire BURG instruction selection should be put
357// into a separate class that can hold such information.
Vikram S. Adveff5a09e2001-11-08 05:04:09 +0000358// The static cache is not too bad because the memory for these
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000359// TmpInstructions will be freed along with the rest of the Function anyway.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000360//
361static TmpInstruction*
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000362GetTmpForCC(Value* boolVal, const Function *F, const Type* ccType)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000363{
Chris Lattner09ff1122002-07-24 21:21:32 +0000364 typedef hash_map<const Value*, TmpInstruction*> BoolTmpCache;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000365 static BoolTmpCache boolToTmpCache; // Map boolVal -> TmpInstruction*
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000366 static const Function *lastFunction = 0;// Use to flush cache between funcs
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000367
368 assert(boolVal->getType() == Type::BoolTy && "Weird but ok! Delete assert");
369
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000370 if (lastFunction != F)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000371 {
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000372 lastFunction = F;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000373 boolToTmpCache.clear();
374 }
375
Vikram S. Adveff5a09e2001-11-08 05:04:09 +0000376 // Look for tmpI and create a new one otherwise. The new value is
377 // directly written to map using the ref returned by operator[].
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000378 TmpInstruction*& tmpI = boolToTmpCache[boolVal];
379 if (tmpI == NULL)
Chris Lattner9c461082002-02-03 07:50:56 +0000380 tmpI = new TmpInstruction(ccType, boolVal);
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000381
382 return tmpI;
383}
384
385
Chris Lattner20b1ea02001-09-14 03:47:57 +0000386static inline MachineOpCode
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000387ChooseBccInstruction(const InstructionNode* instrNode,
388 bool& isFPBranch)
389{
390 InstructionNode* setCCNode = (InstructionNode*) instrNode->leftChild();
Vikram S. Adve30a6f492002-08-22 02:56:10 +0000391 assert(setCCNode->getOpLabel() == SetCCOp);
392 BinaryOperator* setCCInstr =cast<BinaryOperator>(setCCNode->getInstruction());
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000393 const Type* setCCType = setCCInstr->getOperand(0)->getType();
394
Vikram S. Adve242a8082002-05-19 15:25:51 +0000395 isFPBranch = setCCType->isFloatingPoint(); // Return value: don't delete!
396
397 if (isFPBranch)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000398 return ChooseBFpccInstruction(instrNode, setCCInstr);
399 else
400 return ChooseBpccInstruction(instrNode, setCCInstr);
401}
402
403
404static inline MachineOpCode
Chris Lattner20b1ea02001-09-14 03:47:57 +0000405ChooseMovFpccInstruction(const InstructionNode* instrNode)
406{
Misha Brukmana98cd452003-05-20 20:32:24 +0000407 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000408
409 switch(instrNode->getInstruction()->getOpcode())
410 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000411 case Instruction::SetEQ: opCode = V9::MOVFE; break;
412 case Instruction::SetNE: opCode = V9::MOVFNE; break;
413 case Instruction::SetLE: opCode = V9::MOVFLE; break;
414 case Instruction::SetGE: opCode = V9::MOVFGE; break;
415 case Instruction::SetLT: opCode = V9::MOVFL; break;
416 case Instruction::SetGT: opCode = V9::MOVFG; break;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000417 default:
418 assert(0 && "Unrecognized VM instruction!");
419 break;
420 }
421
422 return opCode;
423}
424
425
426// Assumes that SUBcc v1, v2 -> v3 has been executed.
427// In most cases, we want to clear v3 and then follow it by instruction
428// MOVcc 1 -> v3.
429// Set mustClearReg=false if v3 need not be cleared before conditional move.
430// Set valueToMove=0 if we want to conditionally move 0 instead of 1
431// (i.e., we want to test inverse of a condition)
Vikram S. Adve243dd452001-09-18 13:03:13 +0000432// (The latter two cases do not seem to arise because SetNE needs nothing.)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000433//
434static MachineOpCode
435ChooseMovpccAfterSub(const InstructionNode* instrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000436 bool& mustClearReg,
437 int& valueToMove)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000438{
Misha Brukmana98cd452003-05-20 20:32:24 +0000439 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000440 mustClearReg = true;
441 valueToMove = 1;
442
443 switch(instrNode->getInstruction()->getOpcode())
444 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000445 case Instruction::SetEQ: opCode = V9::MOVE; break;
446 case Instruction::SetLE: opCode = V9::MOVLE; break;
447 case Instruction::SetGE: opCode = V9::MOVGE; break;
448 case Instruction::SetLT: opCode = V9::MOVL; break;
449 case Instruction::SetGT: opCode = V9::MOVG; break;
Vikram S. Adve243dd452001-09-18 13:03:13 +0000450 case Instruction::SetNE: assert(0 && "No move required!"); break;
451 default: assert(0 && "Unrecognized VM instr!"); break;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000452 }
453
454 return opCode;
455}
456
Chris Lattner20b1ea02001-09-14 03:47:57 +0000457static inline MachineOpCode
Vikram S. Advedbc4fad2002-04-25 04:37:51 +0000458ChooseConvertToFloatInstr(OpLabel vopCode, const Type* opType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000459{
Misha Brukmana98cd452003-05-20 20:32:24 +0000460 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000461
Vikram S. Advedbc4fad2002-04-25 04:37:51 +0000462 switch(vopCode)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000463 {
464 case ToFloatTy:
465 if (opType == Type::SByteTy || opType == Type::ShortTy || opType == Type::IntTy)
Misha Brukmana98cd452003-05-20 20:32:24 +0000466 opCode = V9::FITOS;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000467 else if (opType == Type::LongTy)
Misha Brukmana98cd452003-05-20 20:32:24 +0000468 opCode = V9::FXTOS;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000469 else if (opType == Type::DoubleTy)
Misha Brukmana98cd452003-05-20 20:32:24 +0000470 opCode = V9::FDTOS;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000471 else if (opType == Type::FloatTy)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000472 ;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000473 else
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000474 assert(0 && "Cannot convert this type to FLOAT on SPARC");
Chris Lattner20b1ea02001-09-14 03:47:57 +0000475 break;
476
477 case ToDoubleTy:
Vikram S. Adve74825322002-03-18 03:15:35 +0000478 // This is usually used in conjunction with CreateCodeToCopyIntToFloat().
479 // Both functions should treat the integer as a 32-bit value for types
480 // of 4 bytes or less, and as a 64-bit value otherwise.
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000481 if (opType == Type::SByteTy || opType == Type::UByteTy ||
482 opType == Type::ShortTy || opType == Type::UShortTy ||
483 opType == Type::IntTy || opType == Type::UIntTy)
Misha Brukmana98cd452003-05-20 20:32:24 +0000484 opCode = V9::FITOD;
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000485 else if (opType == Type::LongTy || opType == Type::ULongTy)
Misha Brukmana98cd452003-05-20 20:32:24 +0000486 opCode = V9::FXTOD;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000487 else if (opType == Type::FloatTy)
Misha Brukmana98cd452003-05-20 20:32:24 +0000488 opCode = V9::FSTOD;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000489 else if (opType == Type::DoubleTy)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000490 ;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000491 else
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000492 assert(0 && "Cannot convert this type to DOUBLE on SPARC");
Chris Lattner20b1ea02001-09-14 03:47:57 +0000493 break;
494
495 default:
496 break;
497 }
498
499 return opCode;
500}
501
502static inline MachineOpCode
Vikram S. Adve94c40812002-09-27 14:33:08 +0000503ChooseConvertFPToIntInstr(Type::PrimitiveID tid, const Type* opType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000504{
Misha Brukmana98cd452003-05-20 20:32:24 +0000505 MachineOpCode opCode = V9::INVALID_OPCODE;;
Vikram S. Adve94c40812002-09-27 14:33:08 +0000506
507 assert((opType == Type::FloatTy || opType == Type::DoubleTy)
508 && "This function should only be called for FLOAT or DOUBLE");
509
510 if (tid==Type::UIntTyID)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000511 {
Vikram S. Adve94c40812002-09-27 14:33:08 +0000512 assert(tid != Type::UIntTyID && "FP-to-uint conversions must be expanded"
513 " into FP->long->uint for SPARC v9: SO RUN PRESELECTION PASS!");
514 }
515 else if (tid==Type::SByteTyID || tid==Type::ShortTyID || tid==Type::IntTyID ||
516 tid==Type::UByteTyID || tid==Type::UShortTyID)
517 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000518 opCode = (opType == Type::FloatTy)? V9::FSTOI : V9::FDTOI;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000519 }
Vikram S. Adve1e606692002-07-31 21:01:34 +0000520 else if (tid==Type::LongTyID || tid==Type::ULongTyID)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000521 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000522 opCode = (opType == Type::FloatTy)? V9::FSTOX : V9::FDTOX;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000523 }
524 else
525 assert(0 && "Should not get here, Mo!");
Vikram S. Adve94c40812002-09-27 14:33:08 +0000526
Chris Lattner20b1ea02001-09-14 03:47:57 +0000527 return opCode;
528}
529
Vikram S. Advedbc4fad2002-04-25 04:37:51 +0000530MachineInstr*
Vikram S. Adve94c40812002-09-27 14:33:08 +0000531CreateConvertFPToIntInstr(Type::PrimitiveID destTID,
532 Value* srcVal, Value* destVal)
Vikram S. Advedbc4fad2002-04-25 04:37:51 +0000533{
Vikram S. Adve94c40812002-09-27 14:33:08 +0000534 MachineOpCode opCode = ChooseConvertFPToIntInstr(destTID, srcVal->getType());
Misha Brukmana98cd452003-05-20 20:32:24 +0000535 assert(opCode != V9::INVALID_OPCODE && "Expected to need conversion!");
Chris Lattner00dca912003-01-15 17:47:49 +0000536 return BuildMI(opCode, 2).addReg(srcVal).addRegDef(destVal);
Vikram S. Advedbc4fad2002-04-25 04:37:51 +0000537}
Chris Lattner20b1ea02001-09-14 03:47:57 +0000538
Vikram S. Adve8cfffd32002-08-24 20:56:53 +0000539// CreateCodeToConvertFloatToInt: Convert FP value to signed or unsigned integer
Vikram S. Adve1e606692002-07-31 21:01:34 +0000540// The FP value must be converted to the dest type in an FP register,
541// and the result is then copied from FP to int register via memory.
Vikram S. Advebabc0fa2002-09-05 18:32:13 +0000542//
543// Since fdtoi converts to signed integers, any FP value V between MAXINT+1
544// and MAXUNSIGNED (i.e., 2^31 <= V <= 2^32-1) would be converted incorrectly
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000545// *only* when converting to an unsigned. (Unsigned byte, short or long
Vikram S. Advebabc0fa2002-09-05 18:32:13 +0000546// don't have this problem.)
547// For unsigned int, we therefore have to generate the code sequence:
548//
549// if (V > (float) MAXINT) {
550// unsigned result = (unsigned) (V - (float) MAXINT);
551// result = result + (unsigned) MAXINT;
552// }
553// else
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000554// result = (unsigned) V;
Vikram S. Advebabc0fa2002-09-05 18:32:13 +0000555//
Vikram S. Adve1e606692002-07-31 21:01:34 +0000556static void
Vikram S. Adve8cfffd32002-08-24 20:56:53 +0000557CreateCodeToConvertFloatToInt(const TargetMachine& target,
558 Value* opVal,
559 Instruction* destI,
560 std::vector<MachineInstr*>& mvec,
561 MachineCodeForInstruction& mcfi)
Vikram S. Adve1e606692002-07-31 21:01:34 +0000562{
563 // Create a temporary to represent the FP register into which the
564 // int value will placed after conversion. The type of this temporary
565 // depends on the type of FP register to use: single-prec for a 32-bit
566 // int or smaller; double-prec for a 64-bit int.
567 //
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000568 size_t destSize = target.getTargetData().getTypeSize(destI->getType());
Vikram S. Advebabc0fa2002-09-05 18:32:13 +0000569 const Type* destTypeToUse = (destSize > 4)? Type::DoubleTy : Type::FloatTy;
570 TmpInstruction* destForCast = new TmpInstruction(destTypeToUse, opVal);
Vikram S. Adve1e606692002-07-31 21:01:34 +0000571 mcfi.addTemp(destForCast);
572
573 // Create the fp-to-int conversion code
Vikram S. Adve94c40812002-09-27 14:33:08 +0000574 MachineInstr* M =CreateConvertFPToIntInstr(destI->getType()->getPrimitiveID(),
575 opVal, destForCast);
Vikram S. Adve1e606692002-07-31 21:01:34 +0000576 mvec.push_back(M);
577
578 // Create the fpreg-to-intreg copy code
579 target.getInstrInfo().
580 CreateCodeToCopyFloatToInt(target, destI->getParent()->getParent(),
Vikram S. Advebabc0fa2002-09-05 18:32:13 +0000581 destForCast, destI, mvec, mcfi);
Vikram S. Adve1e606692002-07-31 21:01:34 +0000582}
583
584
Chris Lattner20b1ea02001-09-14 03:47:57 +0000585static inline MachineOpCode
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000586ChooseAddInstruction(const InstructionNode* instrNode)
587{
588 return ChooseAddInstructionByType(instrNode->getInstruction()->getType());
589}
590
591
Chris Lattner20b1ea02001-09-14 03:47:57 +0000592static inline MachineInstr*
593CreateMovFloatInstruction(const InstructionNode* instrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000594 const Type* resultType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000595{
Misha Brukmana98cd452003-05-20 20:32:24 +0000596 return BuildMI((resultType == Type::FloatTy) ? V9::FMOVS : V9::FMOVD, 2)
Chris Lattner00dca912003-01-15 17:47:49 +0000597 .addReg(instrNode->leftChild()->getValue())
598 .addRegDef(instrNode->getValue());
Chris Lattner20b1ea02001-09-14 03:47:57 +0000599}
600
601static inline MachineInstr*
602CreateAddConstInstruction(const InstructionNode* instrNode)
603{
604 MachineInstr* minstr = NULL;
605
606 Value* constOp = ((InstrTreeNode*) instrNode->rightChild())->getValue();
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000607 assert(isa<Constant>(constOp));
Chris Lattner20b1ea02001-09-14 03:47:57 +0000608
609 // Cases worth optimizing are:
610 // (1) Add with 0 for float or double: use an FMOV of appropriate type,
611 // instead of an FADD (1 vs 3 cycles). There is no integer MOV.
612 //
Chris Lattner9b625032002-05-06 16:15:30 +0000613 if (ConstantFP *FPC = dyn_cast<ConstantFP>(constOp)) {
614 double dval = FPC->getValue();
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000615 if (dval == 0.0)
Vikram S. Adve242a8082002-05-19 15:25:51 +0000616 minstr = CreateMovFloatInstruction(instrNode,
617 instrNode->getInstruction()->getType());
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000618 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000619
620 return minstr;
621}
622
623
624static inline MachineOpCode
Vikram S. Adve510eec72001-11-04 21:59:14 +0000625ChooseSubInstructionByType(const Type* resultType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000626{
Misha Brukmana98cd452003-05-20 20:32:24 +0000627 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000628
Chris Lattner0c4e8862002-09-03 01:08:28 +0000629 if (resultType->isInteger() || isa<PointerType>(resultType))
Chris Lattner20b1ea02001-09-14 03:47:57 +0000630 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000631 opCode = V9::SUB;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000632 }
633 else
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000634 switch(resultType->getPrimitiveID())
635 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000636 case Type::FloatTyID: opCode = V9::FSUBS; break;
637 case Type::DoubleTyID: opCode = V9::FSUBD; break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000638 default: assert(0 && "Invalid type for SUB instruction"); break;
639 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000640
641 return opCode;
642}
643
644
645static inline MachineInstr*
646CreateSubConstInstruction(const InstructionNode* instrNode)
647{
648 MachineInstr* minstr = NULL;
649
650 Value* constOp = ((InstrTreeNode*) instrNode->rightChild())->getValue();
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000651 assert(isa<Constant>(constOp));
Chris Lattner20b1ea02001-09-14 03:47:57 +0000652
653 // Cases worth optimizing are:
654 // (1) Sub with 0 for float or double: use an FMOV of appropriate type,
655 // instead of an FSUB (1 vs 3 cycles). There is no integer MOV.
656 //
Chris Lattner9b625032002-05-06 16:15:30 +0000657 if (ConstantFP *FPC = dyn_cast<ConstantFP>(constOp)) {
658 double dval = FPC->getValue();
659 if (dval == 0.0)
Vikram S. Adve242a8082002-05-19 15:25:51 +0000660 minstr = CreateMovFloatInstruction(instrNode,
661 instrNode->getInstruction()->getType());
Chris Lattner9b625032002-05-06 16:15:30 +0000662 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000663
664 return minstr;
665}
666
667
668static inline MachineOpCode
669ChooseFcmpInstruction(const InstructionNode* instrNode)
670{
Misha Brukmana98cd452003-05-20 20:32:24 +0000671 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000672
673 Value* operand = ((InstrTreeNode*) instrNode->leftChild())->getValue();
674 switch(operand->getType()->getPrimitiveID()) {
Misha Brukmana98cd452003-05-20 20:32:24 +0000675 case Type::FloatTyID: opCode = V9::FCMPS; break;
676 case Type::DoubleTyID: opCode = V9::FCMPD; break;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000677 default: assert(0 && "Invalid type for FCMP instruction"); break;
678 }
679
680 return opCode;
681}
682
683
684// Assumes that leftArg and rightArg are both cast instructions.
685//
686static inline bool
687BothFloatToDouble(const InstructionNode* instrNode)
688{
689 InstrTreeNode* leftArg = instrNode->leftChild();
690 InstrTreeNode* rightArg = instrNode->rightChild();
691 InstrTreeNode* leftArgArg = leftArg->leftChild();
692 InstrTreeNode* rightArgArg = rightArg->leftChild();
693 assert(leftArg->getValue()->getType() == rightArg->getValue()->getType());
694
695 // Check if both arguments are floats cast to double
696 return (leftArg->getValue()->getType() == Type::DoubleTy &&
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000697 leftArgArg->getValue()->getType() == Type::FloatTy &&
698 rightArgArg->getValue()->getType() == Type::FloatTy);
Chris Lattner20b1ea02001-09-14 03:47:57 +0000699}
700
701
702static inline MachineOpCode
Vikram S. Adve510eec72001-11-04 21:59:14 +0000703ChooseMulInstructionByType(const Type* resultType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000704{
Misha Brukmana98cd452003-05-20 20:32:24 +0000705 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000706
Chris Lattner0c4e8862002-09-03 01:08:28 +0000707 if (resultType->isInteger())
Misha Brukmana98cd452003-05-20 20:32:24 +0000708 opCode = V9::MULX;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000709 else
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000710 switch(resultType->getPrimitiveID())
711 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000712 case Type::FloatTyID: opCode = V9::FMULS; break;
713 case Type::DoubleTyID: opCode = V9::FMULD; break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000714 default: assert(0 && "Invalid type for MUL instruction"); break;
715 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000716
717 return opCode;
718}
719
720
Vikram S. Adve510eec72001-11-04 21:59:14 +0000721
Chris Lattner20b1ea02001-09-14 03:47:57 +0000722static inline MachineInstr*
Vikram S. Adve74825322002-03-18 03:15:35 +0000723CreateIntNegInstruction(const TargetMachine& target,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000724 Value* vreg)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000725{
Misha Brukmana98cd452003-05-20 20:32:24 +0000726 return BuildMI(V9::SUB, 3).addMReg(target.getRegInfo().getZeroRegNum())
727 .addReg(vreg).addRegDef(vreg);
Chris Lattner20b1ea02001-09-14 03:47:57 +0000728}
729
730
Vikram S. Adve242a8082002-05-19 15:25:51 +0000731// Create instruction sequence for any shift operation.
732// SLL or SLLX on an operand smaller than the integer reg. size (64bits)
733// requires a second instruction for explicit sign-extension.
734// Note that we only have to worry about a sign-bit appearing in the
735// most significant bit of the operand after shifting (e.g., bit 32 of
736// Int or bit 16 of Short), so we do not have to worry about results
737// that are as large as a normal integer register.
738//
739static inline void
740CreateShiftInstructions(const TargetMachine& target,
741 Function* F,
742 MachineOpCode shiftOpCode,
743 Value* argVal1,
744 Value* optArgVal2, /* Use optArgVal2 if not NULL */
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000745 unsigned optShiftNum, /* else use optShiftNum */
Vikram S. Adve242a8082002-05-19 15:25:51 +0000746 Instruction* destVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000747 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000748 MachineCodeForInstruction& mcfi)
749{
750 assert((optArgVal2 != NULL || optShiftNum <= 64) &&
751 "Large shift sizes unexpected, but can be handled below: "
752 "You need to check whether or not it fits in immed field below");
753
754 // If this is a logical left shift of a type smaller than the standard
755 // integer reg. size, we have to extend the sign-bit into upper bits
756 // of dest, so we need to put the result of the SLL into a temporary.
757 //
758 Value* shiftDest = destVal;
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000759 unsigned opSize = target.getTargetData().getTypeSize(argVal1->getType());
Misha Brukmana98cd452003-05-20 20:32:24 +0000760 if ((shiftOpCode == V9::SLL || shiftOpCode == V9::SLLX) && opSize < 8)
Vikram S. Adve242a8082002-05-19 15:25:51 +0000761 { // put SLL result into a temporary
762 shiftDest = new TmpInstruction(argVal1, optArgVal2, "sllTmp");
763 mcfi.addTemp(shiftDest);
764 }
765
766 MachineInstr* M = (optArgVal2 != NULL)
Chris Lattnere5b1ed92003-01-15 00:03:28 +0000767 ? BuildMI(shiftOpCode, 3).addReg(argVal1).addReg(optArgVal2)
768 .addReg(shiftDest, MOTy::Def)
769 : BuildMI(shiftOpCode, 3).addReg(argVal1).addZImm(optShiftNum)
770 .addReg(shiftDest, MOTy::Def);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000771 mvec.push_back(M);
772
773 if (shiftDest != destVal)
774 { // extend the sign-bit of the result into all upper bits of dest
775 assert(8*opSize <= 32 && "Unexpected type size > 4 and < IntRegSize?");
776 target.getInstrInfo().
Vikram S. Adve94c40812002-09-27 14:33:08 +0000777 CreateSignExtensionInstructions(target, F, shiftDest, destVal,
778 8*opSize, mvec, mcfi);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000779 }
780}
781
782
Vikram S. Adve74825322002-03-18 03:15:35 +0000783// Does not create any instructions if we cannot exploit constant to
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000784// create a cheaper instruction.
785// This returns the approximate cost of the instructions generated,
786// which is used to pick the cheapest when both operands are constant.
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000787static inline unsigned
Vikram S. Adve242a8082002-05-19 15:25:51 +0000788CreateMulConstInstruction(const TargetMachine &target, Function* F,
789 Value* lval, Value* rval, Instruction* destVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000790 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000791 MachineCodeForInstruction& mcfi)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000792{
Vikram S. Adve242a8082002-05-19 15:25:51 +0000793 /* Use max. multiply cost, viz., cost of MULX */
Misha Brukmana98cd452003-05-20 20:32:24 +0000794 unsigned cost = target.getInstrInfo().minLatency(V9::MULX);
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000795 unsigned firstNewInstr = mvec.size();
Vikram S. Adve74825322002-03-18 03:15:35 +0000796
797 Value* constOp = rval;
798 if (! isa<Constant>(constOp))
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000799 return cost;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000800
801 // Cases worth optimizing are:
802 // (1) Multiply by 0 or 1 for any type: replace with copy (ADD or FMOV)
803 // (2) Multiply by 2^x for integer types: replace with Shift
804 //
Vikram S. Adve74825322002-03-18 03:15:35 +0000805 const Type* resultType = destVal->getType();
Chris Lattner20b1ea02001-09-14 03:47:57 +0000806
Misha Brukmana98cd452003-05-20 20:32:24 +0000807 if (resultType->isInteger() || isa<PointerType>(resultType)) {
808 bool isValidConst;
809 int64_t C = GetConstantValueAsSignedInt(constOp, isValidConst);
810 if (isValidConst) {
811 unsigned pow;
812 bool needNeg = false;
813 if (C < 0) {
814 needNeg = true;
815 C = -C;
816 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000817
Misha Brukmana98cd452003-05-20 20:32:24 +0000818 if (C == 0 || C == 1) {
819 cost = target.getInstrInfo().minLatency(V9::ADD);
820 unsigned Zero = target.getRegInfo().getZeroRegNum();
821 MachineInstr* M;
822 if (C == 0)
823 M = BuildMI(V9::ADD,3).addMReg(Zero).addMReg(Zero).addRegDef(destVal);
824 else
825 M = BuildMI(V9::ADD,3).addReg(lval).addMReg(Zero).addRegDef(destVal);
826 mvec.push_back(M);
827 }
828 else if (isPowerOf2(C, pow)) {
829 unsigned opSize = target.getTargetData().getTypeSize(resultType);
830 MachineOpCode opCode = (opSize <= 32)? V9::SLL : V9::SLLX;
831 CreateShiftInstructions(target, F, opCode, lval, NULL, pow,
832 destVal, mvec, mcfi);
833 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000834
Misha Brukmana98cd452003-05-20 20:32:24 +0000835 if (mvec.size() > 0 && needNeg)
836 { // insert <reg = SUB 0, reg> after the instr to flip the sign
837 MachineInstr* M = CreateIntNegInstruction(target, destVal);
838 mvec.push_back(M);
839 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000840 }
Misha Brukmana98cd452003-05-20 20:32:24 +0000841 } else {
842 if (ConstantFP *FPC = dyn_cast<ConstantFP>(constOp)) {
843 double dval = FPC->getValue();
844 if (fabs(dval) == 1) {
845 MachineOpCode opCode = (dval < 0)
846 ? (resultType == Type::FloatTy? V9::FNEGS : V9::FNEGD)
847 : (resultType == Type::FloatTy? V9::FMOVS : V9::FMOVD);
848 mvec.push_back(BuildMI(opCode,2).addReg(lval).addRegDef(destVal));
849 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000850 }
Misha Brukmana98cd452003-05-20 20:32:24 +0000851 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000852
Misha Brukmana98cd452003-05-20 20:32:24 +0000853 if (firstNewInstr < mvec.size()) {
854 cost = 0;
855 for (unsigned i=firstNewInstr; i < mvec.size(); ++i)
856 cost += target.getInstrInfo().minLatency(mvec[i]->getOpCode());
857 }
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000858
859 return cost;
Vikram S. Adve74825322002-03-18 03:15:35 +0000860}
861
862
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000863// Does not create any instructions if we cannot exploit constant to
864// create a cheaper instruction.
865//
866static inline void
867CreateCheapestMulConstInstruction(const TargetMachine &target,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000868 Function* F,
869 Value* lval, Value* rval,
870 Instruction* destVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000871 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000872 MachineCodeForInstruction& mcfi)
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000873{
874 Value* constOp;
875 if (isa<Constant>(lval) && isa<Constant>(rval))
Vikram S. Adved3e26482002-10-13 00:18:57 +0000876 { // both operands are constant: evaluate and "set" in dest
877 Constant* P = ConstantFoldBinaryInstruction(Instruction::Mul,
878 cast<Constant>(lval), cast<Constant>(rval));
879 target.getInstrInfo().CreateCodeToLoadConst(target,F,P,destVal,mvec,mcfi);
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000880 }
881 else if (isa<Constant>(rval)) // rval is constant, but not lval
Vikram S. Adve242a8082002-05-19 15:25:51 +0000882 CreateMulConstInstruction(target, F, lval, rval, destVal, mvec, mcfi);
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000883 else if (isa<Constant>(lval)) // lval is constant, but not rval
Vikram S. Adve242a8082002-05-19 15:25:51 +0000884 CreateMulConstInstruction(target, F, lval, rval, destVal, mvec, mcfi);
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000885
886 // else neither is constant
887 return;
888}
889
Vikram S. Adve74825322002-03-18 03:15:35 +0000890// Return NULL if we cannot exploit constant to create a cheaper instruction
891static inline void
Vikram S. Adve242a8082002-05-19 15:25:51 +0000892CreateMulInstruction(const TargetMachine &target, Function* F,
893 Value* lval, Value* rval, Instruction* destVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000894 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000895 MachineCodeForInstruction& mcfi,
Vikram S. Adve74825322002-03-18 03:15:35 +0000896 MachineOpCode forceMulOp = INVALID_MACHINE_OPCODE)
897{
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000898 unsigned L = mvec.size();
Vikram S. Adve242a8082002-05-19 15:25:51 +0000899 CreateCheapestMulConstInstruction(target,F, lval, rval, destVal, mvec, mcfi);
Misha Brukmana98cd452003-05-20 20:32:24 +0000900 if (mvec.size() == L) {
901 // no instructions were added so create MUL reg, reg, reg.
902 // Use FSMULD if both operands are actually floats cast to doubles.
903 // Otherwise, use the default opcode for the appropriate type.
904 MachineOpCode mulOp = ((forceMulOp != INVALID_MACHINE_OPCODE)
905 ? forceMulOp
906 : ChooseMulInstructionByType(destVal->getType()));
907 mvec.push_back(BuildMI(mulOp, 3).addReg(lval).addReg(rval)
908 .addRegDef(destVal));
909 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000910}
911
912
Vikram S. Adve510eec72001-11-04 21:59:14 +0000913// Generate a divide instruction for Div or Rem.
914// For Rem, this assumes that the operand type will be signed if the result
915// type is signed. This is correct because they must have the same sign.
916//
Chris Lattner20b1ea02001-09-14 03:47:57 +0000917static inline MachineOpCode
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000918ChooseDivInstruction(TargetMachine &target,
919 const InstructionNode* instrNode)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000920{
Misha Brukmana98cd452003-05-20 20:32:24 +0000921 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000922
923 const Type* resultType = instrNode->getInstruction()->getType();
924
Chris Lattner0c4e8862002-09-03 01:08:28 +0000925 if (resultType->isInteger())
Misha Brukmana98cd452003-05-20 20:32:24 +0000926 opCode = resultType->isSigned()? V9::SDIVX : V9::UDIVX;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000927 else
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000928 switch(resultType->getPrimitiveID())
929 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000930 case Type::FloatTyID: opCode = V9::FDIVS; break;
931 case Type::DoubleTyID: opCode = V9::FDIVD; break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000932 default: assert(0 && "Invalid type for DIV instruction"); break;
933 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000934
935 return opCode;
936}
937
938
Chris Lattner54e898e2003-01-15 19:23:34 +0000939// Return if we cannot exploit constant to create a cheaper instruction
Vikram S. Adve74825322002-03-18 03:15:35 +0000940static inline void
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000941CreateDivConstInstruction(TargetMachine &target,
942 const InstructionNode* instrNode,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000943 std::vector<MachineInstr*>& mvec)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000944{
Chris Lattner54e898e2003-01-15 19:23:34 +0000945 Value* LHS = instrNode->leftChild()->getValue();
Chris Lattner20b1ea02001-09-14 03:47:57 +0000946 Value* constOp = ((InstrTreeNode*) instrNode->rightChild())->getValue();
Chris Lattner54e898e2003-01-15 19:23:34 +0000947 if (!isa<Constant>(constOp))
Vikram S. Adve74825322002-03-18 03:15:35 +0000948 return;
Chris Lattner54e898e2003-01-15 19:23:34 +0000949
950 Value* DestVal = instrNode->getValue();
951 unsigned ZeroReg = target.getRegInfo().getZeroRegNum();
Chris Lattner20b1ea02001-09-14 03:47:57 +0000952
953 // Cases worth optimizing are:
954 // (1) Divide by 1 for any type: replace with copy (ADD or FMOV)
955 // (2) Divide by 2^x for integer types: replace with SR[L or A]{X}
956 //
957 const Type* resultType = instrNode->getInstruction()->getType();
Chris Lattner54e898e2003-01-15 19:23:34 +0000958
Chris Lattner0c4e8862002-09-03 01:08:28 +0000959 if (resultType->isInteger())
Misha Brukmana98cd452003-05-20 20:32:24 +0000960 {
961 unsigned pow;
962 bool isValidConst;
963 int64_t C = GetConstantValueAsSignedInt(constOp, isValidConst);
964 if (isValidConst) {
965 bool needNeg = false;
966 if (C < 0) {
967 needNeg = true;
968 C = -C;
969 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000970
Misha Brukmana98cd452003-05-20 20:32:24 +0000971 if (C == 1) {
972 mvec.push_back(BuildMI(V9::ADD, 3).addReg(LHS).addMReg(ZeroReg)
973 .addRegDef(DestVal));
974 } else if (isPowerOf2(C, pow)) {
975 unsigned opCode= ((resultType->isSigned())
976 ? (resultType==Type::LongTy) ? V9::SRAX : V9::SRA
977 : (resultType==Type::LongTy) ? V9::SRLX : V9::SRL);
978 mvec.push_back(BuildMI(opCode, 3).addReg(LHS).addZImm(pow)
979 .addRegDef(DestVal));
980 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000981
Misha Brukmana98cd452003-05-20 20:32:24 +0000982 if (needNeg && (C == 1 || isPowerOf2(C, pow))) {
983 // insert <reg = SUB 0, reg> after the instr to flip the sign
984 mvec.push_back(CreateIntNegInstruction(target, DestVal));
985 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000986 }
Misha Brukmana98cd452003-05-20 20:32:24 +0000987 } else {
988 if (ConstantFP *FPC = dyn_cast<ConstantFP>(constOp)) {
989 double dval = FPC->getValue();
990 if (fabs(dval) == 1) {
991 unsigned opCode =
992 (dval < 0) ? (resultType == Type::FloatTy? V9::FNEGS : V9::FNEGD)
993 : (resultType == Type::FloatTy? V9::FMOVS : V9::FMOVD);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000994
Misha Brukmana98cd452003-05-20 20:32:24 +0000995 mvec.push_back(BuildMI(opCode, 2).addReg(LHS).addRegDef(DestVal));
996 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000997 }
Misha Brukmana98cd452003-05-20 20:32:24 +0000998 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000999}
1000
1001
Vikram S. Adve74825322002-03-18 03:15:35 +00001002static void
1003CreateCodeForVariableSizeAlloca(const TargetMachine& target,
1004 Instruction* result,
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001005 unsigned tsize,
Vikram S. Adve74825322002-03-18 03:15:35 +00001006 Value* numElementsVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001007 std::vector<MachineInstr*>& getMvec)
Vikram S. Adve74825322002-03-18 03:15:35 +00001008{
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001009 Value* totalSizeVal;
Vikram S. Adve74825322002-03-18 03:15:35 +00001010 MachineInstr* M;
Vikram S. Adved3e26482002-10-13 00:18:57 +00001011 MachineCodeForInstruction& mcfi = MachineCodeForInstruction::get(result);
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001012 Function *F = result->getParent()->getParent();
Vikram S. Adved3e26482002-10-13 00:18:57 +00001013
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001014 // Enforce the alignment constraints on the stack pointer at
1015 // compile time if the total size is a known constant.
1016 if (isa<Constant>(numElementsVal))
1017 {
1018 bool isValid;
1019 int64_t numElem = GetConstantValueAsSignedInt(numElementsVal, isValid);
1020 assert(isValid && "Unexpectedly large array dimension in alloca!");
1021 int64_t total = numElem * tsize;
1022 if (int extra= total % target.getFrameInfo().getStackFrameSizeAlignment())
1023 total += target.getFrameInfo().getStackFrameSizeAlignment() - extra;
1024 totalSizeVal = ConstantSInt::get(Type::IntTy, total);
1025 }
1026 else
1027 {
1028 // The size is not a constant. Generate code to compute it and
1029 // code to pad the size for stack alignment.
1030 // Create a Value to hold the (constant) element size
1031 Value* tsizeVal = ConstantSInt::get(Type::IntTy, tsize);
1032
1033 // Create temporary values to hold the result of MUL, SLL, SRL
1034 // THIS CASE IS INCOMPLETE AND WILL BE FIXED SHORTLY.
1035 TmpInstruction* tmpProd = new TmpInstruction(numElementsVal, tsizeVal);
1036 TmpInstruction* tmpSLL = new TmpInstruction(numElementsVal, tmpProd);
1037 TmpInstruction* tmpSRL = new TmpInstruction(numElementsVal, tmpSLL);
1038 mcfi.addTemp(tmpProd);
1039 mcfi.addTemp(tmpSLL);
1040 mcfi.addTemp(tmpSRL);
1041
1042 // Instruction 1: mul numElements, typeSize -> tmpProd
1043 // This will optimize the MUL as far as possible.
1044 CreateMulInstruction(target, F, numElementsVal, tsizeVal, tmpProd,getMvec,
1045 mcfi, INVALID_MACHINE_OPCODE);
1046
1047 assert(0 && "Need to insert padding instructions here!");
1048
1049 totalSizeVal = tmpProd;
1050 }
Vikram S. Adve74825322002-03-18 03:15:35 +00001051
1052 // Get the constant offset from SP for dynamically allocated storage
1053 // and create a temporary Value to hold it.
Misha Brukmanfce11432002-10-28 00:28:31 +00001054 MachineFunction& mcInfo = MachineFunction::get(F);
Vikram S. Adve74825322002-03-18 03:15:35 +00001055 bool growUp;
1056 ConstantSInt* dynamicAreaOffset =
1057 ConstantSInt::get(Type::IntTy,
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001058 target.getFrameInfo().getDynamicAreaOffset(mcInfo,growUp));
Vikram S. Adve74825322002-03-18 03:15:35 +00001059 assert(! growUp && "Has SPARC v9 stack frame convention changed?");
1060
Chris Lattner54e898e2003-01-15 19:23:34 +00001061 unsigned SPReg = target.getRegInfo().getStackPointer();
1062
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001063 // Instruction 2: sub %sp, totalSizeVal -> %sp
Misha Brukmana98cd452003-05-20 20:32:24 +00001064 getMvec.push_back(BuildMI(V9::SUB, 3).addMReg(SPReg).addReg(totalSizeVal)
1065 .addMReg(SPReg,MOTy::Def));
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001066
Vikram S. Adve74825322002-03-18 03:15:35 +00001067 // Instruction 3: add %sp, frameSizeBelowDynamicArea -> result
Misha Brukmana98cd452003-05-20 20:32:24 +00001068 getMvec.push_back(BuildMI(V9::ADD, 3).addMReg(SPReg).addReg(dynamicAreaOffset)
1069 .addRegDef(result));
Vikram S. Adve74825322002-03-18 03:15:35 +00001070}
1071
1072
1073static void
1074CreateCodeForFixedSizeAlloca(const TargetMachine& target,
1075 Instruction* result,
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001076 unsigned tsize,
1077 unsigned numElements,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001078 std::vector<MachineInstr*>& getMvec)
Vikram S. Adve74825322002-03-18 03:15:35 +00001079{
Vikram S. Adved3e26482002-10-13 00:18:57 +00001080 assert(tsize > 0 && "Illegal (zero) type size for alloca");
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001081 assert(result && result->getParent() &&
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001082 "Result value is not part of a function?");
1083 Function *F = result->getParent()->getParent();
Misha Brukmanfce11432002-10-28 00:28:31 +00001084 MachineFunction &mcInfo = MachineFunction::get(F);
Vikram S. Adve74825322002-03-18 03:15:35 +00001085
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001086 // Check if the offset would small enough to use as an immediate in
1087 // load/stores (check LDX because all load/stores have the same-size immediate
1088 // field). If not, put the variable in the dynamically sized area of the
1089 // frame.
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001090 unsigned paddedSizeIgnored;
1091 int offsetFromFP = mcInfo.getInfo()->computeOffsetforLocalVar(result,
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001092 paddedSizeIgnored,
Vikram S. Adve74825322002-03-18 03:15:35 +00001093 tsize * numElements);
Misha Brukmana98cd452003-05-20 20:32:24 +00001094 if (! target.getInstrInfo().constantFitsInImmedField(V9::LDX, offsetFromFP)) {
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001095 CreateCodeForVariableSizeAlloca(target, result, tsize,
1096 ConstantSInt::get(Type::IntTy,numElements),
1097 getMvec);
1098 return;
1099 }
Vikram S. Adve74825322002-03-18 03:15:35 +00001100
1101 // else offset fits in immediate field so go ahead and allocate it.
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001102 offsetFromFP = mcInfo.getInfo()->allocateLocalVar(result, tsize *numElements);
Vikram S. Adve74825322002-03-18 03:15:35 +00001103
1104 // Create a temporary Value to hold the constant offset.
1105 // This is needed because it may not fit in the immediate field.
1106 ConstantSInt* offsetVal = ConstantSInt::get(Type::IntTy, offsetFromFP);
1107
1108 // Instruction 1: add %fp, offsetFromFP -> result
Chris Lattner54e898e2003-01-15 19:23:34 +00001109 unsigned FPReg = target.getRegInfo().getFramePointer();
Misha Brukmana98cd452003-05-20 20:32:24 +00001110 getMvec.push_back(BuildMI(V9::ADD, 3).addMReg(FPReg).addReg(offsetVal)
1111 .addRegDef(result));
Vikram S. Adve74825322002-03-18 03:15:35 +00001112}
1113
1114
Chris Lattner20b1ea02001-09-14 03:47:57 +00001115//------------------------------------------------------------------------
1116// Function SetOperandsForMemInstr
1117//
1118// Choose addressing mode for the given load or store instruction.
1119// Use [reg+reg] if it is an indexed reference, and the index offset is
1120// not a constant or if it cannot fit in the offset field.
1121// Use [reg+offset] in all other cases.
1122//
1123// This assumes that all array refs are "lowered" to one of these forms:
1124// %x = load (subarray*) ptr, constant ; single constant offset
1125// %x = load (subarray*) ptr, offsetVal ; single non-constant offset
1126// Generally, this should happen via strength reduction + LICM.
1127// Also, strength reduction should take care of using the same register for
1128// the loop index variable and an array index, when that is profitable.
1129//------------------------------------------------------------------------
1130
1131static void
Chris Lattner54e898e2003-01-15 19:23:34 +00001132SetOperandsForMemInstr(unsigned Opcode,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001133 std::vector<MachineInstr*>& mvec,
Vikram S. Adveefc94332002-10-14 16:32:24 +00001134 InstructionNode* vmInstrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001135 const TargetMachine& target)
Chris Lattner20b1ea02001-09-14 03:47:57 +00001136{
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001137 Instruction* memInst = vmInstrNode->getInstruction();
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001138 // Index vector, ptr value, and flag if all indices are const.
Misha Brukmanee563cb2003-05-21 17:59:06 +00001139 std::vector<Value*> idxVec;
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001140 bool allConstantIndices;
1141 Value* ptrVal = GetMemInstArgs(vmInstrNode, idxVec, allConstantIndices);
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001142
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001143 // Now create the appropriate operands for the machine instruction.
1144 // First, initialize so we default to storing the offset in a register.
Chris Lattner8e5c0b42001-11-07 14:01:59 +00001145 int64_t smallConstOffset = 0;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001146 Value* valueForRegOffset = NULL;
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001147 MachineOperand::MachineOperandType offsetOpType =
1148 MachineOperand::MO_VirtualRegister;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001149
Vikram S. Adve74825322002-03-18 03:15:35 +00001150 // Check if there is an index vector and if so, compute the
1151 // right offset for structures and for arrays
Chris Lattner20b1ea02001-09-14 03:47:57 +00001152 //
Chris Lattner3bb8ad22002-08-22 23:37:24 +00001153 if (!idxVec.empty())
Chris Lattner20b1ea02001-09-14 03:47:57 +00001154 {
Vikram S. Adve74825322002-03-18 03:15:35 +00001155 const PointerType* ptrType = cast<PointerType>(ptrVal->getType());
Chris Lattner20b1ea02001-09-14 03:47:57 +00001156
Vikram S. Adve242a8082002-05-19 15:25:51 +00001157 // If all indices are constant, compute the combined offset directly.
1158 if (allConstantIndices)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001159 {
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001160 // Compute the offset value using the index vector. Create a
1161 // virtual reg. for it since it may not fit in the immed field.
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001162 uint64_t offset = target.getTargetData().getIndexedOffset(ptrType,idxVec);
Vikram S. Adve242a8082002-05-19 15:25:51 +00001163 valueForRegOffset = ConstantSInt::get(Type::LongTy, offset);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001164 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001165 else
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001166 {
Vikram S. Adve242a8082002-05-19 15:25:51 +00001167 // There is at least one non-constant offset. Therefore, this must
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001168 // be an array ref, and must have been lowered to a single non-zero
1169 // offset. (An extra leading zero offset, if any, can be ignored.)
1170 // Generate code sequence to compute address from index.
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001171 //
Chris Lattner795ba6c2003-01-15 21:36:50 +00001172 bool firstIdxIsZero = IsZero(idxVec[0]);
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001173 assert(idxVec.size() == 1U + firstIdxIsZero
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001174 && "Array refs must be lowered before Instruction Selection");
1175
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001176 Value* idxVal = idxVec[firstIdxIsZero];
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001177
Misha Brukmanee563cb2003-05-21 17:59:06 +00001178 std::vector<MachineInstr*> mulVec;
Vikram S. Adve94c40812002-09-27 14:33:08 +00001179 Instruction* addr = new TmpInstruction(Type::ULongTy, memInst);
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001180 MachineCodeForInstruction::get(memInst).addTemp(addr);
1181
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001182 // Get the array type indexed by idxVal, and compute its element size.
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001183 // The call to getTypeSize() will fail if size is not constant.
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001184 const Type* vecType = (firstIdxIsZero
1185 ? GetElementPtrInst::getIndexedType(ptrType,
1186 std::vector<Value*>(1U, idxVec[0]),
1187 /*AllowCompositeLeaf*/ true)
1188 : ptrType);
1189 const Type* eltType = cast<SequentialType>(vecType)->getElementType();
Vikram S. Advee102a642002-09-16 15:56:45 +00001190 ConstantUInt* eltSizeVal = ConstantUInt::get(Type::ULongTy,
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001191 target.getTargetData().getTypeSize(eltType));
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001192
1193 // CreateMulInstruction() folds constants intelligently enough.
Vikram S. Adved3e26482002-10-13 00:18:57 +00001194 CreateMulInstruction(target, memInst->getParent()->getParent(),
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001195 idxVal, /* lval, not likely to be const*/
1196 eltSizeVal, /* rval, likely to be constant */
1197 addr, /* result */
Vikram S. Adved3e26482002-10-13 00:18:57 +00001198 mulVec, MachineCodeForInstruction::get(memInst),
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001199 INVALID_MACHINE_OPCODE);
1200
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001201 assert(mulVec.size() > 0 && "No multiply code created?");
Chris Lattner54e898e2003-01-15 19:23:34 +00001202 mvec.insert(mvec.end(), mulVec.begin(), mulVec.end());
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001203
1204 valueForRegOffset = addr;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001205 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001206 }
1207 else
1208 {
1209 offsetOpType = MachineOperand::MO_SignExtendedImmed;
1210 smallConstOffset = 0;
1211 }
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001212
Vikram S. Advea10d1a72002-03-31 19:07:35 +00001213 // For STORE:
1214 // Operand 0 is value, operand 1 is ptr, operand 2 is offset
1215 // For LOAD or GET_ELEMENT_PTR,
1216 // Operand 0 is ptr, operand 1 is offset, operand 2 is result.
1217 //
1218 unsigned offsetOpNum, ptrOpNum;
Chris Lattner54e898e2003-01-15 19:23:34 +00001219 MachineInstr *MI;
1220 if (memInst->getOpcode() == Instruction::Store) {
1221 if (offsetOpType == MachineOperand::MO_VirtualRegister)
1222 MI = BuildMI(Opcode, 3).addReg(vmInstrNode->leftChild()->getValue())
1223 .addReg(ptrVal).addReg(valueForRegOffset);
1224 else
1225 MI = BuildMI(Opcode, 3).addReg(vmInstrNode->leftChild()->getValue())
1226 .addReg(ptrVal).addSImm(smallConstOffset);
1227 } else {
1228 if (offsetOpType == MachineOperand::MO_VirtualRegister)
1229 MI = BuildMI(Opcode, 3).addReg(ptrVal).addReg(valueForRegOffset)
1230 .addRegDef(memInst);
1231 else
1232 MI = BuildMI(Opcode, 3).addReg(ptrVal).addSImm(smallConstOffset)
1233 .addRegDef(memInst);
1234 }
1235 mvec.push_back(MI);
Chris Lattner20b1ea02001-09-14 03:47:57 +00001236}
1237
1238
Chris Lattner20b1ea02001-09-14 03:47:57 +00001239//
1240// Substitute operand `operandNum' of the instruction in node `treeNode'
Vikram S. Advec025fc12001-10-14 23:28:43 +00001241// in place of the use(s) of that instruction in node `parent'.
1242// Check both explicit and implicit operands!
Vikram S. Adve74825322002-03-18 03:15:35 +00001243// Also make sure to skip over a parent who:
1244// (1) is a list node in the Burg tree, or
1245// (2) itself had its results forwarded to its parent
Chris Lattner20b1ea02001-09-14 03:47:57 +00001246//
1247static void
1248ForwardOperand(InstructionNode* treeNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001249 InstrTreeNode* parent,
1250 int operandNum)
Chris Lattner20b1ea02001-09-14 03:47:57 +00001251{
Vikram S. Adve243dd452001-09-18 13:03:13 +00001252 assert(treeNode && parent && "Invalid invocation of ForwardOperand");
1253
Chris Lattner20b1ea02001-09-14 03:47:57 +00001254 Instruction* unusedOp = treeNode->getInstruction();
1255 Value* fwdOp = unusedOp->getOperand(operandNum);
Vikram S. Adve243dd452001-09-18 13:03:13 +00001256
1257 // The parent itself may be a list node, so find the real parent instruction
1258 while (parent->getNodeType() != InstrTreeNode::NTInstructionNode)
1259 {
1260 parent = parent->parent();
1261 assert(parent && "ERROR: Non-instruction node has no parent in tree.");
1262 }
1263 InstructionNode* parentInstrNode = (InstructionNode*) parent;
1264
1265 Instruction* userInstr = parentInstrNode->getInstruction();
Chris Lattner9c461082002-02-03 07:50:56 +00001266 MachineCodeForInstruction &mvec = MachineCodeForInstruction::get(userInstr);
Vikram S. Adve74825322002-03-18 03:15:35 +00001267
1268 // The parent's mvec would be empty if it was itself forwarded.
1269 // Recursively call ForwardOperand in that case...
1270 //
1271 if (mvec.size() == 0)
Chris Lattner20b1ea02001-09-14 03:47:57 +00001272 {
Vikram S. Adve74825322002-03-18 03:15:35 +00001273 assert(parent->parent() != NULL &&
1274 "Parent could not have been forwarded, yet has no instructions?");
1275 ForwardOperand(treeNode, parent->parent(), operandNum);
1276 }
1277 else
1278 {
Vikram S. Adve74825322002-03-18 03:15:35 +00001279 for (unsigned i=0, N=mvec.size(); i < N; i++)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001280 {
Vikram S. Adve74825322002-03-18 03:15:35 +00001281 MachineInstr* minstr = mvec[i];
1282 for (unsigned i=0, numOps=minstr->getNumOperands(); i < numOps; ++i)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001283 {
Vikram S. Adve74825322002-03-18 03:15:35 +00001284 const MachineOperand& mop = minstr->getOperand(i);
Chris Lattner133f0792002-10-28 04:45:29 +00001285 if (mop.getType() == MachineOperand::MO_VirtualRegister &&
Vikram S. Adve74825322002-03-18 03:15:35 +00001286 mop.getVRegValue() == unusedOp)
Vikram S. Adve242a8082002-05-19 15:25:51 +00001287 minstr->SetMachineOperandVal(i,
Vikram S. Adve74825322002-03-18 03:15:35 +00001288 MachineOperand::MO_VirtualRegister, fwdOp);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001289 }
Vikram S. Adve74825322002-03-18 03:15:35 +00001290
1291 for (unsigned i=0,numOps=minstr->getNumImplicitRefs(); i<numOps; ++i)
1292 if (minstr->getImplicitRef(i) == unusedOp)
Vikram S. Adve242a8082002-05-19 15:25:51 +00001293 minstr->setImplicitRef(i, fwdOp,
Vikram S. Adve6418eac2002-07-08 23:30:14 +00001294 minstr->implicitRefIsDefined(i),
1295 minstr->implicitRefIsDefinedAndUsed(i));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001296 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001297 }
1298}
1299
1300
Vikram S. Adve242a8082002-05-19 15:25:51 +00001301inline bool
1302AllUsesAreBranches(const Instruction* setccI)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001303{
Vikram S. Adve242a8082002-05-19 15:25:51 +00001304 for (Value::use_const_iterator UI=setccI->use_begin(), UE=setccI->use_end();
1305 UI != UE; ++UI)
1306 if (! isa<TmpInstruction>(*UI) // ignore tmp instructions here
1307 && cast<Instruction>(*UI)->getOpcode() != Instruction::Br)
1308 return false;
1309 return true;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001310}
1311
Vikram S. Advefb361122001-10-22 13:36:31 +00001312//******************* Externally Visible Functions *************************/
1313
Vikram S. Advefb361122001-10-22 13:36:31 +00001314//------------------------------------------------------------------------
1315// External Function: ThisIsAChainRule
1316//
1317// Purpose:
1318// Check if a given BURG rule is a chain rule.
1319//------------------------------------------------------------------------
1320
1321extern bool
1322ThisIsAChainRule(int eruleno)
1323{
1324 switch(eruleno)
1325 {
1326 case 111: // stmt: reg
Vikram S. Advefb361122001-10-22 13:36:31 +00001327 case 123:
1328 case 124:
1329 case 125:
1330 case 126:
1331 case 127:
1332 case 128:
1333 case 129:
1334 case 130:
1335 case 131:
1336 case 132:
1337 case 133:
1338 case 155:
1339 case 221:
1340 case 222:
1341 case 241:
1342 case 242:
1343 case 243:
1344 case 244:
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001345 case 245:
Vikram S. Adve85e1e9c2002-04-01 20:28:48 +00001346 case 321:
Vikram S. Advefb361122001-10-22 13:36:31 +00001347 return true; break;
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001348
Vikram S. Advefb361122001-10-22 13:36:31 +00001349 default:
1350 return false; break;
1351 }
1352}
Chris Lattner20b1ea02001-09-14 03:47:57 +00001353
1354
1355//------------------------------------------------------------------------
1356// External Function: GetInstructionsByRule
1357//
1358// Purpose:
1359// Choose machine instructions for the SPARC according to the
1360// patterns chosen by the BURG-generated parser.
1361//------------------------------------------------------------------------
1362
Vikram S. Adve74825322002-03-18 03:15:35 +00001363void
Chris Lattner20b1ea02001-09-14 03:47:57 +00001364GetInstructionsByRule(InstructionNode* subtreeRoot,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001365 int ruleForNode,
1366 short* nts,
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001367 TargetMachine &target,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001368 std::vector<MachineInstr*>& mvec)
Chris Lattner20b1ea02001-09-14 03:47:57 +00001369{
Chris Lattner20b1ea02001-09-14 03:47:57 +00001370 bool checkCast = false; // initialize here to use fall-through
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00001371 bool maskUnsignedResult = false;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001372 int nextRule;
1373 int forwardOperandNum = -1;
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001374 unsigned allocaSize = 0;
Vikram S. Adve74825322002-03-18 03:15:35 +00001375 MachineInstr* M, *M2;
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001376 unsigned L;
Vikram S. Adve74825322002-03-18 03:15:35 +00001377
1378 mvec.clear();
Chris Lattner20b1ea02001-09-14 03:47:57 +00001379
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001380 // If the code for this instruction was folded into the parent (user),
1381 // then do nothing!
1382 if (subtreeRoot->isFoldedIntoParent())
1383 return;
1384
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001385 //
1386 // Let's check for chain rules outside the switch so that we don't have
1387 // to duplicate the list of chain rule production numbers here again
1388 //
1389 if (ThisIsAChainRule(ruleForNode))
Chris Lattner20b1ea02001-09-14 03:47:57 +00001390 {
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001391 // Chain rules have a single nonterminal on the RHS.
1392 // Get the rule that matches the RHS non-terminal and use that instead.
1393 //
1394 assert(nts[0] && ! nts[1]
1395 && "A chain rule should have only one RHS non-terminal!");
1396 nextRule = burm_rule(subtreeRoot->state, nts[0]);
1397 nts = burm_nts[nextRule];
Vikram S. Adve74825322002-03-18 03:15:35 +00001398 GetInstructionsByRule(subtreeRoot, nextRule, nts, target, mvec);
Chris Lattner20b1ea02001-09-14 03:47:57 +00001399 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001400 else
Chris Lattner20b1ea02001-09-14 03:47:57 +00001401 {
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001402 switch(ruleForNode) {
1403 case 1: // stmt: Ret
1404 case 2: // stmt: RetValue(reg)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001405 { // NOTE: Prepass of register allocation is responsible
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001406 // for moving return value to appropriate register.
1407 // Mark the return-address register as a hidden virtual reg.
Vikram S. Advea995e602001-10-11 04:23:19 +00001408 // Mark the return value register as an implicit ref of
1409 // the machine instruction.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001410 // Finally put a NOP in the delay slot.
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001411 ReturnInst *returnInstr =
1412 cast<ReturnInst>(subtreeRoot->getInstruction());
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001413 assert(returnInstr->getOpcode() == Instruction::Ret);
1414
Chris Lattner9c461082002-02-03 07:50:56 +00001415 Instruction* returnReg = new TmpInstruction(returnInstr);
1416 MachineCodeForInstruction::get(returnInstr).addTemp(returnReg);
Vikram S. Advefb361122001-10-22 13:36:31 +00001417
Misha Brukmana98cd452003-05-20 20:32:24 +00001418 M = BuildMI(V9::JMPLRET, 3).addReg(returnReg).addSImm(8)
1419 .addMReg(target.getRegInfo().getZeroRegNum(), MOTy::Def);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001420
Vikram S. Advea995e602001-10-11 04:23:19 +00001421 if (returnInstr->getReturnValue() != NULL)
Vikram S. Adve74825322002-03-18 03:15:35 +00001422 M->addImplicitRef(returnInstr->getReturnValue());
Vikram S. Advea995e602001-10-11 04:23:19 +00001423
Vikram S. Adve74825322002-03-18 03:15:35 +00001424 mvec.push_back(M);
Misha Brukmana98cd452003-05-20 20:32:24 +00001425 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001426
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001427 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001428 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001429
1430 case 3: // stmt: Store(reg,reg)
1431 case 4: // stmt: Store(reg,ptrreg)
Chris Lattner54e898e2003-01-15 19:23:34 +00001432 SetOperandsForMemInstr(ChooseStoreInstruction(
1433 subtreeRoot->leftChild()->getValue()->getType()),
1434 mvec, subtreeRoot, target);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001435 break;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001436
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001437 case 5: // stmt: BrUncond
Chris Lattner54e898e2003-01-15 19:23:34 +00001438 {
1439 BranchInst *BI = cast<BranchInst>(subtreeRoot->getInstruction());
Misha Brukmana98cd452003-05-20 20:32:24 +00001440 mvec.push_back(BuildMI(V9::BA, 1).addPCDisp(BI->getSuccessor(0)));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001441
Chris Lattner54e898e2003-01-15 19:23:34 +00001442 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001443 mvec.push_back(BuildMI(V9::NOP, 0));
Chris Lattner54e898e2003-01-15 19:23:34 +00001444 break;
1445 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001446
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001447 case 206: // stmt: BrCond(setCCconst)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001448 { // setCCconst => boolean was computed with `%b = setCC type reg1 const'
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001449 // If the constant is ZERO, we can use the branch-on-integer-register
1450 // instructions and avoid the SUBcc instruction entirely.
1451 // Otherwise this is just the same as case 5, so just fall through.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001452 //
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001453 InstrTreeNode* constNode = subtreeRoot->leftChild()->rightChild();
1454 assert(constNode &&
1455 constNode->getNodeType() ==InstrTreeNode::NTConstNode);
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001456 Constant *constVal = cast<Constant>(constNode->getValue());
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001457 bool isValidConst;
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001458
Chris Lattner0c4e8862002-09-03 01:08:28 +00001459 if ((constVal->getType()->isInteger()
Chris Lattner9b625032002-05-06 16:15:30 +00001460 || isa<PointerType>(constVal->getType()))
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001461 && GetConstantValueAsSignedInt(constVal, isValidConst) == 0
1462 && isValidConst)
1463 {
1464 // That constant is a zero after all...
1465 // Use the left child of setCC as the first argument!
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001466 // Mark the setCC node so that no code is generated for it.
1467 InstructionNode* setCCNode = (InstructionNode*)
1468 subtreeRoot->leftChild();
1469 assert(setCCNode->getOpLabel() == SetCCOp);
1470 setCCNode->markFoldedIntoParent();
1471
1472 BranchInst* brInst=cast<BranchInst>(subtreeRoot->getInstruction());
1473
Chris Lattner54e898e2003-01-15 19:23:34 +00001474 M = BuildMI(ChooseBprInstruction(subtreeRoot), 2)
1475 .addReg(setCCNode->leftChild()->getValue())
1476 .addPCDisp(brInst->getSuccessor(0));
Vikram S. Adve74825322002-03-18 03:15:35 +00001477 mvec.push_back(M);
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001478
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001479 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001480 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001481
1482 // false branch
Misha Brukmana98cd452003-05-20 20:32:24 +00001483 mvec.push_back(BuildMI(V9::BA, 1)
1484 .addPCDisp(brInst->getSuccessor(1)));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001485
1486 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001487 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001488 break;
1489 }
1490 // ELSE FALL THROUGH
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001491 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001492
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001493 case 6: // stmt: BrCond(setCC)
1494 { // bool => boolean was computed with SetCC.
1495 // The branch to use depends on whether it is FP, signed, or unsigned.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001496 // If it is an integer CC, we also need to find the unique
1497 // TmpInstruction representing that CC.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001498 //
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001499 BranchInst* brInst = cast<BranchInst>(subtreeRoot->getInstruction());
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001500 bool isFPBranch;
Chris Lattner54e898e2003-01-15 19:23:34 +00001501 unsigned Opcode = ChooseBccInstruction(subtreeRoot, isFPBranch);
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001502 Value* ccValue = GetTmpForCC(subtreeRoot->leftChild()->getValue(),
1503 brInst->getParent()->getParent(),
1504 isFPBranch? Type::FloatTy : Type::IntTy);
Chris Lattner54e898e2003-01-15 19:23:34 +00001505 M = BuildMI(Opcode, 2).addCCReg(ccValue)
1506 .addPCDisp(brInst->getSuccessor(0));
Vikram S. Adve74825322002-03-18 03:15:35 +00001507 mvec.push_back(M);
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001508
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001509 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001510 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001511
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001512 // false branch
Misha Brukmana98cd452003-05-20 20:32:24 +00001513 mvec.push_back(BuildMI(V9::BA, 1).addPCDisp(brInst->getSuccessor(1)));
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001514
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001515 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001516 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001517 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001518 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001519
1520 case 208: // stmt: BrCond(boolconst)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001521 {
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001522 // boolconst => boolean is a constant; use BA to first or second label
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001523 Constant* constVal =
1524 cast<Constant>(subtreeRoot->leftChild()->getValue());
1525 unsigned dest = cast<ConstantBool>(constVal)->getValue()? 0 : 1;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001526
Misha Brukmana98cd452003-05-20 20:32:24 +00001527 M = BuildMI(V9::BA, 1).addPCDisp(
Chris Lattner35504202002-04-27 03:14:39 +00001528 cast<BranchInst>(subtreeRoot->getInstruction())->getSuccessor(dest));
Vikram S. Adve74825322002-03-18 03:15:35 +00001529 mvec.push_back(M);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001530
1531 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001532 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001533 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001534 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001535
1536 case 8: // stmt: BrCond(boolreg)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001537 { // boolreg => boolean is stored in an existing register.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001538 // Just use the branch-on-integer-register instruction!
1539 //
Chris Lattner54e898e2003-01-15 19:23:34 +00001540 BranchInst *BI = cast<BranchInst>(subtreeRoot->getInstruction());
Misha Brukmana98cd452003-05-20 20:32:24 +00001541 M = BuildMI(V9::BRNZ, 2).addReg(subtreeRoot->leftChild()->getValue())
Chris Lattner54e898e2003-01-15 19:23:34 +00001542 .addPCDisp(BI->getSuccessor(0));
Vikram S. Adve74825322002-03-18 03:15:35 +00001543 mvec.push_back(M);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001544
1545 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001546 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001547
1548 // false branch
Misha Brukmana98cd452003-05-20 20:32:24 +00001549 mvec.push_back(BuildMI(V9::BA, 1).addPCDisp(BI->getSuccessor(1)));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001550
1551 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001552 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001553 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001554 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001555
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001556 case 9: // stmt: Switch(reg)
1557 assert(0 && "*** SWITCH instruction is not implemented yet.");
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001558 break;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001559
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001560 case 10: // reg: VRegList(reg, reg)
1561 assert(0 && "VRegList should never be the topmost non-chain rule");
1562 break;
1563
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001564 case 21: // bool: Not(bool,reg): Both these are implemented as:
1565 case 421: // reg: BNot(reg,reg): reg = reg XOR-NOT 0
1566 { // First find the unary operand. It may be left or right, usually right.
1567 Value* notArg = BinaryOperator::getNotArgument(
1568 cast<BinaryOperator>(subtreeRoot->getInstruction()));
Chris Lattner00dca912003-01-15 17:47:49 +00001569 unsigned ZeroReg = target.getRegInfo().getZeroRegNum();
Misha Brukmana98cd452003-05-20 20:32:24 +00001570 mvec.push_back(BuildMI(V9::XNOR, 3).addReg(notArg).addMReg(ZeroReg)
Chris Lattner00dca912003-01-15 17:47:49 +00001571 .addRegDef(subtreeRoot->getValue()));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001572 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001573 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001574
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001575 case 22: // reg: ToBoolTy(reg):
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001576 {
1577 const Type* opType = subtreeRoot->leftChild()->getValue()->getType();
Chris Lattner0c4e8862002-09-03 01:08:28 +00001578 assert(opType->isIntegral() || isa<PointerType>(opType));
Vikram S. Adve74825322002-03-18 03:15:35 +00001579 forwardOperandNum = 0; // forward first operand to user
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001580 break;
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001581 }
1582
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001583 case 23: // reg: ToUByteTy(reg)
Vikram S. Adve94c40812002-09-27 14:33:08 +00001584 case 24: // reg: ToSByteTy(reg)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001585 case 25: // reg: ToUShortTy(reg)
Vikram S. Adve94c40812002-09-27 14:33:08 +00001586 case 26: // reg: ToShortTy(reg)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001587 case 27: // reg: ToUIntTy(reg)
Vikram S. Adve94c40812002-09-27 14:33:08 +00001588 case 28: // reg: ToIntTy(reg)
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001589 {
Vikram S. Adve94c40812002-09-27 14:33:08 +00001590 //======================================================================
1591 // Rules for integer conversions:
1592 //
1593 //--------
1594 // From ISO 1998 C++ Standard, Sec. 4.7:
1595 //
1596 // 2. If the destination type is unsigned, the resulting value is
1597 // the least unsigned integer congruent to the source integer
1598 // (modulo 2n where n is the number of bits used to represent the
1599 // unsigned type). [Note: In a two s complement representation,
1600 // this conversion is conceptual and there is no change in the
1601 // bit pattern (if there is no truncation). ]
1602 //
1603 // 3. If the destination type is signed, the value is unchanged if
1604 // it can be represented in the destination type (and bitfield width);
1605 // otherwise, the value is implementation-defined.
1606 //--------
1607 //
1608 // Since we assume 2s complement representations, this implies:
1609 //
1610 // -- if operand is smaller than destination, zero-extend or sign-extend
1611 // according to the signedness of the *operand*: source decides.
1612 // ==> we have to do nothing here!
1613 //
1614 // -- if operand is same size as or larger than destination, and the
1615 // destination is *unsigned*, zero-extend the operand: dest. decides
1616 //
1617 // -- if operand is same size as or larger than destination, and the
1618 // destination is *signed*, the choice is implementation defined:
1619 // we sign-extend the operand: i.e., again dest. decides.
1620 // Note: this matches both Sun's cc and gcc3.2.
1621 //======================================================================
1622
Vikram S. Adve242a8082002-05-19 15:25:51 +00001623 Instruction* destI = subtreeRoot->getInstruction();
1624 Value* opVal = subtreeRoot->leftChild()->getValue();
Vikram S. Adve94c40812002-09-27 14:33:08 +00001625 const Type* opType = opVal->getType();
Chris Lattner0c4e8862002-09-03 01:08:28 +00001626 if (opType->isIntegral() || isa<PointerType>(opType))
Vikram S. Adve1e606692002-07-31 21:01:34 +00001627 {
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001628 unsigned opSize = target.getTargetData().getTypeSize(opType);
1629 unsigned destSize = target.getTargetData().getTypeSize(destI->getType());
Vikram S. Adve94c40812002-09-27 14:33:08 +00001630 if (opSize >= destSize)
1631 { // Operand is same size as or larger than dest:
1632 // zero- or sign-extend, according to the signeddness of
1633 // the destination (see above).
1634 if (destI->getType()->isSigned())
1635 target.getInstrInfo().CreateSignExtensionInstructions(target,
1636 destI->getParent()->getParent(), opVal, destI, 8*destSize,
1637 mvec, MachineCodeForInstruction::get(destI));
1638 else
1639 target.getInstrInfo().CreateZeroExtensionInstructions(target,
1640 destI->getParent()->getParent(), opVal, destI, 8*destSize,
1641 mvec, MachineCodeForInstruction::get(destI));
Vikram S. Adve1e606692002-07-31 21:01:34 +00001642 }
1643 else
1644 forwardOperandNum = 0; // forward first operand to user
Vikram S. Adve242a8082002-05-19 15:25:51 +00001645 }
Vikram S. Adve1e606692002-07-31 21:01:34 +00001646 else if (opType->isFloatingPoint())
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001647 {
1648 CreateCodeToConvertFloatToInt(target, opVal, destI, mvec,
1649 MachineCodeForInstruction::get(destI));
Vikram S. Adve94c40812002-09-27 14:33:08 +00001650 if (destI->getType()->isUnsigned())
1651 maskUnsignedResult = true; // not handled by fp->int code
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001652 }
Vikram S. Adve242a8082002-05-19 15:25:51 +00001653 else
Vikram S. Adve1e606692002-07-31 21:01:34 +00001654 assert(0 && "Unrecognized operand type for convert-to-unsigned");
1655
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001656 break;
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001657 }
Vikram S. Adve94c40812002-09-27 14:33:08 +00001658
1659 case 29: // reg: ToULongTy(reg)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001660 case 30: // reg: ToLongTy(reg)
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001661 {
Vikram S. Adve242a8082002-05-19 15:25:51 +00001662 Value* opVal = subtreeRoot->leftChild()->getValue();
Vikram S. Adve242a8082002-05-19 15:25:51 +00001663 const Type* opType = opVal->getType();
Chris Lattner0c4e8862002-09-03 01:08:28 +00001664 if (opType->isIntegral() || isa<PointerType>(opType))
Vikram S. Adve94c40812002-09-27 14:33:08 +00001665 forwardOperandNum = 0; // forward first operand to user
Vikram S. Adve1e606692002-07-31 21:01:34 +00001666 else if (opType->isFloatingPoint())
Vikram S. Adve94c40812002-09-27 14:33:08 +00001667 {
1668 Instruction* destI = subtreeRoot->getInstruction();
1669 CreateCodeToConvertFloatToInt(target, opVal, destI, mvec,
1670 MachineCodeForInstruction::get(destI));
1671 }
Vikram S. Adve1e606692002-07-31 21:01:34 +00001672 else
1673 assert(0 && "Unrecognized operand type for convert-to-signed");
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001674 break;
Vikram S. Adve94c40812002-09-27 14:33:08 +00001675 }
1676
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001677 case 31: // reg: ToFloatTy(reg):
1678 case 32: // reg: ToDoubleTy(reg):
1679 case 232: // reg: ToDoubleTy(Constant):
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001680
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001681 // If this instruction has a parent (a user) in the tree
1682 // and the user is translated as an FsMULd instruction,
1683 // then the cast is unnecessary. So check that first.
1684 // In the future, we'll want to do the same for the FdMULq instruction,
1685 // so do the check here instead of only for ToFloatTy(reg).
1686 //
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001687 if (subtreeRoot->parent() != NULL)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001688 {
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001689 const MachineCodeForInstruction& mcfi =
1690 MachineCodeForInstruction::get(
1691 cast<InstructionNode>(subtreeRoot->parent())->getInstruction());
Misha Brukmana98cd452003-05-20 20:32:24 +00001692 if (mcfi.size() == 0 || mcfi.front()->getOpCode() == V9::FSMULD)
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001693 forwardOperandNum = 0; // forward first operand to user
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001694 }
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001695
1696 if (forwardOperandNum != 0) // we do need the cast
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001697 {
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001698 Value* leftVal = subtreeRoot->leftChild()->getValue();
1699 const Type* opType = leftVal->getType();
Vikram S. Advedbc4fad2002-04-25 04:37:51 +00001700 MachineOpCode opCode=ChooseConvertToFloatInstr(
1701 subtreeRoot->getOpLabel(), opType);
Misha Brukmana98cd452003-05-20 20:32:24 +00001702 if (opCode == V9::INVALID_OPCODE) // no conversion needed
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001703 {
Vikram S. Adve74825322002-03-18 03:15:35 +00001704 forwardOperandNum = 0; // forward first operand to user
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001705 }
1706 else
1707 {
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001708 // If the source operand is a non-FP type it must be
1709 // first copied from int to float register via memory!
1710 Instruction *dest = subtreeRoot->getInstruction();
1711 Value* srcForCast;
1712 int n = 0;
Vikram S. Adve242a8082002-05-19 15:25:51 +00001713 if (! opType->isFloatingPoint())
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001714 {
1715 // Create a temporary to represent the FP register
1716 // into which the integer will be copied via memory.
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001717 // The type of this temporary will determine the FP
1718 // register used: single-prec for a 32-bit int or smaller,
1719 // double-prec for a 64-bit int.
1720 //
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001721 uint64_t srcSize =
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001722 target.getTargetData().getTypeSize(leftVal->getType());
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001723 Type* tmpTypeToUse =
1724 (srcSize <= 4)? Type::FloatTy : Type::DoubleTy;
1725 srcForCast = new TmpInstruction(tmpTypeToUse, dest);
Vikram S. Advedbc4fad2002-04-25 04:37:51 +00001726 MachineCodeForInstruction &destMCFI =
Chris Lattner9c461082002-02-03 07:50:56 +00001727 MachineCodeForInstruction::get(dest);
Vikram S. Advedbc4fad2002-04-25 04:37:51 +00001728 destMCFI.addTemp(srcForCast);
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001729
Vikram S. Adve242a8082002-05-19 15:25:51 +00001730 target.getInstrInfo().CreateCodeToCopyIntToFloat(target,
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001731 dest->getParent()->getParent(),
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001732 leftVal, cast<Instruction>(srcForCast),
Vikram S. Adve242a8082002-05-19 15:25:51 +00001733 mvec, destMCFI);
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001734 }
1735 else
1736 srcForCast = leftVal;
Vikram S. Adve94c40812002-09-27 14:33:08 +00001737
Chris Lattner54e898e2003-01-15 19:23:34 +00001738 M = BuildMI(opCode, 2).addReg(srcForCast).addRegDef(dest);
Vikram S. Adve74825322002-03-18 03:15:35 +00001739 mvec.push_back(M);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001740 }
1741 }
1742 break;
1743
1744 case 19: // reg: ToArrayTy(reg):
1745 case 20: // reg: ToPointerTy(reg):
Vikram S. Adve74825322002-03-18 03:15:35 +00001746 forwardOperandNum = 0; // forward first operand to user
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001747 break;
1748
1749 case 233: // reg: Add(reg, Constant)
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00001750 maskUnsignedResult = true;
Vikram S. Adve74825322002-03-18 03:15:35 +00001751 M = CreateAddConstInstruction(subtreeRoot);
1752 if (M != NULL)
1753 {
1754 mvec.push_back(M);
1755 break;
1756 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001757 // ELSE FALL THROUGH
Vikram S. Adve74825322002-03-18 03:15:35 +00001758
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001759 case 33: // reg: Add(reg, reg)
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00001760 maskUnsignedResult = true;
Chris Lattner54e898e2003-01-15 19:23:34 +00001761 Add3OperandInstr(ChooseAddInstruction(subtreeRoot), subtreeRoot, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001762 break;
1763
1764 case 234: // reg: Sub(reg, Constant)
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00001765 maskUnsignedResult = true;
Vikram S. Adve74825322002-03-18 03:15:35 +00001766 M = CreateSubConstInstruction(subtreeRoot);
1767 if (M != NULL)
1768 {
1769 mvec.push_back(M);
1770 break;
1771 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001772 // ELSE FALL THROUGH
Vikram S. Adve74825322002-03-18 03:15:35 +00001773
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001774 case 34: // reg: Sub(reg, reg)
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00001775 maskUnsignedResult = true;
Chris Lattner54e898e2003-01-15 19:23:34 +00001776 Add3OperandInstr(ChooseSubInstructionByType(
1777 subtreeRoot->getInstruction()->getType()),
1778 subtreeRoot, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001779 break;
1780
1781 case 135: // reg: Mul(todouble, todouble)
1782 checkCast = true;
1783 // FALL THROUGH
1784
1785 case 35: // reg: Mul(reg, reg)
Vikram S. Adve74825322002-03-18 03:15:35 +00001786 {
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00001787 maskUnsignedResult = true;
Vikram S. Adve74825322002-03-18 03:15:35 +00001788 MachineOpCode forceOp = ((checkCast && BothFloatToDouble(subtreeRoot))
Misha Brukmana98cd452003-05-20 20:32:24 +00001789 ? V9::FSMULD
Vikram S. Adve74825322002-03-18 03:15:35 +00001790 : INVALID_MACHINE_OPCODE);
Vikram S. Adve242a8082002-05-19 15:25:51 +00001791 Instruction* mulInstr = subtreeRoot->getInstruction();
1792 CreateMulInstruction(target, mulInstr->getParent()->getParent(),
Vikram S. Adve74825322002-03-18 03:15:35 +00001793 subtreeRoot->leftChild()->getValue(),
1794 subtreeRoot->rightChild()->getValue(),
Vikram S. Adve242a8082002-05-19 15:25:51 +00001795 mulInstr, mvec,
1796 MachineCodeForInstruction::get(mulInstr),forceOp);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001797 break;
Vikram S. Adve74825322002-03-18 03:15:35 +00001798 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001799 case 335: // reg: Mul(todouble, todoubleConst)
1800 checkCast = true;
1801 // FALL THROUGH
1802
1803 case 235: // reg: Mul(reg, Constant)
Vikram S. Adve74825322002-03-18 03:15:35 +00001804 {
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00001805 maskUnsignedResult = true;
Vikram S. Adve74825322002-03-18 03:15:35 +00001806 MachineOpCode forceOp = ((checkCast && BothFloatToDouble(subtreeRoot))
Misha Brukmana98cd452003-05-20 20:32:24 +00001807 ? V9::FSMULD
Vikram S. Adve74825322002-03-18 03:15:35 +00001808 : INVALID_MACHINE_OPCODE);
Vikram S. Adve242a8082002-05-19 15:25:51 +00001809 Instruction* mulInstr = subtreeRoot->getInstruction();
1810 CreateMulInstruction(target, mulInstr->getParent()->getParent(),
Vikram S. Adve74825322002-03-18 03:15:35 +00001811 subtreeRoot->leftChild()->getValue(),
1812 subtreeRoot->rightChild()->getValue(),
Vikram S. Adve242a8082002-05-19 15:25:51 +00001813 mulInstr, mvec,
1814 MachineCodeForInstruction::get(mulInstr),
1815 forceOp);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001816 break;
Vikram S. Adve74825322002-03-18 03:15:35 +00001817 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001818 case 236: // reg: Div(reg, Constant)
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00001819 maskUnsignedResult = true;
Vikram S. Adve74825322002-03-18 03:15:35 +00001820 L = mvec.size();
1821 CreateDivConstInstruction(target, subtreeRoot, mvec);
1822 if (mvec.size() > L)
1823 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001824 // ELSE FALL THROUGH
Vikram S. Adve74825322002-03-18 03:15:35 +00001825
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001826 case 36: // reg: Div(reg, reg)
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00001827 maskUnsignedResult = true;
Chris Lattner54e898e2003-01-15 19:23:34 +00001828 Add3OperandInstr(ChooseDivInstruction(target, subtreeRoot),
1829 subtreeRoot, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001830 break;
1831
1832 case 37: // reg: Rem(reg, reg)
1833 case 237: // reg: Rem(reg, Constant)
Vikram S. Adve510eec72001-11-04 21:59:14 +00001834 {
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00001835 maskUnsignedResult = true;
Vikram S. Adve510eec72001-11-04 21:59:14 +00001836 Instruction* remInstr = subtreeRoot->getInstruction();
1837
Chris Lattner9c461082002-02-03 07:50:56 +00001838 TmpInstruction* quot = new TmpInstruction(
Vikram S. Adve510eec72001-11-04 21:59:14 +00001839 subtreeRoot->leftChild()->getValue(),
1840 subtreeRoot->rightChild()->getValue());
Chris Lattner9c461082002-02-03 07:50:56 +00001841 TmpInstruction* prod = new TmpInstruction(
Vikram S. Adve510eec72001-11-04 21:59:14 +00001842 quot,
1843 subtreeRoot->rightChild()->getValue());
Chris Lattner9c461082002-02-03 07:50:56 +00001844 MachineCodeForInstruction::get(remInstr).addTemp(quot).addTemp(prod);
Vikram S. Adve510eec72001-11-04 21:59:14 +00001845
Chris Lattner54e898e2003-01-15 19:23:34 +00001846 M = BuildMI(ChooseDivInstruction(target, subtreeRoot), 3)
1847 .addReg(subtreeRoot->leftChild()->getValue())
1848 .addReg(subtreeRoot->rightChild()->getValue())
1849 .addRegDef(quot);
Vikram S. Adve74825322002-03-18 03:15:35 +00001850 mvec.push_back(M);
Vikram S. Adve510eec72001-11-04 21:59:14 +00001851
Chris Lattnere5b1ed92003-01-15 00:03:28 +00001852 unsigned MulOpcode =
1853 ChooseMulInstructionByType(subtreeRoot->getInstruction()->getType());
1854 Value *MulRHS = subtreeRoot->rightChild()->getValue();
1855 M = BuildMI(MulOpcode, 3).addReg(quot).addReg(MulRHS).addReg(prod,
1856 MOTy::Def);
Vikram S. Adve74825322002-03-18 03:15:35 +00001857 mvec.push_back(M);
Vikram S. Adve510eec72001-11-04 21:59:14 +00001858
Chris Lattner54e898e2003-01-15 19:23:34 +00001859 unsigned Opcode = ChooseSubInstructionByType(
1860 subtreeRoot->getInstruction()->getType());
1861 M = BuildMI(Opcode, 3).addReg(subtreeRoot->leftChild()->getValue())
1862 .addReg(prod).addRegDef(subtreeRoot->getValue());
Vikram S. Adve74825322002-03-18 03:15:35 +00001863 mvec.push_back(M);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001864 break;
Vikram S. Adve510eec72001-11-04 21:59:14 +00001865 }
1866
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001867 case 38: // bool: And(bool, bool)
1868 case 238: // bool: And(bool, boolconst)
1869 case 338: // reg : BAnd(reg, reg)
1870 case 538: // reg : BAnd(reg, Constant)
Misha Brukmana98cd452003-05-20 20:32:24 +00001871 Add3OperandInstr(V9::AND, subtreeRoot, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001872 break;
1873
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001874 case 138: // bool: And(bool, not)
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001875 case 438: // bool: BAnd(bool, bnot)
1876 { // Use the argument of NOT as the second argument!
1877 // Mark the NOT node so that no code is generated for it.
1878 InstructionNode* notNode = (InstructionNode*) subtreeRoot->rightChild();
1879 Value* notArg = BinaryOperator::getNotArgument(
1880 cast<BinaryOperator>(notNode->getInstruction()));
1881 notNode->markFoldedIntoParent();
Chris Lattnere5b1ed92003-01-15 00:03:28 +00001882 Value *LHS = subtreeRoot->leftChild()->getValue();
1883 Value *Dest = subtreeRoot->getValue();
Misha Brukmana98cd452003-05-20 20:32:24 +00001884 mvec.push_back(BuildMI(V9::ANDN, 3).addReg(LHS).addReg(notArg)
Chris Lattnere5b1ed92003-01-15 00:03:28 +00001885 .addReg(Dest, MOTy::Def));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001886 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001887 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001888
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001889 case 39: // bool: Or(bool, bool)
1890 case 239: // bool: Or(bool, boolconst)
1891 case 339: // reg : BOr(reg, reg)
1892 case 539: // reg : BOr(reg, Constant)
Misha Brukmana98cd452003-05-20 20:32:24 +00001893 Add3OperandInstr(V9::OR, subtreeRoot, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001894 break;
1895
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001896 case 139: // bool: Or(bool, not)
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001897 case 439: // bool: BOr(bool, bnot)
1898 { // Use the argument of NOT as the second argument!
1899 // Mark the NOT node so that no code is generated for it.
1900 InstructionNode* notNode = (InstructionNode*) subtreeRoot->rightChild();
1901 Value* notArg = BinaryOperator::getNotArgument(
1902 cast<BinaryOperator>(notNode->getInstruction()));
1903 notNode->markFoldedIntoParent();
Chris Lattnere5b1ed92003-01-15 00:03:28 +00001904 Value *LHS = subtreeRoot->leftChild()->getValue();
1905 Value *Dest = subtreeRoot->getValue();
Misha Brukmana98cd452003-05-20 20:32:24 +00001906 mvec.push_back(BuildMI(V9::ORN, 3).addReg(LHS).addReg(notArg)
1907 .addReg(Dest, MOTy::Def));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001908 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001909 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001910
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001911 case 40: // bool: Xor(bool, bool)
1912 case 240: // bool: Xor(bool, boolconst)
1913 case 340: // reg : BXor(reg, reg)
1914 case 540: // reg : BXor(reg, Constant)
Misha Brukmana98cd452003-05-20 20:32:24 +00001915 Add3OperandInstr(V9::XOR, subtreeRoot, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001916 break;
1917
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001918 case 140: // bool: Xor(bool, not)
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001919 case 440: // bool: BXor(bool, bnot)
1920 { // Use the argument of NOT as the second argument!
1921 // Mark the NOT node so that no code is generated for it.
1922 InstructionNode* notNode = (InstructionNode*) subtreeRoot->rightChild();
1923 Value* notArg = BinaryOperator::getNotArgument(
1924 cast<BinaryOperator>(notNode->getInstruction()));
1925 notNode->markFoldedIntoParent();
Chris Lattnere5b1ed92003-01-15 00:03:28 +00001926 Value *LHS = subtreeRoot->leftChild()->getValue();
1927 Value *Dest = subtreeRoot->getValue();
Misha Brukmana98cd452003-05-20 20:32:24 +00001928 mvec.push_back(BuildMI(V9::XNOR, 3).addReg(LHS).addReg(notArg)
1929 .addReg(Dest, MOTy::Def));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001930 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001931 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001932
1933 case 41: // boolconst: SetCC(reg, Constant)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001934 //
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001935 // If the SetCC was folded into the user (parent), it will be
1936 // caught above. All other cases are the same as case 42,
1937 // so just fall through.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001938 //
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001939 case 42: // bool: SetCC(reg, reg):
1940 {
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001941 // This generates a SUBCC instruction, putting the difference in
1942 // a result register, and setting a condition code.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001943 //
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001944 // If the boolean result of the SetCC is used by anything other
Vikram S. Adve6418eac2002-07-08 23:30:14 +00001945 // than a branch instruction, or if it is used outside the current
1946 // basic block, the boolean must be
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001947 // computed and stored in the result register. Otherwise, discard
1948 // the difference (by using %g0) and keep only the condition code.
1949 //
1950 // To compute the boolean result in a register we use a conditional
1951 // move, unless the result of the SUBCC instruction can be used as
1952 // the bool! This assumes that zero is FALSE and any non-zero
1953 // integer is TRUE.
1954 //
1955 InstructionNode* parentNode = (InstructionNode*) subtreeRoot->parent();
1956 Instruction* setCCInstr = subtreeRoot->getInstruction();
Vikram S. Adve242a8082002-05-19 15:25:51 +00001957
Vikram S. Adve6418eac2002-07-08 23:30:14 +00001958 bool keepBoolVal = parentNode == NULL ||
1959 ! AllUsesAreBranches(setCCInstr);
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001960 bool subValIsBoolVal = setCCInstr->getOpcode() == Instruction::SetNE;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001961 bool keepSubVal = keepBoolVal && subValIsBoolVal;
1962 bool computeBoolVal = keepBoolVal && ! subValIsBoolVal;
1963
1964 bool mustClearReg;
1965 int valueToMove;
Chris Lattner8e5c0b42001-11-07 14:01:59 +00001966 MachineOpCode movOpCode = 0;
Vikram S. Adve6418eac2002-07-08 23:30:14 +00001967
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001968 // Mark the 4th operand as being a CC register, and as a def
1969 // A TmpInstruction is created to represent the CC "result".
1970 // Unlike other instances of TmpInstruction, this one is used
1971 // by machine code of multiple LLVM instructions, viz.,
1972 // the SetCC and the branch. Make sure to get the same one!
1973 // Note that we do this even for FP CC registers even though they
1974 // are explicit operands, because the type of the operand
1975 // needs to be a floating point condition code, not an integer
1976 // condition code. Think of this as casting the bool result to
1977 // a FP condition code register.
1978 //
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001979 Value* leftVal = subtreeRoot->leftChild()->getValue();
Chris Lattner9b625032002-05-06 16:15:30 +00001980 bool isFPCompare = leftVal->getType()->isFloatingPoint();
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001981
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001982 TmpInstruction* tmpForCC = GetTmpForCC(setCCInstr,
1983 setCCInstr->getParent()->getParent(),
Chris Lattner9b625032002-05-06 16:15:30 +00001984 isFPCompare ? Type::FloatTy : Type::IntTy);
Chris Lattner9c461082002-02-03 07:50:56 +00001985 MachineCodeForInstruction::get(setCCInstr).addTemp(tmpForCC);
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001986
1987 if (! isFPCompare)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001988 {
1989 // Integer condition: dest. should be %g0 or an integer register.
1990 // If result must be saved but condition is not SetEQ then we need
1991 // a separate instruction to compute the bool result, so discard
1992 // result of SUBcc instruction anyway.
1993 //
Chris Lattner54e898e2003-01-15 19:23:34 +00001994 if (keepSubVal) {
Misha Brukmana98cd452003-05-20 20:32:24 +00001995 M = BuildMI(V9::SUBcc, 4)
1996 .addReg(subtreeRoot->leftChild()->getValue())
1997 .addReg(subtreeRoot->rightChild()->getValue())
1998 .addRegDef(subtreeRoot->getValue())
1999 .addCCReg(tmpForCC, MOTy::Def);
Chris Lattner54e898e2003-01-15 19:23:34 +00002000 } else {
Misha Brukmana98cd452003-05-20 20:32:24 +00002001 M = BuildMI(V9::SUBcc, 4)
2002 .addReg(subtreeRoot->leftChild()->getValue())
2003 .addReg(subtreeRoot->rightChild()->getValue())
2004 .addMReg(target.getRegInfo().getZeroRegNum(), MOTy::Def)
2005 .addCCReg(tmpForCC, MOTy::Def);
Chris Lattner54e898e2003-01-15 19:23:34 +00002006 }
Vikram S. Adve74825322002-03-18 03:15:35 +00002007 mvec.push_back(M);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002008
2009 if (computeBoolVal)
2010 { // recompute bool using the integer condition codes
2011 movOpCode =
2012 ChooseMovpccAfterSub(subtreeRoot,mustClearReg,valueToMove);
2013 }
2014 }
2015 else
2016 {
2017 // FP condition: dest of FCMP should be some FCCn register
Chris Lattner54e898e2003-01-15 19:23:34 +00002018 M = BuildMI(ChooseFcmpInstruction(subtreeRoot), 3)
2019 .addCCReg(tmpForCC, MOTy::Def)
2020 .addReg(subtreeRoot->leftChild()->getValue())
2021 .addRegDef(subtreeRoot->rightChild()->getValue());
Vikram S. Adve74825322002-03-18 03:15:35 +00002022 mvec.push_back(M);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002023
2024 if (computeBoolVal)
2025 {// recompute bool using the FP condition codes
2026 mustClearReg = true;
2027 valueToMove = 1;
2028 movOpCode = ChooseMovFpccInstruction(subtreeRoot);
2029 }
2030 }
2031
2032 if (computeBoolVal)
2033 {
2034 if (mustClearReg)
2035 {// Unconditionally set register to 0
Misha Brukmana98cd452003-05-20 20:32:24 +00002036 M = BuildMI(V9::SETHI, 2).addZImm(0).addRegDef(setCCInstr);
Vikram S. Adve74825322002-03-18 03:15:35 +00002037 mvec.push_back(M);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002038 }
2039
2040 // Now conditionally move `valueToMove' (0 or 1) into the register
Vikram S. Adve6418eac2002-07-08 23:30:14 +00002041 // Mark the register as a use (as well as a def) because the old
2042 // value should be retained if the condition is false.
Chris Lattner54e898e2003-01-15 19:23:34 +00002043 M = BuildMI(movOpCode, 3).addCCReg(tmpForCC).addZImm(valueToMove)
2044 .addReg(setCCInstr, MOTy::UseAndDef);
Vikram S. Adve74825322002-03-18 03:15:35 +00002045 mvec.push_back(M);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002046 }
2047 break;
2048 }
2049
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002050 case 51: // reg: Load(reg)
2051 case 52: // reg: Load(ptrreg)
Chris Lattner54e898e2003-01-15 19:23:34 +00002052 SetOperandsForMemInstr(ChooseLoadInstruction(
2053 subtreeRoot->getValue()->getType()),
2054 mvec, subtreeRoot, target);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002055 break;
2056
2057 case 55: // reg: GetElemPtr(reg)
2058 case 56: // reg: GetElemPtrIdx(reg,reg)
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002059 // If the GetElemPtr was folded into the user (parent), it will be
2060 // caught above. For other cases, we have to compute the address.
Misha Brukmana98cd452003-05-20 20:32:24 +00002061 SetOperandsForMemInstr(V9::ADD, mvec, subtreeRoot, target);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002062 break;
Vikram S. Adved3e26482002-10-13 00:18:57 +00002063
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002064 case 57: // reg: Alloca: Implement as 1 instruction:
2065 { // add %fp, offsetFromFP -> result
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002066 AllocationInst* instr =
2067 cast<AllocationInst>(subtreeRoot->getInstruction());
Chris Lattnerea45d7b2002-12-28 20:19:44 +00002068 unsigned tsize =
2069 target.getTargetData().getTypeSize(instr->getAllocatedType());
Vikram S. Adve74825322002-03-18 03:15:35 +00002070 assert(tsize != 0);
2071 CreateCodeForFixedSizeAlloca(target, instr, tsize, 1, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002072 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002073 }
Vikram S. Adved3e26482002-10-13 00:18:57 +00002074
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002075 case 58: // reg: Alloca(reg): Implement as 3 instructions:
2076 // mul num, typeSz -> tmp
2077 // sub %sp, tmp -> %sp
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002078 { // add %sp, frameSizeBelowDynamicArea -> result
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002079 AllocationInst* instr =
2080 cast<AllocationInst>(subtreeRoot->getInstruction());
Vikram S. Adve74825322002-03-18 03:15:35 +00002081 const Type* eltType = instr->getAllocatedType();
2082
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002083 // If #elements is constant, use simpler code for fixed-size allocas
Chris Lattnerea45d7b2002-12-28 20:19:44 +00002084 int tsize = (int) target.getTargetData().getTypeSize(eltType);
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002085 Value* numElementsVal = NULL;
2086 bool isArray = instr->isArrayAllocation();
2087
2088 if (!isArray ||
2089 isa<Constant>(numElementsVal = instr->getArraySize()))
2090 { // total size is constant: generate code for fixed-size alloca
Chris Lattnerea45d7b2002-12-28 20:19:44 +00002091 unsigned numElements = isArray?
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002092 cast<ConstantUInt>(numElementsVal)->getValue() : 1;
2093 CreateCodeForFixedSizeAlloca(target, instr, tsize,
2094 numElements, mvec);
2095 }
Vikram S. Adve74825322002-03-18 03:15:35 +00002096 else // total size is not constant.
2097 CreateCodeForVariableSizeAlloca(target, instr, tsize,
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002098 numElementsVal, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002099 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002100 }
Vikram S. Adved3e26482002-10-13 00:18:57 +00002101
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002102 case 61: // reg: Call
Vikram S. Adve4a8bb2b2002-09-28 16:55:41 +00002103 { // Generate a direct (CALL) or indirect (JMPL) call.
2104 // Mark the return-address register, the indirection
2105 // register (for indirect calls), the operands of the Call,
2106 // and the return value (if any) as implicit operands
2107 // of the machine instruction.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002108 //
Vikram S. Advedbc4fad2002-04-25 04:37:51 +00002109 // If this is a varargs function, floating point arguments
2110 // have to passed in integer registers so insert
2111 // copy-float-to-int instructions for each float operand.
2112 //
Chris Lattnerb00c5822001-10-02 03:41:24 +00002113 CallInst *callInstr = cast<CallInst>(subtreeRoot->getInstruction());
Chris Lattner749655f2001-10-13 06:54:30 +00002114 Value *callee = callInstr->getCalledValue();
Vikram S. Adve4a8bb2b2002-09-28 16:55:41 +00002115
2116 // Create hidden virtual register for return address with type void*
Vikram S. Adve242a8082002-05-19 15:25:51 +00002117 TmpInstruction* retAddrReg =
Vikram S. Advea10d1a72002-03-31 19:07:35 +00002118 new TmpInstruction(PointerType::get(Type::VoidTy), callInstr);
Chris Lattner9c461082002-02-03 07:50:56 +00002119 MachineCodeForInstruction::get(callInstr).addTemp(retAddrReg);
Vikram S. Adve4a8bb2b2002-09-28 16:55:41 +00002120
Vikram S. Adveea21a6c2001-10-20 20:57:06 +00002121 // Generate the machine instruction and its operands.
2122 // Use CALL for direct function calls; this optimistically assumes
2123 // the PC-relative address fits in the CALL address field (22 bits).
2124 // Use JMPL for indirect calls.
2125 //
Vikram S. Adve4a8bb2b2002-09-28 16:55:41 +00002126 if (isa<Function>(callee)) // direct function call
Misha Brukmana98cd452003-05-20 20:32:24 +00002127 M = BuildMI(V9::CALL, 1).addPCDisp(callee);
Vikram S. Adve4a8bb2b2002-09-28 16:55:41 +00002128 else // indirect function call
Misha Brukmana98cd452003-05-20 20:32:24 +00002129 M = BuildMI(V9::JMPLCALL, 3).addReg(callee).addSImm((int64_t)0)
2130 .addRegDef(retAddrReg);
Vikram S. Adve74825322002-03-18 03:15:35 +00002131 mvec.push_back(M);
Vikram S. Advea10d1a72002-03-31 19:07:35 +00002132
Vikram S. Adve242a8082002-05-19 15:25:51 +00002133 const FunctionType* funcType =
2134 cast<FunctionType>(cast<PointerType>(callee->getType())
2135 ->getElementType());
2136 bool isVarArgs = funcType->isVarArg();
2137 bool noPrototype = isVarArgs && funcType->getNumParams() == 0;
Vikram S. Advedbc4fad2002-04-25 04:37:51 +00002138
Vikram S. Adveaabb5952002-10-29 19:37:31 +00002139 // Use a descriptor to pass information about call arguments
2140 // to the register allocator. This descriptor will be "owned"
2141 // and freed automatically when the MachineCodeForInstruction
2142 // object for the callInstr goes away.
Vikram S. Adve242a8082002-05-19 15:25:51 +00002143 CallArgsDescriptor* argDesc = new CallArgsDescriptor(callInstr,
2144 retAddrReg, isVarArgs, noPrototype);
Vikram S. Advea995e602001-10-11 04:23:19 +00002145
Vikram S. Adve242a8082002-05-19 15:25:51 +00002146 assert(callInstr->getOperand(0) == callee
2147 && "This is assumed in the loop below!");
2148
2149 for (unsigned i=1, N=callInstr->getNumOperands(); i < N; ++i)
2150 {
2151 Value* argVal = callInstr->getOperand(i);
2152 Instruction* intArgReg = NULL;
2153
2154 // Check for FP arguments to varargs functions.
2155 // Any such argument in the first $K$ args must be passed in an
2156 // integer register, where K = #integer argument registers.
2157 if (isVarArgs && argVal->getType()->isFloatingPoint())
2158 {
2159 // If it is a function with no prototype, pass value
2160 // as an FP value as well as a varargs value
2161 if (noPrototype)
2162 argDesc->getArgInfo(i-1).setUseFPArgReg();
2163
2164 // If this arg. is in the first $K$ regs, add a copy
2165 // float-to-int instruction to pass the value as an integer.
Vikram S. Adved3e26482002-10-13 00:18:57 +00002166 if (i <= target.getRegInfo().GetNumOfIntArgRegs())
Vikram S. Adve242a8082002-05-19 15:25:51 +00002167 {
2168 MachineCodeForInstruction &destMCFI =
2169 MachineCodeForInstruction::get(callInstr);
2170 intArgReg = new TmpInstruction(Type::IntTy, argVal);
2171 destMCFI.addTemp(intArgReg);
2172
Misha Brukmanee563cb2003-05-21 17:59:06 +00002173 std::vector<MachineInstr*> copyMvec;
Vikram S. Adve242a8082002-05-19 15:25:51 +00002174 target.getInstrInfo().CreateCodeToCopyFloatToInt(target,
2175 callInstr->getParent()->getParent(),
2176 argVal, (TmpInstruction*) intArgReg,
2177 copyMvec, destMCFI);
2178 mvec.insert(mvec.begin(),copyMvec.begin(),copyMvec.end());
2179
2180 argDesc->getArgInfo(i-1).setUseIntArgReg();
2181 argDesc->getArgInfo(i-1).setArgCopy(intArgReg);
2182 }
2183 else
2184 // Cannot fit in first $K$ regs so pass the arg on the stack
2185 argDesc->getArgInfo(i-1).setUseStackSlot();
2186 }
2187
2188 if (intArgReg)
2189 mvec.back()->addImplicitRef(intArgReg);
2190
2191 mvec.back()->addImplicitRef(argVal);
2192 }
2193
2194 // Add the return value as an implicit ref. The call operands
2195 // were added above.
Vikram S. Adveea21a6c2001-10-20 20:57:06 +00002196 if (callInstr->getType() != Type::VoidTy)
Vikram S. Adve74825322002-03-18 03:15:35 +00002197 mvec.back()->addImplicitRef(callInstr, /*isDef*/ true);
Vikram S. Advea995e602001-10-11 04:23:19 +00002198
Vikram S. Adveea21a6c2001-10-20 20:57:06 +00002199 // For the CALL instruction, the ret. addr. reg. is also implicit
Chris Lattnerb0d04722002-03-26 17:58:12 +00002200 if (isa<Function>(callee))
Vikram S. Adve74825322002-03-18 03:15:35 +00002201 mvec.back()->addImplicitRef(retAddrReg, /*isDef*/ true);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002202
Vikram S. Adve74825322002-03-18 03:15:35 +00002203 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00002204 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002205 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002206 }
Vikram S. Adve242a8082002-05-19 15:25:51 +00002207
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002208 case 62: // reg: Shl(reg, reg)
Vikram S. Adve242a8082002-05-19 15:25:51 +00002209 {
2210 Value* argVal1 = subtreeRoot->leftChild()->getValue();
2211 Value* argVal2 = subtreeRoot->rightChild()->getValue();
2212 Instruction* shlInstr = subtreeRoot->getInstruction();
2213
2214 const Type* opType = argVal1->getType();
Chris Lattner0c4e8862002-09-03 01:08:28 +00002215 assert((opType->isInteger() || isa<PointerType>(opType)) &&
2216 "Shl unsupported for other types");
Vikram S. Adve242a8082002-05-19 15:25:51 +00002217
2218 CreateShiftInstructions(target, shlInstr->getParent()->getParent(),
Misha Brukmana98cd452003-05-20 20:32:24 +00002219 (opType == Type::LongTy)? V9::SLLX : V9::SLL,
Vikram S. Adve242a8082002-05-19 15:25:51 +00002220 argVal1, argVal2, 0, shlInstr, mvec,
2221 MachineCodeForInstruction::get(shlInstr));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002222 break;
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00002223 }
2224
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002225 case 63: // reg: Shr(reg, reg)
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00002226 { const Type* opType = subtreeRoot->leftChild()->getValue()->getType();
Chris Lattner0c4e8862002-09-03 01:08:28 +00002227 assert((opType->isInteger() || isa<PointerType>(opType)) &&
2228 "Shr unsupported for other types");
Chris Lattner54e898e2003-01-15 19:23:34 +00002229 Add3OperandInstr(opType->isSigned()
Misha Brukmana98cd452003-05-20 20:32:24 +00002230 ? (opType == Type::LongTy ? V9::SRAX : V9::SRA)
2231 : (opType == Type::LongTy ? V9::SRLX : V9::SRL),
Chris Lattner54e898e2003-01-15 19:23:34 +00002232 subtreeRoot, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002233 break;
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00002234 }
2235
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002236 case 64: // reg: Phi(reg,reg)
Vikram S. Adve74825322002-03-18 03:15:35 +00002237 break; // don't forward the value
2238
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002239 case 71: // reg: VReg
2240 case 72: // reg: Constant
Vikram S. Adve74825322002-03-18 03:15:35 +00002241 break; // don't forward the value
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002242
2243 default:
2244 assert(0 && "Unrecognized BURG rule");
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002245 break;
2246 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00002247 }
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002248
Chris Lattner20b1ea02001-09-14 03:47:57 +00002249 if (forwardOperandNum >= 0)
2250 { // We did not generate a machine instruction but need to use operand.
2251 // If user is in the same tree, replace Value in its machine operand.
2252 // If not, insert a copy instruction which should get coalesced away
2253 // by register allocation.
2254 if (subtreeRoot->parent() != NULL)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002255 ForwardOperand(subtreeRoot, subtreeRoot->parent(), forwardOperandNum);
Chris Lattner20b1ea02001-09-14 03:47:57 +00002256 else
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002257 {
Misha Brukmanee563cb2003-05-21 17:59:06 +00002258 std::vector<MachineInstr*> minstrVec;
Vikram S. Adve242a8082002-05-19 15:25:51 +00002259 Instruction* instr = subtreeRoot->getInstruction();
2260 target.getInstrInfo().
2261 CreateCopyInstructionsByType(target,
2262 instr->getParent()->getParent(),
2263 instr->getOperand(forwardOperandNum),
2264 instr, minstrVec,
2265 MachineCodeForInstruction::get(instr));
Vikram S. Adve7fe27872001-10-18 00:26:20 +00002266 assert(minstrVec.size() > 0);
Vikram S. Adve74825322002-03-18 03:15:35 +00002267 mvec.insert(mvec.end(), minstrVec.begin(), minstrVec.end());
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002268 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00002269 }
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002270
2271 if (maskUnsignedResult)
2272 { // If result is unsigned and smaller than int reg size,
2273 // we need to clear high bits of result value.
2274 assert(forwardOperandNum < 0 && "Need mask but no instruction generated");
2275 Instruction* dest = subtreeRoot->getInstruction();
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00002276 if (dest->getType()->isUnsigned())
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002277 {
Chris Lattnerea45d7b2002-12-28 20:19:44 +00002278 unsigned destSize=target.getTargetData().getTypeSize(dest->getType());
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00002279 if (destSize <= 4)
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002280 { // Mask high bits. Use a TmpInstruction to represent the
2281 // intermediate result before masking. Since those instructions
2282 // have already been generated, go back and substitute tmpI
2283 // for dest in the result position of each one of them.
2284 TmpInstruction *tmpI = new TmpInstruction(dest->getType(), dest,
2285 NULL, "maskHi");
2286 MachineCodeForInstruction::get(dest).addTemp(tmpI);
2287
2288 for (unsigned i=0, N=mvec.size(); i < N; ++i)
2289 mvec[i]->substituteValue(dest, tmpI);
2290
Misha Brukmana98cd452003-05-20 20:32:24 +00002291 M = BuildMI(V9::SRL, 3).addReg(tmpI).addZImm(8*(4-destSize))
2292 .addReg(dest, MOTy::Def);
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002293 mvec.push_back(M);
2294 }
Chris Lattner7a5adc32003-04-26 19:44:35 +00002295 else if (destSize < 8)
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00002296 assert(0 && "Unsupported type size: 32 < size < 64 bits");
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002297 }
2298 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00002299}