blob: 480af95aada4090fcffef0e1f0fc3aa308153f11 [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. Advefd3900a2002-03-24 03:33:02 +00001159 assert(result && result->getParent() &&
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001160 "Result value is not part of a function?");
1161 Function *F = result->getParent()->getParent();
Misha Brukmanfce11432002-10-28 00:28:31 +00001162 MachineFunction &mcInfo = MachineFunction::get(F);
Vikram S. Adve74825322002-03-18 03:15:35 +00001163
Chris Lattner6b835362004-03-19 04:21:43 +00001164 // If the alloca is of zero bytes (which is perfectly legal) we bump it up to
1165 // one byte. This is unnecessary, but I really don't want to break any
1166 // fragile logic in this code. FIXME.
1167 if (tsize == 0)
1168 tsize = 1;
1169
1170
Vikram S. Adveea28dd32003-07-02 06:59:22 +00001171 // Put the variable in the dynamically sized area of the frame if either:
1172 // (a) The offset is too large to use as an immediate in load/stores
1173 // (check LDX because all load/stores have the same-size immed. field).
1174 // (b) The object is "large", so it could cause many other locals,
1175 // spills, and temporaries to have large offsets.
1176 // NOTE: We use LARGE = 8 * argSlotSize = 64 bytes.
1177 // You've gotta love having only 13 bits for constant offset values :-|.
1178 //
1179 unsigned paddedSize;
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001180 int offsetFromFP = mcInfo.getInfo()->computeOffsetforLocalVar(result,
Vikram S. Adveea28dd32003-07-02 06:59:22 +00001181 paddedSize,
1182 tsize * numElements);
1183
1184 if (((int)paddedSize) > 8 * target.getFrameInfo().getSizeOfEachArgOnStack() ||
1185 ! target.getInstrInfo().constantFitsInImmedField(V9::LDXi,offsetFromFP)) {
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001186 CreateCodeForVariableSizeAlloca(target, result, tsize,
1187 ConstantSInt::get(Type::IntTy,numElements),
1188 getMvec);
1189 return;
1190 }
Vikram S. Adve74825322002-03-18 03:15:35 +00001191
1192 // else offset fits in immediate field so go ahead and allocate it.
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001193 offsetFromFP = mcInfo.getInfo()->allocateLocalVar(result, tsize *numElements);
Vikram S. Adve74825322002-03-18 03:15:35 +00001194
1195 // Create a temporary Value to hold the constant offset.
1196 // This is needed because it may not fit in the immediate field.
1197 ConstantSInt* offsetVal = ConstantSInt::get(Type::IntTy, offsetFromFP);
1198
1199 // Instruction 1: add %fp, offsetFromFP -> result
Chris Lattner54e898e2003-01-15 19:23:34 +00001200 unsigned FPReg = target.getRegInfo().getFramePointer();
Misha Brukman91aee472003-05-27 22:37:00 +00001201 getMvec.push_back(BuildMI(V9::ADDr, 3).addMReg(FPReg).addReg(offsetVal)
Misha Brukmana98cd452003-05-20 20:32:24 +00001202 .addRegDef(result));
Vikram S. Adve74825322002-03-18 03:15:35 +00001203}
1204
1205
Chris Lattner20b1ea02001-09-14 03:47:57 +00001206//------------------------------------------------------------------------
1207// Function SetOperandsForMemInstr
1208//
1209// Choose addressing mode for the given load or store instruction.
1210// Use [reg+reg] if it is an indexed reference, and the index offset is
1211// not a constant or if it cannot fit in the offset field.
1212// Use [reg+offset] in all other cases.
1213//
1214// This assumes that all array refs are "lowered" to one of these forms:
1215// %x = load (subarray*) ptr, constant ; single constant offset
1216// %x = load (subarray*) ptr, offsetVal ; single non-constant offset
1217// Generally, this should happen via strength reduction + LICM.
1218// Also, strength reduction should take care of using the same register for
1219// the loop index variable and an array index, when that is profitable.
1220//------------------------------------------------------------------------
1221
1222static void
Chris Lattner54e898e2003-01-15 19:23:34 +00001223SetOperandsForMemInstr(unsigned Opcode,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001224 std::vector<MachineInstr*>& mvec,
Vikram S. Adveefc94332002-10-14 16:32:24 +00001225 InstructionNode* vmInstrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001226 const TargetMachine& target)
Chris Lattner20b1ea02001-09-14 03:47:57 +00001227{
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001228 Instruction* memInst = vmInstrNode->getInstruction();
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001229 // Index vector, ptr value, and flag if all indices are const.
Misha Brukmanee563cb2003-05-21 17:59:06 +00001230 std::vector<Value*> idxVec;
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001231 bool allConstantIndices;
1232 Value* ptrVal = GetMemInstArgs(vmInstrNode, idxVec, allConstantIndices);
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001233
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001234 // Now create the appropriate operands for the machine instruction.
1235 // First, initialize so we default to storing the offset in a register.
Chris Lattner8e5c0b42001-11-07 14:01:59 +00001236 int64_t smallConstOffset = 0;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001237 Value* valueForRegOffset = NULL;
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001238 MachineOperand::MachineOperandType offsetOpType =
1239 MachineOperand::MO_VirtualRegister;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001240
Vikram S. Adve74825322002-03-18 03:15:35 +00001241 // Check if there is an index vector and if so, compute the
1242 // right offset for structures and for arrays
Chris Lattner20b1ea02001-09-14 03:47:57 +00001243 //
Misha Brukman7b647942003-05-30 20:11:56 +00001244 if (!idxVec.empty()) {
1245 const PointerType* ptrType = cast<PointerType>(ptrVal->getType());
Chris Lattner20b1ea02001-09-14 03:47:57 +00001246
Misha Brukman7b647942003-05-30 20:11:56 +00001247 // If all indices are constant, compute the combined offset directly.
1248 if (allConstantIndices) {
1249 // Compute the offset value using the index vector. Create a
1250 // virtual reg. for it since it may not fit in the immed field.
1251 uint64_t offset = target.getTargetData().getIndexedOffset(ptrType,idxVec);
1252 valueForRegOffset = ConstantSInt::get(Type::LongTy, offset);
1253 } else {
1254 // There is at least one non-constant offset. Therefore, this must
1255 // be an array ref, and must have been lowered to a single non-zero
1256 // offset. (An extra leading zero offset, if any, can be ignored.)
1257 // Generate code sequence to compute address from index.
1258 //
1259 bool firstIdxIsZero = IsZero(idxVec[0]);
1260 assert(idxVec.size() == 1U + firstIdxIsZero
1261 && "Array refs must be lowered before Instruction Selection");
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001262
Misha Brukman7b647942003-05-30 20:11:56 +00001263 Value* idxVal = idxVec[firstIdxIsZero];
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001264
Misha Brukman7b647942003-05-30 20:11:56 +00001265 std::vector<MachineInstr*> mulVec;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001266 Instruction* addr =
1267 new TmpInstruction(MachineCodeForInstruction::get(memInst),
1268 Type::ULongTy, memInst);
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001269
Misha Brukman7b647942003-05-30 20:11:56 +00001270 // Get the array type indexed by idxVal, and compute its element size.
1271 // The call to getTypeSize() will fail if size is not constant.
1272 const Type* vecType = (firstIdxIsZero
1273 ? GetElementPtrInst::getIndexedType(ptrType,
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001274 std::vector<Value*>(1U, idxVec[0]),
1275 /*AllowCompositeLeaf*/ true)
1276 : ptrType);
Misha Brukman7b647942003-05-30 20:11:56 +00001277 const Type* eltType = cast<SequentialType>(vecType)->getElementType();
1278 ConstantUInt* eltSizeVal = ConstantUInt::get(Type::ULongTy,
1279 target.getTargetData().getTypeSize(eltType));
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001280
Misha Brukman7b647942003-05-30 20:11:56 +00001281 // CreateMulInstruction() folds constants intelligently enough.
1282 CreateMulInstruction(target, memInst->getParent()->getParent(),
1283 idxVal, /* lval, not likely to be const*/
1284 eltSizeVal, /* rval, likely to be constant */
1285 addr, /* result */
1286 mulVec, MachineCodeForInstruction::get(memInst),
Chris Lattner07239692004-02-29 05:57:59 +00001287 -1);
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001288
Misha Brukman7b647942003-05-30 20:11:56 +00001289 assert(mulVec.size() > 0 && "No multiply code created?");
1290 mvec.insert(mvec.end(), mulVec.begin(), mulVec.end());
1291
1292 valueForRegOffset = addr;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001293 }
Misha Brukman7b647942003-05-30 20:11:56 +00001294 } else {
1295 offsetOpType = MachineOperand::MO_SignExtendedImmed;
1296 smallConstOffset = 0;
1297 }
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001298
Vikram S. Advea10d1a72002-03-31 19:07:35 +00001299 // For STORE:
1300 // Operand 0 is value, operand 1 is ptr, operand 2 is offset
1301 // For LOAD or GET_ELEMENT_PTR,
1302 // Operand 0 is ptr, operand 1 is offset, operand 2 is result.
1303 //
1304 unsigned offsetOpNum, ptrOpNum;
Chris Lattner54e898e2003-01-15 19:23:34 +00001305 MachineInstr *MI;
1306 if (memInst->getOpcode() == Instruction::Store) {
Misha Brukman7b647942003-05-30 20:11:56 +00001307 if (offsetOpType == MachineOperand::MO_VirtualRegister) {
Chris Lattner54e898e2003-01-15 19:23:34 +00001308 MI = BuildMI(Opcode, 3).addReg(vmInstrNode->leftChild()->getValue())
1309 .addReg(ptrVal).addReg(valueForRegOffset);
Misha Brukman7b647942003-05-30 20:11:56 +00001310 } else {
Misha Brukman91aee472003-05-27 22:37:00 +00001311 Opcode = convertOpcodeFromRegToImm(Opcode);
Chris Lattner54e898e2003-01-15 19:23:34 +00001312 MI = BuildMI(Opcode, 3).addReg(vmInstrNode->leftChild()->getValue())
1313 .addReg(ptrVal).addSImm(smallConstOffset);
Misha Brukman91aee472003-05-27 22:37:00 +00001314 }
Chris Lattner54e898e2003-01-15 19:23:34 +00001315 } else {
Misha Brukman7b647942003-05-30 20:11:56 +00001316 if (offsetOpType == MachineOperand::MO_VirtualRegister) {
Chris Lattner54e898e2003-01-15 19:23:34 +00001317 MI = BuildMI(Opcode, 3).addReg(ptrVal).addReg(valueForRegOffset)
1318 .addRegDef(memInst);
Misha Brukman7b647942003-05-30 20:11:56 +00001319 } else {
Misha Brukman91aee472003-05-27 22:37:00 +00001320 Opcode = convertOpcodeFromRegToImm(Opcode);
Chris Lattner54e898e2003-01-15 19:23:34 +00001321 MI = BuildMI(Opcode, 3).addReg(ptrVal).addSImm(smallConstOffset)
1322 .addRegDef(memInst);
Misha Brukman91aee472003-05-27 22:37:00 +00001323 }
Chris Lattner54e898e2003-01-15 19:23:34 +00001324 }
1325 mvec.push_back(MI);
Chris Lattner20b1ea02001-09-14 03:47:57 +00001326}
1327
1328
Chris Lattner20b1ea02001-09-14 03:47:57 +00001329//
1330// Substitute operand `operandNum' of the instruction in node `treeNode'
Vikram S. Advec025fc12001-10-14 23:28:43 +00001331// in place of the use(s) of that instruction in node `parent'.
1332// Check both explicit and implicit operands!
Vikram S. Adve74825322002-03-18 03:15:35 +00001333// Also make sure to skip over a parent who:
1334// (1) is a list node in the Burg tree, or
1335// (2) itself had its results forwarded to its parent
Chris Lattner20b1ea02001-09-14 03:47:57 +00001336//
1337static void
1338ForwardOperand(InstructionNode* treeNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001339 InstrTreeNode* parent,
1340 int operandNum)
Chris Lattner20b1ea02001-09-14 03:47:57 +00001341{
Vikram S. Adve243dd452001-09-18 13:03:13 +00001342 assert(treeNode && parent && "Invalid invocation of ForwardOperand");
1343
Chris Lattner20b1ea02001-09-14 03:47:57 +00001344 Instruction* unusedOp = treeNode->getInstruction();
1345 Value* fwdOp = unusedOp->getOperand(operandNum);
Vikram S. Adve243dd452001-09-18 13:03:13 +00001346
1347 // The parent itself may be a list node, so find the real parent instruction
1348 while (parent->getNodeType() != InstrTreeNode::NTInstructionNode)
1349 {
1350 parent = parent->parent();
1351 assert(parent && "ERROR: Non-instruction node has no parent in tree.");
1352 }
1353 InstructionNode* parentInstrNode = (InstructionNode*) parent;
1354
1355 Instruction* userInstr = parentInstrNode->getInstruction();
Chris Lattner9c461082002-02-03 07:50:56 +00001356 MachineCodeForInstruction &mvec = MachineCodeForInstruction::get(userInstr);
Vikram S. Adve74825322002-03-18 03:15:35 +00001357
1358 // The parent's mvec would be empty if it was itself forwarded.
1359 // Recursively call ForwardOperand in that case...
1360 //
Misha Brukman7b647942003-05-30 20:11:56 +00001361 if (mvec.size() == 0) {
1362 assert(parent->parent() != NULL &&
1363 "Parent could not have been forwarded, yet has no instructions?");
1364 ForwardOperand(treeNode, parent->parent(), operandNum);
1365 } else {
1366 for (unsigned i=0, N=mvec.size(); i < N; i++) {
1367 MachineInstr* minstr = mvec[i];
1368 for (unsigned i=0, numOps=minstr->getNumOperands(); i < numOps; ++i) {
1369 const MachineOperand& mop = minstr->getOperand(i);
1370 if (mop.getType() == MachineOperand::MO_VirtualRegister &&
1371 mop.getVRegValue() == unusedOp)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001372 {
Misha Brukman7b647942003-05-30 20:11:56 +00001373 minstr->SetMachineOperandVal(i, MachineOperand::MO_VirtualRegister,
1374 fwdOp);
1375 }
1376 }
Vikram S. Adve74825322002-03-18 03:15:35 +00001377
Misha Brukman7b647942003-05-30 20:11:56 +00001378 for (unsigned i=0,numOps=minstr->getNumImplicitRefs(); i<numOps; ++i)
Chris Lattner907b7dc2003-08-05 16:59:24 +00001379 if (minstr->getImplicitRef(i) == unusedOp)
1380 minstr->setImplicitRef(i, fwdOp);
Chris Lattner20b1ea02001-09-14 03:47:57 +00001381 }
Misha Brukman7b647942003-05-30 20:11:56 +00001382 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001383}
1384
1385
Vikram S. Adve242a8082002-05-19 15:25:51 +00001386inline bool
1387AllUsesAreBranches(const Instruction* setccI)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001388{
Vikram S. Adve242a8082002-05-19 15:25:51 +00001389 for (Value::use_const_iterator UI=setccI->use_begin(), UE=setccI->use_end();
1390 UI != UE; ++UI)
1391 if (! isa<TmpInstruction>(*UI) // ignore tmp instructions here
1392 && cast<Instruction>(*UI)->getOpcode() != Instruction::Br)
1393 return false;
1394 return true;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001395}
1396
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001397// Generate code for any intrinsic that needs a special code sequence
1398// instead of a regular call. If not that kind of intrinsic, do nothing.
1399// Returns true if code was generated, otherwise false.
1400//
Chris Lattner37b18262003-12-28 09:46:33 +00001401static bool CodeGenIntrinsic(Intrinsic::ID iid, CallInst &callInstr,
1402 TargetMachine &target,
1403 std::vector<MachineInstr*>& mvec) {
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001404 switch (iid) {
Chris Lattner37b18262003-12-28 09:46:33 +00001405 default:
1406 assert(0 && "Unknown intrinsic function call should have been lowered!");
Chris Lattner317201d2004-03-13 00:24:00 +00001407 case Intrinsic::vastart: {
Vikram S. Adve40dee512003-10-21 11:25:09 +00001408 // Get the address of the first incoming vararg argument on the stack
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001409 bool ignore;
1410 Function* func = cast<Function>(callInstr.getParent()->getParent());
1411 int numFixedArgs = func->getFunctionType()->getNumParams();
1412 int fpReg = target.getFrameInfo().getIncomingArgBaseRegNum();
1413 int argSize = target.getFrameInfo().getSizeOfEachArgOnStack();
1414 int firstVarArgOff = numFixedArgs * argSize + target.getFrameInfo().
1415 getFirstIncomingArgOffset(MachineFunction::get(func), ignore);
Misha Brukman91aee472003-05-27 22:37:00 +00001416 mvec.push_back(BuildMI(V9::ADDi, 3).addMReg(fpReg).addSImm(firstVarArgOff).
Vikram S. Adve40dee512003-10-21 11:25:09 +00001417 addRegDef(&callInstr));
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001418 return true;
1419 }
1420
Chris Lattner317201d2004-03-13 00:24:00 +00001421 case Intrinsic::vaend:
Brian Gaekee3d68072004-02-25 18:44:15 +00001422 return true; // no-op on SparcV9
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001423
Chris Lattner317201d2004-03-13 00:24:00 +00001424 case Intrinsic::vacopy:
Vikram S. Adve40dee512003-10-21 11:25:09 +00001425 // Simple copy of current va_list (arg1) to new va_list (result)
Misha Brukman91aee472003-05-27 22:37:00 +00001426 mvec.push_back(BuildMI(V9::ORr, 3).
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001427 addMReg(target.getRegInfo().getZeroRegNum()).
Vikram S. Adve40dee512003-10-21 11:25:09 +00001428 addReg(callInstr.getOperand(1)).
1429 addRegDef(&callInstr));
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001430 return true;
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001431 }
1432}
1433
Vikram S. Advefb361122001-10-22 13:36:31 +00001434//******************* Externally Visible Functions *************************/
1435
Vikram S. Advefb361122001-10-22 13:36:31 +00001436//------------------------------------------------------------------------
1437// External Function: ThisIsAChainRule
1438//
1439// Purpose:
1440// Check if a given BURG rule is a chain rule.
1441//------------------------------------------------------------------------
1442
1443extern bool
1444ThisIsAChainRule(int eruleno)
1445{
1446 switch(eruleno)
1447 {
1448 case 111: // stmt: reg
Vikram S. Advefb361122001-10-22 13:36:31 +00001449 case 123:
1450 case 124:
1451 case 125:
1452 case 126:
1453 case 127:
1454 case 128:
1455 case 129:
1456 case 130:
1457 case 131:
1458 case 132:
1459 case 133:
1460 case 155:
1461 case 221:
1462 case 222:
1463 case 241:
1464 case 242:
1465 case 243:
1466 case 244:
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001467 case 245:
Vikram S. Adve85e1e9c2002-04-01 20:28:48 +00001468 case 321:
Vikram S. Advefb361122001-10-22 13:36:31 +00001469 return true; break;
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001470
Vikram S. Advefb361122001-10-22 13:36:31 +00001471 default:
1472 return false; break;
1473 }
1474}
Chris Lattner20b1ea02001-09-14 03:47:57 +00001475
1476
1477//------------------------------------------------------------------------
1478// External Function: GetInstructionsByRule
1479//
1480// Purpose:
1481// Choose machine instructions for the SPARC according to the
1482// patterns chosen by the BURG-generated parser.
1483//------------------------------------------------------------------------
1484
Vikram S. Adve74825322002-03-18 03:15:35 +00001485void
Chris Lattner20b1ea02001-09-14 03:47:57 +00001486GetInstructionsByRule(InstructionNode* subtreeRoot,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001487 int ruleForNode,
1488 short* nts,
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001489 TargetMachine &target,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001490 std::vector<MachineInstr*>& mvec)
Chris Lattner20b1ea02001-09-14 03:47:57 +00001491{
Chris Lattner20b1ea02001-09-14 03:47:57 +00001492 bool checkCast = false; // initialize here to use fall-through
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00001493 bool maskUnsignedResult = false;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001494 int nextRule;
1495 int forwardOperandNum = -1;
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001496 unsigned allocaSize = 0;
Vikram S. Adve74825322002-03-18 03:15:35 +00001497 MachineInstr* M, *M2;
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001498 unsigned L;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001499 bool foldCase = false;
Vikram S. Adve74825322002-03-18 03:15:35 +00001500
1501 mvec.clear();
Chris Lattner20b1ea02001-09-14 03:47:57 +00001502
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001503 // If the code for this instruction was folded into the parent (user),
1504 // then do nothing!
1505 if (subtreeRoot->isFoldedIntoParent())
1506 return;
1507
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001508 //
1509 // Let's check for chain rules outside the switch so that we don't have
1510 // to duplicate the list of chain rule production numbers here again
1511 //
Misha Brukmanb461d372003-10-23 16:48:30 +00001512 if (ThisIsAChainRule(ruleForNode)) {
1513 // Chain rules have a single nonterminal on the RHS.
1514 // Get the rule that matches the RHS non-terminal and use that instead.
1515 //
1516 assert(nts[0] && ! nts[1]
1517 && "A chain rule should have only one RHS non-terminal!");
1518 nextRule = burm_rule(subtreeRoot->state, nts[0]);
1519 nts = burm_nts[nextRule];
1520 GetInstructionsByRule(subtreeRoot, nextRule, nts, target, mvec);
1521 } else {
1522 switch(ruleForNode) {
1523 case 1: // stmt: Ret
1524 case 2: // stmt: RetValue(reg)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001525 { // NOTE: Prepass of register allocation is responsible
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001526 // for moving return value to appropriate register.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001527 // Copy the return value to the required return register.
1528 // Mark the return Value as an implicit ref of the RET instr..
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001529 // Mark the return-address register as a hidden virtual reg.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001530 // Finally put a NOP in the delay slot.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001531 ReturnInst *returnInstr=cast<ReturnInst>(subtreeRoot->getInstruction());
1532 Value* retVal = returnInstr->getReturnValue();
1533 MachineCodeForInstruction& mcfi =
1534 MachineCodeForInstruction::get(returnInstr);
1535
1536 // Create a hidden virtual reg to represent the return address register
1537 // used by the machine instruction but not represented in LLVM.
1538 //
1539 Instruction* returnAddrTmp = new TmpInstruction(mcfi, returnInstr);
1540
1541 MachineInstr* retMI =
1542 BuildMI(V9::JMPLRETi, 3).addReg(returnAddrTmp).addSImm(8)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001543 .addMReg(target.getRegInfo().getZeroRegNum(), MachineOperand::Def);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001544
Vikram S. Advee9a567c2003-07-25 21:08:58 +00001545 // If there is a value to return, we need to:
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001546 // (a) Sign-extend the value if it is smaller than 8 bytes (reg size)
1547 // (b) Insert a copy to copy the return value to the appropriate reg.
1548 // -- For FP values, create a FMOVS or FMOVD instruction
1549 // -- For non-FP values, create an add-with-0 instruction
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001550 //
1551 if (retVal != NULL) {
Brian Gaekee3d68072004-02-25 18:44:15 +00001552 const SparcV9RegInfo& regInfo =
1553 (SparcV9RegInfo&) target.getRegInfo();
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001554 const Type* retType = retVal->getType();
1555 unsigned regClassID = regInfo.getRegClassIDOfType(retType);
1556 unsigned retRegNum = (retType->isFloatingPoint()
Brian Gaekee3d68072004-02-25 18:44:15 +00001557 ? (unsigned) SparcV9FloatRegClass::f0
1558 : (unsigned) SparcV9IntRegClass::i0);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001559 retRegNum = regInfo.getUnifiedRegNum(regClassID, retRegNum);
1560
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001561 // () Insert sign-extension instructions for small signed values.
1562 //
1563 Value* retValToUse = retVal;
1564 if (retType->isIntegral() && retType->isSigned()) {
1565 unsigned retSize = target.getTargetData().getTypeSize(retType);
1566 if (retSize <= 4) {
1567 // create a temporary virtual reg. to hold the sign-extension
1568 retValToUse = new TmpInstruction(mcfi, retVal);
1569
1570 // sign-extend retVal and put the result in the temporary reg.
1571 target.getInstrInfo().CreateSignExtensionInstructions
1572 (target, returnInstr->getParent()->getParent(),
1573 retVal, retValToUse, 8*retSize, mvec, mcfi);
1574 }
1575 }
1576
1577 // (b) Now, insert a copy to to the appropriate register:
1578 // -- For FP values, create a FMOVS or FMOVD instruction
1579 // -- For non-FP values, create an add-with-0 instruction
1580 //
1581 // First, create a virtual register to represent the register and
1582 // mark this vreg as being an implicit operand of the ret MI.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001583 TmpInstruction* retVReg =
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001584 new TmpInstruction(mcfi, retValToUse, NULL, "argReg");
1585
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001586 retMI->addImplicitRef(retVReg);
Vikram S. Advee9a567c2003-07-25 21:08:58 +00001587
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001588 if (retType->isFloatingPoint())
1589 M = (BuildMI(retType==Type::FloatTy? V9::FMOVS : V9::FMOVD, 2)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001590 .addReg(retValToUse).addReg(retVReg, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001591 else
1592 M = (BuildMI(ChooseAddInstructionByType(retType), 3)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001593 .addReg(retValToUse).addSImm((int64_t) 0)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001594 .addReg(retVReg, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001595
1596 // Mark the operand with the register it should be assigned
1597 M->SetRegForOperand(M->getNumOperands()-1, retRegNum);
1598 retMI->SetRegForImplicitRef(retMI->getNumImplicitRefs()-1, retRegNum);
1599
1600 mvec.push_back(M);
1601 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001602
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001603 // Now insert the RET instruction and a NOP for the delay slot
1604 mvec.push_back(retMI);
Misha Brukmana98cd452003-05-20 20:32:24 +00001605 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001606
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001607 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001608 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001609
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001610 case 3: // stmt: Store(reg,reg)
1611 case 4: // stmt: Store(reg,ptrreg)
1612 SetOperandsForMemInstr(ChooseStoreInstruction(
Chris Lattner54e898e2003-01-15 19:23:34 +00001613 subtreeRoot->leftChild()->getValue()->getType()),
1614 mvec, subtreeRoot, target);
Misha Brukmanb3fabe02003-05-31 06:22:37 +00001615 break;
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001616
1617 case 5: // stmt: BrUncond
1618 {
1619 BranchInst *BI = cast<BranchInst>(subtreeRoot->getInstruction());
1620 mvec.push_back(BuildMI(V9::BA, 1).addPCDisp(BI->getSuccessor(0)));
1621
1622 // delay slot
1623 mvec.push_back(BuildMI(V9::NOP, 0));
1624 break;
1625 }
1626
1627 case 206: // stmt: BrCond(setCCconst)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001628 { // setCCconst => boolean was computed with `%b = setCC type reg1 const'
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001629 // If the constant is ZERO, we can use the branch-on-integer-register
1630 // instructions and avoid the SUBcc instruction entirely.
1631 // Otherwise this is just the same as case 5, so just fall through.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001632 //
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001633 InstrTreeNode* constNode = subtreeRoot->leftChild()->rightChild();
1634 assert(constNode &&
1635 constNode->getNodeType() ==InstrTreeNode::NTConstNode);
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001636 Constant *constVal = cast<Constant>(constNode->getValue());
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001637 bool isValidConst;
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001638
Chris Lattner0c4e8862002-09-03 01:08:28 +00001639 if ((constVal->getType()->isInteger()
Chris Lattner9b625032002-05-06 16:15:30 +00001640 || isa<PointerType>(constVal->getType()))
Vikram S. Advee6124d32003-07-29 19:59:23 +00001641 && target.getInstrInfo().ConvertConstantToIntType(target,
1642 constVal, constVal->getType(), isValidConst) == 0
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001643 && isValidConst)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001644 {
1645 // That constant is a zero after all...
1646 // Use the left child of setCC as the first argument!
1647 // Mark the setCC node so that no code is generated for it.
1648 InstructionNode* setCCNode = (InstructionNode*)
1649 subtreeRoot->leftChild();
1650 assert(setCCNode->getOpLabel() == SetCCOp);
1651 setCCNode->markFoldedIntoParent();
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001652
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001653 BranchInst* brInst=cast<BranchInst>(subtreeRoot->getInstruction());
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001654
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001655 M = BuildMI(ChooseBprInstruction(subtreeRoot), 2)
1656 .addReg(setCCNode->leftChild()->getValue())
1657 .addPCDisp(brInst->getSuccessor(0));
1658 mvec.push_back(M);
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001659
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001660 // delay slot
1661 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001662
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001663 // false branch
1664 mvec.push_back(BuildMI(V9::BA, 1)
1665 .addPCDisp(brInst->getSuccessor(1)));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001666
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001667 // delay slot
1668 mvec.push_back(BuildMI(V9::NOP, 0));
1669 break;
1670 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001671 // ELSE FALL THROUGH
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001672 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001673
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001674 case 6: // stmt: BrCond(setCC)
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001675 { // bool => boolean was computed with SetCC.
1676 // The branch to use depends on whether it is FP, signed, or unsigned.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001677 // If it is an integer CC, we also need to find the unique
1678 // TmpInstruction representing that CC.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001679 //
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001680 BranchInst* brInst = cast<BranchInst>(subtreeRoot->getInstruction());
Vikram S. Adve786833a2003-07-06 20:13:59 +00001681 const Type* setCCType;
1682 unsigned Opcode = ChooseBccInstruction(subtreeRoot, setCCType);
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001683 Value* ccValue = GetTmpForCC(subtreeRoot->leftChild()->getValue(),
1684 brInst->getParent()->getParent(),
Vikram S. Adve786833a2003-07-06 20:13:59 +00001685 setCCType,
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001686 MachineCodeForInstruction::get(brInst));
Chris Lattner54e898e2003-01-15 19:23:34 +00001687 M = BuildMI(Opcode, 2).addCCReg(ccValue)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001688 .addPCDisp(brInst->getSuccessor(0));
Vikram S. Adve74825322002-03-18 03:15:35 +00001689 mvec.push_back(M);
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. Adve30a6f492002-08-22 02:56:10 +00001693
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001694 // false branch
Misha Brukmana98cd452003-05-20 20:32:24 +00001695 mvec.push_back(BuildMI(V9::BA, 1).addPCDisp(brInst->getSuccessor(1)));
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001696
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001697 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001698 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001699 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001700 }
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001701
1702 case 208: // stmt: BrCond(boolconst)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001703 {
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001704 // boolconst => boolean is a constant; use BA to first or second label
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001705 Constant* constVal =
1706 cast<Constant>(subtreeRoot->leftChild()->getValue());
1707 unsigned dest = cast<ConstantBool>(constVal)->getValue()? 0 : 1;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001708
Misha Brukmana98cd452003-05-20 20:32:24 +00001709 M = BuildMI(V9::BA, 1).addPCDisp(
Chris Lattner35504202002-04-27 03:14:39 +00001710 cast<BranchInst>(subtreeRoot->getInstruction())->getSuccessor(dest));
Vikram S. Adve74825322002-03-18 03:15:35 +00001711 mvec.push_back(M);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001712
1713 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001714 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001715 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001716 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001717
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001718 case 8: // stmt: BrCond(boolreg)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001719 { // boolreg => boolean is recorded in an integer register.
1720 // Use branch-on-integer-register instruction.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001721 //
Chris Lattner54e898e2003-01-15 19:23:34 +00001722 BranchInst *BI = cast<BranchInst>(subtreeRoot->getInstruction());
Misha Brukmana98cd452003-05-20 20:32:24 +00001723 M = BuildMI(V9::BRNZ, 2).addReg(subtreeRoot->leftChild()->getValue())
Chris Lattner54e898e2003-01-15 19:23:34 +00001724 .addPCDisp(BI->getSuccessor(0));
Vikram S. Adve74825322002-03-18 03:15:35 +00001725 mvec.push_back(M);
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
1730 // false branch
Misha Brukmana98cd452003-05-20 20:32:24 +00001731 mvec.push_back(BuildMI(V9::BA, 1).addPCDisp(BI->getSuccessor(1)));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001732
1733 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001734 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001735 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001736 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001737
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001738 case 9: // stmt: Switch(reg)
1739 assert(0 && "*** SWITCH instruction is not implemented yet.");
1740 break;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001741
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001742 case 10: // reg: VRegList(reg, reg)
1743 assert(0 && "VRegList should never be the topmost non-chain rule");
1744 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001745
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001746 case 21: // bool: Not(bool,reg): Compute with a conditional-move-on-reg
1747 { // First find the unary operand. It may be left or right, usually right.
1748 Instruction* notI = subtreeRoot->getInstruction();
1749 Value* notArg = BinaryOperator::getNotArgument(
1750 cast<BinaryOperator>(subtreeRoot->getInstruction()));
1751 unsigned ZeroReg = target.getRegInfo().getZeroRegNum();
1752
1753 // Unconditionally set register to 0
1754 mvec.push_back(BuildMI(V9::SETHI, 2).addZImm(0).addRegDef(notI));
1755
1756 // Now conditionally move 1 into the register.
1757 // Mark the register as a use (as well as a def) because the old
1758 // value will be retained if the condition is false.
1759 mvec.push_back(BuildMI(V9::MOVRZi, 3).addReg(notArg).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001760 .addReg(notI, MachineOperand::UseAndDef));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001761
1762 break;
1763 }
1764
1765 case 421: // reg: BNot(reg,reg): Compute as reg = reg XOR-NOT 0
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001766 { // First find the unary operand. It may be left or right, usually right.
1767 Value* notArg = BinaryOperator::getNotArgument(
1768 cast<BinaryOperator>(subtreeRoot->getInstruction()));
Chris Lattner00dca912003-01-15 17:47:49 +00001769 unsigned ZeroReg = target.getRegInfo().getZeroRegNum();
Misha Brukman91aee472003-05-27 22:37:00 +00001770 mvec.push_back(BuildMI(V9::XNORr, 3).addReg(notArg).addMReg(ZeroReg)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001771 .addRegDef(subtreeRoot->getValue()));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001772 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001773 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001774
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001775 case 322: // reg: Not(tobool, reg):
1776 // Fold CAST-TO-BOOL with NOT by inverting the sense of cast-to-bool
1777 foldCase = true;
1778 // Just fall through!
1779
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001780 case 22: // reg: ToBoolTy(reg):
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001781 {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001782 Instruction* castI = subtreeRoot->getInstruction();
1783 Value* opVal = subtreeRoot->leftChild()->getValue();
1784 assert(opVal->getType()->isIntegral() ||
1785 isa<PointerType>(opVal->getType()));
1786
1787 // Unconditionally set register to 0
1788 mvec.push_back(BuildMI(V9::SETHI, 2).addZImm(0).addRegDef(castI));
1789
1790 // Now conditionally move 1 into the register.
1791 // Mark the register as a use (as well as a def) because the old
1792 // value will be retained if the condition is false.
1793 MachineOpCode opCode = foldCase? V9::MOVRZi : V9::MOVRNZi;
1794 mvec.push_back(BuildMI(opCode, 3).addReg(opVal).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001795 .addReg(castI, MachineOperand::UseAndDef));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001796
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001797 break;
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001798 }
1799
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001800 case 23: // reg: ToUByteTy(reg)
1801 case 24: // reg: ToSByteTy(reg)
1802 case 25: // reg: ToUShortTy(reg)
1803 case 26: // reg: ToShortTy(reg)
1804 case 27: // reg: ToUIntTy(reg)
1805 case 28: // reg: ToIntTy(reg)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001806 case 29: // reg: ToULongTy(reg)
1807 case 30: // reg: ToLongTy(reg)
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001808 {
Vikram S. Adve94c40812002-09-27 14:33:08 +00001809 //======================================================================
1810 // Rules for integer conversions:
1811 //
1812 //--------
1813 // From ISO 1998 C++ Standard, Sec. 4.7:
1814 //
1815 // 2. If the destination type is unsigned, the resulting value is
1816 // the least unsigned integer congruent to the source integer
1817 // (modulo 2n where n is the number of bits used to represent the
1818 // unsigned type). [Note: In a two s complement representation,
1819 // this conversion is conceptual and there is no change in the
1820 // bit pattern (if there is no truncation). ]
1821 //
1822 // 3. If the destination type is signed, the value is unchanged if
1823 // it can be represented in the destination type (and bitfield width);
1824 // otherwise, the value is implementation-defined.
1825 //--------
1826 //
1827 // Since we assume 2s complement representations, this implies:
1828 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001829 // -- If operand is smaller than destination, zero-extend or sign-extend
1830 // according to the signedness of the *operand*: source decides:
1831 // (1) If operand is signed, sign-extend it.
1832 // If dest is unsigned, zero-ext the result!
1833 // (2) If operand is unsigned, our current invariant is that
1834 // it's high bits are correct, so zero-extension is not needed.
Vikram S. Adve94c40812002-09-27 14:33:08 +00001835 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001836 // -- If operand is same size as or larger than destination,
1837 // zero-extend or sign-extend according to the signedness of
1838 // the *destination*: destination decides:
1839 // (1) If destination is signed, sign-extend (truncating if needed)
1840 // This choice is implementation defined. We sign-extend the
1841 // operand, which matches both Sun's cc and gcc3.2.
1842 // (2) If destination is unsigned, zero-extend (truncating if needed)
Vikram S. Adve94c40812002-09-27 14:33:08 +00001843 //======================================================================
1844
Vikram S. Adve242a8082002-05-19 15:25:51 +00001845 Instruction* destI = subtreeRoot->getInstruction();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001846 Function* currentFunc = destI->getParent()->getParent();
1847 MachineCodeForInstruction& mcfi=MachineCodeForInstruction::get(destI);
1848
Vikram S. Adve242a8082002-05-19 15:25:51 +00001849 Value* opVal = subtreeRoot->leftChild()->getValue();
Vikram S. Adve94c40812002-09-27 14:33:08 +00001850 const Type* opType = opVal->getType();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001851 const Type* destType = destI->getType();
1852 unsigned opSize = target.getTargetData().getTypeSize(opType);
1853 unsigned destSize = target.getTargetData().getTypeSize(destType);
1854
1855 bool isIntegral = opType->isIntegral() || isa<PointerType>(opType);
1856
1857 if (opType == Type::BoolTy ||
1858 opType == destType ||
1859 isIntegral && opSize == destSize && opSize == 8) {
1860 // nothing to do in all these cases
1861 forwardOperandNum = 0; // forward first operand to user
1862
Misha Brukman7b647942003-05-30 20:11:56 +00001863 } else if (opType->isFloatingPoint()) {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001864
1865 CreateCodeToConvertFloatToInt(target, opVal, destI, mvec, mcfi);
Vikram S. Advee895a742003-08-06 18:48:40 +00001866 if (destI->getType()->isUnsigned() && destI->getType() !=Type::UIntTy)
Misha Brukman7b647942003-05-30 20:11:56 +00001867 maskUnsignedResult = true; // not handled by fp->int code
Vikram S. Adve1e606692002-07-31 21:01:34 +00001868
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001869 } else if (isIntegral) {
Vikram S. Adve94c40812002-09-27 14:33:08 +00001870
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001871 bool opSigned = opType->isSigned();
1872 bool destSigned = destType->isSigned();
1873 unsigned extSourceInBits = 8 * std::min<unsigned>(opSize, destSize);
1874
1875 assert(! (opSize == destSize && opSigned == destSigned) &&
1876 "How can different int types have same size and signedness?");
1877
1878 bool signExtend = (opSize < destSize && opSigned ||
1879 opSize >= destSize && destSigned);
1880
1881 bool signAndZeroExtend = (opSize < destSize && destSize < 8u &&
1882 opSigned && !destSigned);
1883 assert(!signAndZeroExtend || signExtend);
1884
1885 bool zeroExtendOnly = opSize >= destSize && !destSigned;
1886 assert(!zeroExtendOnly || !signExtend);
1887
1888 if (signExtend) {
1889 Value* signExtDest = (signAndZeroExtend
1890 ? new TmpInstruction(mcfi, destType, opVal)
1891 : destI);
1892
1893 target.getInstrInfo().CreateSignExtensionInstructions
1894 (target, currentFunc,opVal,signExtDest,extSourceInBits,mvec,mcfi);
1895
1896 if (signAndZeroExtend)
1897 target.getInstrInfo().CreateZeroExtensionInstructions
1898 (target, currentFunc, signExtDest, destI, 8*destSize, mvec, mcfi);
1899 }
1900 else if (zeroExtendOnly) {
1901 target.getInstrInfo().CreateZeroExtensionInstructions
1902 (target, currentFunc, opVal, destI, extSourceInBits, mvec, mcfi);
1903 }
1904 else
1905 forwardOperandNum = 0; // forward first operand to user
1906
Misha Brukman7b647942003-05-30 20:11:56 +00001907 } else
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001908 assert(0 && "Unrecognized operand type for convert-to-integer");
1909
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001910 break;
Vikram S. Adve94c40812002-09-27 14:33:08 +00001911 }
1912
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001913 case 31: // reg: ToFloatTy(reg):
1914 case 32: // reg: ToDoubleTy(reg):
1915 case 232: // reg: ToDoubleTy(Constant):
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001916
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001917 // If this instruction has a parent (a user) in the tree
1918 // and the user is translated as an FsMULd instruction,
1919 // then the cast is unnecessary. So check that first.
1920 // In the future, we'll want to do the same for the FdMULq instruction,
1921 // so do the check here instead of only for ToFloatTy(reg).
1922 //
1923 if (subtreeRoot->parent() != NULL) {
1924 const MachineCodeForInstruction& mcfi =
1925 MachineCodeForInstruction::get(
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001926 cast<InstructionNode>(subtreeRoot->parent())->getInstruction());
Brian Gaeke12c1d2c2004-02-11 20:47:34 +00001927 if (mcfi.size() == 0 || mcfi.front()->getOpcode() == V9::FSMULD)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001928 forwardOperandNum = 0; // forward first operand to user
1929 }
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001930
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001931 if (forwardOperandNum != 0) { // we do need the cast
1932 Value* leftVal = subtreeRoot->leftChild()->getValue();
1933 const Type* opType = leftVal->getType();
Vikram S. Advee895a742003-08-06 18:48:40 +00001934 MachineOpCode opCode=ChooseConvertToFloatInstr(target,
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001935 subtreeRoot->getOpLabel(), opType);
Vikram S. Advee895a742003-08-06 18:48:40 +00001936 if (opCode == V9::NOP) { // no conversion needed
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001937 forwardOperandNum = 0; // forward first operand to user
1938 } else {
1939 // If the source operand is a non-FP type it must be
1940 // first copied from int to float register via memory!
1941 Instruction *dest = subtreeRoot->getInstruction();
1942 Value* srcForCast;
1943 int n = 0;
1944 if (! opType->isFloatingPoint()) {
1945 // Create a temporary to represent the FP register
1946 // into which the integer will be copied via memory.
1947 // The type of this temporary will determine the FP
1948 // register used: single-prec for a 32-bit int or smaller,
1949 // double-prec for a 64-bit int.
1950 //
1951 uint64_t srcSize =
1952 target.getTargetData().getTypeSize(leftVal->getType());
1953 Type* tmpTypeToUse =
1954 (srcSize <= 4)? Type::FloatTy : Type::DoubleTy;
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001955 MachineCodeForInstruction &destMCFI =
1956 MachineCodeForInstruction::get(dest);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001957 srcForCast = new TmpInstruction(destMCFI, tmpTypeToUse, dest);
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001958
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001959 target.getInstrInfo().CreateCodeToCopyIntToFloat(target,
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001960 dest->getParent()->getParent(),
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001961 leftVal, cast<Instruction>(srcForCast),
Vikram S. Adve242a8082002-05-19 15:25:51 +00001962 mvec, destMCFI);
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001963 } else
1964 srcForCast = leftVal;
1965
1966 M = BuildMI(opCode, 2).addReg(srcForCast).addRegDef(dest);
1967 mvec.push_back(M);
1968 }
Misha Brukman7b647942003-05-30 20:11:56 +00001969 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001970 break;
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001971
1972 case 19: // reg: ToArrayTy(reg):
1973 case 20: // reg: ToPointerTy(reg):
1974 forwardOperandNum = 0; // forward first operand to user
Misha Brukmanb3fabe02003-05-31 06:22:37 +00001975 break;
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001976
1977 case 233: // reg: Add(reg, Constant)
1978 maskUnsignedResult = true;
1979 M = CreateAddConstInstruction(subtreeRoot);
1980 if (M != NULL) {
1981 mvec.push_back(M);
1982 break;
1983 }
1984 // ELSE FALL THROUGH
Misha Brukmanb3fabe02003-05-31 06:22:37 +00001985
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001986 case 33: // reg: Add(reg, reg)
1987 maskUnsignedResult = true;
1988 Add3OperandInstr(ChooseAddInstruction(subtreeRoot), subtreeRoot, mvec);
1989 break;
1990
1991 case 234: // reg: Sub(reg, Constant)
1992 maskUnsignedResult = true;
1993 M = CreateSubConstInstruction(subtreeRoot);
1994 if (M != NULL) {
1995 mvec.push_back(M);
1996 break;
1997 }
1998 // ELSE FALL THROUGH
1999
2000 case 34: // reg: Sub(reg, reg)
2001 maskUnsignedResult = true;
2002 Add3OperandInstr(ChooseSubInstructionByType(
Chris Lattner54e898e2003-01-15 19:23:34 +00002003 subtreeRoot->getInstruction()->getType()),
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002004 subtreeRoot, mvec);
2005 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002006
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002007 case 135: // reg: Mul(todouble, todouble)
2008 checkCast = true;
2009 // FALL THROUGH
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002010
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002011 case 35: // reg: Mul(reg, reg)
Vikram S. Adve74825322002-03-18 03:15:35 +00002012 {
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002013 maskUnsignedResult = true;
Vikram S. Adve74825322002-03-18 03:15:35 +00002014 MachineOpCode forceOp = ((checkCast && BothFloatToDouble(subtreeRoot))
Chris Lattnerb4198a22004-02-13 16:14:50 +00002015 ? (MachineOpCode)V9::FSMULD
Chris Lattner07239692004-02-29 05:57:59 +00002016 : -1);
Vikram S. Adve242a8082002-05-19 15:25:51 +00002017 Instruction* mulInstr = subtreeRoot->getInstruction();
2018 CreateMulInstruction(target, mulInstr->getParent()->getParent(),
Vikram S. Adve74825322002-03-18 03:15:35 +00002019 subtreeRoot->leftChild()->getValue(),
2020 subtreeRoot->rightChild()->getValue(),
Vikram S. Adve242a8082002-05-19 15:25:51 +00002021 mulInstr, mvec,
2022 MachineCodeForInstruction::get(mulInstr),forceOp);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002023 break;
Vikram S. Adve74825322002-03-18 03:15:35 +00002024 }
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002025 case 335: // reg: Mul(todouble, todoubleConst)
2026 checkCast = true;
2027 // FALL THROUGH
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002028
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002029 case 235: // reg: Mul(reg, Constant)
Vikram S. Adve74825322002-03-18 03:15:35 +00002030 {
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002031 maskUnsignedResult = true;
Vikram S. Adve74825322002-03-18 03:15:35 +00002032 MachineOpCode forceOp = ((checkCast && BothFloatToDouble(subtreeRoot))
Chris Lattnerb4198a22004-02-13 16:14:50 +00002033 ? (MachineOpCode)V9::FSMULD
Chris Lattner07239692004-02-29 05:57:59 +00002034 : -1);
Vikram S. Adve242a8082002-05-19 15:25:51 +00002035 Instruction* mulInstr = subtreeRoot->getInstruction();
2036 CreateMulInstruction(target, mulInstr->getParent()->getParent(),
Vikram S. Adve74825322002-03-18 03:15:35 +00002037 subtreeRoot->leftChild()->getValue(),
2038 subtreeRoot->rightChild()->getValue(),
Vikram S. Adve242a8082002-05-19 15:25:51 +00002039 mulInstr, mvec,
2040 MachineCodeForInstruction::get(mulInstr),
2041 forceOp);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002042 break;
Vikram S. Adve74825322002-03-18 03:15:35 +00002043 }
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002044 case 236: // reg: Div(reg, Constant)
2045 maskUnsignedResult = true;
2046 L = mvec.size();
2047 CreateDivConstInstruction(target, subtreeRoot, mvec);
2048 if (mvec.size() > L)
2049 break;
2050 // ELSE FALL THROUGH
Misha Brukmanb3fabe02003-05-31 06:22:37 +00002051
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002052 case 36: // reg: Div(reg, reg)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002053 {
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002054 maskUnsignedResult = true;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002055
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002056 // If either operand of divide is smaller than 64 bits, we have
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002057 // to make sure the unused top bits are correct because they affect
2058 // the result. These bits are already correct for unsigned values.
2059 // They may be incorrect for signed values, so sign extend to fill in.
2060 Instruction* divI = subtreeRoot->getInstruction();
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002061 Value* divOp1 = subtreeRoot->leftChild()->getValue();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002062 Value* divOp2 = subtreeRoot->rightChild()->getValue();
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002063 Value* divOp1ToUse = divOp1;
2064 Value* divOp2ToUse = divOp2;
2065 if (divI->getType()->isSigned()) {
2066 unsigned opSize=target.getTargetData().getTypeSize(divI->getType());
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002067 if (opSize < 8) {
2068 MachineCodeForInstruction& mcfi=MachineCodeForInstruction::get(divI);
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002069 divOp1ToUse = new TmpInstruction(mcfi, divOp1);
2070 divOp2ToUse = new TmpInstruction(mcfi, divOp2);
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002071 target.getInstrInfo().
2072 CreateSignExtensionInstructions(target,
2073 divI->getParent()->getParent(),
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002074 divOp1, divOp1ToUse,
2075 8*opSize, mvec, mcfi);
2076 target.getInstrInfo().
2077 CreateSignExtensionInstructions(target,
2078 divI->getParent()->getParent(),
2079 divOp2, divOp2ToUse,
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002080 8*opSize, mvec, mcfi);
2081 }
2082 }
2083
2084 mvec.push_back(BuildMI(ChooseDivInstruction(target, subtreeRoot), 3)
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002085 .addReg(divOp1ToUse)
2086 .addReg(divOp2ToUse)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002087 .addRegDef(divI));
2088
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002089 break;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002090 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002091
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002092 case 37: // reg: Rem(reg, reg)
2093 case 237: // reg: Rem(reg, Constant)
Vikram S. Adve510eec72001-11-04 21:59:14 +00002094 {
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002095 maskUnsignedResult = true;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002096
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002097 Instruction* remI = subtreeRoot->getInstruction();
2098 Value* divOp1 = subtreeRoot->leftChild()->getValue();
2099 Value* divOp2 = subtreeRoot->rightChild()->getValue();
2100
2101 MachineCodeForInstruction& mcfi = MachineCodeForInstruction::get(remI);
Vikram S. Adve510eec72001-11-04 21:59:14 +00002102
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002103 // If second operand of divide is smaller than 64 bits, we have
2104 // to make sure the unused top bits are correct because they affect
2105 // the result. These bits are already correct for unsigned values.
2106 // They may be incorrect for signed values, so sign extend to fill in.
2107 //
2108 Value* divOpToUse = divOp2;
2109 if (divOp2->getType()->isSigned()) {
2110 unsigned opSize=target.getTargetData().getTypeSize(divOp2->getType());
2111 if (opSize < 8) {
2112 divOpToUse = new TmpInstruction(mcfi, divOp2);
2113 target.getInstrInfo().
2114 CreateSignExtensionInstructions(target,
2115 remI->getParent()->getParent(),
2116 divOp2, divOpToUse,
2117 8*opSize, mvec, mcfi);
2118 }
2119 }
2120
2121 // Now compute: result = rem V1, V2 as:
2122 // result = V1 - (V1 / signExtend(V2)) * signExtend(V2)
2123 //
2124 TmpInstruction* quot = new TmpInstruction(mcfi, divOp1, divOpToUse);
2125 TmpInstruction* prod = new TmpInstruction(mcfi, quot, divOpToUse);
2126
2127 mvec.push_back(BuildMI(ChooseDivInstruction(target, subtreeRoot), 3)
2128 .addReg(divOp1).addReg(divOpToUse).addRegDef(quot));
Vikram S. Adve510eec72001-11-04 21:59:14 +00002129
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002130 mvec.push_back(BuildMI(ChooseMulInstructionByType(remI->getType()), 3)
2131 .addReg(quot).addReg(divOpToUse).addRegDef(prod));
Vikram S. Adve510eec72001-11-04 21:59:14 +00002132
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002133 mvec.push_back(BuildMI(ChooseSubInstructionByType(remI->getType()), 3)
2134 .addReg(divOp1).addReg(prod).addRegDef(remI));
2135
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002136 break;
Vikram S. Adve510eec72001-11-04 21:59:14 +00002137 }
2138
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002139 case 38: // bool: And(bool, bool)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002140 case 138: // bool: And(bool, not)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002141 case 238: // bool: And(bool, boolconst)
2142 case 338: // reg : BAnd(reg, reg)
2143 case 538: // reg : BAnd(reg, Constant)
2144 Add3OperandInstr(V9::ANDr, subtreeRoot, mvec);
2145 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002146
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002147 case 438: // bool: BAnd(bool, bnot)
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002148 { // Use the argument of NOT as the second argument!
2149 // Mark the NOT node so that no code is generated for it.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002150 // If the type is boolean, set 1 or 0 in the result register.
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002151 InstructionNode* notNode = (InstructionNode*) subtreeRoot->rightChild();
2152 Value* notArg = BinaryOperator::getNotArgument(
2153 cast<BinaryOperator>(notNode->getInstruction()));
2154 notNode->markFoldedIntoParent();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002155 Value *lhs = subtreeRoot->leftChild()->getValue();
2156 Value *dest = subtreeRoot->getValue();
2157 mvec.push_back(BuildMI(V9::ANDNr, 3).addReg(lhs).addReg(notArg)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002158 .addReg(dest, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002159
Misha Brukmanb461d372003-10-23 16:48:30 +00002160 if (notArg->getType() == Type::BoolTy) {
2161 // set 1 in result register if result of above is non-zero
2162 mvec.push_back(BuildMI(V9::MOVRNZi, 3).addReg(dest).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002163 .addReg(dest, MachineOperand::UseAndDef));
Misha Brukmanb461d372003-10-23 16:48:30 +00002164 }
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002165
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002166 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002167 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002168
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002169 case 39: // bool: Or(bool, bool)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002170 case 139: // bool: Or(bool, not)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002171 case 239: // bool: Or(bool, boolconst)
2172 case 339: // reg : BOr(reg, reg)
2173 case 539: // reg : BOr(reg, Constant)
2174 Add3OperandInstr(V9::ORr, subtreeRoot, mvec);
2175 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002176
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002177 case 439: // bool: BOr(bool, bnot)
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002178 { // Use the argument of NOT as the second argument!
2179 // Mark the NOT node so that no code is generated for it.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002180 // If the type is boolean, set 1 or 0 in the result register.
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002181 InstructionNode* notNode = (InstructionNode*) subtreeRoot->rightChild();
2182 Value* notArg = BinaryOperator::getNotArgument(
2183 cast<BinaryOperator>(notNode->getInstruction()));
2184 notNode->markFoldedIntoParent();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002185 Value *lhs = subtreeRoot->leftChild()->getValue();
2186 Value *dest = subtreeRoot->getValue();
2187
2188 mvec.push_back(BuildMI(V9::ORNr, 3).addReg(lhs).addReg(notArg)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002189 .addReg(dest, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002190
Misha Brukmanb461d372003-10-23 16:48:30 +00002191 if (notArg->getType() == Type::BoolTy) {
2192 // set 1 in result register if result of above is non-zero
2193 mvec.push_back(BuildMI(V9::MOVRNZi, 3).addReg(dest).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002194 .addReg(dest, MachineOperand::UseAndDef));
Misha Brukmanb461d372003-10-23 16:48:30 +00002195 }
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002196
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002197 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002198 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002199
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002200 case 40: // bool: Xor(bool, bool)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002201 case 140: // bool: Xor(bool, not)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002202 case 240: // bool: Xor(bool, boolconst)
2203 case 340: // reg : BXor(reg, reg)
2204 case 540: // reg : BXor(reg, Constant)
2205 Add3OperandInstr(V9::XORr, subtreeRoot, mvec);
2206 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002207
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002208 case 440: // bool: BXor(bool, bnot)
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002209 { // Use the argument of NOT as the second argument!
2210 // Mark the NOT node so that no code is generated for it.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002211 // If the type is boolean, set 1 or 0 in the result register.
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002212 InstructionNode* notNode = (InstructionNode*) subtreeRoot->rightChild();
2213 Value* notArg = BinaryOperator::getNotArgument(
2214 cast<BinaryOperator>(notNode->getInstruction()));
2215 notNode->markFoldedIntoParent();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002216 Value *lhs = subtreeRoot->leftChild()->getValue();
2217 Value *dest = subtreeRoot->getValue();
2218 mvec.push_back(BuildMI(V9::XNORr, 3).addReg(lhs).addReg(notArg)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002219 .addReg(dest, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002220
Misha Brukmanb461d372003-10-23 16:48:30 +00002221 if (notArg->getType() == Type::BoolTy) {
2222 // set 1 in result register if result of above is non-zero
2223 mvec.push_back(BuildMI(V9::MOVRNZi, 3).addReg(dest).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002224 .addReg(dest, MachineOperand::UseAndDef));
Misha Brukmanb461d372003-10-23 16:48:30 +00002225 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002226 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002227 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002228
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002229 case 41: // setCCconst: SetCC(reg, Constant)
2230 { // Comparison is with a constant:
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002231 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002232 // If the bool result must be computed into a register (see below),
2233 // and the constant is int ZERO, we can use the MOVR[op] instructions
2234 // and avoid the SUBcc instruction entirely.
2235 // Otherwise this is just the same as case 42, so just fall through.
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002236 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002237 // The result of the SetCC must be computed and stored in a register if
2238 // it is used outside the current basic block (so it must be computed
2239 // as a boolreg) or it is used by anything other than a branch.
2240 // We will use a conditional move to do this.
2241 //
2242 Instruction* setCCInstr = subtreeRoot->getInstruction();
2243 bool computeBoolVal = (subtreeRoot->parent() == NULL ||
2244 ! AllUsesAreBranches(setCCInstr));
2245
Misha Brukmanb461d372003-10-23 16:48:30 +00002246 if (computeBoolVal) {
2247 InstrTreeNode* constNode = subtreeRoot->rightChild();
2248 assert(constNode &&
2249 constNode->getNodeType() ==InstrTreeNode::NTConstNode);
2250 Constant *constVal = cast<Constant>(constNode->getValue());
2251 bool isValidConst;
2252
2253 if ((constVal->getType()->isInteger()
2254 || isa<PointerType>(constVal->getType()))
2255 && target.getInstrInfo().ConvertConstantToIntType(target,
Vikram S. Advee6124d32003-07-29 19:59:23 +00002256 constVal, constVal->getType(), isValidConst) == 0
Misha Brukmanb461d372003-10-23 16:48:30 +00002257 && isValidConst)
2258 {
2259 // That constant is an integer zero after all...
2260 // Use a MOVR[op] to compute the boolean result
2261 // Unconditionally set register to 0
2262 mvec.push_back(BuildMI(V9::SETHI, 2).addZImm(0)
2263 .addRegDef(setCCInstr));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002264
Misha Brukmanb461d372003-10-23 16:48:30 +00002265 // Now conditionally move 1 into the register.
2266 // Mark the register as a use (as well as a def) because the old
2267 // value will be retained if the condition is false.
2268 MachineOpCode movOpCode = ChooseMovpregiForSetCC(subtreeRoot);
2269 mvec.push_back(BuildMI(movOpCode, 3)
2270 .addReg(subtreeRoot->leftChild()->getValue())
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002271 .addZImm(1)
2272 .addReg(setCCInstr, MachineOperand::UseAndDef));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002273
Misha Brukmanb461d372003-10-23 16:48:30 +00002274 break;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002275 }
Misha Brukmanb461d372003-10-23 16:48:30 +00002276 }
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002277 // ELSE FALL THROUGH
2278 }
2279
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002280 case 42: // bool: SetCC(reg, reg):
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002281 {
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002282 // This generates a SUBCC instruction, putting the difference in a
2283 // result reg. if needed, and/or setting a condition code if needed.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002284 //
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002285 Instruction* setCCInstr = subtreeRoot->getInstruction();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002286 Value* leftVal = subtreeRoot->leftChild()->getValue();
2287 Value* rightVal = subtreeRoot->rightChild()->getValue();
2288 const Type* opType = leftVal->getType();
2289 bool isFPCompare = opType->isFloatingPoint();
Vikram S. Adve242a8082002-05-19 15:25:51 +00002290
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002291 // If the boolean result of the SetCC is used outside the current basic
2292 // block (so it must be computed as a boolreg) or is used by anything
2293 // other than a branch, the boolean must be computed and stored
2294 // in a result register. We will use a conditional move to do this.
2295 //
2296 bool computeBoolVal = (subtreeRoot->parent() == NULL ||
2297 ! AllUsesAreBranches(setCCInstr));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002298
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00002299 // A TmpInstruction is created to represent the CC "result".
2300 // Unlike other instances of TmpInstruction, this one is used
2301 // by machine code of multiple LLVM instructions, viz.,
2302 // the SetCC and the branch. Make sure to get the same one!
2303 // Note that we do this even for FP CC registers even though they
2304 // are explicit operands, because the type of the operand
2305 // needs to be a floating point condition code, not an integer
2306 // condition code. Think of this as casting the bool result to
2307 // a FP condition code register.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002308 // Later, we mark the 4th operand as being a CC register, and as a def.
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00002309 //
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00002310 TmpInstruction* tmpForCC = GetTmpForCC(setCCInstr,
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002311 setCCInstr->getParent()->getParent(),
Vikram S. Adve786833a2003-07-06 20:13:59 +00002312 leftVal->getType(),
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002313 MachineCodeForInstruction::get(setCCInstr));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002314
2315 // If the operands are signed values smaller than 4 bytes, then they
2316 // must be sign-extended in order to do a valid 32-bit comparison
2317 // and get the right result in the 32-bit CC register (%icc).
2318 //
2319 Value* leftOpToUse = leftVal;
2320 Value* rightOpToUse = rightVal;
2321 if (opType->isIntegral() && opType->isSigned()) {
2322 unsigned opSize = target.getTargetData().getTypeSize(opType);
2323 if (opSize < 4) {
2324 MachineCodeForInstruction& mcfi =
2325 MachineCodeForInstruction::get(setCCInstr);
2326
2327 // create temporary virtual regs. to hold the sign-extensions
2328 leftOpToUse = new TmpInstruction(mcfi, leftVal);
2329 rightOpToUse = new TmpInstruction(mcfi, rightVal);
2330
2331 // sign-extend each operand and put the result in the temporary reg.
2332 target.getInstrInfo().CreateSignExtensionInstructions
2333 (target, setCCInstr->getParent()->getParent(),
2334 leftVal, leftOpToUse, 8*opSize, mvec, mcfi);
2335 target.getInstrInfo().CreateSignExtensionInstructions
2336 (target, setCCInstr->getParent()->getParent(),
2337 rightVal, rightOpToUse, 8*opSize, mvec, mcfi);
2338 }
2339 }
2340
Misha Brukman7b647942003-05-30 20:11:56 +00002341 if (! isFPCompare) {
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002342 // Integer condition: set CC and discard result.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002343 mvec.push_back(BuildMI(V9::SUBccr, 4)
2344 .addReg(leftOpToUse)
2345 .addReg(rightOpToUse)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002346 .addMReg(target.getRegInfo()
2347 .getZeroRegNum(), MachineOperand::Def)
2348 .addCCReg(tmpForCC, MachineOperand::Def));
Misha Brukman7b647942003-05-30 20:11:56 +00002349 } else {
2350 // FP condition: dest of FCMP should be some FCCn register
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002351 mvec.push_back(BuildMI(ChooseFcmpInstruction(subtreeRoot), 3)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002352 .addCCReg(tmpForCC, MachineOperand::Def)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002353 .addReg(leftOpToUse)
2354 .addReg(rightOpToUse));
Misha Brukman7b647942003-05-30 20:11:56 +00002355 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002356
Misha Brukman7b647942003-05-30 20:11:56 +00002357 if (computeBoolVal) {
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002358 MachineOpCode movOpCode = (isFPCompare
Misha Brukmaneecdb662003-06-02 20:55:14 +00002359 ? ChooseMovFpcciInstruction(subtreeRoot)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002360 : ChooseMovpcciForSetCC(subtreeRoot));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002361
2362 // Unconditionally set register to 0
2363 M = BuildMI(V9::SETHI, 2).addZImm(0).addRegDef(setCCInstr);
2364 mvec.push_back(M);
2365
2366 // Now conditionally move 1 into the register.
Misha Brukman7b647942003-05-30 20:11:56 +00002367 // Mark the register as a use (as well as a def) because the old
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002368 // value will be retained if the condition is false.
2369 M = (BuildMI(movOpCode, 3).addCCReg(tmpForCC).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002370 .addReg(setCCInstr, MachineOperand::UseAndDef));
Misha Brukman7b647942003-05-30 20:11:56 +00002371 mvec.push_back(M);
2372 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002373 break;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002374 }
2375
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002376 case 51: // reg: Load(reg)
2377 case 52: // reg: Load(ptrreg)
Chris Lattner54e898e2003-01-15 19:23:34 +00002378 SetOperandsForMemInstr(ChooseLoadInstruction(
2379 subtreeRoot->getValue()->getType()),
2380 mvec, subtreeRoot, target);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002381 break;
2382
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002383 case 55: // reg: GetElemPtr(reg)
2384 case 56: // reg: GetElemPtrIdx(reg,reg)
2385 // If the GetElemPtr was folded into the user (parent), it will be
2386 // caught above. For other cases, we have to compute the address.
2387 SetOperandsForMemInstr(V9::ADDr, mvec, subtreeRoot, target);
2388 break;
Vikram S. Adved3e26482002-10-13 00:18:57 +00002389
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002390 case 57: // reg: Alloca: Implement as 1 instruction:
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002391 { // add %fp, offsetFromFP -> result
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002392 AllocationInst* instr =
2393 cast<AllocationInst>(subtreeRoot->getInstruction());
Chris Lattnerea45d7b2002-12-28 20:19:44 +00002394 unsigned tsize =
2395 target.getTargetData().getTypeSize(instr->getAllocatedType());
Vikram S. Adve74825322002-03-18 03:15:35 +00002396 assert(tsize != 0);
2397 CreateCodeForFixedSizeAlloca(target, instr, tsize, 1, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002398 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002399 }
Vikram S. Adved3e26482002-10-13 00:18:57 +00002400
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002401 case 58: // reg: Alloca(reg): Implement as 3 instructions:
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002402 // mul num, typeSz -> tmp
2403 // sub %sp, tmp -> %sp
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002404 { // add %sp, frameSizeBelowDynamicArea -> result
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002405 AllocationInst* instr =
2406 cast<AllocationInst>(subtreeRoot->getInstruction());
Vikram S. Adve74825322002-03-18 03:15:35 +00002407 const Type* eltType = instr->getAllocatedType();
2408
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002409 // If #elements is constant, use simpler code for fixed-size allocas
Chris Lattnerea45d7b2002-12-28 20:19:44 +00002410 int tsize = (int) target.getTargetData().getTypeSize(eltType);
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002411 Value* numElementsVal = NULL;
2412 bool isArray = instr->isArrayAllocation();
2413
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002414 if (!isArray || isa<Constant>(numElementsVal = instr->getArraySize())) {
Misha Brukman7b647942003-05-30 20:11:56 +00002415 // total size is constant: generate code for fixed-size alloca
2416 unsigned numElements = isArray?
2417 cast<ConstantUInt>(numElementsVal)->getValue() : 1;
2418 CreateCodeForFixedSizeAlloca(target, instr, tsize,
2419 numElements, mvec);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002420 } else {
2421 // total size is not constant.
Vikram S. Adve74825322002-03-18 03:15:35 +00002422 CreateCodeForVariableSizeAlloca(target, instr, tsize,
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002423 numElementsVal, mvec);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002424 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002425 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002426 }
Vikram S. Adved3e26482002-10-13 00:18:57 +00002427
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002428 case 61: // reg: Call
Vikram S. Adve4a8bb2b2002-09-28 16:55:41 +00002429 { // Generate a direct (CALL) or indirect (JMPL) call.
2430 // Mark the return-address register, the indirection
2431 // register (for indirect calls), the operands of the Call,
2432 // and the return value (if any) as implicit operands
2433 // of the machine instruction.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002434 //
Vikram S. Advedbc4fad2002-04-25 04:37:51 +00002435 // If this is a varargs function, floating point arguments
2436 // have to passed in integer registers so insert
2437 // copy-float-to-int instructions for each float operand.
2438 //
Chris Lattnerb00c5822001-10-02 03:41:24 +00002439 CallInst *callInstr = cast<CallInst>(subtreeRoot->getInstruction());
Chris Lattner749655f2001-10-13 06:54:30 +00002440 Value *callee = callInstr->getCalledValue();
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002441 Function* calledFunc = dyn_cast<Function>(callee);
Vikram S. Adve4a8bb2b2002-09-28 16:55:41 +00002442
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002443 // Check if this is an intrinsic function that needs a special code
2444 // sequence (e.g., va_start). Indirect calls cannot be special.
Vikram S. Adveea21a6c2001-10-20 20:57:06 +00002445 //
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002446 bool specialIntrinsic = false;
Brian Gaeked0fde302003-11-11 22:41:34 +00002447 Intrinsic::ID iid;
2448 if (calledFunc && (iid=(Intrinsic::ID)calledFunc->getIntrinsicID()))
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002449 specialIntrinsic = CodeGenIntrinsic(iid, *callInstr, target, mvec);
Vikram S. Advea10d1a72002-03-31 19:07:35 +00002450
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002451 // If not, generate the normal call sequence for the function.
2452 // This can also handle any intrinsics that are just function calls.
2453 //
Misha Brukman7b647942003-05-30 20:11:56 +00002454 if (! specialIntrinsic) {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002455 Function* currentFunc = callInstr->getParent()->getParent();
2456 MachineFunction& MF = MachineFunction::get(currentFunc);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002457 MachineCodeForInstruction& mcfi =
2458 MachineCodeForInstruction::get(callInstr);
Brian Gaekee3d68072004-02-25 18:44:15 +00002459 const SparcV9RegInfo& regInfo =
2460 (SparcV9RegInfo&) target.getRegInfo();
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002461 const TargetFrameInfo& frameInfo = target.getFrameInfo();
2462
Misha Brukman7b647942003-05-30 20:11:56 +00002463 // Create hidden virtual register for return address with type void*
2464 TmpInstruction* retAddrReg =
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002465 new TmpInstruction(mcfi, PointerType::get(Type::VoidTy), callInstr);
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002466
Misha Brukman7b647942003-05-30 20:11:56 +00002467 // Generate the machine instruction and its operands.
2468 // Use CALL for direct function calls; this optimistically assumes
2469 // the PC-relative address fits in the CALL address field (22 bits).
2470 // Use JMPL for indirect calls.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002471 // This will be added to mvec later, after operand copies.
Misha Brukman7b647942003-05-30 20:11:56 +00002472 //
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002473 MachineInstr* callMI;
Misha Brukman7b647942003-05-30 20:11:56 +00002474 if (calledFunc) // direct function call
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002475 callMI = BuildMI(V9::CALL, 1).addPCDisp(callee);
Misha Brukman7b647942003-05-30 20:11:56 +00002476 else // indirect function call
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002477 callMI = (BuildMI(V9::JMPLCALLi,3).addReg(callee)
2478 .addSImm((int64_t)0).addRegDef(retAddrReg));
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002479
Misha Brukman7b647942003-05-30 20:11:56 +00002480 const FunctionType* funcType =
2481 cast<FunctionType>(cast<PointerType>(callee->getType())
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002482 ->getElementType());
Misha Brukman7b647942003-05-30 20:11:56 +00002483 bool isVarArgs = funcType->isVarArg();
2484 bool noPrototype = isVarArgs && funcType->getNumParams() == 0;
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002485
Misha Brukman7b647942003-05-30 20:11:56 +00002486 // Use a descriptor to pass information about call arguments
2487 // to the register allocator. This descriptor will be "owned"
2488 // and freed automatically when the MachineCodeForInstruction
2489 // object for the callInstr goes away.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002490 CallArgsDescriptor* argDesc =
2491 new CallArgsDescriptor(callInstr, retAddrReg,isVarArgs,noPrototype);
Misha Brukman7b647942003-05-30 20:11:56 +00002492 assert(callInstr->getOperand(0) == callee
2493 && "This is assumed in the loop below!");
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002494
2495 // Insert sign-extension instructions for small signed values,
2496 // if this is an unknown function (i.e., called via a funcptr)
2497 // or an external one (i.e., which may not be compiled by llc).
2498 //
2499 if (calledFunc == NULL || calledFunc->isExternal()) {
2500 for (unsigned i=1, N=callInstr->getNumOperands(); i < N; ++i) {
2501 Value* argVal = callInstr->getOperand(i);
2502 const Type* argType = argVal->getType();
2503 if (argType->isIntegral() && argType->isSigned()) {
2504 unsigned argSize = target.getTargetData().getTypeSize(argType);
2505 if (argSize <= 4) {
2506 // create a temporary virtual reg. to hold the sign-extension
2507 TmpInstruction* argExtend = new TmpInstruction(mcfi, argVal);
2508
2509 // sign-extend argVal and put the result in the temporary reg.
2510 target.getInstrInfo().CreateSignExtensionInstructions
2511 (target, currentFunc, argVal, argExtend,
2512 8*argSize, mvec, mcfi);
2513
2514 // replace argVal with argExtend in CallArgsDescriptor
2515 argDesc->getArgInfo(i-1).replaceArgVal(argExtend);
2516 }
2517 }
2518 }
2519 }
2520
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002521 // Insert copy instructions to get all the arguments into
2522 // all the places that they need to be.
2523 //
Misha Brukman7b647942003-05-30 20:11:56 +00002524 for (unsigned i=1, N=callInstr->getNumOperands(); i < N; ++i) {
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002525 int argNo = i-1;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002526 CallArgInfo& argInfo = argDesc->getArgInfo(argNo);
2527 Value* argVal = argInfo.getArgVal(); // don't use callInstr arg here
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002528 const Type* argType = argVal->getType();
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002529 unsigned regType = regInfo.getRegTypeForDataType(argType);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002530 unsigned argSize = target.getTargetData().getTypeSize(argType);
2531 int regNumForArg = TargetRegInfo::getInvalidRegNum();
2532 unsigned regClassIDOfArgReg;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002533
Misha Brukman7b647942003-05-30 20:11:56 +00002534 // Check for FP arguments to varargs functions.
2535 // Any such argument in the first $K$ args must be passed in an
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002536 // integer register. If there is no prototype, it must also
2537 // be passed as an FP register.
2538 // K = #integer argument registers.
2539 bool isFPArg = argVal->getType()->isFloatingPoint();
2540 if (isVarArgs && isFPArg) {
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002541
2542 if (noPrototype) {
2543 // It is a function with no prototype: pass value
2544 // as an FP value as well as a varargs value. The FP value
2545 // may go in a register or on the stack. The copy instruction
2546 // to the outgoing reg/stack is created by the normal argument
2547 // handling code since this is the "normal" passing mode.
2548 //
2549 regNumForArg = regInfo.regNumForFPArg(regType,
2550 false, false, argNo,
2551 regClassIDOfArgReg);
2552 if (regNumForArg == regInfo.getInvalidRegNum())
2553 argInfo.setUseStackSlot();
2554 else
2555 argInfo.setUseFPArgReg();
2556 }
2557
2558 // If this arg. is in the first $K$ regs, add special copy-
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002559 // float-to-int instructions to pass the value as an int.
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002560 // To check if it is in the first $K$, get the register
2561 // number for the arg #i. These copy instructions are
2562 // generated here because they are extra cases and not needed
2563 // for the normal argument handling (some code reuse is
2564 // possible though -- later).
2565 //
Misha Brukmanea481cc2003-06-03 03:21:58 +00002566 int copyRegNum = regInfo.regNumForIntArg(false, false, argNo,
2567 regClassIDOfArgReg);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002568 if (copyRegNum != regInfo.getInvalidRegNum()) {
2569 // Create a virtual register to represent copyReg. Mark
2570 // this vreg as being an implicit operand of the call MI
2571 const Type* loadTy = (argType == Type::FloatTy
2572 ? Type::IntTy : Type::LongTy);
Misha Brukmanea481cc2003-06-03 03:21:58 +00002573 TmpInstruction* argVReg = new TmpInstruction(mcfi, loadTy,
2574 argVal, NULL,
2575 "argRegCopy");
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002576 callMI->addImplicitRef(argVReg);
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002577
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002578 // Get a temp stack location to use to copy
2579 // float-to-int via the stack.
2580 //
2581 // FIXME: For now, we allocate permanent space because
2582 // the stack frame manager does not allow locals to be
2583 // allocated (e.g., for alloca) after a temp is
2584 // allocated!
2585 //
2586 // int tmpOffset = MF.getInfo()->pushTempValue(argSize);
2587 int tmpOffset = MF.getInfo()->allocateLocalVar(argVReg);
Vikram S. Adve242a8082002-05-19 15:25:51 +00002588
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002589 // Generate the store from FP reg to stack
Misha Brukmanea481cc2003-06-03 03:21:58 +00002590 unsigned StoreOpcode = ChooseStoreInstruction(argType);
2591 M = BuildMI(convertOpcodeFromRegToImm(StoreOpcode), 3)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002592 .addReg(argVal).addMReg(regInfo.getFramePointer())
2593 .addSImm(tmpOffset);
2594 mvec.push_back(M);
2595
2596 // Generate the load from stack to int arg reg
Misha Brukmanea481cc2003-06-03 03:21:58 +00002597 unsigned LoadOpcode = ChooseLoadInstruction(loadTy);
2598 M = BuildMI(convertOpcodeFromRegToImm(LoadOpcode), 3)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002599 .addMReg(regInfo.getFramePointer()).addSImm(tmpOffset)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002600 .addReg(argVReg, MachineOperand::Def);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002601
2602 // Mark operand with register it should be assigned
2603 // both for copy and for the callMI
2604 M->SetRegForOperand(M->getNumOperands()-1, copyRegNum);
Misha Brukmanea481cc2003-06-03 03:21:58 +00002605 callMI->SetRegForImplicitRef(callMI->getNumImplicitRefs()-1,
2606 copyRegNum);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002607 mvec.push_back(M);
2608
2609 // Add info about the argument to the CallArgsDescriptor
2610 argInfo.setUseIntArgReg();
2611 argInfo.setArgCopy(copyRegNum);
2612 } else {
Misha Brukman7b647942003-05-30 20:11:56 +00002613 // Cannot fit in first $K$ regs so pass arg on stack
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002614 argInfo.setUseStackSlot();
2615 }
2616 } else if (isFPArg) {
2617 // Get the outgoing arg reg to see if there is one.
2618 regNumForArg = regInfo.regNumForFPArg(regType, false, false,
2619 argNo, regClassIDOfArgReg);
2620 if (regNumForArg == regInfo.getInvalidRegNum())
2621 argInfo.setUseStackSlot();
2622 else {
2623 argInfo.setUseFPArgReg();
2624 regNumForArg =regInfo.getUnifiedRegNum(regClassIDOfArgReg,
2625 regNumForArg);
2626 }
2627 } else {
2628 // Get the outgoing arg reg to see if there is one.
2629 regNumForArg = regInfo.regNumForIntArg(false,false,
2630 argNo, regClassIDOfArgReg);
2631 if (regNumForArg == regInfo.getInvalidRegNum())
2632 argInfo.setUseStackSlot();
2633 else {
2634 argInfo.setUseIntArgReg();
2635 regNumForArg =regInfo.getUnifiedRegNum(regClassIDOfArgReg,
2636 regNumForArg);
2637 }
2638 }
2639
2640 //
2641 // Now insert copy instructions to stack slot or arg. register
2642 //
2643 if (argInfo.usesStackSlot()) {
2644 // Get the stack offset for this argument slot.
2645 // FP args on stack are right justified so adjust offset!
2646 // int arguments are also right justified but they are
2647 // always loaded as a full double-word so the offset does
2648 // not need to be adjusted.
2649 int argOffset = frameInfo.getOutgoingArgOffset(MF, argNo);
2650 if (argType->isFloatingPoint()) {
2651 unsigned slotSize = frameInfo.getSizeOfEachArgOnStack();
2652 assert(argSize <= slotSize && "Insufficient slot size!");
2653 argOffset += slotSize - argSize;
2654 }
2655
2656 // Now generate instruction to copy argument to stack
2657 MachineOpCode storeOpCode =
2658 (argType->isFloatingPoint()
2659 ? ((argSize == 4)? V9::STFi : V9::STDFi) : V9::STXi);
2660
2661 M = BuildMI(storeOpCode, 3).addReg(argVal)
2662 .addMReg(regInfo.getStackPointer()).addSImm(argOffset);
2663 mvec.push_back(M);
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002664 }
2665 else if (regNumForArg != regInfo.getInvalidRegNum()) {
2666
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002667 // Create a virtual register to represent the arg reg. Mark
2668 // this vreg as being an implicit operand of the call MI.
2669 TmpInstruction* argVReg =
2670 new TmpInstruction(mcfi, argVal, NULL, "argReg");
2671
2672 callMI->addImplicitRef(argVReg);
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002673
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002674 // Generate the reg-to-reg copy into the outgoing arg reg.
2675 // -- For FP values, create a FMOVS or FMOVD instruction
2676 // -- For non-FP values, create an add-with-0 instruction
2677 if (argType->isFloatingPoint())
2678 M=(BuildMI(argType==Type::FloatTy? V9::FMOVS :V9::FMOVD,2)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002679 .addReg(argVal).addReg(argVReg, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002680 else
2681 M = (BuildMI(ChooseAddInstructionByType(argType), 3)
2682 .addReg(argVal).addSImm((int64_t) 0)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002683 .addReg(argVReg, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002684
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002685 // Mark the operand with the register it should be assigned
2686 M->SetRegForOperand(M->getNumOperands()-1, regNumForArg);
2687 callMI->SetRegForImplicitRef(callMI->getNumImplicitRefs()-1,
2688 regNumForArg);
2689
2690 mvec.push_back(M);
Misha Brukman7b647942003-05-30 20:11:56 +00002691 }
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002692 else
2693 assert(argInfo.getArgCopy() != regInfo.getInvalidRegNum() &&
2694 "Arg. not in stack slot, primary or secondary register?");
Vikram S. Adve242a8082002-05-19 15:25:51 +00002695 }
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002696
2697 // add call instruction and delay slot before copying return value
2698 mvec.push_back(callMI);
2699 mvec.push_back(BuildMI(V9::NOP, 0));
2700
Misha Brukman7b647942003-05-30 20:11:56 +00002701 // Add the return value as an implicit ref. The call operands
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002702 // were added above. Also, add code to copy out the return value.
2703 // This is always register-to-register for int or FP return values.
2704 //
2705 if (callInstr->getType() != Type::VoidTy) {
2706 // Get the return value reg.
2707 const Type* retType = callInstr->getType();
2708
2709 int regNum = (retType->isFloatingPoint()
Brian Gaekee3d68072004-02-25 18:44:15 +00002710 ? (unsigned) SparcV9FloatRegClass::f0
2711 : (unsigned) SparcV9IntRegClass::o0);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002712 unsigned regClassID = regInfo.getRegClassIDOfType(retType);
2713 regNum = regInfo.getUnifiedRegNum(regClassID, regNum);
2714
2715 // Create a virtual register to represent it and mark
2716 // this vreg as being an implicit operand of the call MI
2717 TmpInstruction* retVReg =
2718 new TmpInstruction(mcfi, callInstr, NULL, "argReg");
2719
2720 callMI->addImplicitRef(retVReg, /*isDef*/ true);
2721
2722 // Generate the reg-to-reg copy from the return value reg.
2723 // -- For FP values, create a FMOVS or FMOVD instruction
2724 // -- For non-FP values, create an add-with-0 instruction
2725 if (retType->isFloatingPoint())
2726 M = (BuildMI(retType==Type::FloatTy? V9::FMOVS : V9::FMOVD, 2)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002727 .addReg(retVReg).addReg(callInstr, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002728 else
2729 M = (BuildMI(ChooseAddInstructionByType(retType), 3)
2730 .addReg(retVReg).addSImm((int64_t) 0)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002731 .addReg(callInstr, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002732
2733 // Mark the operand with the register it should be assigned
2734 // Also mark the implicit ref of the call defining this operand
2735 M->SetRegForOperand(0, regNum);
2736 callMI->SetRegForImplicitRef(callMI->getNumImplicitRefs()-1,regNum);
2737
2738 mvec.push_back(M);
2739 }
2740
Misha Brukman7b647942003-05-30 20:11:56 +00002741 // For the CALL instruction, the ret. addr. reg. is also implicit
2742 if (isa<Function>(callee))
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002743 callMI->addImplicitRef(retAddrReg, /*isDef*/ true);
2744
2745 MF.getInfo()->popAllTempValues(); // free temps used for this inst
Misha Brukman7b647942003-05-30 20:11:56 +00002746 }
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002747
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002748 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002749 }
Vikram S. Adve242a8082002-05-19 15:25:51 +00002750
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002751 case 62: // reg: Shl(reg, reg)
Vikram S. Adve242a8082002-05-19 15:25:51 +00002752 {
2753 Value* argVal1 = subtreeRoot->leftChild()->getValue();
2754 Value* argVal2 = subtreeRoot->rightChild()->getValue();
2755 Instruction* shlInstr = subtreeRoot->getInstruction();
2756
2757 const Type* opType = argVal1->getType();
Chris Lattner0c4e8862002-09-03 01:08:28 +00002758 assert((opType->isInteger() || isa<PointerType>(opType)) &&
2759 "Shl unsupported for other types");
Vikram S. Advee895a742003-08-06 18:48:40 +00002760 unsigned opSize = target.getTargetData().getTypeSize(opType);
Vikram S. Adve242a8082002-05-19 15:25:51 +00002761
2762 CreateShiftInstructions(target, shlInstr->getParent()->getParent(),
Vikram S. Advee895a742003-08-06 18:48:40 +00002763 (opSize > 4)? V9::SLLXr6:V9::SLLr5,
Vikram S. Adve242a8082002-05-19 15:25:51 +00002764 argVal1, argVal2, 0, shlInstr, mvec,
2765 MachineCodeForInstruction::get(shlInstr));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002766 break;
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00002767 }
2768
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002769 case 63: // reg: Shr(reg, reg)
Misha Brukman7b647942003-05-30 20:11:56 +00002770 {
2771 const Type* opType = subtreeRoot->leftChild()->getValue()->getType();
Chris Lattner0c4e8862002-09-03 01:08:28 +00002772 assert((opType->isInteger() || isa<PointerType>(opType)) &&
2773 "Shr unsupported for other types");
Vikram S. Advee895a742003-08-06 18:48:40 +00002774 unsigned opSize = target.getTargetData().getTypeSize(opType);
Chris Lattner54e898e2003-01-15 19:23:34 +00002775 Add3OperandInstr(opType->isSigned()
Vikram S. Advee895a742003-08-06 18:48:40 +00002776 ? (opSize > 4? V9::SRAXr6 : V9::SRAr5)
2777 : (opSize > 4? V9::SRLXr6 : V9::SRLr5),
Chris Lattner54e898e2003-01-15 19:23:34 +00002778 subtreeRoot, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002779 break;
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00002780 }
2781
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002782 case 64: // reg: Phi(reg,reg)
2783 break; // don't forward the value
Vikram S. Adve74825322002-03-18 03:15:35 +00002784
Vikram S. Adve40dee512003-10-21 11:25:09 +00002785 case 65: // reg: VANext(reg): the va_next(va_list, type) instruction
2786 { // Increment the va_list pointer register according to the type.
2787 // All LLVM argument types are <= 64 bits, so use one doubleword.
2788 Instruction* vaNextI = subtreeRoot->getInstruction();
2789 assert(target.getTargetData().getTypeSize(vaNextI->getType()) <= 8 &&
2790 "We assumed that all LLVM parameter types <= 8 bytes!");
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002791 int argSize = target.getFrameInfo().getSizeOfEachArgOnStack();
Vikram S. Adve40dee512003-10-21 11:25:09 +00002792 mvec.push_back(BuildMI(V9::ADDi, 3).addReg(vaNextI->getOperand(0)).
2793 addSImm(argSize).addRegDef(vaNextI));
Vikram S. Adve472c3042003-10-21 12:28:27 +00002794 break;
Vikram S. Adve40dee512003-10-21 11:25:09 +00002795 }
2796
2797 case 66: // reg: VAArg (reg): the va_arg instruction
2798 { // Load argument from stack using current va_list pointer value.
2799 // Use 64-bit load for all non-FP args, and LDDF or double for FP.
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002800 Instruction* vaArgI = subtreeRoot->getInstruction();
Vikram S. Adve40dee512003-10-21 11:25:09 +00002801 MachineOpCode loadOp = (vaArgI->getType()->isFloatingPoint()
2802 ? (vaArgI->getType() == Type::FloatTy
2803 ? V9::LDFi : V9::LDDFi)
2804 : V9::LDXi);
Vikram S. Adve9d275142003-08-12 03:04:05 +00002805 mvec.push_back(BuildMI(loadOp, 3).addReg(vaArgI->getOperand(0)).
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002806 addSImm(0).addRegDef(vaArgI));
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002807 break;
2808 }
2809
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002810 case 71: // reg: VReg
2811 case 72: // reg: Constant
2812 break; // don't forward the value
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002813
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002814 default:
2815 assert(0 && "Unrecognized BURG rule");
2816 break;
2817 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00002818 }
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002819
Misha Brukman7b647942003-05-30 20:11:56 +00002820 if (forwardOperandNum >= 0) {
2821 // We did not generate a machine instruction but need to use operand.
2822 // If user is in the same tree, replace Value in its machine operand.
2823 // If not, insert a copy instruction which should get coalesced away
2824 // by register allocation.
2825 if (subtreeRoot->parent() != NULL)
2826 ForwardOperand(subtreeRoot, subtreeRoot->parent(), forwardOperandNum);
2827 else {
2828 std::vector<MachineInstr*> minstrVec;
2829 Instruction* instr = subtreeRoot->getInstruction();
2830 target.getInstrInfo().
2831 CreateCopyInstructionsByType(target,
2832 instr->getParent()->getParent(),
2833 instr->getOperand(forwardOperandNum),
2834 instr, minstrVec,
2835 MachineCodeForInstruction::get(instr));
2836 assert(minstrVec.size() > 0);
2837 mvec.insert(mvec.end(), minstrVec.begin(), minstrVec.end());
Chris Lattner20b1ea02001-09-14 03:47:57 +00002838 }
Misha Brukman7b647942003-05-30 20:11:56 +00002839 }
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002840
Misha Brukman7b647942003-05-30 20:11:56 +00002841 if (maskUnsignedResult) {
2842 // If result is unsigned and smaller than int reg size,
2843 // we need to clear high bits of result value.
2844 assert(forwardOperandNum < 0 && "Need mask but no instruction generated");
2845 Instruction* dest = subtreeRoot->getInstruction();
2846 if (dest->getType()->isUnsigned()) {
2847 unsigned destSize=target.getTargetData().getTypeSize(dest->getType());
2848 if (destSize <= 4) {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002849 // Mask high 64 - N bits, where N = 4*destSize.
2850
2851 // Use a TmpInstruction to represent the
Misha Brukman7b647942003-05-30 20:11:56 +00002852 // intermediate result before masking. Since those instructions
2853 // have already been generated, go back and substitute tmpI
2854 // for dest in the result position of each one of them.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002855 //
2856 MachineCodeForInstruction& mcfi = MachineCodeForInstruction::get(dest);
2857 TmpInstruction *tmpI = new TmpInstruction(mcfi, dest->getType(),
2858 dest, NULL, "maskHi");
2859 Value* srlArgToUse = tmpI;
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002860
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002861 unsigned numSubst = 0;
2862 for (unsigned i=0, N=mvec.size(); i < N; ++i) {
Vikram S. Adve97a95bd2003-08-07 15:01:26 +00002863
2864 // Make sure we substitute all occurrences of dest in these instrs.
2865 // Otherwise, we will have bogus code.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002866 bool someArgsWereIgnored = false;
Vikram S. Adve97a95bd2003-08-07 15:01:26 +00002867
2868 // Make sure not to substitute an upwards-exposed use -- that would
2869 // introduce a use of `tmpI' with no preceding def. Therefore,
2870 // substitute a use or def-and-use operand only if a previous def
2871 // operand has already been substituted (i.e., numSusbt > 0).
2872 //
2873 numSubst += mvec[i]->substituteValue(dest, tmpI,
2874 /*defsOnly*/ numSubst == 0,
2875 /*notDefsAndUses*/ numSubst > 0,
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002876 someArgsWereIgnored);
2877 assert(!someArgsWereIgnored &&
2878 "Operand `dest' exists but not replaced: probably bogus!");
2879 }
2880 assert(numSubst > 0 && "Operand `dest' not replaced: probably bogus!");
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002881
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002882 // Left shift 32-N if size (N) is less than 32 bits.
Misha Brukman452db672003-09-23 17:28:11 +00002883 // Use another tmp. virtual register to represent this result.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002884 if (destSize < 4) {
2885 srlArgToUse = new TmpInstruction(mcfi, dest->getType(),
2886 tmpI, NULL, "maskHi2");
2887 mvec.push_back(BuildMI(V9::SLLXi6, 3).addReg(tmpI)
2888 .addZImm(8*(4-destSize))
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002889 .addReg(srlArgToUse, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002890 }
2891
2892 // Logical right shift 32-N to get zero extension in top 64-N bits.
2893 mvec.push_back(BuildMI(V9::SRLi5, 3).addReg(srlArgToUse)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002894 .addZImm(8*(4-destSize))
2895 .addReg(dest, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002896
Misha Brukman7b647942003-05-30 20:11:56 +00002897 } else if (destSize < 8) {
2898 assert(0 && "Unsupported type size: 32 < size < 64 bits");
2899 }
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002900 }
Misha Brukman7b647942003-05-30 20:11:56 +00002901 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00002902}
Brian Gaeked0fde302003-11-11 22:41:34 +00002903
2904}