blob: 8ca4e69f5eedc292f6fa3865407bacc3cc5265d6 [file] [log] [blame]
Brian Gaekee3d68072004-02-25 18:44:15 +00001//===-- SparcV9InstrSelection.cpp -------------------------------------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner035dfbe2002-08-09 20:08:06 +00009//
10// BURS instruction selection for SPARC V9 architecture.
11//
12//===----------------------------------------------------------------------===//
Chris Lattner20b1ea02001-09-14 03:47:57 +000013
Chris Lattner31bcdb82002-04-28 19:55:58 +000014#include "llvm/Constants.h"
Misha Brukman34943292003-10-22 05:09:56 +000015#include "llvm/DerivedTypes.h"
16#include "llvm/Instructions.h"
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +000017#include "llvm/Intrinsics.h"
Misha Brukman34943292003-10-22 05:09:56 +000018#include "llvm/Module.h"
19#include "llvm/CodeGen/InstrForest.h"
20#include "llvm/CodeGen/InstrSelection.h"
21#include "llvm/CodeGen/InstrSelectionSupport.h"
22#include "llvm/CodeGen/MachineCodeForInstruction.h"
23#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineFunctionInfo.h"
25#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner08d49632004-02-29 19:12:51 +000026#include "MachineInstrAnnot.h"
Brian Gaekee3d68072004-02-25 18:44:15 +000027#include "SparcV9InstrSelectionSupport.h"
28#include "SparcV9Internals.h"
29#include "SparcV9RegClassInfo.h"
30#include "SparcV9RegInfo.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000031#include "Support/MathExtras.h"
Vikram S. Adve951df2b2003-07-10 20:07:54 +000032#include <algorithm>
Misha Brukman34943292003-10-22 05:09:56 +000033#include <cmath>
Chris Lattner20b1ea02001-09-14 03:47:57 +000034
Brian Gaeked0fde302003-11-11 22:41:34 +000035namespace llvm {
36
Chris Lattner54e898e2003-01-15 19:23:34 +000037static inline void Add3OperandInstr(unsigned Opcode, InstructionNode* Node,
Misha Brukmanee563cb2003-05-21 17:59:06 +000038 std::vector<MachineInstr*>& mvec) {
Chris Lattner54e898e2003-01-15 19:23:34 +000039 mvec.push_back(BuildMI(Opcode, 3).addReg(Node->leftChild()->getValue())
40 .addReg(Node->rightChild()->getValue())
41 .addRegDef(Node->getValue()));
42}
43
44
Chris Lattner795ba6c2003-01-15 21:36:50 +000045//---------------------------------------------------------------------------
46// Function: FoldGetElemChain
47//
48// Purpose:
49// Fold a chain of GetElementPtr instructions containing only
50// constant offsets into an equivalent (Pointer, IndexVector) pair.
51// Returns the pointer Value, and stores the resulting IndexVector
52// in argument chainIdxVec. This is a helper function for
53// FoldConstantIndices that does the actual folding.
54//---------------------------------------------------------------------------
55
56
57// Check for a constant 0.
Chris Lattnerd4d4ab52004-01-12 18:08:18 +000058static inline bool
Chris Lattner795ba6c2003-01-15 21:36:50 +000059IsZero(Value* idx)
60{
61 return (idx == ConstantSInt::getNullValue(idx->getType()));
62}
63
64static Value*
Misha Brukmanee563cb2003-05-21 17:59:06 +000065FoldGetElemChain(InstrTreeNode* ptrNode, std::vector<Value*>& chainIdxVec,
Chris Lattner795ba6c2003-01-15 21:36:50 +000066 bool lastInstHasLeadingNonZero)
67{
68 InstructionNode* gepNode = dyn_cast<InstructionNode>(ptrNode);
69 GetElementPtrInst* gepInst =
70 dyn_cast_or_null<GetElementPtrInst>(gepNode ? gepNode->getInstruction() :0);
71
72 // ptr value is not computed in this tree or ptr value does not come from GEP
73 // instruction
74 if (gepInst == NULL)
75 return NULL;
76
77 // Return NULL if we don't fold any instructions in.
78 Value* ptrVal = NULL;
79
80 // Now chase the chain of getElementInstr instructions, if any.
81 // Check for any non-constant indices and stop there.
82 // Also, stop if the first index of child is a non-zero array index
83 // and the last index of the current node is a non-array index:
84 // in that case, a non-array declared type is being accessed as an array
85 // which is not type-safe, but could be legal.
86 //
87 InstructionNode* ptrChild = gepNode;
88 while (ptrChild && (ptrChild->getOpLabel() == Instruction::GetElementPtr ||
89 ptrChild->getOpLabel() == GetElemPtrIdx))
Misha Brukman81b06862003-05-21 18:48:06 +000090 {
91 // Child is a GetElemPtr instruction
92 gepInst = cast<GetElementPtrInst>(ptrChild->getValue());
93 User::op_iterator OI, firstIdx = gepInst->idx_begin();
94 User::op_iterator lastIdx = gepInst->idx_end();
95 bool allConstantOffsets = true;
Chris Lattner795ba6c2003-01-15 21:36:50 +000096
Misha Brukman81b06862003-05-21 18:48:06 +000097 // The first index of every GEP must be an array index.
98 assert((*firstIdx)->getType() == Type::LongTy &&
99 "INTERNAL ERROR: Structure index for a pointer type!");
Chris Lattner795ba6c2003-01-15 21:36:50 +0000100
Misha Brukman81b06862003-05-21 18:48:06 +0000101 // If the last instruction had a leading non-zero index, check if the
102 // current one references a sequential (i.e., indexable) type.
103 // If not, the code is not type-safe and we would create an illegal GEP
104 // by folding them, so don't fold any more instructions.
105 //
106 if (lastInstHasLeadingNonZero)
107 if (! isa<SequentialType>(gepInst->getType()->getElementType()))
108 break; // cannot fold in any preceding getElementPtr instrs.
Chris Lattner795ba6c2003-01-15 21:36:50 +0000109
Misha Brukman81b06862003-05-21 18:48:06 +0000110 // Check that all offsets are constant for this instruction
111 for (OI = firstIdx; allConstantOffsets && OI != lastIdx; ++OI)
112 allConstantOffsets = isa<ConstantInt>(*OI);
Chris Lattner795ba6c2003-01-15 21:36:50 +0000113
Misha Brukman81b06862003-05-21 18:48:06 +0000114 if (allConstantOffsets) {
115 // Get pointer value out of ptrChild.
116 ptrVal = gepInst->getPointerOperand();
Chris Lattner795ba6c2003-01-15 21:36:50 +0000117
Misha Brukman81b06862003-05-21 18:48:06 +0000118 // Insert its index vector at the start, skipping any leading [0]
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000119 // Remember the old size to check if anything was inserted.
120 unsigned oldSize = chainIdxVec.size();
121 int firstIsZero = IsZero(*firstIdx);
122 chainIdxVec.insert(chainIdxVec.begin(), firstIdx + firstIsZero, lastIdx);
123
124 // Remember if it has leading zero index: it will be discarded later.
125 if (oldSize < chainIdxVec.size())
126 lastInstHasLeadingNonZero = !firstIsZero;
Chris Lattner795ba6c2003-01-15 21:36:50 +0000127
Misha Brukman81b06862003-05-21 18:48:06 +0000128 // Mark the folded node so no code is generated for it.
129 ((InstructionNode*) ptrChild)->markFoldedIntoParent();
Chris Lattner795ba6c2003-01-15 21:36:50 +0000130
Misha Brukman81b06862003-05-21 18:48:06 +0000131 // Get the previous GEP instruction and continue trying to fold
132 ptrChild = dyn_cast<InstructionNode>(ptrChild->leftChild());
133 } else // cannot fold this getElementPtr instr. or any preceding ones
134 break;
135 }
Chris Lattner795ba6c2003-01-15 21:36:50 +0000136
137 // If the first getElementPtr instruction had a leading [0], add it back.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000138 // Note that this instruction is the *last* one that was successfully
139 // folded *and* contributed any indices, in the loop above.
140 //
Chris Lattner795ba6c2003-01-15 21:36:50 +0000141 if (ptrVal && ! lastInstHasLeadingNonZero)
142 chainIdxVec.insert(chainIdxVec.begin(), ConstantSInt::get(Type::LongTy,0));
143
144 return ptrVal;
145}
146
147
148//---------------------------------------------------------------------------
149// Function: GetGEPInstArgs
150//
151// Purpose:
152// Helper function for GetMemInstArgs that handles the final getElementPtr
153// instruction used by (or same as) the memory operation.
154// Extracts the indices of the current instruction and tries to fold in
155// preceding ones if all indices of the current one are constant.
156//---------------------------------------------------------------------------
157
158static Value *
159GetGEPInstArgs(InstructionNode* gepNode,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000160 std::vector<Value*>& idxVec,
Chris Lattner795ba6c2003-01-15 21:36:50 +0000161 bool& allConstantIndices)
162{
163 allConstantIndices = true;
164 GetElementPtrInst* gepI = cast<GetElementPtrInst>(gepNode->getInstruction());
165
166 // Default pointer is the one from the current instruction.
167 Value* ptrVal = gepI->getPointerOperand();
168 InstrTreeNode* ptrChild = gepNode->leftChild();
169
Misha Brukman452db672003-09-23 17:28:11 +0000170 // Extract the index vector of the GEP instruction.
Chris Lattner795ba6c2003-01-15 21:36:50 +0000171 // If all indices are constant and first index is zero, try to fold
172 // in preceding GEPs with all constant indices.
173 for (User::op_iterator OI=gepI->idx_begin(), OE=gepI->idx_end();
174 allConstantIndices && OI != OE; ++OI)
175 if (! isa<Constant>(*OI))
176 allConstantIndices = false; // note: this also terminates loop!
177
178 // If we have only constant indices, fold chains of constant indices
179 // in this and any preceding GetElemPtr instructions.
180 bool foldedGEPs = false;
181 bool leadingNonZeroIdx = gepI && ! IsZero(*gepI->idx_begin());
182 if (allConstantIndices)
Misha Brukman81b06862003-05-21 18:48:06 +0000183 if (Value* newPtr = FoldGetElemChain(ptrChild, idxVec, leadingNonZeroIdx)) {
184 ptrVal = newPtr;
185 foldedGEPs = true;
186 }
Chris Lattner795ba6c2003-01-15 21:36:50 +0000187
188 // Append the index vector of the current instruction.
189 // Skip the leading [0] index if preceding GEPs were folded into this.
190 idxVec.insert(idxVec.end(),
191 gepI->idx_begin() + (foldedGEPs && !leadingNonZeroIdx),
192 gepI->idx_end());
193
194 return ptrVal;
195}
196
197//---------------------------------------------------------------------------
198// Function: GetMemInstArgs
199//
200// Purpose:
201// Get the pointer value and the index vector for a memory operation
202// (GetElementPtr, Load, or Store). If all indices of the given memory
203// operation are constant, fold in constant indices in a chain of
204// preceding GetElementPtr instructions (if any), and return the
205// pointer value of the first instruction in the chain.
206// All folded instructions are marked so no code is generated for them.
207//
208// Return values:
209// Returns the pointer Value to use.
210// Returns the resulting IndexVector in idxVec.
211// Returns true/false in allConstantIndices if all indices are/aren't const.
212//---------------------------------------------------------------------------
213
214static Value*
215GetMemInstArgs(InstructionNode* memInstrNode,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000216 std::vector<Value*>& idxVec,
Chris Lattner795ba6c2003-01-15 21:36:50 +0000217 bool& allConstantIndices)
218{
219 allConstantIndices = false;
220 Instruction* memInst = memInstrNode->getInstruction();
221 assert(idxVec.size() == 0 && "Need empty vector to return indices");
222
223 // If there is a GetElemPtr instruction to fold in to this instr,
224 // it must be in the left child for Load and GetElemPtr, and in the
225 // right child for Store instructions.
226 InstrTreeNode* ptrChild = (memInst->getOpcode() == Instruction::Store
227 ? memInstrNode->rightChild()
228 : memInstrNode->leftChild());
229
230 // Default pointer is the one from the current instruction.
231 Value* ptrVal = ptrChild->getValue();
232
233 // Find the "last" GetElemPtr instruction: this one or the immediate child.
234 // There will be none if this is a load or a store from a scalar pointer.
235 InstructionNode* gepNode = NULL;
236 if (isa<GetElementPtrInst>(memInst))
237 gepNode = memInstrNode;
Misha Brukman81b06862003-05-21 18:48:06 +0000238 else if (isa<InstructionNode>(ptrChild) && isa<GetElementPtrInst>(ptrVal)) {
239 // Child of load/store is a GEP and memInst is its only use.
240 // Use its indices and mark it as folded.
241 gepNode = cast<InstructionNode>(ptrChild);
242 gepNode->markFoldedIntoParent();
243 }
Chris Lattner795ba6c2003-01-15 21:36:50 +0000244
245 // If there are no indices, return the current pointer.
246 // Else extract the pointer from the GEP and fold the indices.
247 return gepNode ? GetGEPInstArgs(gepNode, idxVec, allConstantIndices)
248 : ptrVal;
249}
250
Chris Lattner54e898e2003-01-15 19:23:34 +0000251
Chris Lattner20b1ea02001-09-14 03:47:57 +0000252//************************ Internal Functions ******************************/
253
Chris Lattner20b1ea02001-09-14 03:47:57 +0000254
Chris Lattner20b1ea02001-09-14 03:47:57 +0000255static inline MachineOpCode
256ChooseBprInstruction(const InstructionNode* instrNode)
257{
258 MachineOpCode opCode;
259
260 Instruction* setCCInstr =
261 ((InstructionNode*) instrNode->leftChild())->getInstruction();
262
263 switch(setCCInstr->getOpcode())
Misha Brukman81b06862003-05-21 18:48:06 +0000264 {
265 case Instruction::SetEQ: opCode = V9::BRZ; break;
266 case Instruction::SetNE: opCode = V9::BRNZ; break;
267 case Instruction::SetLE: opCode = V9::BRLEZ; break;
268 case Instruction::SetGE: opCode = V9::BRGEZ; break;
269 case Instruction::SetLT: opCode = V9::BRLZ; break;
270 case Instruction::SetGT: opCode = V9::BRGZ; break;
271 default:
272 assert(0 && "Unrecognized VM instruction!");
273 opCode = V9::INVALID_OPCODE;
274 break;
275 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000276
277 return opCode;
278}
279
280
281static inline MachineOpCode
Chris Lattner20b1ea02001-09-14 03:47:57 +0000282ChooseBpccInstruction(const InstructionNode* instrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000283 const BinaryOperator* setCCInstr)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000284{
Misha Brukmana98cd452003-05-20 20:32:24 +0000285 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000286
287 bool isSigned = setCCInstr->getOperand(0)->getType()->isSigned();
288
Misha Brukman81b06862003-05-21 18:48:06 +0000289 if (isSigned) {
290 switch(setCCInstr->getOpcode())
Chris Lattner20b1ea02001-09-14 03:47:57 +0000291 {
Misha Brukman81b06862003-05-21 18:48:06 +0000292 case Instruction::SetEQ: opCode = V9::BE; break;
293 case Instruction::SetNE: opCode = V9::BNE; break;
294 case Instruction::SetLE: opCode = V9::BLE; break;
295 case Instruction::SetGE: opCode = V9::BGE; break;
296 case Instruction::SetLT: opCode = V9::BL; break;
297 case Instruction::SetGT: opCode = V9::BG; break;
298 default:
299 assert(0 && "Unrecognized VM instruction!");
300 break;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000301 }
Misha Brukman81b06862003-05-21 18:48:06 +0000302 } else {
303 switch(setCCInstr->getOpcode())
Chris Lattner20b1ea02001-09-14 03:47:57 +0000304 {
Misha Brukman81b06862003-05-21 18:48:06 +0000305 case Instruction::SetEQ: opCode = V9::BE; break;
306 case Instruction::SetNE: opCode = V9::BNE; break;
307 case Instruction::SetLE: opCode = V9::BLEU; break;
308 case Instruction::SetGE: opCode = V9::BCC; break;
309 case Instruction::SetLT: opCode = V9::BCS; break;
310 case Instruction::SetGT: opCode = V9::BGU; break;
311 default:
312 assert(0 && "Unrecognized VM instruction!");
313 break;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000314 }
Misha Brukman81b06862003-05-21 18:48:06 +0000315 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000316
317 return opCode;
318}
319
320static inline MachineOpCode
321ChooseBFpccInstruction(const InstructionNode* instrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000322 const BinaryOperator* setCCInstr)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000323{
Misha Brukmana98cd452003-05-20 20:32:24 +0000324 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000325
326 switch(setCCInstr->getOpcode())
Misha Brukman81b06862003-05-21 18:48:06 +0000327 {
328 case Instruction::SetEQ: opCode = V9::FBE; break;
329 case Instruction::SetNE: opCode = V9::FBNE; break;
330 case Instruction::SetLE: opCode = V9::FBLE; break;
331 case Instruction::SetGE: opCode = V9::FBGE; break;
332 case Instruction::SetLT: opCode = V9::FBL; break;
333 case Instruction::SetGT: opCode = V9::FBG; break;
334 default:
335 assert(0 && "Unrecognized VM instruction!");
336 break;
337 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000338
339 return opCode;
340}
341
342
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000343// Create a unique TmpInstruction for a boolean value,
344// representing the CC register used by a branch on that value.
345// For now, hack this using a little static cache of TmpInstructions.
346// Eventually the entire BURG instruction selection should be put
347// into a separate class that can hold such information.
Vikram S. Adveff5a09e2001-11-08 05:04:09 +0000348// The static cache is not too bad because the memory for these
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000349// TmpInstructions will be freed along with the rest of the Function anyway.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000350//
351static TmpInstruction*
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000352GetTmpForCC(Value* boolVal, const Function *F, const Type* ccType,
353 MachineCodeForInstruction& mcfi)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000354{
Chris Lattner09ff1122002-07-24 21:21:32 +0000355 typedef hash_map<const Value*, TmpInstruction*> BoolTmpCache;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000356 static BoolTmpCache boolToTmpCache; // Map boolVal -> TmpInstruction*
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000357 static const Function *lastFunction = 0;// Use to flush cache between funcs
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000358
359 assert(boolVal->getType() == Type::BoolTy && "Weird but ok! Delete assert");
360
Misha Brukman81b06862003-05-21 18:48:06 +0000361 if (lastFunction != F) {
362 lastFunction = F;
363 boolToTmpCache.clear();
364 }
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000365
Vikram S. Adveff5a09e2001-11-08 05:04:09 +0000366 // Look for tmpI and create a new one otherwise. The new value is
367 // directly written to map using the ref returned by operator[].
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000368 TmpInstruction*& tmpI = boolToTmpCache[boolVal];
369 if (tmpI == NULL)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000370 tmpI = new TmpInstruction(mcfi, ccType, boolVal);
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000371
372 return tmpI;
373}
374
375
Chris Lattner20b1ea02001-09-14 03:47:57 +0000376static inline MachineOpCode
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000377ChooseBccInstruction(const InstructionNode* instrNode,
Vikram S. Adve786833a2003-07-06 20:13:59 +0000378 const Type*& setCCType)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000379{
380 InstructionNode* setCCNode = (InstructionNode*) instrNode->leftChild();
Vikram S. Adve30a6f492002-08-22 02:56:10 +0000381 assert(setCCNode->getOpLabel() == SetCCOp);
382 BinaryOperator* setCCInstr =cast<BinaryOperator>(setCCNode->getInstruction());
Vikram S. Adve786833a2003-07-06 20:13:59 +0000383 setCCType = setCCInstr->getOperand(0)->getType();
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000384
Vikram S. Adve786833a2003-07-06 20:13:59 +0000385 if (setCCType->isFloatingPoint())
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000386 return ChooseBFpccInstruction(instrNode, setCCInstr);
387 else
388 return ChooseBpccInstruction(instrNode, setCCInstr);
389}
390
391
Misha Brukmaneecdb662003-06-02 20:55:14 +0000392// WARNING: since this function has only one caller, it always returns
393// the opcode that expects an immediate and a register. If this function
394// is ever used in cases where an opcode that takes two registers is required,
395// then modify this function and use convertOpcodeFromRegToImm() where required.
396//
397// It will be necessary to expand convertOpcodeFromRegToImm() to handle the
398// new cases of opcodes.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000399static inline MachineOpCode
Misha Brukmaneecdb662003-06-02 20:55:14 +0000400ChooseMovFpcciInstruction(const InstructionNode* instrNode)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000401{
Misha Brukmana98cd452003-05-20 20:32:24 +0000402 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000403
404 switch(instrNode->getInstruction()->getOpcode())
Misha Brukman81b06862003-05-21 18:48:06 +0000405 {
Misha Brukmaneecdb662003-06-02 20:55:14 +0000406 case Instruction::SetEQ: opCode = V9::MOVFEi; break;
407 case Instruction::SetNE: opCode = V9::MOVFNEi; break;
408 case Instruction::SetLE: opCode = V9::MOVFLEi; break;
409 case Instruction::SetGE: opCode = V9::MOVFGEi; break;
410 case Instruction::SetLT: opCode = V9::MOVFLi; break;
411 case Instruction::SetGT: opCode = V9::MOVFGi; break;
Misha Brukman81b06862003-05-21 18:48:06 +0000412 default:
413 assert(0 && "Unrecognized VM instruction!");
414 break;
415 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000416
417 return opCode;
418}
419
420
Vikram S. Adve951df2b2003-07-10 20:07:54 +0000421// ChooseMovpcciForSetCC -- Choose a conditional-move instruction
422// based on the type of SetCC operation.
Chris Lattner20b1ea02001-09-14 03:47:57 +0000423//
Misha Brukmaneecdb662003-06-02 20:55:14 +0000424// WARNING: since this function has only one caller, it always returns
425// the opcode that expects an immediate and a register. If this function
426// is ever used in cases where an opcode that takes two registers is required,
427// then modify this function and use convertOpcodeFromRegToImm() where required.
428//
429// It will be necessary to expand convertOpcodeFromRegToImm() to handle the
430// new cases of opcodes.
Vikram S. Adve951df2b2003-07-10 20:07:54 +0000431//
Chris Lattner20b1ea02001-09-14 03:47:57 +0000432static MachineOpCode
Vikram S. Adve951df2b2003-07-10 20:07:54 +0000433ChooseMovpcciForSetCC(const InstructionNode* instrNode)
434{
435 MachineOpCode opCode = V9::INVALID_OPCODE;
436
437 const Type* opType = instrNode->leftChild()->getValue()->getType();
438 assert(opType->isIntegral() || isa<PointerType>(opType));
439 bool noSign = opType->isUnsigned() || isa<PointerType>(opType);
440
441 switch(instrNode->getInstruction()->getOpcode())
442 {
443 case Instruction::SetEQ: opCode = V9::MOVEi; break;
444 case Instruction::SetLE: opCode = noSign? V9::MOVLEUi : V9::MOVLEi; break;
445 case Instruction::SetGE: opCode = noSign? V9::MOVCCi : V9::MOVGEi; break;
446 case Instruction::SetLT: opCode = noSign? V9::MOVCSi : V9::MOVLi; break;
447 case Instruction::SetGT: opCode = noSign? V9::MOVGUi : V9::MOVGi; break;
448 case Instruction::SetNE: opCode = V9::MOVNEi; break;
449 default: assert(0 && "Unrecognized LLVM instr!"); break;
450 }
451
452 return opCode;
453}
454
455
456// ChooseMovpregiForSetCC -- Choose a conditional-move-on-register-value
457// instruction based on the type of SetCC operation. These instructions
458// compare a register with 0 and perform the move is the comparison is true.
459//
460// WARNING: like the previous function, this function it always returns
461// the opcode that expects an immediate and a register. See above.
462//
463static MachineOpCode
464ChooseMovpregiForSetCC(const InstructionNode* instrNode)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000465{
Misha Brukmana98cd452003-05-20 20:32:24 +0000466 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000467
468 switch(instrNode->getInstruction()->getOpcode())
Misha Brukman81b06862003-05-21 18:48:06 +0000469 {
Vikram S. Adve951df2b2003-07-10 20:07:54 +0000470 case Instruction::SetEQ: opCode = V9::MOVRZi; break;
471 case Instruction::SetLE: opCode = V9::MOVRLEZi; break;
472 case Instruction::SetGE: opCode = V9::MOVRGEZi; break;
473 case Instruction::SetLT: opCode = V9::MOVRLZi; break;
474 case Instruction::SetGT: opCode = V9::MOVRGZi; break;
475 case Instruction::SetNE: opCode = V9::MOVRNZi; break;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000476 default: assert(0 && "Unrecognized VM instr!"); break;
Misha Brukman81b06862003-05-21 18:48:06 +0000477 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000478
479 return opCode;
480}
481
Vikram S. Adve951df2b2003-07-10 20:07:54 +0000482
Chris Lattner20b1ea02001-09-14 03:47:57 +0000483static inline MachineOpCode
Vikram S. Advee895a742003-08-06 18:48:40 +0000484ChooseConvertToFloatInstr(const TargetMachine& target,
485 OpLabel vopCode, const Type* opType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000486{
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000487 assert((vopCode == ToFloatTy || vopCode == ToDoubleTy) &&
488 "Unrecognized convert-to-float opcode!");
Vikram S. Advee895a742003-08-06 18:48:40 +0000489 assert((opType->isIntegral() || opType->isFloatingPoint() ||
490 isa<PointerType>(opType))
491 && "Trying to convert a non-scalar type to FLOAT/DOUBLE?");
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000492
Misha Brukmana98cd452003-05-20 20:32:24 +0000493 MachineOpCode opCode = V9::INVALID_OPCODE;
Vikram S. Advee895a742003-08-06 18:48:40 +0000494
495 unsigned opSize = target.getTargetData().getTypeSize(opType);
496
497 if (opType == Type::FloatTy)
498 opCode = (vopCode == ToFloatTy? V9::NOP : V9::FSTOD);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000499 else if (opType == Type::DoubleTy)
Vikram S. Advee895a742003-08-06 18:48:40 +0000500 opCode = (vopCode == ToFloatTy? V9::FDTOS : V9::NOP);
501 else if (opSize <= 4)
502 opCode = (vopCode == ToFloatTy? V9::FITOS : V9::FITOD);
503 else {
504 assert(opSize == 8 && "Unrecognized type size > 4 and < 8!");
505 opCode = (vopCode == ToFloatTy? V9::FXTOS : V9::FXTOD);
506 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000507
508 return opCode;
509}
510
511static inline MachineOpCode
Vikram S. Advee895a742003-08-06 18:48:40 +0000512ChooseConvertFPToIntInstr(const TargetMachine& target,
513 const Type* destType, const Type* opType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000514{
Vikram S. Adve94c40812002-09-27 14:33:08 +0000515 assert((opType == Type::FloatTy || opType == Type::DoubleTy)
516 && "This function should only be called for FLOAT or DOUBLE");
Vikram S. Advee895a742003-08-06 18:48:40 +0000517 assert((destType->isIntegral() || isa<PointerType>(destType))
518 && "Trying to convert FLOAT/DOUBLE to a non-scalar type?");
Vikram S. Adve94c40812002-09-27 14:33:08 +0000519
Vikram S. Advee895a742003-08-06 18:48:40 +0000520 MachineOpCode opCode = V9::INVALID_OPCODE;
521
522 unsigned destSize = target.getTargetData().getTypeSize(destType);
523
524 if (destType == Type::UIntTy)
525 assert(destType != Type::UIntTy && "Expand FP-to-uint beforehand.");
526 else if (destSize <= 4)
Misha Brukman81b06862003-05-21 18:48:06 +0000527 opCode = (opType == Type::FloatTy)? V9::FSTOI : V9::FDTOI;
Vikram S. Advee895a742003-08-06 18:48:40 +0000528 else {
529 assert(destSize == 8 && "Unrecognized type size > 4 and < 8!");
530 opCode = (opType == Type::FloatTy)? V9::FSTOX : V9::FDTOX;
531 }
Vikram S. Adve94c40812002-09-27 14:33:08 +0000532
Chris Lattner20b1ea02001-09-14 03:47:57 +0000533 return opCode;
534}
535
Vikram S. Advee895a742003-08-06 18:48:40 +0000536static MachineInstr*
537CreateConvertFPToIntInstr(const TargetMachine& target,
538 Value* srcVal,
539 Value* destVal,
540 const Type* destType)
Vikram S. Advedbc4fad2002-04-25 04:37:51 +0000541{
Vikram S. Advee895a742003-08-06 18:48:40 +0000542 MachineOpCode opCode = ChooseConvertFPToIntInstr(target, destType,
543 srcVal->getType());
Misha Brukmana98cd452003-05-20 20:32:24 +0000544 assert(opCode != V9::INVALID_OPCODE && "Expected to need conversion!");
Chris Lattner00dca912003-01-15 17:47:49 +0000545 return BuildMI(opCode, 2).addReg(srcVal).addRegDef(destVal);
Vikram S. Advedbc4fad2002-04-25 04:37:51 +0000546}
Chris Lattner20b1ea02001-09-14 03:47:57 +0000547
Vikram S. Adve8cfffd32002-08-24 20:56:53 +0000548// CreateCodeToConvertFloatToInt: Convert FP value to signed or unsigned integer
Vikram S. Adve1e606692002-07-31 21:01:34 +0000549// The FP value must be converted to the dest type in an FP register,
550// and the result is then copied from FP to int register via memory.
Vikram S. Advee895a742003-08-06 18:48:40 +0000551// SPARC does not have a float-to-uint conversion, only a float-to-int (fdtoi).
Vikram S. Advebabc0fa2002-09-05 18:32:13 +0000552// Since fdtoi converts to signed integers, any FP value V between MAXINT+1
Vikram S. Advee895a742003-08-06 18:48:40 +0000553// and MAXUNSIGNED (i.e., 2^31 <= V <= 2^32-1) would be converted incorrectly.
554// Therefore, for converting an FP value to uint32_t, we first need to convert
555// to uint64_t and then to uint32_t.
Vikram S. Advebabc0fa2002-09-05 18:32:13 +0000556//
Vikram S. Adve1e606692002-07-31 21:01:34 +0000557static void
Vikram S. Adve8cfffd32002-08-24 20:56:53 +0000558CreateCodeToConvertFloatToInt(const TargetMachine& target,
559 Value* opVal,
560 Instruction* destI,
561 std::vector<MachineInstr*>& mvec,
562 MachineCodeForInstruction& mcfi)
Vikram S. Adve1e606692002-07-31 21:01:34 +0000563{
Vikram S. Advee895a742003-08-06 18:48:40 +0000564 Function* F = destI->getParent()->getParent();
565
Vikram S. Adve1e606692002-07-31 21:01:34 +0000566 // Create a temporary to represent the FP register into which the
567 // int value will placed after conversion. The type of this temporary
568 // depends on the type of FP register to use: single-prec for a 32-bit
569 // int or smaller; double-prec for a 64-bit int.
570 //
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000571 size_t destSize = target.getTargetData().getTypeSize(destI->getType());
Vikram S. Adve1e606692002-07-31 21:01:34 +0000572
Vikram S. Advee895a742003-08-06 18:48:40 +0000573 const Type* castDestType = destI->getType(); // type for the cast instr result
574 const Type* castDestRegType; // type for cast instruction result reg
575 TmpInstruction* destForCast; // dest for cast instruction
576 Instruction* fpToIntCopyDest = destI; // dest for fp-reg-to-int-reg copy instr
577
578 // For converting an FP value to uint32_t, we first need to convert to
579 // uint64_t and then to uint32_t, as explained above.
580 if (destI->getType() == Type::UIntTy) {
581 castDestType = Type::ULongTy; // use this instead of type of destI
582 castDestRegType = Type::DoubleTy; // uint64_t needs 64-bit FP register.
583 destForCast = new TmpInstruction(mcfi, castDestRegType, opVal);
584 fpToIntCopyDest = new TmpInstruction(mcfi, castDestType, destForCast);
585 }
586 else {
587 castDestRegType = (destSize > 4)? Type::DoubleTy : Type::FloatTy;
588 destForCast = new TmpInstruction(mcfi, castDestRegType, opVal);
589 }
590
591 // Create the fp-to-int conversion instruction (src and dest regs are FP regs)
592 mvec.push_back(CreateConvertFPToIntInstr(target, opVal, destForCast,
593 castDestType));
Vikram S. Adve1e606692002-07-31 21:01:34 +0000594
595 // Create the fpreg-to-intreg copy code
Vikram S. Advee895a742003-08-06 18:48:40 +0000596 target.getInstrInfo().CreateCodeToCopyFloatToInt(target, F, destForCast,
597 fpToIntCopyDest, mvec, mcfi);
598
599 // Create the uint64_t to uint32_t conversion, if needed
600 if (destI->getType() == Type::UIntTy)
601 target.getInstrInfo().
602 CreateZeroExtensionInstructions(target, F, fpToIntCopyDest, destI,
603 /*numLowBits*/ 32, mvec, mcfi);
Vikram S. Adve1e606692002-07-31 21:01:34 +0000604}
605
606
Chris Lattner20b1ea02001-09-14 03:47:57 +0000607static inline MachineOpCode
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000608ChooseAddInstruction(const InstructionNode* instrNode)
609{
610 return ChooseAddInstructionByType(instrNode->getInstruction()->getType());
611}
612
613
Chris Lattner20b1ea02001-09-14 03:47:57 +0000614static inline MachineInstr*
615CreateMovFloatInstruction(const InstructionNode* instrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000616 const Type* resultType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000617{
Misha Brukmana98cd452003-05-20 20:32:24 +0000618 return BuildMI((resultType == Type::FloatTy) ? V9::FMOVS : V9::FMOVD, 2)
Chris Lattner00dca912003-01-15 17:47:49 +0000619 .addReg(instrNode->leftChild()->getValue())
620 .addRegDef(instrNode->getValue());
Chris Lattner20b1ea02001-09-14 03:47:57 +0000621}
622
623static inline MachineInstr*
624CreateAddConstInstruction(const InstructionNode* instrNode)
625{
626 MachineInstr* minstr = NULL;
627
628 Value* constOp = ((InstrTreeNode*) instrNode->rightChild())->getValue();
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000629 assert(isa<Constant>(constOp));
Chris Lattner20b1ea02001-09-14 03:47:57 +0000630
631 // Cases worth optimizing are:
632 // (1) Add with 0 for float or double: use an FMOV of appropriate type,
633 // instead of an FADD (1 vs 3 cycles). There is no integer MOV.
634 //
Chris Lattner9b625032002-05-06 16:15:30 +0000635 if (ConstantFP *FPC = dyn_cast<ConstantFP>(constOp)) {
Misha Brukman81b06862003-05-21 18:48:06 +0000636 double dval = FPC->getValue();
637 if (dval == 0.0)
638 minstr = CreateMovFloatInstruction(instrNode,
639 instrNode->getInstruction()->getType());
640 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000641
642 return minstr;
643}
644
645
646static inline MachineOpCode
Vikram S. Adve510eec72001-11-04 21:59:14 +0000647ChooseSubInstructionByType(const Type* resultType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000648{
Misha Brukmana98cd452003-05-20 20:32:24 +0000649 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000650
Misha Brukman81b06862003-05-21 18:48:06 +0000651 if (resultType->isInteger() || isa<PointerType>(resultType)) {
Misha Brukman91aee472003-05-27 22:37:00 +0000652 opCode = V9::SUBr;
Misha Brukman81b06862003-05-21 18:48:06 +0000653 } else {
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000654 switch(resultType->getPrimitiveID())
Misha Brukman81b06862003-05-21 18:48:06 +0000655 {
656 case Type::FloatTyID: opCode = V9::FSUBS; break;
657 case Type::DoubleTyID: opCode = V9::FSUBD; break;
658 default: assert(0 && "Invalid type for SUB instruction"); break;
659 }
660 }
661
Chris Lattner20b1ea02001-09-14 03:47:57 +0000662 return opCode;
663}
664
665
666static inline MachineInstr*
667CreateSubConstInstruction(const InstructionNode* instrNode)
668{
669 MachineInstr* minstr = NULL;
670
671 Value* constOp = ((InstrTreeNode*) instrNode->rightChild())->getValue();
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000672 assert(isa<Constant>(constOp));
Chris Lattner20b1ea02001-09-14 03:47:57 +0000673
674 // Cases worth optimizing are:
675 // (1) Sub with 0 for float or double: use an FMOV of appropriate type,
676 // instead of an FSUB (1 vs 3 cycles). There is no integer MOV.
677 //
Chris Lattner9b625032002-05-06 16:15:30 +0000678 if (ConstantFP *FPC = dyn_cast<ConstantFP>(constOp)) {
679 double dval = FPC->getValue();
680 if (dval == 0.0)
Vikram S. Adve242a8082002-05-19 15:25:51 +0000681 minstr = CreateMovFloatInstruction(instrNode,
682 instrNode->getInstruction()->getType());
Chris Lattner9b625032002-05-06 16:15:30 +0000683 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000684
685 return minstr;
686}
687
688
689static inline MachineOpCode
690ChooseFcmpInstruction(const InstructionNode* instrNode)
691{
Misha Brukmana98cd452003-05-20 20:32:24 +0000692 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000693
694 Value* operand = ((InstrTreeNode*) instrNode->leftChild())->getValue();
695 switch(operand->getType()->getPrimitiveID()) {
Misha Brukmana98cd452003-05-20 20:32:24 +0000696 case Type::FloatTyID: opCode = V9::FCMPS; break;
697 case Type::DoubleTyID: opCode = V9::FCMPD; break;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000698 default: assert(0 && "Invalid type for FCMP instruction"); break;
699 }
700
701 return opCode;
702}
703
704
705// Assumes that leftArg and rightArg are both cast instructions.
706//
707static inline bool
708BothFloatToDouble(const InstructionNode* instrNode)
709{
710 InstrTreeNode* leftArg = instrNode->leftChild();
711 InstrTreeNode* rightArg = instrNode->rightChild();
712 InstrTreeNode* leftArgArg = leftArg->leftChild();
713 InstrTreeNode* rightArgArg = rightArg->leftChild();
714 assert(leftArg->getValue()->getType() == rightArg->getValue()->getType());
715
716 // Check if both arguments are floats cast to double
717 return (leftArg->getValue()->getType() == Type::DoubleTy &&
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000718 leftArgArg->getValue()->getType() == Type::FloatTy &&
719 rightArgArg->getValue()->getType() == Type::FloatTy);
Chris Lattner20b1ea02001-09-14 03:47:57 +0000720}
721
722
723static inline MachineOpCode
Vikram S. Adve510eec72001-11-04 21:59:14 +0000724ChooseMulInstructionByType(const Type* resultType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000725{
Misha Brukmana98cd452003-05-20 20:32:24 +0000726 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000727
Chris Lattner0c4e8862002-09-03 01:08:28 +0000728 if (resultType->isInteger())
Misha Brukman91aee472003-05-27 22:37:00 +0000729 opCode = V9::MULXr;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000730 else
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000731 switch(resultType->getPrimitiveID())
Misha Brukman7b647942003-05-30 20:11:56 +0000732 {
733 case Type::FloatTyID: opCode = V9::FMULS; break;
734 case Type::DoubleTyID: opCode = V9::FMULD; break;
735 default: assert(0 && "Invalid type for MUL instruction"); break;
736 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000737
738 return opCode;
739}
740
741
Vikram S. Adve510eec72001-11-04 21:59:14 +0000742
Chris Lattner20b1ea02001-09-14 03:47:57 +0000743static inline MachineInstr*
Vikram S. Adve74825322002-03-18 03:15:35 +0000744CreateIntNegInstruction(const TargetMachine& target,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000745 Value* vreg)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000746{
Misha Brukman91aee472003-05-27 22:37:00 +0000747 return BuildMI(V9::SUBr, 3).addMReg(target.getRegInfo().getZeroRegNum())
Misha Brukmana98cd452003-05-20 20:32:24 +0000748 .addReg(vreg).addRegDef(vreg);
Chris Lattner20b1ea02001-09-14 03:47:57 +0000749}
750
751
Vikram S. Adve242a8082002-05-19 15:25:51 +0000752// Create instruction sequence for any shift operation.
753// SLL or SLLX on an operand smaller than the integer reg. size (64bits)
754// requires a second instruction for explicit sign-extension.
755// Note that we only have to worry about a sign-bit appearing in the
756// most significant bit of the operand after shifting (e.g., bit 32 of
757// Int or bit 16 of Short), so we do not have to worry about results
758// that are as large as a normal integer register.
759//
760static inline void
761CreateShiftInstructions(const TargetMachine& target,
762 Function* F,
763 MachineOpCode shiftOpCode,
764 Value* argVal1,
765 Value* optArgVal2, /* Use optArgVal2 if not NULL */
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000766 unsigned optShiftNum, /* else use optShiftNum */
Vikram S. Adve242a8082002-05-19 15:25:51 +0000767 Instruction* destVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000768 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000769 MachineCodeForInstruction& mcfi)
770{
771 assert((optArgVal2 != NULL || optShiftNum <= 64) &&
772 "Large shift sizes unexpected, but can be handled below: "
773 "You need to check whether or not it fits in immed field below");
774
775 // If this is a logical left shift of a type smaller than the standard
776 // integer reg. size, we have to extend the sign-bit into upper bits
777 // of dest, so we need to put the result of the SLL into a temporary.
778 //
779 Value* shiftDest = destVal;
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000780 unsigned opSize = target.getTargetData().getTypeSize(argVal1->getType());
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000781
Misha Brukmand36e30e2003-06-06 09:52:23 +0000782 if ((shiftOpCode == V9::SLLr5 || shiftOpCode == V9::SLLXr6) && opSize < 8) {
Misha Brukman7b647942003-05-30 20:11:56 +0000783 // put SLL result into a temporary
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000784 shiftDest = new TmpInstruction(mcfi, argVal1, optArgVal2, "sllTmp");
Misha Brukman7b647942003-05-30 20:11:56 +0000785 }
Vikram S. Adve242a8082002-05-19 15:25:51 +0000786
787 MachineInstr* M = (optArgVal2 != NULL)
Chris Lattnere5b1ed92003-01-15 00:03:28 +0000788 ? BuildMI(shiftOpCode, 3).addReg(argVal1).addReg(optArgVal2)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000789 .addReg(shiftDest, MachineOperand::Def)
Chris Lattnere5b1ed92003-01-15 00:03:28 +0000790 : BuildMI(shiftOpCode, 3).addReg(argVal1).addZImm(optShiftNum)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000791 .addReg(shiftDest, MachineOperand::Def);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000792 mvec.push_back(M);
793
Misha Brukman7b647942003-05-30 20:11:56 +0000794 if (shiftDest != destVal) {
795 // extend the sign-bit of the result into all upper bits of dest
796 assert(8*opSize <= 32 && "Unexpected type size > 4 and < IntRegSize?");
797 target.getInstrInfo().
798 CreateSignExtensionInstructions(target, F, shiftDest, destVal,
799 8*opSize, mvec, mcfi);
800 }
Vikram S. Adve242a8082002-05-19 15:25:51 +0000801}
802
803
Vikram S. Adve74825322002-03-18 03:15:35 +0000804// Does not create any instructions if we cannot exploit constant to
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000805// create a cheaper instruction.
806// This returns the approximate cost of the instructions generated,
807// which is used to pick the cheapest when both operands are constant.
Vikram S. Adve645fea32003-05-25 21:59:47 +0000808static unsigned
Vikram S. Adve242a8082002-05-19 15:25:51 +0000809CreateMulConstInstruction(const TargetMachine &target, Function* F,
810 Value* lval, Value* rval, Instruction* destVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000811 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000812 MachineCodeForInstruction& mcfi)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000813{
Vikram S. Adve242a8082002-05-19 15:25:51 +0000814 /* Use max. multiply cost, viz., cost of MULX */
Misha Brukman91aee472003-05-27 22:37:00 +0000815 unsigned cost = target.getInstrInfo().minLatency(V9::MULXr);
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000816 unsigned firstNewInstr = mvec.size();
Vikram S. Adve74825322002-03-18 03:15:35 +0000817
818 Value* constOp = rval;
819 if (! isa<Constant>(constOp))
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000820 return cost;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000821
822 // Cases worth optimizing are:
823 // (1) Multiply by 0 or 1 for any type: replace with copy (ADD or FMOV)
824 // (2) Multiply by 2^x for integer types: replace with Shift
825 //
Vikram S. Adve74825322002-03-18 03:15:35 +0000826 const Type* resultType = destVal->getType();
Chris Lattner20b1ea02001-09-14 03:47:57 +0000827
Misha Brukmana98cd452003-05-20 20:32:24 +0000828 if (resultType->isInteger() || isa<PointerType>(resultType)) {
829 bool isValidConst;
Vikram S. Advee6124d32003-07-29 19:59:23 +0000830 int64_t C = (int64_t) target.getInstrInfo().ConvertConstantToIntType(target,
831 constOp, constOp->getType(), isValidConst);
Misha Brukmana98cd452003-05-20 20:32:24 +0000832 if (isValidConst) {
833 unsigned pow;
834 bool needNeg = false;
835 if (C < 0) {
836 needNeg = true;
837 C = -C;
838 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000839
Misha Brukmana98cd452003-05-20 20:32:24 +0000840 if (C == 0 || C == 1) {
Misha Brukman91aee472003-05-27 22:37:00 +0000841 cost = target.getInstrInfo().minLatency(V9::ADDr);
Misha Brukmana98cd452003-05-20 20:32:24 +0000842 unsigned Zero = target.getRegInfo().getZeroRegNum();
843 MachineInstr* M;
844 if (C == 0)
Misha Brukman91aee472003-05-27 22:37:00 +0000845 M =BuildMI(V9::ADDr,3).addMReg(Zero).addMReg(Zero).addRegDef(destVal);
Misha Brukmana98cd452003-05-20 20:32:24 +0000846 else
Misha Brukman91aee472003-05-27 22:37:00 +0000847 M = BuildMI(V9::ADDr,3).addReg(lval).addMReg(Zero).addRegDef(destVal);
Misha Brukmana98cd452003-05-20 20:32:24 +0000848 mvec.push_back(M);
Misha Brukman7b647942003-05-30 20:11:56 +0000849 } else if (isPowerOf2(C, pow)) {
Misha Brukmana98cd452003-05-20 20:32:24 +0000850 unsigned opSize = target.getTargetData().getTypeSize(resultType);
Misha Brukmand36e30e2003-06-06 09:52:23 +0000851 MachineOpCode opCode = (opSize <= 32)? V9::SLLr5 : V9::SLLXr6;
Misha Brukmana98cd452003-05-20 20:32:24 +0000852 CreateShiftInstructions(target, F, opCode, lval, NULL, pow,
853 destVal, mvec, mcfi);
854 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000855
Misha Brukman7b647942003-05-30 20:11:56 +0000856 if (mvec.size() > 0 && needNeg) {
857 // insert <reg = SUB 0, reg> after the instr to flip the sign
Misha Brukmana98cd452003-05-20 20:32:24 +0000858 MachineInstr* M = CreateIntNegInstruction(target, destVal);
859 mvec.push_back(M);
860 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000861 }
Misha Brukmana98cd452003-05-20 20:32:24 +0000862 } else {
863 if (ConstantFP *FPC = dyn_cast<ConstantFP>(constOp)) {
864 double dval = FPC->getValue();
865 if (fabs(dval) == 1) {
866 MachineOpCode opCode = (dval < 0)
867 ? (resultType == Type::FloatTy? V9::FNEGS : V9::FNEGD)
868 : (resultType == Type::FloatTy? V9::FMOVS : V9::FMOVD);
869 mvec.push_back(BuildMI(opCode,2).addReg(lval).addRegDef(destVal));
870 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000871 }
Misha Brukmana98cd452003-05-20 20:32:24 +0000872 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000873
Misha Brukmana98cd452003-05-20 20:32:24 +0000874 if (firstNewInstr < mvec.size()) {
875 cost = 0;
876 for (unsigned i=firstNewInstr; i < mvec.size(); ++i)
Brian Gaeke12c1d2c2004-02-11 20:47:34 +0000877 cost += target.getInstrInfo().minLatency(mvec[i]->getOpcode());
Misha Brukmana98cd452003-05-20 20:32:24 +0000878 }
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000879
880 return cost;
Vikram S. Adve74825322002-03-18 03:15:35 +0000881}
882
883
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000884// Does not create any instructions if we cannot exploit constant to
885// create a cheaper instruction.
886//
887static inline void
888CreateCheapestMulConstInstruction(const TargetMachine &target,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000889 Function* F,
890 Value* lval, Value* rval,
891 Instruction* destVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000892 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000893 MachineCodeForInstruction& mcfi)
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000894{
895 Value* constOp;
Misha Brukman7b647942003-05-30 20:11:56 +0000896 if (isa<Constant>(lval) && isa<Constant>(rval)) {
897 // both operands are constant: evaluate and "set" in dest
Chris Lattnerd4d4ab52004-01-12 18:08:18 +0000898 Constant* P = ConstantExpr::get(Instruction::Mul,
899 cast<Constant>(lval),
900 cast<Constant>(rval));
Misha Brukman7b647942003-05-30 20:11:56 +0000901 target.getInstrInfo().CreateCodeToLoadConst(target,F,P,destVal,mvec,mcfi);
902 }
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000903 else if (isa<Constant>(rval)) // rval is constant, but not lval
Vikram S. Adve242a8082002-05-19 15:25:51 +0000904 CreateMulConstInstruction(target, F, lval, rval, destVal, mvec, mcfi);
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000905 else if (isa<Constant>(lval)) // lval is constant, but not rval
Vikram S. Adve242a8082002-05-19 15:25:51 +0000906 CreateMulConstInstruction(target, F, lval, rval, destVal, mvec, mcfi);
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000907
908 // else neither is constant
909 return;
910}
911
Vikram S. Adve74825322002-03-18 03:15:35 +0000912// Return NULL if we cannot exploit constant to create a cheaper instruction
913static inline void
Vikram S. Adve242a8082002-05-19 15:25:51 +0000914CreateMulInstruction(const TargetMachine &target, Function* F,
915 Value* lval, Value* rval, Instruction* destVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000916 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000917 MachineCodeForInstruction& mcfi,
Chris Lattner07239692004-02-29 05:57:59 +0000918 MachineOpCode forceMulOp = -1)
Vikram S. Adve74825322002-03-18 03:15:35 +0000919{
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000920 unsigned L = mvec.size();
Vikram S. Adve242a8082002-05-19 15:25:51 +0000921 CreateCheapestMulConstInstruction(target,F, lval, rval, destVal, mvec, mcfi);
Misha Brukmana98cd452003-05-20 20:32:24 +0000922 if (mvec.size() == L) {
923 // no instructions were added so create MUL reg, reg, reg.
924 // Use FSMULD if both operands are actually floats cast to doubles.
925 // Otherwise, use the default opcode for the appropriate type.
Chris Lattner07239692004-02-29 05:57:59 +0000926 MachineOpCode mulOp = ((forceMulOp != -1)
Misha Brukmana98cd452003-05-20 20:32:24 +0000927 ? forceMulOp
928 : ChooseMulInstructionByType(destVal->getType()));
929 mvec.push_back(BuildMI(mulOp, 3).addReg(lval).addReg(rval)
930 .addRegDef(destVal));
931 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000932}
933
934
Vikram S. Adve510eec72001-11-04 21:59:14 +0000935// Generate a divide instruction for Div or Rem.
936// For Rem, this assumes that the operand type will be signed if the result
937// type is signed. This is correct because they must have the same sign.
938//
Chris Lattner20b1ea02001-09-14 03:47:57 +0000939static inline MachineOpCode
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000940ChooseDivInstruction(TargetMachine &target,
941 const InstructionNode* instrNode)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000942{
Misha Brukmana98cd452003-05-20 20:32:24 +0000943 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000944
945 const Type* resultType = instrNode->getInstruction()->getType();
946
Chris Lattner0c4e8862002-09-03 01:08:28 +0000947 if (resultType->isInteger())
Misha Brukman91aee472003-05-27 22:37:00 +0000948 opCode = resultType->isSigned()? V9::SDIVXr : V9::UDIVXr;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000949 else
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000950 switch(resultType->getPrimitiveID())
951 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000952 case Type::FloatTyID: opCode = V9::FDIVS; break;
953 case Type::DoubleTyID: opCode = V9::FDIVD; break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000954 default: assert(0 && "Invalid type for DIV instruction"); break;
955 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000956
957 return opCode;
958}
959
960
Chris Lattner54e898e2003-01-15 19:23:34 +0000961// Return if we cannot exploit constant to create a cheaper instruction
Vikram S. Adve645fea32003-05-25 21:59:47 +0000962static void
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000963CreateDivConstInstruction(TargetMachine &target,
964 const InstructionNode* instrNode,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000965 std::vector<MachineInstr*>& mvec)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000966{
Chris Lattner54e898e2003-01-15 19:23:34 +0000967 Value* LHS = instrNode->leftChild()->getValue();
Chris Lattner20b1ea02001-09-14 03:47:57 +0000968 Value* constOp = ((InstrTreeNode*) instrNode->rightChild())->getValue();
Chris Lattner54e898e2003-01-15 19:23:34 +0000969 if (!isa<Constant>(constOp))
Vikram S. Adve74825322002-03-18 03:15:35 +0000970 return;
Chris Lattner54e898e2003-01-15 19:23:34 +0000971
Vikram S. Adve645fea32003-05-25 21:59:47 +0000972 Instruction* destVal = instrNode->getInstruction();
Chris Lattner54e898e2003-01-15 19:23:34 +0000973 unsigned ZeroReg = target.getRegInfo().getZeroRegNum();
Chris Lattner20b1ea02001-09-14 03:47:57 +0000974
975 // Cases worth optimizing are:
976 // (1) Divide by 1 for any type: replace with copy (ADD or FMOV)
977 // (2) Divide by 2^x for integer types: replace with SR[L or A]{X}
978 //
979 const Type* resultType = instrNode->getInstruction()->getType();
Chris Lattner54e898e2003-01-15 19:23:34 +0000980
Misha Brukman7b647942003-05-30 20:11:56 +0000981 if (resultType->isInteger()) {
Misha Brukmana98cd452003-05-20 20:32:24 +0000982 unsigned pow;
983 bool isValidConst;
Vikram S. Advee6124d32003-07-29 19:59:23 +0000984 int64_t C = (int64_t) target.getInstrInfo().ConvertConstantToIntType(target,
985 constOp, constOp->getType(), isValidConst);
Misha Brukmana98cd452003-05-20 20:32:24 +0000986 if (isValidConst) {
987 bool needNeg = false;
988 if (C < 0) {
989 needNeg = true;
990 C = -C;
991 }
Vikram S. Advee6124d32003-07-29 19:59:23 +0000992
Misha Brukmana98cd452003-05-20 20:32:24 +0000993 if (C == 1) {
Misha Brukman91aee472003-05-27 22:37:00 +0000994 mvec.push_back(BuildMI(V9::ADDr, 3).addReg(LHS).addMReg(ZeroReg)
Vikram S. Adve645fea32003-05-25 21:59:47 +0000995 .addRegDef(destVal));
Misha Brukmana98cd452003-05-20 20:32:24 +0000996 } else if (isPowerOf2(C, pow)) {
Vikram S. Adve645fea32003-05-25 21:59:47 +0000997 unsigned opCode;
998 Value* shiftOperand;
Vikram S. Advee895a742003-08-06 18:48:40 +0000999 unsigned opSize = target.getTargetData().getTypeSize(resultType);
Vikram S. Adve645fea32003-05-25 21:59:47 +00001000
1001 if (resultType->isSigned()) {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001002 // For N / 2^k, if the operand N is negative,
1003 // we need to add (2^k - 1) before right-shifting by k, i.e.,
Vikram S. Adve645fea32003-05-25 21:59:47 +00001004 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001005 // (N / 2^k) = N >> k, if N >= 0;
1006 // (N + 2^k - 1) >> k, if N < 0
1007 //
1008 // If N is <= 32 bits, use:
1009 // sra N, 31, t1 // t1 = ~0, if N < 0, 0 else
1010 // srl t1, 32-k, t2 // t2 = 2^k - 1, if N < 0, 0 else
1011 // add t2, N, t3 // t3 = N + 2^k -1, if N < 0, N else
1012 // sra t3, k, result // result = N / 2^k
1013 //
1014 // If N is 64 bits, use:
1015 // srax N, k-1, t1 // t1 = sign bit in high k positions
1016 // srlx t1, 64-k, t2 // t2 = 2^k - 1, if N < 0, 0 else
1017 // add t2, N, t3 // t3 = N + 2^k -1, if N < 0, N else
1018 // sra t3, k, result // result = N / 2^k
1019 //
1020 TmpInstruction *sraTmp, *srlTmp, *addTmp;
Vikram S. Adve645fea32003-05-25 21:59:47 +00001021 MachineCodeForInstruction& mcfi
1022 = MachineCodeForInstruction::get(destVal);
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001023 sraTmp = new TmpInstruction(mcfi, resultType, LHS, 0, "getSign");
1024 srlTmp = new TmpInstruction(mcfi, resultType, LHS, 0, "getPlus2km1");
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001025 addTmp = new TmpInstruction(mcfi, resultType, LHS, srlTmp,"incIfNeg");
Vikram S. Adve645fea32003-05-25 21:59:47 +00001026
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001027 // Create the SRA or SRAX instruction to get the sign bit
Vikram S. Advee895a742003-08-06 18:48:40 +00001028 mvec.push_back(BuildMI((opSize > 4)? V9::SRAXi6 : V9::SRAi5, 3)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001029 .addReg(LHS)
1030 .addSImm((resultType==Type::LongTy)? pow-1 : 31)
1031 .addRegDef(sraTmp));
1032
Vikram S. Adve645fea32003-05-25 21:59:47 +00001033 // Create the SRL or SRLX instruction to get the sign bit
Vikram S. Advee895a742003-08-06 18:48:40 +00001034 mvec.push_back(BuildMI((opSize > 4)? V9::SRLXi6 : V9::SRLi5, 3)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001035 .addReg(sraTmp)
1036 .addSImm((resultType==Type::LongTy)? 64-pow : 32-pow)
Vikram S. Adve645fea32003-05-25 21:59:47 +00001037 .addRegDef(srlTmp));
1038
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001039 // Create the ADD instruction to add 2^pow-1 for negative values
Misha Brukman91aee472003-05-27 22:37:00 +00001040 mvec.push_back(BuildMI(V9::ADDr, 3).addReg(LHS).addReg(srlTmp)
Vikram S. Adve645fea32003-05-25 21:59:47 +00001041 .addRegDef(addTmp));
1042
1043 // Get the shift operand and "right-shift" opcode to do the divide
1044 shiftOperand = addTmp;
Vikram S. Advee895a742003-08-06 18:48:40 +00001045 opCode = (opSize > 4)? V9::SRAXi6 : V9::SRAi5;
Misha Brukman7b647942003-05-30 20:11:56 +00001046 } else {
Vikram S. Adve645fea32003-05-25 21:59:47 +00001047 // Get the shift operand and "right-shift" opcode to do the divide
1048 shiftOperand = LHS;
Vikram S. Advee895a742003-08-06 18:48:40 +00001049 opCode = (opSize > 4)? V9::SRLXi6 : V9::SRLi5;
Vikram S. Adve645fea32003-05-25 21:59:47 +00001050 }
1051
1052 // Now do the actual shift!
1053 mvec.push_back(BuildMI(opCode, 3).addReg(shiftOperand).addZImm(pow)
1054 .addRegDef(destVal));
Misha Brukmana98cd452003-05-20 20:32:24 +00001055 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001056
Misha Brukmana98cd452003-05-20 20:32:24 +00001057 if (needNeg && (C == 1 || isPowerOf2(C, pow))) {
1058 // insert <reg = SUB 0, reg> after the instr to flip the sign
Vikram S. Adve645fea32003-05-25 21:59:47 +00001059 mvec.push_back(CreateIntNegInstruction(target, destVal));
Misha Brukmana98cd452003-05-20 20:32:24 +00001060 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001061 }
Misha Brukmana98cd452003-05-20 20:32:24 +00001062 } else {
1063 if (ConstantFP *FPC = dyn_cast<ConstantFP>(constOp)) {
1064 double dval = FPC->getValue();
1065 if (fabs(dval) == 1) {
1066 unsigned opCode =
1067 (dval < 0) ? (resultType == Type::FloatTy? V9::FNEGS : V9::FNEGD)
1068 : (resultType == Type::FloatTy? V9::FMOVS : V9::FMOVD);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001069
Vikram S. Adve645fea32003-05-25 21:59:47 +00001070 mvec.push_back(BuildMI(opCode, 2).addReg(LHS).addRegDef(destVal));
Misha Brukmana98cd452003-05-20 20:32:24 +00001071 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001072 }
Misha Brukmana98cd452003-05-20 20:32:24 +00001073 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001074}
1075
1076
Vikram S. Adve74825322002-03-18 03:15:35 +00001077static void
1078CreateCodeForVariableSizeAlloca(const TargetMachine& target,
1079 Instruction* result,
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001080 unsigned tsize,
Vikram S. Adve74825322002-03-18 03:15:35 +00001081 Value* numElementsVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001082 std::vector<MachineInstr*>& getMvec)
Vikram S. Adve74825322002-03-18 03:15:35 +00001083{
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001084 Value* totalSizeVal;
Vikram S. Adve74825322002-03-18 03:15:35 +00001085 MachineInstr* M;
Vikram S. Adved3e26482002-10-13 00:18:57 +00001086 MachineCodeForInstruction& mcfi = MachineCodeForInstruction::get(result);
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001087 Function *F = result->getParent()->getParent();
Vikram S. Adved3e26482002-10-13 00:18:57 +00001088
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001089 // Enforce the alignment constraints on the stack pointer at
1090 // compile time if the total size is a known constant.
Misha Brukman7b647942003-05-30 20:11:56 +00001091 if (isa<Constant>(numElementsVal)) {
1092 bool isValid;
Vikram S. Advee6124d32003-07-29 19:59:23 +00001093 int64_t numElem = (int64_t) target.getInstrInfo().
1094 ConvertConstantToIntType(target, numElementsVal,
1095 numElementsVal->getType(), isValid);
Misha Brukman7b647942003-05-30 20:11:56 +00001096 assert(isValid && "Unexpectedly large array dimension in alloca!");
1097 int64_t total = numElem * tsize;
1098 if (int extra= total % target.getFrameInfo().getStackFrameSizeAlignment())
1099 total += target.getFrameInfo().getStackFrameSizeAlignment() - extra;
1100 totalSizeVal = ConstantSInt::get(Type::IntTy, total);
1101 } else {
1102 // The size is not a constant. Generate code to compute it and
1103 // code to pad the size for stack alignment.
1104 // Create a Value to hold the (constant) element size
1105 Value* tsizeVal = ConstantSInt::get(Type::IntTy, tsize);
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001106
Misha Brukman7b647942003-05-30 20:11:56 +00001107 // Create temporary values to hold the result of MUL, SLL, SRL
Vikram S. Adve80544442003-06-23 02:13:57 +00001108 // To pad `size' to next smallest multiple of 16:
1109 // size = (size + 15) & (-16 = 0xfffffffffffffff0)
1110 //
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001111 TmpInstruction* tmpProd = new TmpInstruction(mcfi,numElementsVal, tsizeVal);
Vikram S. Adve80544442003-06-23 02:13:57 +00001112 TmpInstruction* tmpAdd15= new TmpInstruction(mcfi,numElementsVal, tmpProd);
1113 TmpInstruction* tmpAndf0= new TmpInstruction(mcfi,numElementsVal, tmpAdd15);
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001114
Misha Brukman7b647942003-05-30 20:11:56 +00001115 // Instruction 1: mul numElements, typeSize -> tmpProd
1116 // This will optimize the MUL as far as possible.
Vikram S. Adve80544442003-06-23 02:13:57 +00001117 CreateMulInstruction(target, F, numElementsVal, tsizeVal, tmpProd, getMvec,
Chris Lattner07239692004-02-29 05:57:59 +00001118 mcfi, -1);
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001119
Vikram S. Adve80544442003-06-23 02:13:57 +00001120 // Instruction 2: andn tmpProd, 0x0f -> tmpAndn
1121 getMvec.push_back(BuildMI(V9::ADDi, 3).addReg(tmpProd).addSImm(15)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001122 .addReg(tmpAdd15, MachineOperand::Def));
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001123
Vikram S. Adve80544442003-06-23 02:13:57 +00001124 // Instruction 3: add tmpAndn, 0x10 -> tmpAdd16
1125 getMvec.push_back(BuildMI(V9::ANDi, 3).addReg(tmpAdd15).addSImm(-16)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001126 .addReg(tmpAndf0, MachineOperand::Def));
Vikram S. Adve80544442003-06-23 02:13:57 +00001127
1128 totalSizeVal = tmpAndf0;
Misha Brukman7b647942003-05-30 20:11:56 +00001129 }
Vikram S. Adve74825322002-03-18 03:15:35 +00001130
1131 // Get the constant offset from SP for dynamically allocated storage
1132 // and create a temporary Value to hold it.
Misha Brukmanfce11432002-10-28 00:28:31 +00001133 MachineFunction& mcInfo = MachineFunction::get(F);
Vikram S. Adve74825322002-03-18 03:15:35 +00001134 bool growUp;
1135 ConstantSInt* dynamicAreaOffset =
1136 ConstantSInt::get(Type::IntTy,
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001137 target.getFrameInfo().getDynamicAreaOffset(mcInfo,growUp));
Vikram S. Adve74825322002-03-18 03:15:35 +00001138 assert(! growUp && "Has SPARC v9 stack frame convention changed?");
1139
Chris Lattner54e898e2003-01-15 19:23:34 +00001140 unsigned SPReg = target.getRegInfo().getStackPointer();
1141
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001142 // Instruction 2: sub %sp, totalSizeVal -> %sp
Misha Brukman91aee472003-05-27 22:37:00 +00001143 getMvec.push_back(BuildMI(V9::SUBr, 3).addMReg(SPReg).addReg(totalSizeVal)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001144 .addMReg(SPReg,MachineOperand::Def));
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001145
Vikram S. Adve74825322002-03-18 03:15:35 +00001146 // Instruction 3: add %sp, frameSizeBelowDynamicArea -> result
Misha Brukman91aee472003-05-27 22:37:00 +00001147 getMvec.push_back(BuildMI(V9::ADDr,3).addMReg(SPReg).addReg(dynamicAreaOffset)
Misha Brukmana98cd452003-05-20 20:32:24 +00001148 .addRegDef(result));
Vikram S. Adve74825322002-03-18 03:15:35 +00001149}
1150
1151
1152static void
1153CreateCodeForFixedSizeAlloca(const TargetMachine& target,
1154 Instruction* result,
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001155 unsigned tsize,
1156 unsigned numElements,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001157 std::vector<MachineInstr*>& getMvec)
Vikram S. Adve74825322002-03-18 03:15:35 +00001158{
Vikram S. Adved3e26482002-10-13 00:18:57 +00001159 assert(tsize > 0 && "Illegal (zero) type size for alloca");
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001160 assert(result && result->getParent() &&
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001161 "Result value is not part of a function?");
1162 Function *F = result->getParent()->getParent();
Misha Brukmanfce11432002-10-28 00:28:31 +00001163 MachineFunction &mcInfo = MachineFunction::get(F);
Vikram S. Adve74825322002-03-18 03:15:35 +00001164
Vikram S. Adveea28dd32003-07-02 06:59:22 +00001165 // Put the variable in the dynamically sized area of the frame if either:
1166 // (a) The offset is too large to use as an immediate in load/stores
1167 // (check LDX because all load/stores have the same-size immed. field).
1168 // (b) The object is "large", so it could cause many other locals,
1169 // spills, and temporaries to have large offsets.
1170 // NOTE: We use LARGE = 8 * argSlotSize = 64 bytes.
1171 // You've gotta love having only 13 bits for constant offset values :-|.
1172 //
1173 unsigned paddedSize;
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001174 int offsetFromFP = mcInfo.getInfo()->computeOffsetforLocalVar(result,
Vikram S. Adveea28dd32003-07-02 06:59:22 +00001175 paddedSize,
1176 tsize * numElements);
1177
1178 if (((int)paddedSize) > 8 * target.getFrameInfo().getSizeOfEachArgOnStack() ||
1179 ! target.getInstrInfo().constantFitsInImmedField(V9::LDXi,offsetFromFP)) {
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001180 CreateCodeForVariableSizeAlloca(target, result, tsize,
1181 ConstantSInt::get(Type::IntTy,numElements),
1182 getMvec);
1183 return;
1184 }
Vikram S. Adve74825322002-03-18 03:15:35 +00001185
1186 // else offset fits in immediate field so go ahead and allocate it.
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001187 offsetFromFP = mcInfo.getInfo()->allocateLocalVar(result, tsize *numElements);
Vikram S. Adve74825322002-03-18 03:15:35 +00001188
1189 // Create a temporary Value to hold the constant offset.
1190 // This is needed because it may not fit in the immediate field.
1191 ConstantSInt* offsetVal = ConstantSInt::get(Type::IntTy, offsetFromFP);
1192
1193 // Instruction 1: add %fp, offsetFromFP -> result
Chris Lattner54e898e2003-01-15 19:23:34 +00001194 unsigned FPReg = target.getRegInfo().getFramePointer();
Misha Brukman91aee472003-05-27 22:37:00 +00001195 getMvec.push_back(BuildMI(V9::ADDr, 3).addMReg(FPReg).addReg(offsetVal)
Misha Brukmana98cd452003-05-20 20:32:24 +00001196 .addRegDef(result));
Vikram S. Adve74825322002-03-18 03:15:35 +00001197}
1198
1199
Chris Lattner20b1ea02001-09-14 03:47:57 +00001200//------------------------------------------------------------------------
1201// Function SetOperandsForMemInstr
1202//
1203// Choose addressing mode for the given load or store instruction.
1204// Use [reg+reg] if it is an indexed reference, and the index offset is
1205// not a constant or if it cannot fit in the offset field.
1206// Use [reg+offset] in all other cases.
1207//
1208// This assumes that all array refs are "lowered" to one of these forms:
1209// %x = load (subarray*) ptr, constant ; single constant offset
1210// %x = load (subarray*) ptr, offsetVal ; single non-constant offset
1211// Generally, this should happen via strength reduction + LICM.
1212// Also, strength reduction should take care of using the same register for
1213// the loop index variable and an array index, when that is profitable.
1214//------------------------------------------------------------------------
1215
1216static void
Chris Lattner54e898e2003-01-15 19:23:34 +00001217SetOperandsForMemInstr(unsigned Opcode,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001218 std::vector<MachineInstr*>& mvec,
Vikram S. Adveefc94332002-10-14 16:32:24 +00001219 InstructionNode* vmInstrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001220 const TargetMachine& target)
Chris Lattner20b1ea02001-09-14 03:47:57 +00001221{
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001222 Instruction* memInst = vmInstrNode->getInstruction();
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001223 // Index vector, ptr value, and flag if all indices are const.
Misha Brukmanee563cb2003-05-21 17:59:06 +00001224 std::vector<Value*> idxVec;
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001225 bool allConstantIndices;
1226 Value* ptrVal = GetMemInstArgs(vmInstrNode, idxVec, allConstantIndices);
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001227
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001228 // Now create the appropriate operands for the machine instruction.
1229 // First, initialize so we default to storing the offset in a register.
Chris Lattner8e5c0b42001-11-07 14:01:59 +00001230 int64_t smallConstOffset = 0;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001231 Value* valueForRegOffset = NULL;
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001232 MachineOperand::MachineOperandType offsetOpType =
1233 MachineOperand::MO_VirtualRegister;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001234
Vikram S. Adve74825322002-03-18 03:15:35 +00001235 // Check if there is an index vector and if so, compute the
1236 // right offset for structures and for arrays
Chris Lattner20b1ea02001-09-14 03:47:57 +00001237 //
Misha Brukman7b647942003-05-30 20:11:56 +00001238 if (!idxVec.empty()) {
1239 const PointerType* ptrType = cast<PointerType>(ptrVal->getType());
Chris Lattner20b1ea02001-09-14 03:47:57 +00001240
Misha Brukman7b647942003-05-30 20:11:56 +00001241 // If all indices are constant, compute the combined offset directly.
1242 if (allConstantIndices) {
1243 // Compute the offset value using the index vector. Create a
1244 // virtual reg. for it since it may not fit in the immed field.
1245 uint64_t offset = target.getTargetData().getIndexedOffset(ptrType,idxVec);
1246 valueForRegOffset = ConstantSInt::get(Type::LongTy, offset);
1247 } else {
1248 // There is at least one non-constant offset. Therefore, this must
1249 // be an array ref, and must have been lowered to a single non-zero
1250 // offset. (An extra leading zero offset, if any, can be ignored.)
1251 // Generate code sequence to compute address from index.
1252 //
1253 bool firstIdxIsZero = IsZero(idxVec[0]);
1254 assert(idxVec.size() == 1U + firstIdxIsZero
1255 && "Array refs must be lowered before Instruction Selection");
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001256
Misha Brukman7b647942003-05-30 20:11:56 +00001257 Value* idxVal = idxVec[firstIdxIsZero];
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001258
Misha Brukman7b647942003-05-30 20:11:56 +00001259 std::vector<MachineInstr*> mulVec;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001260 Instruction* addr =
1261 new TmpInstruction(MachineCodeForInstruction::get(memInst),
1262 Type::ULongTy, memInst);
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001263
Misha Brukman7b647942003-05-30 20:11:56 +00001264 // Get the array type indexed by idxVal, and compute its element size.
1265 // The call to getTypeSize() will fail if size is not constant.
1266 const Type* vecType = (firstIdxIsZero
1267 ? GetElementPtrInst::getIndexedType(ptrType,
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001268 std::vector<Value*>(1U, idxVec[0]),
1269 /*AllowCompositeLeaf*/ true)
1270 : ptrType);
Misha Brukman7b647942003-05-30 20:11:56 +00001271 const Type* eltType = cast<SequentialType>(vecType)->getElementType();
1272 ConstantUInt* eltSizeVal = ConstantUInt::get(Type::ULongTy,
1273 target.getTargetData().getTypeSize(eltType));
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001274
Misha Brukman7b647942003-05-30 20:11:56 +00001275 // CreateMulInstruction() folds constants intelligently enough.
1276 CreateMulInstruction(target, memInst->getParent()->getParent(),
1277 idxVal, /* lval, not likely to be const*/
1278 eltSizeVal, /* rval, likely to be constant */
1279 addr, /* result */
1280 mulVec, MachineCodeForInstruction::get(memInst),
Chris Lattner07239692004-02-29 05:57:59 +00001281 -1);
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001282
Misha Brukman7b647942003-05-30 20:11:56 +00001283 assert(mulVec.size() > 0 && "No multiply code created?");
1284 mvec.insert(mvec.end(), mulVec.begin(), mulVec.end());
1285
1286 valueForRegOffset = addr;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001287 }
Misha Brukman7b647942003-05-30 20:11:56 +00001288 } else {
1289 offsetOpType = MachineOperand::MO_SignExtendedImmed;
1290 smallConstOffset = 0;
1291 }
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001292
Vikram S. Advea10d1a72002-03-31 19:07:35 +00001293 // For STORE:
1294 // Operand 0 is value, operand 1 is ptr, operand 2 is offset
1295 // For LOAD or GET_ELEMENT_PTR,
1296 // Operand 0 is ptr, operand 1 is offset, operand 2 is result.
1297 //
1298 unsigned offsetOpNum, ptrOpNum;
Chris Lattner54e898e2003-01-15 19:23:34 +00001299 MachineInstr *MI;
1300 if (memInst->getOpcode() == Instruction::Store) {
Misha Brukman7b647942003-05-30 20:11:56 +00001301 if (offsetOpType == MachineOperand::MO_VirtualRegister) {
Chris Lattner54e898e2003-01-15 19:23:34 +00001302 MI = BuildMI(Opcode, 3).addReg(vmInstrNode->leftChild()->getValue())
1303 .addReg(ptrVal).addReg(valueForRegOffset);
Misha Brukman7b647942003-05-30 20:11:56 +00001304 } else {
Misha Brukman91aee472003-05-27 22:37:00 +00001305 Opcode = convertOpcodeFromRegToImm(Opcode);
Chris Lattner54e898e2003-01-15 19:23:34 +00001306 MI = BuildMI(Opcode, 3).addReg(vmInstrNode->leftChild()->getValue())
1307 .addReg(ptrVal).addSImm(smallConstOffset);
Misha Brukman91aee472003-05-27 22:37:00 +00001308 }
Chris Lattner54e898e2003-01-15 19:23:34 +00001309 } else {
Misha Brukman7b647942003-05-30 20:11:56 +00001310 if (offsetOpType == MachineOperand::MO_VirtualRegister) {
Chris Lattner54e898e2003-01-15 19:23:34 +00001311 MI = BuildMI(Opcode, 3).addReg(ptrVal).addReg(valueForRegOffset)
1312 .addRegDef(memInst);
Misha Brukman7b647942003-05-30 20:11:56 +00001313 } else {
Misha Brukman91aee472003-05-27 22:37:00 +00001314 Opcode = convertOpcodeFromRegToImm(Opcode);
Chris Lattner54e898e2003-01-15 19:23:34 +00001315 MI = BuildMI(Opcode, 3).addReg(ptrVal).addSImm(smallConstOffset)
1316 .addRegDef(memInst);
Misha Brukman91aee472003-05-27 22:37:00 +00001317 }
Chris Lattner54e898e2003-01-15 19:23:34 +00001318 }
1319 mvec.push_back(MI);
Chris Lattner20b1ea02001-09-14 03:47:57 +00001320}
1321
1322
Chris Lattner20b1ea02001-09-14 03:47:57 +00001323//
1324// Substitute operand `operandNum' of the instruction in node `treeNode'
Vikram S. Advec025fc12001-10-14 23:28:43 +00001325// in place of the use(s) of that instruction in node `parent'.
1326// Check both explicit and implicit operands!
Vikram S. Adve74825322002-03-18 03:15:35 +00001327// Also make sure to skip over a parent who:
1328// (1) is a list node in the Burg tree, or
1329// (2) itself had its results forwarded to its parent
Chris Lattner20b1ea02001-09-14 03:47:57 +00001330//
1331static void
1332ForwardOperand(InstructionNode* treeNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001333 InstrTreeNode* parent,
1334 int operandNum)
Chris Lattner20b1ea02001-09-14 03:47:57 +00001335{
Vikram S. Adve243dd452001-09-18 13:03:13 +00001336 assert(treeNode && parent && "Invalid invocation of ForwardOperand");
1337
Chris Lattner20b1ea02001-09-14 03:47:57 +00001338 Instruction* unusedOp = treeNode->getInstruction();
1339 Value* fwdOp = unusedOp->getOperand(operandNum);
Vikram S. Adve243dd452001-09-18 13:03:13 +00001340
1341 // The parent itself may be a list node, so find the real parent instruction
1342 while (parent->getNodeType() != InstrTreeNode::NTInstructionNode)
1343 {
1344 parent = parent->parent();
1345 assert(parent && "ERROR: Non-instruction node has no parent in tree.");
1346 }
1347 InstructionNode* parentInstrNode = (InstructionNode*) parent;
1348
1349 Instruction* userInstr = parentInstrNode->getInstruction();
Chris Lattner9c461082002-02-03 07:50:56 +00001350 MachineCodeForInstruction &mvec = MachineCodeForInstruction::get(userInstr);
Vikram S. Adve74825322002-03-18 03:15:35 +00001351
1352 // The parent's mvec would be empty if it was itself forwarded.
1353 // Recursively call ForwardOperand in that case...
1354 //
Misha Brukman7b647942003-05-30 20:11:56 +00001355 if (mvec.size() == 0) {
1356 assert(parent->parent() != NULL &&
1357 "Parent could not have been forwarded, yet has no instructions?");
1358 ForwardOperand(treeNode, parent->parent(), operandNum);
1359 } else {
1360 for (unsigned i=0, N=mvec.size(); i < N; i++) {
1361 MachineInstr* minstr = mvec[i];
1362 for (unsigned i=0, numOps=minstr->getNumOperands(); i < numOps; ++i) {
1363 const MachineOperand& mop = minstr->getOperand(i);
1364 if (mop.getType() == MachineOperand::MO_VirtualRegister &&
1365 mop.getVRegValue() == unusedOp)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001366 {
Misha Brukman7b647942003-05-30 20:11:56 +00001367 minstr->SetMachineOperandVal(i, MachineOperand::MO_VirtualRegister,
1368 fwdOp);
1369 }
1370 }
Vikram S. Adve74825322002-03-18 03:15:35 +00001371
Misha Brukman7b647942003-05-30 20:11:56 +00001372 for (unsigned i=0,numOps=minstr->getNumImplicitRefs(); i<numOps; ++i)
Chris Lattner907b7dc2003-08-05 16:59:24 +00001373 if (minstr->getImplicitRef(i) == unusedOp)
1374 minstr->setImplicitRef(i, fwdOp);
Chris Lattner20b1ea02001-09-14 03:47:57 +00001375 }
Misha Brukman7b647942003-05-30 20:11:56 +00001376 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001377}
1378
1379
Vikram S. Adve242a8082002-05-19 15:25:51 +00001380inline bool
1381AllUsesAreBranches(const Instruction* setccI)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001382{
Vikram S. Adve242a8082002-05-19 15:25:51 +00001383 for (Value::use_const_iterator UI=setccI->use_begin(), UE=setccI->use_end();
1384 UI != UE; ++UI)
1385 if (! isa<TmpInstruction>(*UI) // ignore tmp instructions here
1386 && cast<Instruction>(*UI)->getOpcode() != Instruction::Br)
1387 return false;
1388 return true;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001389}
1390
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001391// Generate code for any intrinsic that needs a special code sequence
1392// instead of a regular call. If not that kind of intrinsic, do nothing.
1393// Returns true if code was generated, otherwise false.
1394//
Chris Lattner37b18262003-12-28 09:46:33 +00001395static bool CodeGenIntrinsic(Intrinsic::ID iid, CallInst &callInstr,
1396 TargetMachine &target,
1397 std::vector<MachineInstr*>& mvec) {
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001398 switch (iid) {
Chris Lattner37b18262003-12-28 09:46:33 +00001399 default:
1400 assert(0 && "Unknown intrinsic function call should have been lowered!");
Brian Gaeked0fde302003-11-11 22:41:34 +00001401 case Intrinsic::va_start: {
Vikram S. Adve40dee512003-10-21 11:25:09 +00001402 // Get the address of the first incoming vararg argument on the stack
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001403 bool ignore;
1404 Function* func = cast<Function>(callInstr.getParent()->getParent());
1405 int numFixedArgs = func->getFunctionType()->getNumParams();
1406 int fpReg = target.getFrameInfo().getIncomingArgBaseRegNum();
1407 int argSize = target.getFrameInfo().getSizeOfEachArgOnStack();
1408 int firstVarArgOff = numFixedArgs * argSize + target.getFrameInfo().
1409 getFirstIncomingArgOffset(MachineFunction::get(func), ignore);
Misha Brukman91aee472003-05-27 22:37:00 +00001410 mvec.push_back(BuildMI(V9::ADDi, 3).addMReg(fpReg).addSImm(firstVarArgOff).
Vikram S. Adve40dee512003-10-21 11:25:09 +00001411 addRegDef(&callInstr));
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001412 return true;
1413 }
1414
Brian Gaeked0fde302003-11-11 22:41:34 +00001415 case Intrinsic::va_end:
Brian Gaekee3d68072004-02-25 18:44:15 +00001416 return true; // no-op on SparcV9
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001417
Brian Gaeked0fde302003-11-11 22:41:34 +00001418 case Intrinsic::va_copy:
Vikram S. Adve40dee512003-10-21 11:25:09 +00001419 // Simple copy of current va_list (arg1) to new va_list (result)
Misha Brukman91aee472003-05-27 22:37:00 +00001420 mvec.push_back(BuildMI(V9::ORr, 3).
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001421 addMReg(target.getRegInfo().getZeroRegNum()).
Vikram S. Adve40dee512003-10-21 11:25:09 +00001422 addReg(callInstr.getOperand(1)).
1423 addRegDef(&callInstr));
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001424 return true;
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001425 }
1426}
1427
Vikram S. Advefb361122001-10-22 13:36:31 +00001428//******************* Externally Visible Functions *************************/
1429
Vikram S. Advefb361122001-10-22 13:36:31 +00001430//------------------------------------------------------------------------
1431// External Function: ThisIsAChainRule
1432//
1433// Purpose:
1434// Check if a given BURG rule is a chain rule.
1435//------------------------------------------------------------------------
1436
1437extern bool
1438ThisIsAChainRule(int eruleno)
1439{
1440 switch(eruleno)
1441 {
1442 case 111: // stmt: reg
Vikram S. Advefb361122001-10-22 13:36:31 +00001443 case 123:
1444 case 124:
1445 case 125:
1446 case 126:
1447 case 127:
1448 case 128:
1449 case 129:
1450 case 130:
1451 case 131:
1452 case 132:
1453 case 133:
1454 case 155:
1455 case 221:
1456 case 222:
1457 case 241:
1458 case 242:
1459 case 243:
1460 case 244:
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001461 case 245:
Vikram S. Adve85e1e9c2002-04-01 20:28:48 +00001462 case 321:
Vikram S. Advefb361122001-10-22 13:36:31 +00001463 return true; break;
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001464
Vikram S. Advefb361122001-10-22 13:36:31 +00001465 default:
1466 return false; break;
1467 }
1468}
Chris Lattner20b1ea02001-09-14 03:47:57 +00001469
1470
1471//------------------------------------------------------------------------
1472// External Function: GetInstructionsByRule
1473//
1474// Purpose:
1475// Choose machine instructions for the SPARC according to the
1476// patterns chosen by the BURG-generated parser.
1477//------------------------------------------------------------------------
1478
Vikram S. Adve74825322002-03-18 03:15:35 +00001479void
Chris Lattner20b1ea02001-09-14 03:47:57 +00001480GetInstructionsByRule(InstructionNode* subtreeRoot,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001481 int ruleForNode,
1482 short* nts,
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001483 TargetMachine &target,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001484 std::vector<MachineInstr*>& mvec)
Chris Lattner20b1ea02001-09-14 03:47:57 +00001485{
Chris Lattner20b1ea02001-09-14 03:47:57 +00001486 bool checkCast = false; // initialize here to use fall-through
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00001487 bool maskUnsignedResult = false;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001488 int nextRule;
1489 int forwardOperandNum = -1;
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001490 unsigned allocaSize = 0;
Vikram S. Adve74825322002-03-18 03:15:35 +00001491 MachineInstr* M, *M2;
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001492 unsigned L;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001493 bool foldCase = false;
Vikram S. Adve74825322002-03-18 03:15:35 +00001494
1495 mvec.clear();
Chris Lattner20b1ea02001-09-14 03:47:57 +00001496
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001497 // If the code for this instruction was folded into the parent (user),
1498 // then do nothing!
1499 if (subtreeRoot->isFoldedIntoParent())
1500 return;
1501
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001502 //
1503 // Let's check for chain rules outside the switch so that we don't have
1504 // to duplicate the list of chain rule production numbers here again
1505 //
Misha Brukmanb461d372003-10-23 16:48:30 +00001506 if (ThisIsAChainRule(ruleForNode)) {
1507 // Chain rules have a single nonterminal on the RHS.
1508 // Get the rule that matches the RHS non-terminal and use that instead.
1509 //
1510 assert(nts[0] && ! nts[1]
1511 && "A chain rule should have only one RHS non-terminal!");
1512 nextRule = burm_rule(subtreeRoot->state, nts[0]);
1513 nts = burm_nts[nextRule];
1514 GetInstructionsByRule(subtreeRoot, nextRule, nts, target, mvec);
1515 } else {
1516 switch(ruleForNode) {
1517 case 1: // stmt: Ret
1518 case 2: // stmt: RetValue(reg)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001519 { // NOTE: Prepass of register allocation is responsible
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001520 // for moving return value to appropriate register.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001521 // Copy the return value to the required return register.
1522 // Mark the return Value as an implicit ref of the RET instr..
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001523 // Mark the return-address register as a hidden virtual reg.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001524 // Finally put a NOP in the delay slot.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001525 ReturnInst *returnInstr=cast<ReturnInst>(subtreeRoot->getInstruction());
1526 Value* retVal = returnInstr->getReturnValue();
1527 MachineCodeForInstruction& mcfi =
1528 MachineCodeForInstruction::get(returnInstr);
1529
1530 // Create a hidden virtual reg to represent the return address register
1531 // used by the machine instruction but not represented in LLVM.
1532 //
1533 Instruction* returnAddrTmp = new TmpInstruction(mcfi, returnInstr);
1534
1535 MachineInstr* retMI =
1536 BuildMI(V9::JMPLRETi, 3).addReg(returnAddrTmp).addSImm(8)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001537 .addMReg(target.getRegInfo().getZeroRegNum(), MachineOperand::Def);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001538
Vikram S. Advee9a567c2003-07-25 21:08:58 +00001539 // If there is a value to return, we need to:
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001540 // (a) Sign-extend the value if it is smaller than 8 bytes (reg size)
1541 // (b) Insert a copy to copy the return value to the appropriate reg.
1542 // -- For FP values, create a FMOVS or FMOVD instruction
1543 // -- For non-FP values, create an add-with-0 instruction
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001544 //
1545 if (retVal != NULL) {
Brian Gaekee3d68072004-02-25 18:44:15 +00001546 const SparcV9RegInfo& regInfo =
1547 (SparcV9RegInfo&) target.getRegInfo();
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001548 const Type* retType = retVal->getType();
1549 unsigned regClassID = regInfo.getRegClassIDOfType(retType);
1550 unsigned retRegNum = (retType->isFloatingPoint()
Brian Gaekee3d68072004-02-25 18:44:15 +00001551 ? (unsigned) SparcV9FloatRegClass::f0
1552 : (unsigned) SparcV9IntRegClass::i0);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001553 retRegNum = regInfo.getUnifiedRegNum(regClassID, retRegNum);
1554
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001555 // () Insert sign-extension instructions for small signed values.
1556 //
1557 Value* retValToUse = retVal;
1558 if (retType->isIntegral() && retType->isSigned()) {
1559 unsigned retSize = target.getTargetData().getTypeSize(retType);
1560 if (retSize <= 4) {
1561 // create a temporary virtual reg. to hold the sign-extension
1562 retValToUse = new TmpInstruction(mcfi, retVal);
1563
1564 // sign-extend retVal and put the result in the temporary reg.
1565 target.getInstrInfo().CreateSignExtensionInstructions
1566 (target, returnInstr->getParent()->getParent(),
1567 retVal, retValToUse, 8*retSize, mvec, mcfi);
1568 }
1569 }
1570
1571 // (b) Now, insert a copy to to the appropriate register:
1572 // -- For FP values, create a FMOVS or FMOVD instruction
1573 // -- For non-FP values, create an add-with-0 instruction
1574 //
1575 // First, create a virtual register to represent the register and
1576 // mark this vreg as being an implicit operand of the ret MI.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001577 TmpInstruction* retVReg =
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001578 new TmpInstruction(mcfi, retValToUse, NULL, "argReg");
1579
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001580 retMI->addImplicitRef(retVReg);
Vikram S. Advee9a567c2003-07-25 21:08:58 +00001581
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001582 if (retType->isFloatingPoint())
1583 M = (BuildMI(retType==Type::FloatTy? V9::FMOVS : V9::FMOVD, 2)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001584 .addReg(retValToUse).addReg(retVReg, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001585 else
1586 M = (BuildMI(ChooseAddInstructionByType(retType), 3)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001587 .addReg(retValToUse).addSImm((int64_t) 0)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001588 .addReg(retVReg, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001589
1590 // Mark the operand with the register it should be assigned
1591 M->SetRegForOperand(M->getNumOperands()-1, retRegNum);
1592 retMI->SetRegForImplicitRef(retMI->getNumImplicitRefs()-1, retRegNum);
1593
1594 mvec.push_back(M);
1595 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001596
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001597 // Now insert the RET instruction and a NOP for the delay slot
1598 mvec.push_back(retMI);
Misha Brukmana98cd452003-05-20 20:32:24 +00001599 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001600
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001601 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001602 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001603
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001604 case 3: // stmt: Store(reg,reg)
1605 case 4: // stmt: Store(reg,ptrreg)
1606 SetOperandsForMemInstr(ChooseStoreInstruction(
Chris Lattner54e898e2003-01-15 19:23:34 +00001607 subtreeRoot->leftChild()->getValue()->getType()),
1608 mvec, subtreeRoot, target);
Misha Brukmanb3fabe02003-05-31 06:22:37 +00001609 break;
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001610
1611 case 5: // stmt: BrUncond
1612 {
1613 BranchInst *BI = cast<BranchInst>(subtreeRoot->getInstruction());
1614 mvec.push_back(BuildMI(V9::BA, 1).addPCDisp(BI->getSuccessor(0)));
1615
1616 // delay slot
1617 mvec.push_back(BuildMI(V9::NOP, 0));
1618 break;
1619 }
1620
1621 case 206: // stmt: BrCond(setCCconst)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001622 { // setCCconst => boolean was computed with `%b = setCC type reg1 const'
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001623 // If the constant is ZERO, we can use the branch-on-integer-register
1624 // instructions and avoid the SUBcc instruction entirely.
1625 // Otherwise this is just the same as case 5, so just fall through.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001626 //
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001627 InstrTreeNode* constNode = subtreeRoot->leftChild()->rightChild();
1628 assert(constNode &&
1629 constNode->getNodeType() ==InstrTreeNode::NTConstNode);
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001630 Constant *constVal = cast<Constant>(constNode->getValue());
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001631 bool isValidConst;
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001632
Chris Lattner0c4e8862002-09-03 01:08:28 +00001633 if ((constVal->getType()->isInteger()
Chris Lattner9b625032002-05-06 16:15:30 +00001634 || isa<PointerType>(constVal->getType()))
Vikram S. Advee6124d32003-07-29 19:59:23 +00001635 && target.getInstrInfo().ConvertConstantToIntType(target,
1636 constVal, constVal->getType(), isValidConst) == 0
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001637 && isValidConst)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001638 {
1639 // That constant is a zero after all...
1640 // Use the left child of setCC as the first argument!
1641 // Mark the setCC node so that no code is generated for it.
1642 InstructionNode* setCCNode = (InstructionNode*)
1643 subtreeRoot->leftChild();
1644 assert(setCCNode->getOpLabel() == SetCCOp);
1645 setCCNode->markFoldedIntoParent();
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001646
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001647 BranchInst* brInst=cast<BranchInst>(subtreeRoot->getInstruction());
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001648
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001649 M = BuildMI(ChooseBprInstruction(subtreeRoot), 2)
1650 .addReg(setCCNode->leftChild()->getValue())
1651 .addPCDisp(brInst->getSuccessor(0));
1652 mvec.push_back(M);
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001653
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001654 // delay slot
1655 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001656
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001657 // false branch
1658 mvec.push_back(BuildMI(V9::BA, 1)
1659 .addPCDisp(brInst->getSuccessor(1)));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001660
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001661 // delay slot
1662 mvec.push_back(BuildMI(V9::NOP, 0));
1663 break;
1664 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001665 // ELSE FALL THROUGH
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001666 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001667
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001668 case 6: // stmt: BrCond(setCC)
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001669 { // bool => boolean was computed with SetCC.
1670 // The branch to use depends on whether it is FP, signed, or unsigned.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001671 // If it is an integer CC, we also need to find the unique
1672 // TmpInstruction representing that CC.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001673 //
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001674 BranchInst* brInst = cast<BranchInst>(subtreeRoot->getInstruction());
Vikram S. Adve786833a2003-07-06 20:13:59 +00001675 const Type* setCCType;
1676 unsigned Opcode = ChooseBccInstruction(subtreeRoot, setCCType);
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001677 Value* ccValue = GetTmpForCC(subtreeRoot->leftChild()->getValue(),
1678 brInst->getParent()->getParent(),
Vikram S. Adve786833a2003-07-06 20:13:59 +00001679 setCCType,
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001680 MachineCodeForInstruction::get(brInst));
Chris Lattner54e898e2003-01-15 19:23:34 +00001681 M = BuildMI(Opcode, 2).addCCReg(ccValue)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001682 .addPCDisp(brInst->getSuccessor(0));
Vikram S. Adve74825322002-03-18 03:15:35 +00001683 mvec.push_back(M);
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001684
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001685 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001686 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001687
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001688 // false branch
Misha Brukmana98cd452003-05-20 20:32:24 +00001689 mvec.push_back(BuildMI(V9::BA, 1).addPCDisp(brInst->getSuccessor(1)));
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001690
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001691 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001692 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001693 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001694 }
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001695
1696 case 208: // stmt: BrCond(boolconst)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001697 {
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001698 // boolconst => boolean is a constant; use BA to first or second label
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001699 Constant* constVal =
1700 cast<Constant>(subtreeRoot->leftChild()->getValue());
1701 unsigned dest = cast<ConstantBool>(constVal)->getValue()? 0 : 1;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001702
Misha Brukmana98cd452003-05-20 20:32:24 +00001703 M = BuildMI(V9::BA, 1).addPCDisp(
Chris Lattner35504202002-04-27 03:14:39 +00001704 cast<BranchInst>(subtreeRoot->getInstruction())->getSuccessor(dest));
Vikram S. Adve74825322002-03-18 03:15:35 +00001705 mvec.push_back(M);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001706
1707 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001708 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001709 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001710 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001711
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001712 case 8: // stmt: BrCond(boolreg)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001713 { // boolreg => boolean is recorded in an integer register.
1714 // Use branch-on-integer-register instruction.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001715 //
Chris Lattner54e898e2003-01-15 19:23:34 +00001716 BranchInst *BI = cast<BranchInst>(subtreeRoot->getInstruction());
Misha Brukmana98cd452003-05-20 20:32:24 +00001717 M = BuildMI(V9::BRNZ, 2).addReg(subtreeRoot->leftChild()->getValue())
Chris Lattner54e898e2003-01-15 19:23:34 +00001718 .addPCDisp(BI->getSuccessor(0));
Vikram S. Adve74825322002-03-18 03:15:35 +00001719 mvec.push_back(M);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001720
1721 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001722 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001723
1724 // false branch
Misha Brukmana98cd452003-05-20 20:32:24 +00001725 mvec.push_back(BuildMI(V9::BA, 1).addPCDisp(BI->getSuccessor(1)));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001726
1727 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001728 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001729 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001730 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001731
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001732 case 9: // stmt: Switch(reg)
1733 assert(0 && "*** SWITCH instruction is not implemented yet.");
1734 break;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001735
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001736 case 10: // reg: VRegList(reg, reg)
1737 assert(0 && "VRegList should never be the topmost non-chain rule");
1738 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001739
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001740 case 21: // bool: Not(bool,reg): Compute with a conditional-move-on-reg
1741 { // First find the unary operand. It may be left or right, usually right.
1742 Instruction* notI = subtreeRoot->getInstruction();
1743 Value* notArg = BinaryOperator::getNotArgument(
1744 cast<BinaryOperator>(subtreeRoot->getInstruction()));
1745 unsigned ZeroReg = target.getRegInfo().getZeroRegNum();
1746
1747 // Unconditionally set register to 0
1748 mvec.push_back(BuildMI(V9::SETHI, 2).addZImm(0).addRegDef(notI));
1749
1750 // Now conditionally move 1 into the register.
1751 // Mark the register as a use (as well as a def) because the old
1752 // value will be retained if the condition is false.
1753 mvec.push_back(BuildMI(V9::MOVRZi, 3).addReg(notArg).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001754 .addReg(notI, MachineOperand::UseAndDef));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001755
1756 break;
1757 }
1758
1759 case 421: // reg: BNot(reg,reg): Compute as reg = reg XOR-NOT 0
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001760 { // First find the unary operand. It may be left or right, usually right.
1761 Value* notArg = BinaryOperator::getNotArgument(
1762 cast<BinaryOperator>(subtreeRoot->getInstruction()));
Chris Lattner00dca912003-01-15 17:47:49 +00001763 unsigned ZeroReg = target.getRegInfo().getZeroRegNum();
Misha Brukman91aee472003-05-27 22:37:00 +00001764 mvec.push_back(BuildMI(V9::XNORr, 3).addReg(notArg).addMReg(ZeroReg)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001765 .addRegDef(subtreeRoot->getValue()));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001766 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001767 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001768
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001769 case 322: // reg: Not(tobool, reg):
1770 // Fold CAST-TO-BOOL with NOT by inverting the sense of cast-to-bool
1771 foldCase = true;
1772 // Just fall through!
1773
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001774 case 22: // reg: ToBoolTy(reg):
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001775 {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001776 Instruction* castI = subtreeRoot->getInstruction();
1777 Value* opVal = subtreeRoot->leftChild()->getValue();
1778 assert(opVal->getType()->isIntegral() ||
1779 isa<PointerType>(opVal->getType()));
1780
1781 // Unconditionally set register to 0
1782 mvec.push_back(BuildMI(V9::SETHI, 2).addZImm(0).addRegDef(castI));
1783
1784 // Now conditionally move 1 into the register.
1785 // Mark the register as a use (as well as a def) because the old
1786 // value will be retained if the condition is false.
1787 MachineOpCode opCode = foldCase? V9::MOVRZi : V9::MOVRNZi;
1788 mvec.push_back(BuildMI(opCode, 3).addReg(opVal).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001789 .addReg(castI, MachineOperand::UseAndDef));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001790
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001791 break;
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001792 }
1793
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001794 case 23: // reg: ToUByteTy(reg)
1795 case 24: // reg: ToSByteTy(reg)
1796 case 25: // reg: ToUShortTy(reg)
1797 case 26: // reg: ToShortTy(reg)
1798 case 27: // reg: ToUIntTy(reg)
1799 case 28: // reg: ToIntTy(reg)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001800 case 29: // reg: ToULongTy(reg)
1801 case 30: // reg: ToLongTy(reg)
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001802 {
Vikram S. Adve94c40812002-09-27 14:33:08 +00001803 //======================================================================
1804 // Rules for integer conversions:
1805 //
1806 //--------
1807 // From ISO 1998 C++ Standard, Sec. 4.7:
1808 //
1809 // 2. If the destination type is unsigned, the resulting value is
1810 // the least unsigned integer congruent to the source integer
1811 // (modulo 2n where n is the number of bits used to represent the
1812 // unsigned type). [Note: In a two s complement representation,
1813 // this conversion is conceptual and there is no change in the
1814 // bit pattern (if there is no truncation). ]
1815 //
1816 // 3. If the destination type is signed, the value is unchanged if
1817 // it can be represented in the destination type (and bitfield width);
1818 // otherwise, the value is implementation-defined.
1819 //--------
1820 //
1821 // Since we assume 2s complement representations, this implies:
1822 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001823 // -- If operand is smaller than destination, zero-extend or sign-extend
1824 // according to the signedness of the *operand*: source decides:
1825 // (1) If operand is signed, sign-extend it.
1826 // If dest is unsigned, zero-ext the result!
1827 // (2) If operand is unsigned, our current invariant is that
1828 // it's high bits are correct, so zero-extension is not needed.
Vikram S. Adve94c40812002-09-27 14:33:08 +00001829 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001830 // -- If operand is same size as or larger than destination,
1831 // zero-extend or sign-extend according to the signedness of
1832 // the *destination*: destination decides:
1833 // (1) If destination is signed, sign-extend (truncating if needed)
1834 // This choice is implementation defined. We sign-extend the
1835 // operand, which matches both Sun's cc and gcc3.2.
1836 // (2) If destination is unsigned, zero-extend (truncating if needed)
Vikram S. Adve94c40812002-09-27 14:33:08 +00001837 //======================================================================
1838
Vikram S. Adve242a8082002-05-19 15:25:51 +00001839 Instruction* destI = subtreeRoot->getInstruction();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001840 Function* currentFunc = destI->getParent()->getParent();
1841 MachineCodeForInstruction& mcfi=MachineCodeForInstruction::get(destI);
1842
Vikram S. Adve242a8082002-05-19 15:25:51 +00001843 Value* opVal = subtreeRoot->leftChild()->getValue();
Vikram S. Adve94c40812002-09-27 14:33:08 +00001844 const Type* opType = opVal->getType();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001845 const Type* destType = destI->getType();
1846 unsigned opSize = target.getTargetData().getTypeSize(opType);
1847 unsigned destSize = target.getTargetData().getTypeSize(destType);
1848
1849 bool isIntegral = opType->isIntegral() || isa<PointerType>(opType);
1850
1851 if (opType == Type::BoolTy ||
1852 opType == destType ||
1853 isIntegral && opSize == destSize && opSize == 8) {
1854 // nothing to do in all these cases
1855 forwardOperandNum = 0; // forward first operand to user
1856
Misha Brukman7b647942003-05-30 20:11:56 +00001857 } else if (opType->isFloatingPoint()) {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001858
1859 CreateCodeToConvertFloatToInt(target, opVal, destI, mvec, mcfi);
Vikram S. Advee895a742003-08-06 18:48:40 +00001860 if (destI->getType()->isUnsigned() && destI->getType() !=Type::UIntTy)
Misha Brukman7b647942003-05-30 20:11:56 +00001861 maskUnsignedResult = true; // not handled by fp->int code
Vikram S. Adve1e606692002-07-31 21:01:34 +00001862
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001863 } else if (isIntegral) {
Vikram S. Adve94c40812002-09-27 14:33:08 +00001864
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001865 bool opSigned = opType->isSigned();
1866 bool destSigned = destType->isSigned();
1867 unsigned extSourceInBits = 8 * std::min<unsigned>(opSize, destSize);
1868
1869 assert(! (opSize == destSize && opSigned == destSigned) &&
1870 "How can different int types have same size and signedness?");
1871
1872 bool signExtend = (opSize < destSize && opSigned ||
1873 opSize >= destSize && destSigned);
1874
1875 bool signAndZeroExtend = (opSize < destSize && destSize < 8u &&
1876 opSigned && !destSigned);
1877 assert(!signAndZeroExtend || signExtend);
1878
1879 bool zeroExtendOnly = opSize >= destSize && !destSigned;
1880 assert(!zeroExtendOnly || !signExtend);
1881
1882 if (signExtend) {
1883 Value* signExtDest = (signAndZeroExtend
1884 ? new TmpInstruction(mcfi, destType, opVal)
1885 : destI);
1886
1887 target.getInstrInfo().CreateSignExtensionInstructions
1888 (target, currentFunc,opVal,signExtDest,extSourceInBits,mvec,mcfi);
1889
1890 if (signAndZeroExtend)
1891 target.getInstrInfo().CreateZeroExtensionInstructions
1892 (target, currentFunc, signExtDest, destI, 8*destSize, mvec, mcfi);
1893 }
1894 else if (zeroExtendOnly) {
1895 target.getInstrInfo().CreateZeroExtensionInstructions
1896 (target, currentFunc, opVal, destI, extSourceInBits, mvec, mcfi);
1897 }
1898 else
1899 forwardOperandNum = 0; // forward first operand to user
1900
Misha Brukman7b647942003-05-30 20:11:56 +00001901 } else
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001902 assert(0 && "Unrecognized operand type for convert-to-integer");
1903
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001904 break;
Vikram S. Adve94c40812002-09-27 14:33:08 +00001905 }
1906
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001907 case 31: // reg: ToFloatTy(reg):
1908 case 32: // reg: ToDoubleTy(reg):
1909 case 232: // reg: ToDoubleTy(Constant):
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001910
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001911 // If this instruction has a parent (a user) in the tree
1912 // and the user is translated as an FsMULd instruction,
1913 // then the cast is unnecessary. So check that first.
1914 // In the future, we'll want to do the same for the FdMULq instruction,
1915 // so do the check here instead of only for ToFloatTy(reg).
1916 //
1917 if (subtreeRoot->parent() != NULL) {
1918 const MachineCodeForInstruction& mcfi =
1919 MachineCodeForInstruction::get(
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001920 cast<InstructionNode>(subtreeRoot->parent())->getInstruction());
Brian Gaeke12c1d2c2004-02-11 20:47:34 +00001921 if (mcfi.size() == 0 || mcfi.front()->getOpcode() == V9::FSMULD)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001922 forwardOperandNum = 0; // forward first operand to user
1923 }
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001924
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001925 if (forwardOperandNum != 0) { // we do need the cast
1926 Value* leftVal = subtreeRoot->leftChild()->getValue();
1927 const Type* opType = leftVal->getType();
Vikram S. Advee895a742003-08-06 18:48:40 +00001928 MachineOpCode opCode=ChooseConvertToFloatInstr(target,
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001929 subtreeRoot->getOpLabel(), opType);
Vikram S. Advee895a742003-08-06 18:48:40 +00001930 if (opCode == V9::NOP) { // no conversion needed
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001931 forwardOperandNum = 0; // forward first operand to user
1932 } else {
1933 // If the source operand is a non-FP type it must be
1934 // first copied from int to float register via memory!
1935 Instruction *dest = subtreeRoot->getInstruction();
1936 Value* srcForCast;
1937 int n = 0;
1938 if (! opType->isFloatingPoint()) {
1939 // Create a temporary to represent the FP register
1940 // into which the integer will be copied via memory.
1941 // The type of this temporary will determine the FP
1942 // register used: single-prec for a 32-bit int or smaller,
1943 // double-prec for a 64-bit int.
1944 //
1945 uint64_t srcSize =
1946 target.getTargetData().getTypeSize(leftVal->getType());
1947 Type* tmpTypeToUse =
1948 (srcSize <= 4)? Type::FloatTy : Type::DoubleTy;
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001949 MachineCodeForInstruction &destMCFI =
1950 MachineCodeForInstruction::get(dest);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001951 srcForCast = new TmpInstruction(destMCFI, tmpTypeToUse, dest);
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001952
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001953 target.getInstrInfo().CreateCodeToCopyIntToFloat(target,
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001954 dest->getParent()->getParent(),
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001955 leftVal, cast<Instruction>(srcForCast),
Vikram S. Adve242a8082002-05-19 15:25:51 +00001956 mvec, destMCFI);
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001957 } else
1958 srcForCast = leftVal;
1959
1960 M = BuildMI(opCode, 2).addReg(srcForCast).addRegDef(dest);
1961 mvec.push_back(M);
1962 }
Misha Brukman7b647942003-05-30 20:11:56 +00001963 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001964 break;
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001965
1966 case 19: // reg: ToArrayTy(reg):
1967 case 20: // reg: ToPointerTy(reg):
1968 forwardOperandNum = 0; // forward first operand to user
Misha Brukmanb3fabe02003-05-31 06:22:37 +00001969 break;
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001970
1971 case 233: // reg: Add(reg, Constant)
1972 maskUnsignedResult = true;
1973 M = CreateAddConstInstruction(subtreeRoot);
1974 if (M != NULL) {
1975 mvec.push_back(M);
1976 break;
1977 }
1978 // ELSE FALL THROUGH
Misha Brukmanb3fabe02003-05-31 06:22:37 +00001979
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001980 case 33: // reg: Add(reg, reg)
1981 maskUnsignedResult = true;
1982 Add3OperandInstr(ChooseAddInstruction(subtreeRoot), subtreeRoot, mvec);
1983 break;
1984
1985 case 234: // reg: Sub(reg, Constant)
1986 maskUnsignedResult = true;
1987 M = CreateSubConstInstruction(subtreeRoot);
1988 if (M != NULL) {
1989 mvec.push_back(M);
1990 break;
1991 }
1992 // ELSE FALL THROUGH
1993
1994 case 34: // reg: Sub(reg, reg)
1995 maskUnsignedResult = true;
1996 Add3OperandInstr(ChooseSubInstructionByType(
Chris Lattner54e898e2003-01-15 19:23:34 +00001997 subtreeRoot->getInstruction()->getType()),
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001998 subtreeRoot, mvec);
1999 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002000
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002001 case 135: // reg: Mul(todouble, todouble)
2002 checkCast = true;
2003 // FALL THROUGH
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002004
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002005 case 35: // reg: Mul(reg, reg)
Vikram S. Adve74825322002-03-18 03:15:35 +00002006 {
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002007 maskUnsignedResult = true;
Vikram S. Adve74825322002-03-18 03:15:35 +00002008 MachineOpCode forceOp = ((checkCast && BothFloatToDouble(subtreeRoot))
Chris Lattnerb4198a22004-02-13 16:14:50 +00002009 ? (MachineOpCode)V9::FSMULD
Chris Lattner07239692004-02-29 05:57:59 +00002010 : -1);
Vikram S. Adve242a8082002-05-19 15:25:51 +00002011 Instruction* mulInstr = subtreeRoot->getInstruction();
2012 CreateMulInstruction(target, mulInstr->getParent()->getParent(),
Vikram S. Adve74825322002-03-18 03:15:35 +00002013 subtreeRoot->leftChild()->getValue(),
2014 subtreeRoot->rightChild()->getValue(),
Vikram S. Adve242a8082002-05-19 15:25:51 +00002015 mulInstr, mvec,
2016 MachineCodeForInstruction::get(mulInstr),forceOp);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002017 break;
Vikram S. Adve74825322002-03-18 03:15:35 +00002018 }
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002019 case 335: // reg: Mul(todouble, todoubleConst)
2020 checkCast = true;
2021 // FALL THROUGH
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002022
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002023 case 235: // reg: Mul(reg, Constant)
Vikram S. Adve74825322002-03-18 03:15:35 +00002024 {
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002025 maskUnsignedResult = true;
Vikram S. Adve74825322002-03-18 03:15:35 +00002026 MachineOpCode forceOp = ((checkCast && BothFloatToDouble(subtreeRoot))
Chris Lattnerb4198a22004-02-13 16:14:50 +00002027 ? (MachineOpCode)V9::FSMULD
Chris Lattner07239692004-02-29 05:57:59 +00002028 : -1);
Vikram S. Adve242a8082002-05-19 15:25:51 +00002029 Instruction* mulInstr = subtreeRoot->getInstruction();
2030 CreateMulInstruction(target, mulInstr->getParent()->getParent(),
Vikram S. Adve74825322002-03-18 03:15:35 +00002031 subtreeRoot->leftChild()->getValue(),
2032 subtreeRoot->rightChild()->getValue(),
Vikram S. Adve242a8082002-05-19 15:25:51 +00002033 mulInstr, mvec,
2034 MachineCodeForInstruction::get(mulInstr),
2035 forceOp);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002036 break;
Vikram S. Adve74825322002-03-18 03:15:35 +00002037 }
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002038 case 236: // reg: Div(reg, Constant)
2039 maskUnsignedResult = true;
2040 L = mvec.size();
2041 CreateDivConstInstruction(target, subtreeRoot, mvec);
2042 if (mvec.size() > L)
2043 break;
2044 // ELSE FALL THROUGH
Misha Brukmanb3fabe02003-05-31 06:22:37 +00002045
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002046 case 36: // reg: Div(reg, reg)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002047 {
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002048 maskUnsignedResult = true;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002049
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002050 // If either operand of divide is smaller than 64 bits, we have
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002051 // to make sure the unused top bits are correct because they affect
2052 // the result. These bits are already correct for unsigned values.
2053 // They may be incorrect for signed values, so sign extend to fill in.
2054 Instruction* divI = subtreeRoot->getInstruction();
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002055 Value* divOp1 = subtreeRoot->leftChild()->getValue();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002056 Value* divOp2 = subtreeRoot->rightChild()->getValue();
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002057 Value* divOp1ToUse = divOp1;
2058 Value* divOp2ToUse = divOp2;
2059 if (divI->getType()->isSigned()) {
2060 unsigned opSize=target.getTargetData().getTypeSize(divI->getType());
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002061 if (opSize < 8) {
2062 MachineCodeForInstruction& mcfi=MachineCodeForInstruction::get(divI);
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002063 divOp1ToUse = new TmpInstruction(mcfi, divOp1);
2064 divOp2ToUse = new TmpInstruction(mcfi, divOp2);
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002065 target.getInstrInfo().
2066 CreateSignExtensionInstructions(target,
2067 divI->getParent()->getParent(),
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002068 divOp1, divOp1ToUse,
2069 8*opSize, mvec, mcfi);
2070 target.getInstrInfo().
2071 CreateSignExtensionInstructions(target,
2072 divI->getParent()->getParent(),
2073 divOp2, divOp2ToUse,
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002074 8*opSize, mvec, mcfi);
2075 }
2076 }
2077
2078 mvec.push_back(BuildMI(ChooseDivInstruction(target, subtreeRoot), 3)
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002079 .addReg(divOp1ToUse)
2080 .addReg(divOp2ToUse)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002081 .addRegDef(divI));
2082
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002083 break;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002084 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002085
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002086 case 37: // reg: Rem(reg, reg)
2087 case 237: // reg: Rem(reg, Constant)
Vikram S. Adve510eec72001-11-04 21:59:14 +00002088 {
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002089 maskUnsignedResult = true;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002090
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002091 Instruction* remI = subtreeRoot->getInstruction();
2092 Value* divOp1 = subtreeRoot->leftChild()->getValue();
2093 Value* divOp2 = subtreeRoot->rightChild()->getValue();
2094
2095 MachineCodeForInstruction& mcfi = MachineCodeForInstruction::get(remI);
Vikram S. Adve510eec72001-11-04 21:59:14 +00002096
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002097 // If second operand of divide is smaller than 64 bits, we have
2098 // to make sure the unused top bits are correct because they affect
2099 // the result. These bits are already correct for unsigned values.
2100 // They may be incorrect for signed values, so sign extend to fill in.
2101 //
2102 Value* divOpToUse = divOp2;
2103 if (divOp2->getType()->isSigned()) {
2104 unsigned opSize=target.getTargetData().getTypeSize(divOp2->getType());
2105 if (opSize < 8) {
2106 divOpToUse = new TmpInstruction(mcfi, divOp2);
2107 target.getInstrInfo().
2108 CreateSignExtensionInstructions(target,
2109 remI->getParent()->getParent(),
2110 divOp2, divOpToUse,
2111 8*opSize, mvec, mcfi);
2112 }
2113 }
2114
2115 // Now compute: result = rem V1, V2 as:
2116 // result = V1 - (V1 / signExtend(V2)) * signExtend(V2)
2117 //
2118 TmpInstruction* quot = new TmpInstruction(mcfi, divOp1, divOpToUse);
2119 TmpInstruction* prod = new TmpInstruction(mcfi, quot, divOpToUse);
2120
2121 mvec.push_back(BuildMI(ChooseDivInstruction(target, subtreeRoot), 3)
2122 .addReg(divOp1).addReg(divOpToUse).addRegDef(quot));
Vikram S. Adve510eec72001-11-04 21:59:14 +00002123
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002124 mvec.push_back(BuildMI(ChooseMulInstructionByType(remI->getType()), 3)
2125 .addReg(quot).addReg(divOpToUse).addRegDef(prod));
Vikram S. Adve510eec72001-11-04 21:59:14 +00002126
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002127 mvec.push_back(BuildMI(ChooseSubInstructionByType(remI->getType()), 3)
2128 .addReg(divOp1).addReg(prod).addRegDef(remI));
2129
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002130 break;
Vikram S. Adve510eec72001-11-04 21:59:14 +00002131 }
2132
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002133 case 38: // bool: And(bool, bool)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002134 case 138: // bool: And(bool, not)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002135 case 238: // bool: And(bool, boolconst)
2136 case 338: // reg : BAnd(reg, reg)
2137 case 538: // reg : BAnd(reg, Constant)
2138 Add3OperandInstr(V9::ANDr, subtreeRoot, mvec);
2139 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002140
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002141 case 438: // bool: BAnd(bool, bnot)
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002142 { // Use the argument of NOT as the second argument!
2143 // Mark the NOT node so that no code is generated for it.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002144 // If the type is boolean, set 1 or 0 in the result register.
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002145 InstructionNode* notNode = (InstructionNode*) subtreeRoot->rightChild();
2146 Value* notArg = BinaryOperator::getNotArgument(
2147 cast<BinaryOperator>(notNode->getInstruction()));
2148 notNode->markFoldedIntoParent();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002149 Value *lhs = subtreeRoot->leftChild()->getValue();
2150 Value *dest = subtreeRoot->getValue();
2151 mvec.push_back(BuildMI(V9::ANDNr, 3).addReg(lhs).addReg(notArg)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002152 .addReg(dest, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002153
Misha Brukmanb461d372003-10-23 16:48:30 +00002154 if (notArg->getType() == Type::BoolTy) {
2155 // set 1 in result register if result of above is non-zero
2156 mvec.push_back(BuildMI(V9::MOVRNZi, 3).addReg(dest).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002157 .addReg(dest, MachineOperand::UseAndDef));
Misha Brukmanb461d372003-10-23 16:48:30 +00002158 }
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002159
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002160 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002161 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002162
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002163 case 39: // bool: Or(bool, bool)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002164 case 139: // bool: Or(bool, not)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002165 case 239: // bool: Or(bool, boolconst)
2166 case 339: // reg : BOr(reg, reg)
2167 case 539: // reg : BOr(reg, Constant)
2168 Add3OperandInstr(V9::ORr, subtreeRoot, mvec);
2169 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002170
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002171 case 439: // bool: BOr(bool, bnot)
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002172 { // Use the argument of NOT as the second argument!
2173 // Mark the NOT node so that no code is generated for it.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002174 // If the type is boolean, set 1 or 0 in the result register.
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002175 InstructionNode* notNode = (InstructionNode*) subtreeRoot->rightChild();
2176 Value* notArg = BinaryOperator::getNotArgument(
2177 cast<BinaryOperator>(notNode->getInstruction()));
2178 notNode->markFoldedIntoParent();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002179 Value *lhs = subtreeRoot->leftChild()->getValue();
2180 Value *dest = subtreeRoot->getValue();
2181
2182 mvec.push_back(BuildMI(V9::ORNr, 3).addReg(lhs).addReg(notArg)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002183 .addReg(dest, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002184
Misha Brukmanb461d372003-10-23 16:48:30 +00002185 if (notArg->getType() == Type::BoolTy) {
2186 // set 1 in result register if result of above is non-zero
2187 mvec.push_back(BuildMI(V9::MOVRNZi, 3).addReg(dest).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002188 .addReg(dest, MachineOperand::UseAndDef));
Misha Brukmanb461d372003-10-23 16:48:30 +00002189 }
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002190
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002191 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002192 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002193
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002194 case 40: // bool: Xor(bool, bool)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002195 case 140: // bool: Xor(bool, not)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002196 case 240: // bool: Xor(bool, boolconst)
2197 case 340: // reg : BXor(reg, reg)
2198 case 540: // reg : BXor(reg, Constant)
2199 Add3OperandInstr(V9::XORr, subtreeRoot, mvec);
2200 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002201
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002202 case 440: // bool: BXor(bool, bnot)
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002203 { // Use the argument of NOT as the second argument!
2204 // Mark the NOT node so that no code is generated for it.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002205 // If the type is boolean, set 1 or 0 in the result register.
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002206 InstructionNode* notNode = (InstructionNode*) subtreeRoot->rightChild();
2207 Value* notArg = BinaryOperator::getNotArgument(
2208 cast<BinaryOperator>(notNode->getInstruction()));
2209 notNode->markFoldedIntoParent();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002210 Value *lhs = subtreeRoot->leftChild()->getValue();
2211 Value *dest = subtreeRoot->getValue();
2212 mvec.push_back(BuildMI(V9::XNORr, 3).addReg(lhs).addReg(notArg)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002213 .addReg(dest, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002214
Misha Brukmanb461d372003-10-23 16:48:30 +00002215 if (notArg->getType() == Type::BoolTy) {
2216 // set 1 in result register if result of above is non-zero
2217 mvec.push_back(BuildMI(V9::MOVRNZi, 3).addReg(dest).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002218 .addReg(dest, MachineOperand::UseAndDef));
Misha Brukmanb461d372003-10-23 16:48:30 +00002219 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002220 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002221 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002222
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002223 case 41: // setCCconst: SetCC(reg, Constant)
2224 { // Comparison is with a constant:
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002225 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002226 // If the bool result must be computed into a register (see below),
2227 // and the constant is int ZERO, we can use the MOVR[op] instructions
2228 // and avoid the SUBcc instruction entirely.
2229 // Otherwise this is just the same as case 42, so just fall through.
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002230 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002231 // The result of the SetCC must be computed and stored in a register if
2232 // it is used outside the current basic block (so it must be computed
2233 // as a boolreg) or it is used by anything other than a branch.
2234 // We will use a conditional move to do this.
2235 //
2236 Instruction* setCCInstr = subtreeRoot->getInstruction();
2237 bool computeBoolVal = (subtreeRoot->parent() == NULL ||
2238 ! AllUsesAreBranches(setCCInstr));
2239
Misha Brukmanb461d372003-10-23 16:48:30 +00002240 if (computeBoolVal) {
2241 InstrTreeNode* constNode = subtreeRoot->rightChild();
2242 assert(constNode &&
2243 constNode->getNodeType() ==InstrTreeNode::NTConstNode);
2244 Constant *constVal = cast<Constant>(constNode->getValue());
2245 bool isValidConst;
2246
2247 if ((constVal->getType()->isInteger()
2248 || isa<PointerType>(constVal->getType()))
2249 && target.getInstrInfo().ConvertConstantToIntType(target,
Vikram S. Advee6124d32003-07-29 19:59:23 +00002250 constVal, constVal->getType(), isValidConst) == 0
Misha Brukmanb461d372003-10-23 16:48:30 +00002251 && isValidConst)
2252 {
2253 // That constant is an integer zero after all...
2254 // Use a MOVR[op] to compute the boolean result
2255 // Unconditionally set register to 0
2256 mvec.push_back(BuildMI(V9::SETHI, 2).addZImm(0)
2257 .addRegDef(setCCInstr));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002258
Misha Brukmanb461d372003-10-23 16:48:30 +00002259 // Now conditionally move 1 into the register.
2260 // Mark the register as a use (as well as a def) because the old
2261 // value will be retained if the condition is false.
2262 MachineOpCode movOpCode = ChooseMovpregiForSetCC(subtreeRoot);
2263 mvec.push_back(BuildMI(movOpCode, 3)
2264 .addReg(subtreeRoot->leftChild()->getValue())
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002265 .addZImm(1)
2266 .addReg(setCCInstr, MachineOperand::UseAndDef));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002267
Misha Brukmanb461d372003-10-23 16:48:30 +00002268 break;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002269 }
Misha Brukmanb461d372003-10-23 16:48:30 +00002270 }
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002271 // ELSE FALL THROUGH
2272 }
2273
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002274 case 42: // bool: SetCC(reg, reg):
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002275 {
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002276 // This generates a SUBCC instruction, putting the difference in a
2277 // result reg. if needed, and/or setting a condition code if needed.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002278 //
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002279 Instruction* setCCInstr = subtreeRoot->getInstruction();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002280 Value* leftVal = subtreeRoot->leftChild()->getValue();
2281 Value* rightVal = subtreeRoot->rightChild()->getValue();
2282 const Type* opType = leftVal->getType();
2283 bool isFPCompare = opType->isFloatingPoint();
Vikram S. Adve242a8082002-05-19 15:25:51 +00002284
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002285 // If the boolean result of the SetCC is used outside the current basic
2286 // block (so it must be computed as a boolreg) or is used by anything
2287 // other than a branch, the boolean must be computed and stored
2288 // in a result register. We will use a conditional move to do this.
2289 //
2290 bool computeBoolVal = (subtreeRoot->parent() == NULL ||
2291 ! AllUsesAreBranches(setCCInstr));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002292
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00002293 // A TmpInstruction is created to represent the CC "result".
2294 // Unlike other instances of TmpInstruction, this one is used
2295 // by machine code of multiple LLVM instructions, viz.,
2296 // the SetCC and the branch. Make sure to get the same one!
2297 // Note that we do this even for FP CC registers even though they
2298 // are explicit operands, because the type of the operand
2299 // needs to be a floating point condition code, not an integer
2300 // condition code. Think of this as casting the bool result to
2301 // a FP condition code register.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002302 // Later, we mark the 4th operand as being a CC register, and as a def.
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00002303 //
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00002304 TmpInstruction* tmpForCC = GetTmpForCC(setCCInstr,
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002305 setCCInstr->getParent()->getParent(),
Vikram S. Adve786833a2003-07-06 20:13:59 +00002306 leftVal->getType(),
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002307 MachineCodeForInstruction::get(setCCInstr));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002308
2309 // If the operands are signed values smaller than 4 bytes, then they
2310 // must be sign-extended in order to do a valid 32-bit comparison
2311 // and get the right result in the 32-bit CC register (%icc).
2312 //
2313 Value* leftOpToUse = leftVal;
2314 Value* rightOpToUse = rightVal;
2315 if (opType->isIntegral() && opType->isSigned()) {
2316 unsigned opSize = target.getTargetData().getTypeSize(opType);
2317 if (opSize < 4) {
2318 MachineCodeForInstruction& mcfi =
2319 MachineCodeForInstruction::get(setCCInstr);
2320
2321 // create temporary virtual regs. to hold the sign-extensions
2322 leftOpToUse = new TmpInstruction(mcfi, leftVal);
2323 rightOpToUse = new TmpInstruction(mcfi, rightVal);
2324
2325 // sign-extend each operand and put the result in the temporary reg.
2326 target.getInstrInfo().CreateSignExtensionInstructions
2327 (target, setCCInstr->getParent()->getParent(),
2328 leftVal, leftOpToUse, 8*opSize, mvec, mcfi);
2329 target.getInstrInfo().CreateSignExtensionInstructions
2330 (target, setCCInstr->getParent()->getParent(),
2331 rightVal, rightOpToUse, 8*opSize, mvec, mcfi);
2332 }
2333 }
2334
Misha Brukman7b647942003-05-30 20:11:56 +00002335 if (! isFPCompare) {
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002336 // Integer condition: set CC and discard result.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002337 mvec.push_back(BuildMI(V9::SUBccr, 4)
2338 .addReg(leftOpToUse)
2339 .addReg(rightOpToUse)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002340 .addMReg(target.getRegInfo()
2341 .getZeroRegNum(), MachineOperand::Def)
2342 .addCCReg(tmpForCC, MachineOperand::Def));
Misha Brukman7b647942003-05-30 20:11:56 +00002343 } else {
2344 // FP condition: dest of FCMP should be some FCCn register
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002345 mvec.push_back(BuildMI(ChooseFcmpInstruction(subtreeRoot), 3)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002346 .addCCReg(tmpForCC, MachineOperand::Def)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002347 .addReg(leftOpToUse)
2348 .addReg(rightOpToUse));
Misha Brukman7b647942003-05-30 20:11:56 +00002349 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002350
Misha Brukman7b647942003-05-30 20:11:56 +00002351 if (computeBoolVal) {
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002352 MachineOpCode movOpCode = (isFPCompare
Misha Brukmaneecdb662003-06-02 20:55:14 +00002353 ? ChooseMovFpcciInstruction(subtreeRoot)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002354 : ChooseMovpcciForSetCC(subtreeRoot));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002355
2356 // Unconditionally set register to 0
2357 M = BuildMI(V9::SETHI, 2).addZImm(0).addRegDef(setCCInstr);
2358 mvec.push_back(M);
2359
2360 // Now conditionally move 1 into the register.
Misha Brukman7b647942003-05-30 20:11:56 +00002361 // Mark the register as a use (as well as a def) because the old
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002362 // value will be retained if the condition is false.
2363 M = (BuildMI(movOpCode, 3).addCCReg(tmpForCC).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002364 .addReg(setCCInstr, MachineOperand::UseAndDef));
Misha Brukman7b647942003-05-30 20:11:56 +00002365 mvec.push_back(M);
2366 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002367 break;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002368 }
2369
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002370 case 51: // reg: Load(reg)
2371 case 52: // reg: Load(ptrreg)
Chris Lattner54e898e2003-01-15 19:23:34 +00002372 SetOperandsForMemInstr(ChooseLoadInstruction(
2373 subtreeRoot->getValue()->getType()),
2374 mvec, subtreeRoot, target);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002375 break;
2376
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002377 case 55: // reg: GetElemPtr(reg)
2378 case 56: // reg: GetElemPtrIdx(reg,reg)
2379 // If the GetElemPtr was folded into the user (parent), it will be
2380 // caught above. For other cases, we have to compute the address.
2381 SetOperandsForMemInstr(V9::ADDr, mvec, subtreeRoot, target);
2382 break;
Vikram S. Adved3e26482002-10-13 00:18:57 +00002383
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002384 case 57: // reg: Alloca: Implement as 1 instruction:
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002385 { // add %fp, offsetFromFP -> result
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002386 AllocationInst* instr =
2387 cast<AllocationInst>(subtreeRoot->getInstruction());
Chris Lattnerea45d7b2002-12-28 20:19:44 +00002388 unsigned tsize =
2389 target.getTargetData().getTypeSize(instr->getAllocatedType());
Vikram S. Adve74825322002-03-18 03:15:35 +00002390 assert(tsize != 0);
2391 CreateCodeForFixedSizeAlloca(target, instr, tsize, 1, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002392 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002393 }
Vikram S. Adved3e26482002-10-13 00:18:57 +00002394
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002395 case 58: // reg: Alloca(reg): Implement as 3 instructions:
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002396 // mul num, typeSz -> tmp
2397 // sub %sp, tmp -> %sp
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002398 { // add %sp, frameSizeBelowDynamicArea -> result
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002399 AllocationInst* instr =
2400 cast<AllocationInst>(subtreeRoot->getInstruction());
Vikram S. Adve74825322002-03-18 03:15:35 +00002401 const Type* eltType = instr->getAllocatedType();
2402
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002403 // If #elements is constant, use simpler code for fixed-size allocas
Chris Lattnerea45d7b2002-12-28 20:19:44 +00002404 int tsize = (int) target.getTargetData().getTypeSize(eltType);
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002405 Value* numElementsVal = NULL;
2406 bool isArray = instr->isArrayAllocation();
2407
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002408 if (!isArray || isa<Constant>(numElementsVal = instr->getArraySize())) {
Misha Brukman7b647942003-05-30 20:11:56 +00002409 // total size is constant: generate code for fixed-size alloca
2410 unsigned numElements = isArray?
2411 cast<ConstantUInt>(numElementsVal)->getValue() : 1;
2412 CreateCodeForFixedSizeAlloca(target, instr, tsize,
2413 numElements, mvec);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002414 } else {
2415 // total size is not constant.
Vikram S. Adve74825322002-03-18 03:15:35 +00002416 CreateCodeForVariableSizeAlloca(target, instr, tsize,
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002417 numElementsVal, mvec);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002418 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002419 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002420 }
Vikram S. Adved3e26482002-10-13 00:18:57 +00002421
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002422 case 61: // reg: Call
Vikram S. Adve4a8bb2b2002-09-28 16:55:41 +00002423 { // Generate a direct (CALL) or indirect (JMPL) call.
2424 // Mark the return-address register, the indirection
2425 // register (for indirect calls), the operands of the Call,
2426 // and the return value (if any) as implicit operands
2427 // of the machine instruction.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002428 //
Vikram S. Advedbc4fad2002-04-25 04:37:51 +00002429 // If this is a varargs function, floating point arguments
2430 // have to passed in integer registers so insert
2431 // copy-float-to-int instructions for each float operand.
2432 //
Chris Lattnerb00c5822001-10-02 03:41:24 +00002433 CallInst *callInstr = cast<CallInst>(subtreeRoot->getInstruction());
Chris Lattner749655f2001-10-13 06:54:30 +00002434 Value *callee = callInstr->getCalledValue();
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002435 Function* calledFunc = dyn_cast<Function>(callee);
Vikram S. Adve4a8bb2b2002-09-28 16:55:41 +00002436
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002437 // Check if this is an intrinsic function that needs a special code
2438 // sequence (e.g., va_start). Indirect calls cannot be special.
Vikram S. Adveea21a6c2001-10-20 20:57:06 +00002439 //
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002440 bool specialIntrinsic = false;
Brian Gaeked0fde302003-11-11 22:41:34 +00002441 Intrinsic::ID iid;
2442 if (calledFunc && (iid=(Intrinsic::ID)calledFunc->getIntrinsicID()))
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002443 specialIntrinsic = CodeGenIntrinsic(iid, *callInstr, target, mvec);
Vikram S. Advea10d1a72002-03-31 19:07:35 +00002444
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002445 // If not, generate the normal call sequence for the function.
2446 // This can also handle any intrinsics that are just function calls.
2447 //
Misha Brukman7b647942003-05-30 20:11:56 +00002448 if (! specialIntrinsic) {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002449 Function* currentFunc = callInstr->getParent()->getParent();
2450 MachineFunction& MF = MachineFunction::get(currentFunc);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002451 MachineCodeForInstruction& mcfi =
2452 MachineCodeForInstruction::get(callInstr);
Brian Gaekee3d68072004-02-25 18:44:15 +00002453 const SparcV9RegInfo& regInfo =
2454 (SparcV9RegInfo&) target.getRegInfo();
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002455 const TargetFrameInfo& frameInfo = target.getFrameInfo();
2456
Misha Brukman7b647942003-05-30 20:11:56 +00002457 // Create hidden virtual register for return address with type void*
2458 TmpInstruction* retAddrReg =
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002459 new TmpInstruction(mcfi, PointerType::get(Type::VoidTy), callInstr);
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002460
Misha Brukman7b647942003-05-30 20:11:56 +00002461 // Generate the machine instruction and its operands.
2462 // Use CALL for direct function calls; this optimistically assumes
2463 // the PC-relative address fits in the CALL address field (22 bits).
2464 // Use JMPL for indirect calls.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002465 // This will be added to mvec later, after operand copies.
Misha Brukman7b647942003-05-30 20:11:56 +00002466 //
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002467 MachineInstr* callMI;
Misha Brukman7b647942003-05-30 20:11:56 +00002468 if (calledFunc) // direct function call
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002469 callMI = BuildMI(V9::CALL, 1).addPCDisp(callee);
Misha Brukman7b647942003-05-30 20:11:56 +00002470 else // indirect function call
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002471 callMI = (BuildMI(V9::JMPLCALLi,3).addReg(callee)
2472 .addSImm((int64_t)0).addRegDef(retAddrReg));
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002473
Misha Brukman7b647942003-05-30 20:11:56 +00002474 const FunctionType* funcType =
2475 cast<FunctionType>(cast<PointerType>(callee->getType())
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002476 ->getElementType());
Misha Brukman7b647942003-05-30 20:11:56 +00002477 bool isVarArgs = funcType->isVarArg();
2478 bool noPrototype = isVarArgs && funcType->getNumParams() == 0;
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002479
Misha Brukman7b647942003-05-30 20:11:56 +00002480 // Use a descriptor to pass information about call arguments
2481 // to the register allocator. This descriptor will be "owned"
2482 // and freed automatically when the MachineCodeForInstruction
2483 // object for the callInstr goes away.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002484 CallArgsDescriptor* argDesc =
2485 new CallArgsDescriptor(callInstr, retAddrReg,isVarArgs,noPrototype);
Misha Brukman7b647942003-05-30 20:11:56 +00002486 assert(callInstr->getOperand(0) == callee
2487 && "This is assumed in the loop below!");
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002488
2489 // Insert sign-extension instructions for small signed values,
2490 // if this is an unknown function (i.e., called via a funcptr)
2491 // or an external one (i.e., which may not be compiled by llc).
2492 //
2493 if (calledFunc == NULL || calledFunc->isExternal()) {
2494 for (unsigned i=1, N=callInstr->getNumOperands(); i < N; ++i) {
2495 Value* argVal = callInstr->getOperand(i);
2496 const Type* argType = argVal->getType();
2497 if (argType->isIntegral() && argType->isSigned()) {
2498 unsigned argSize = target.getTargetData().getTypeSize(argType);
2499 if (argSize <= 4) {
2500 // create a temporary virtual reg. to hold the sign-extension
2501 TmpInstruction* argExtend = new TmpInstruction(mcfi, argVal);
2502
2503 // sign-extend argVal and put the result in the temporary reg.
2504 target.getInstrInfo().CreateSignExtensionInstructions
2505 (target, currentFunc, argVal, argExtend,
2506 8*argSize, mvec, mcfi);
2507
2508 // replace argVal with argExtend in CallArgsDescriptor
2509 argDesc->getArgInfo(i-1).replaceArgVal(argExtend);
2510 }
2511 }
2512 }
2513 }
2514
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002515 // Insert copy instructions to get all the arguments into
2516 // all the places that they need to be.
2517 //
Misha Brukman7b647942003-05-30 20:11:56 +00002518 for (unsigned i=1, N=callInstr->getNumOperands(); i < N; ++i) {
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002519 int argNo = i-1;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002520 CallArgInfo& argInfo = argDesc->getArgInfo(argNo);
2521 Value* argVal = argInfo.getArgVal(); // don't use callInstr arg here
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002522 const Type* argType = argVal->getType();
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002523 unsigned regType = regInfo.getRegTypeForDataType(argType);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002524 unsigned argSize = target.getTargetData().getTypeSize(argType);
2525 int regNumForArg = TargetRegInfo::getInvalidRegNum();
2526 unsigned regClassIDOfArgReg;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002527
Misha Brukman7b647942003-05-30 20:11:56 +00002528 // Check for FP arguments to varargs functions.
2529 // Any such argument in the first $K$ args must be passed in an
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002530 // integer register. If there is no prototype, it must also
2531 // be passed as an FP register.
2532 // K = #integer argument registers.
2533 bool isFPArg = argVal->getType()->isFloatingPoint();
2534 if (isVarArgs && isFPArg) {
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002535
2536 if (noPrototype) {
2537 // It is a function with no prototype: pass value
2538 // as an FP value as well as a varargs value. The FP value
2539 // may go in a register or on the stack. The copy instruction
2540 // to the outgoing reg/stack is created by the normal argument
2541 // handling code since this is the "normal" passing mode.
2542 //
2543 regNumForArg = regInfo.regNumForFPArg(regType,
2544 false, false, argNo,
2545 regClassIDOfArgReg);
2546 if (regNumForArg == regInfo.getInvalidRegNum())
2547 argInfo.setUseStackSlot();
2548 else
2549 argInfo.setUseFPArgReg();
2550 }
2551
2552 // If this arg. is in the first $K$ regs, add special copy-
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002553 // float-to-int instructions to pass the value as an int.
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002554 // To check if it is in the first $K$, get the register
2555 // number for the arg #i. These copy instructions are
2556 // generated here because they are extra cases and not needed
2557 // for the normal argument handling (some code reuse is
2558 // possible though -- later).
2559 //
Misha Brukmanea481cc2003-06-03 03:21:58 +00002560 int copyRegNum = regInfo.regNumForIntArg(false, false, argNo,
2561 regClassIDOfArgReg);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002562 if (copyRegNum != regInfo.getInvalidRegNum()) {
2563 // Create a virtual register to represent copyReg. Mark
2564 // this vreg as being an implicit operand of the call MI
2565 const Type* loadTy = (argType == Type::FloatTy
2566 ? Type::IntTy : Type::LongTy);
Misha Brukmanea481cc2003-06-03 03:21:58 +00002567 TmpInstruction* argVReg = new TmpInstruction(mcfi, loadTy,
2568 argVal, NULL,
2569 "argRegCopy");
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002570 callMI->addImplicitRef(argVReg);
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002571
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002572 // Get a temp stack location to use to copy
2573 // float-to-int via the stack.
2574 //
2575 // FIXME: For now, we allocate permanent space because
2576 // the stack frame manager does not allow locals to be
2577 // allocated (e.g., for alloca) after a temp is
2578 // allocated!
2579 //
2580 // int tmpOffset = MF.getInfo()->pushTempValue(argSize);
2581 int tmpOffset = MF.getInfo()->allocateLocalVar(argVReg);
Vikram S. Adve242a8082002-05-19 15:25:51 +00002582
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002583 // Generate the store from FP reg to stack
Misha Brukmanea481cc2003-06-03 03:21:58 +00002584 unsigned StoreOpcode = ChooseStoreInstruction(argType);
2585 M = BuildMI(convertOpcodeFromRegToImm(StoreOpcode), 3)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002586 .addReg(argVal).addMReg(regInfo.getFramePointer())
2587 .addSImm(tmpOffset);
2588 mvec.push_back(M);
2589
2590 // Generate the load from stack to int arg reg
Misha Brukmanea481cc2003-06-03 03:21:58 +00002591 unsigned LoadOpcode = ChooseLoadInstruction(loadTy);
2592 M = BuildMI(convertOpcodeFromRegToImm(LoadOpcode), 3)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002593 .addMReg(regInfo.getFramePointer()).addSImm(tmpOffset)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002594 .addReg(argVReg, MachineOperand::Def);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002595
2596 // Mark operand with register it should be assigned
2597 // both for copy and for the callMI
2598 M->SetRegForOperand(M->getNumOperands()-1, copyRegNum);
Misha Brukmanea481cc2003-06-03 03:21:58 +00002599 callMI->SetRegForImplicitRef(callMI->getNumImplicitRefs()-1,
2600 copyRegNum);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002601 mvec.push_back(M);
2602
2603 // Add info about the argument to the CallArgsDescriptor
2604 argInfo.setUseIntArgReg();
2605 argInfo.setArgCopy(copyRegNum);
2606 } else {
Misha Brukman7b647942003-05-30 20:11:56 +00002607 // Cannot fit in first $K$ regs so pass arg on stack
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002608 argInfo.setUseStackSlot();
2609 }
2610 } else if (isFPArg) {
2611 // Get the outgoing arg reg to see if there is one.
2612 regNumForArg = regInfo.regNumForFPArg(regType, false, false,
2613 argNo, regClassIDOfArgReg);
2614 if (regNumForArg == regInfo.getInvalidRegNum())
2615 argInfo.setUseStackSlot();
2616 else {
2617 argInfo.setUseFPArgReg();
2618 regNumForArg =regInfo.getUnifiedRegNum(regClassIDOfArgReg,
2619 regNumForArg);
2620 }
2621 } else {
2622 // Get the outgoing arg reg to see if there is one.
2623 regNumForArg = regInfo.regNumForIntArg(false,false,
2624 argNo, regClassIDOfArgReg);
2625 if (regNumForArg == regInfo.getInvalidRegNum())
2626 argInfo.setUseStackSlot();
2627 else {
2628 argInfo.setUseIntArgReg();
2629 regNumForArg =regInfo.getUnifiedRegNum(regClassIDOfArgReg,
2630 regNumForArg);
2631 }
2632 }
2633
2634 //
2635 // Now insert copy instructions to stack slot or arg. register
2636 //
2637 if (argInfo.usesStackSlot()) {
2638 // Get the stack offset for this argument slot.
2639 // FP args on stack are right justified so adjust offset!
2640 // int arguments are also right justified but they are
2641 // always loaded as a full double-word so the offset does
2642 // not need to be adjusted.
2643 int argOffset = frameInfo.getOutgoingArgOffset(MF, argNo);
2644 if (argType->isFloatingPoint()) {
2645 unsigned slotSize = frameInfo.getSizeOfEachArgOnStack();
2646 assert(argSize <= slotSize && "Insufficient slot size!");
2647 argOffset += slotSize - argSize;
2648 }
2649
2650 // Now generate instruction to copy argument to stack
2651 MachineOpCode storeOpCode =
2652 (argType->isFloatingPoint()
2653 ? ((argSize == 4)? V9::STFi : V9::STDFi) : V9::STXi);
2654
2655 M = BuildMI(storeOpCode, 3).addReg(argVal)
2656 .addMReg(regInfo.getStackPointer()).addSImm(argOffset);
2657 mvec.push_back(M);
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002658 }
2659 else if (regNumForArg != regInfo.getInvalidRegNum()) {
2660
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002661 // Create a virtual register to represent the arg reg. Mark
2662 // this vreg as being an implicit operand of the call MI.
2663 TmpInstruction* argVReg =
2664 new TmpInstruction(mcfi, argVal, NULL, "argReg");
2665
2666 callMI->addImplicitRef(argVReg);
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002667
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002668 // Generate the reg-to-reg copy into the outgoing arg reg.
2669 // -- For FP values, create a FMOVS or FMOVD instruction
2670 // -- For non-FP values, create an add-with-0 instruction
2671 if (argType->isFloatingPoint())
2672 M=(BuildMI(argType==Type::FloatTy? V9::FMOVS :V9::FMOVD,2)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002673 .addReg(argVal).addReg(argVReg, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002674 else
2675 M = (BuildMI(ChooseAddInstructionByType(argType), 3)
2676 .addReg(argVal).addSImm((int64_t) 0)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002677 .addReg(argVReg, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002678
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002679 // Mark the operand with the register it should be assigned
2680 M->SetRegForOperand(M->getNumOperands()-1, regNumForArg);
2681 callMI->SetRegForImplicitRef(callMI->getNumImplicitRefs()-1,
2682 regNumForArg);
2683
2684 mvec.push_back(M);
Misha Brukman7b647942003-05-30 20:11:56 +00002685 }
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002686 else
2687 assert(argInfo.getArgCopy() != regInfo.getInvalidRegNum() &&
2688 "Arg. not in stack slot, primary or secondary register?");
Vikram S. Adve242a8082002-05-19 15:25:51 +00002689 }
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002690
2691 // add call instruction and delay slot before copying return value
2692 mvec.push_back(callMI);
2693 mvec.push_back(BuildMI(V9::NOP, 0));
2694
Misha Brukman7b647942003-05-30 20:11:56 +00002695 // Add the return value as an implicit ref. The call operands
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002696 // were added above. Also, add code to copy out the return value.
2697 // This is always register-to-register for int or FP return values.
2698 //
2699 if (callInstr->getType() != Type::VoidTy) {
2700 // Get the return value reg.
2701 const Type* retType = callInstr->getType();
2702
2703 int regNum = (retType->isFloatingPoint()
Brian Gaekee3d68072004-02-25 18:44:15 +00002704 ? (unsigned) SparcV9FloatRegClass::f0
2705 : (unsigned) SparcV9IntRegClass::o0);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002706 unsigned regClassID = regInfo.getRegClassIDOfType(retType);
2707 regNum = regInfo.getUnifiedRegNum(regClassID, regNum);
2708
2709 // Create a virtual register to represent it and mark
2710 // this vreg as being an implicit operand of the call MI
2711 TmpInstruction* retVReg =
2712 new TmpInstruction(mcfi, callInstr, NULL, "argReg");
2713
2714 callMI->addImplicitRef(retVReg, /*isDef*/ true);
2715
2716 // Generate the reg-to-reg copy from the return value reg.
2717 // -- For FP values, create a FMOVS or FMOVD instruction
2718 // -- For non-FP values, create an add-with-0 instruction
2719 if (retType->isFloatingPoint())
2720 M = (BuildMI(retType==Type::FloatTy? V9::FMOVS : V9::FMOVD, 2)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002721 .addReg(retVReg).addReg(callInstr, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002722 else
2723 M = (BuildMI(ChooseAddInstructionByType(retType), 3)
2724 .addReg(retVReg).addSImm((int64_t) 0)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002725 .addReg(callInstr, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002726
2727 // Mark the operand with the register it should be assigned
2728 // Also mark the implicit ref of the call defining this operand
2729 M->SetRegForOperand(0, regNum);
2730 callMI->SetRegForImplicitRef(callMI->getNumImplicitRefs()-1,regNum);
2731
2732 mvec.push_back(M);
2733 }
2734
Misha Brukman7b647942003-05-30 20:11:56 +00002735 // For the CALL instruction, the ret. addr. reg. is also implicit
2736 if (isa<Function>(callee))
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002737 callMI->addImplicitRef(retAddrReg, /*isDef*/ true);
2738
2739 MF.getInfo()->popAllTempValues(); // free temps used for this inst
Misha Brukman7b647942003-05-30 20:11:56 +00002740 }
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002741
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002742 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002743 }
Vikram S. Adve242a8082002-05-19 15:25:51 +00002744
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002745 case 62: // reg: Shl(reg, reg)
Vikram S. Adve242a8082002-05-19 15:25:51 +00002746 {
2747 Value* argVal1 = subtreeRoot->leftChild()->getValue();
2748 Value* argVal2 = subtreeRoot->rightChild()->getValue();
2749 Instruction* shlInstr = subtreeRoot->getInstruction();
2750
2751 const Type* opType = argVal1->getType();
Chris Lattner0c4e8862002-09-03 01:08:28 +00002752 assert((opType->isInteger() || isa<PointerType>(opType)) &&
2753 "Shl unsupported for other types");
Vikram S. Advee895a742003-08-06 18:48:40 +00002754 unsigned opSize = target.getTargetData().getTypeSize(opType);
Vikram S. Adve242a8082002-05-19 15:25:51 +00002755
2756 CreateShiftInstructions(target, shlInstr->getParent()->getParent(),
Vikram S. Advee895a742003-08-06 18:48:40 +00002757 (opSize > 4)? V9::SLLXr6:V9::SLLr5,
Vikram S. Adve242a8082002-05-19 15:25:51 +00002758 argVal1, argVal2, 0, shlInstr, mvec,
2759 MachineCodeForInstruction::get(shlInstr));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002760 break;
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00002761 }
2762
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002763 case 63: // reg: Shr(reg, reg)
Misha Brukman7b647942003-05-30 20:11:56 +00002764 {
2765 const Type* opType = subtreeRoot->leftChild()->getValue()->getType();
Chris Lattner0c4e8862002-09-03 01:08:28 +00002766 assert((opType->isInteger() || isa<PointerType>(opType)) &&
2767 "Shr unsupported for other types");
Vikram S. Advee895a742003-08-06 18:48:40 +00002768 unsigned opSize = target.getTargetData().getTypeSize(opType);
Chris Lattner54e898e2003-01-15 19:23:34 +00002769 Add3OperandInstr(opType->isSigned()
Vikram S. Advee895a742003-08-06 18:48:40 +00002770 ? (opSize > 4? V9::SRAXr6 : V9::SRAr5)
2771 : (opSize > 4? V9::SRLXr6 : V9::SRLr5),
Chris Lattner54e898e2003-01-15 19:23:34 +00002772 subtreeRoot, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002773 break;
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00002774 }
2775
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002776 case 64: // reg: Phi(reg,reg)
2777 break; // don't forward the value
Vikram S. Adve74825322002-03-18 03:15:35 +00002778
Vikram S. Adve40dee512003-10-21 11:25:09 +00002779 case 65: // reg: VANext(reg): the va_next(va_list, type) instruction
2780 { // Increment the va_list pointer register according to the type.
2781 // All LLVM argument types are <= 64 bits, so use one doubleword.
2782 Instruction* vaNextI = subtreeRoot->getInstruction();
2783 assert(target.getTargetData().getTypeSize(vaNextI->getType()) <= 8 &&
2784 "We assumed that all LLVM parameter types <= 8 bytes!");
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002785 int argSize = target.getFrameInfo().getSizeOfEachArgOnStack();
Vikram S. Adve40dee512003-10-21 11:25:09 +00002786 mvec.push_back(BuildMI(V9::ADDi, 3).addReg(vaNextI->getOperand(0)).
2787 addSImm(argSize).addRegDef(vaNextI));
Vikram S. Adve472c3042003-10-21 12:28:27 +00002788 break;
Vikram S. Adve40dee512003-10-21 11:25:09 +00002789 }
2790
2791 case 66: // reg: VAArg (reg): the va_arg instruction
2792 { // Load argument from stack using current va_list pointer value.
2793 // Use 64-bit load for all non-FP args, and LDDF or double for FP.
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002794 Instruction* vaArgI = subtreeRoot->getInstruction();
Vikram S. Adve40dee512003-10-21 11:25:09 +00002795 MachineOpCode loadOp = (vaArgI->getType()->isFloatingPoint()
2796 ? (vaArgI->getType() == Type::FloatTy
2797 ? V9::LDFi : V9::LDDFi)
2798 : V9::LDXi);
Vikram S. Adve9d275142003-08-12 03:04:05 +00002799 mvec.push_back(BuildMI(loadOp, 3).addReg(vaArgI->getOperand(0)).
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002800 addSImm(0).addRegDef(vaArgI));
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002801 break;
2802 }
2803
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002804 case 71: // reg: VReg
2805 case 72: // reg: Constant
2806 break; // don't forward the value
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002807
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002808 default:
2809 assert(0 && "Unrecognized BURG rule");
2810 break;
2811 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00002812 }
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002813
Misha Brukman7b647942003-05-30 20:11:56 +00002814 if (forwardOperandNum >= 0) {
2815 // We did not generate a machine instruction but need to use operand.
2816 // If user is in the same tree, replace Value in its machine operand.
2817 // If not, insert a copy instruction which should get coalesced away
2818 // by register allocation.
2819 if (subtreeRoot->parent() != NULL)
2820 ForwardOperand(subtreeRoot, subtreeRoot->parent(), forwardOperandNum);
2821 else {
2822 std::vector<MachineInstr*> minstrVec;
2823 Instruction* instr = subtreeRoot->getInstruction();
2824 target.getInstrInfo().
2825 CreateCopyInstructionsByType(target,
2826 instr->getParent()->getParent(),
2827 instr->getOperand(forwardOperandNum),
2828 instr, minstrVec,
2829 MachineCodeForInstruction::get(instr));
2830 assert(minstrVec.size() > 0);
2831 mvec.insert(mvec.end(), minstrVec.begin(), minstrVec.end());
Chris Lattner20b1ea02001-09-14 03:47:57 +00002832 }
Misha Brukman7b647942003-05-30 20:11:56 +00002833 }
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002834
Misha Brukman7b647942003-05-30 20:11:56 +00002835 if (maskUnsignedResult) {
2836 // If result is unsigned and smaller than int reg size,
2837 // we need to clear high bits of result value.
2838 assert(forwardOperandNum < 0 && "Need mask but no instruction generated");
2839 Instruction* dest = subtreeRoot->getInstruction();
2840 if (dest->getType()->isUnsigned()) {
2841 unsigned destSize=target.getTargetData().getTypeSize(dest->getType());
2842 if (destSize <= 4) {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002843 // Mask high 64 - N bits, where N = 4*destSize.
2844
2845 // Use a TmpInstruction to represent the
Misha Brukman7b647942003-05-30 20:11:56 +00002846 // intermediate result before masking. Since those instructions
2847 // have already been generated, go back and substitute tmpI
2848 // for dest in the result position of each one of them.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002849 //
2850 MachineCodeForInstruction& mcfi = MachineCodeForInstruction::get(dest);
2851 TmpInstruction *tmpI = new TmpInstruction(mcfi, dest->getType(),
2852 dest, NULL, "maskHi");
2853 Value* srlArgToUse = tmpI;
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002854
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002855 unsigned numSubst = 0;
2856 for (unsigned i=0, N=mvec.size(); i < N; ++i) {
Vikram S. Adve97a95bd2003-08-07 15:01:26 +00002857
2858 // Make sure we substitute all occurrences of dest in these instrs.
2859 // Otherwise, we will have bogus code.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002860 bool someArgsWereIgnored = false;
Vikram S. Adve97a95bd2003-08-07 15:01:26 +00002861
2862 // Make sure not to substitute an upwards-exposed use -- that would
2863 // introduce a use of `tmpI' with no preceding def. Therefore,
2864 // substitute a use or def-and-use operand only if a previous def
2865 // operand has already been substituted (i.e., numSusbt > 0).
2866 //
2867 numSubst += mvec[i]->substituteValue(dest, tmpI,
2868 /*defsOnly*/ numSubst == 0,
2869 /*notDefsAndUses*/ numSubst > 0,
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002870 someArgsWereIgnored);
2871 assert(!someArgsWereIgnored &&
2872 "Operand `dest' exists but not replaced: probably bogus!");
2873 }
2874 assert(numSubst > 0 && "Operand `dest' not replaced: probably bogus!");
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002875
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002876 // Left shift 32-N if size (N) is less than 32 bits.
Misha Brukman452db672003-09-23 17:28:11 +00002877 // Use another tmp. virtual register to represent this result.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002878 if (destSize < 4) {
2879 srlArgToUse = new TmpInstruction(mcfi, dest->getType(),
2880 tmpI, NULL, "maskHi2");
2881 mvec.push_back(BuildMI(V9::SLLXi6, 3).addReg(tmpI)
2882 .addZImm(8*(4-destSize))
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002883 .addReg(srlArgToUse, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002884 }
2885
2886 // Logical right shift 32-N to get zero extension in top 64-N bits.
2887 mvec.push_back(BuildMI(V9::SRLi5, 3).addReg(srlArgToUse)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002888 .addZImm(8*(4-destSize))
2889 .addReg(dest, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002890
Misha Brukman7b647942003-05-30 20:11:56 +00002891 } else if (destSize < 8) {
2892 assert(0 && "Unsupported type size: 32 < size < 64 bits");
2893 }
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002894 }
Misha Brukman7b647942003-05-30 20:11:56 +00002895 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00002896}
Brian Gaeked0fde302003-11-11 22:41:34 +00002897
2898}