blob: 122a97ea7945b6dbe9096206a2f6958c79c919a5 [file] [log] [blame]
Brian Gaeke3ca4fcc2004-04-25 07:04:49 +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"
Misha Brukman34943292003-10-22 05:09:56 +000021#include "llvm/CodeGen/MachineCodeForInstruction.h"
22#include "llvm/CodeGen/MachineFunction.h"
23#include "llvm/CodeGen/MachineFunctionInfo.h"
24#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner08d49632004-02-29 19:12:51 +000025#include "MachineInstrAnnot.h"
Brian Gaekee3d68072004-02-25 18:44:15 +000026#include "SparcV9InstrSelectionSupport.h"
27#include "SparcV9Internals.h"
28#include "SparcV9RegClassInfo.h"
29#include "SparcV9RegInfo.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000030#include "Support/MathExtras.h"
Vikram S. Adve951df2b2003-07-10 20:07:54 +000031#include <algorithm>
Misha Brukman34943292003-10-22 05:09:56 +000032#include <cmath>
Chris Lattner20b1ea02001-09-14 03:47:57 +000033
Brian Gaeked0fde302003-11-11 22:41:34 +000034namespace llvm {
35
Chris Lattner54e898e2003-01-15 19:23:34 +000036static inline void Add3OperandInstr(unsigned Opcode, InstructionNode* Node,
Misha Brukmanee563cb2003-05-21 17:59:06 +000037 std::vector<MachineInstr*>& mvec) {
Chris Lattner54e898e2003-01-15 19:23:34 +000038 mvec.push_back(BuildMI(Opcode, 3).addReg(Node->leftChild()->getValue())
39 .addReg(Node->rightChild()->getValue())
40 .addRegDef(Node->getValue()));
41}
42
43
Chris Lattner795ba6c2003-01-15 21:36:50 +000044//---------------------------------------------------------------------------
45// Function: FoldGetElemChain
46//
47// Purpose:
48// Fold a chain of GetElementPtr instructions containing only
49// constant offsets into an equivalent (Pointer, IndexVector) pair.
50// Returns the pointer Value, and stores the resulting IndexVector
51// in argument chainIdxVec. This is a helper function for
52// FoldConstantIndices that does the actual folding.
53//---------------------------------------------------------------------------
54
55
56// Check for a constant 0.
Chris Lattnerd4d4ab52004-01-12 18:08:18 +000057static inline bool
Chris Lattner795ba6c2003-01-15 21:36:50 +000058IsZero(Value* idx)
59{
60 return (idx == ConstantSInt::getNullValue(idx->getType()));
61}
62
63static Value*
Misha Brukmanee563cb2003-05-21 17:59:06 +000064FoldGetElemChain(InstrTreeNode* ptrNode, std::vector<Value*>& chainIdxVec,
Chris Lattner795ba6c2003-01-15 21:36:50 +000065 bool lastInstHasLeadingNonZero)
66{
67 InstructionNode* gepNode = dyn_cast<InstructionNode>(ptrNode);
68 GetElementPtrInst* gepInst =
69 dyn_cast_or_null<GetElementPtrInst>(gepNode ? gepNode->getInstruction() :0);
70
71 // ptr value is not computed in this tree or ptr value does not come from GEP
72 // instruction
73 if (gepInst == NULL)
74 return NULL;
75
76 // Return NULL if we don't fold any instructions in.
77 Value* ptrVal = NULL;
78
79 // Now chase the chain of getElementInstr instructions, if any.
80 // Check for any non-constant indices and stop there.
81 // Also, stop if the first index of child is a non-zero array index
82 // and the last index of the current node is a non-array index:
83 // in that case, a non-array declared type is being accessed as an array
84 // which is not type-safe, but could be legal.
85 //
86 InstructionNode* ptrChild = gepNode;
87 while (ptrChild && (ptrChild->getOpLabel() == Instruction::GetElementPtr ||
88 ptrChild->getOpLabel() == GetElemPtrIdx))
Misha Brukman81b06862003-05-21 18:48:06 +000089 {
90 // Child is a GetElemPtr instruction
91 gepInst = cast<GetElementPtrInst>(ptrChild->getValue());
92 User::op_iterator OI, firstIdx = gepInst->idx_begin();
93 User::op_iterator lastIdx = gepInst->idx_end();
94 bool allConstantOffsets = true;
Chris Lattner795ba6c2003-01-15 21:36:50 +000095
Misha Brukman81b06862003-05-21 18:48:06 +000096 // The first index of every GEP must be an array index.
97 assert((*firstIdx)->getType() == Type::LongTy &&
98 "INTERNAL ERROR: Structure index for a pointer type!");
Chris Lattner795ba6c2003-01-15 21:36:50 +000099
Misha Brukman81b06862003-05-21 18:48:06 +0000100 // If the last instruction had a leading non-zero index, check if the
101 // current one references a sequential (i.e., indexable) type.
102 // If not, the code is not type-safe and we would create an illegal GEP
103 // by folding them, so don't fold any more instructions.
104 //
105 if (lastInstHasLeadingNonZero)
106 if (! isa<SequentialType>(gepInst->getType()->getElementType()))
107 break; // cannot fold in any preceding getElementPtr instrs.
Chris Lattner795ba6c2003-01-15 21:36:50 +0000108
Misha Brukman81b06862003-05-21 18:48:06 +0000109 // Check that all offsets are constant for this instruction
110 for (OI = firstIdx; allConstantOffsets && OI != lastIdx; ++OI)
111 allConstantOffsets = isa<ConstantInt>(*OI);
Chris Lattner795ba6c2003-01-15 21:36:50 +0000112
Misha Brukman81b06862003-05-21 18:48:06 +0000113 if (allConstantOffsets) {
114 // Get pointer value out of ptrChild.
115 ptrVal = gepInst->getPointerOperand();
Chris Lattner795ba6c2003-01-15 21:36:50 +0000116
Misha Brukman81b06862003-05-21 18:48:06 +0000117 // Insert its index vector at the start, skipping any leading [0]
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000118 // Remember the old size to check if anything was inserted.
119 unsigned oldSize = chainIdxVec.size();
120 int firstIsZero = IsZero(*firstIdx);
121 chainIdxVec.insert(chainIdxVec.begin(), firstIdx + firstIsZero, lastIdx);
122
123 // Remember if it has leading zero index: it will be discarded later.
124 if (oldSize < chainIdxVec.size())
125 lastInstHasLeadingNonZero = !firstIsZero;
Chris Lattner795ba6c2003-01-15 21:36:50 +0000126
Misha Brukman81b06862003-05-21 18:48:06 +0000127 // Mark the folded node so no code is generated for it.
128 ((InstructionNode*) ptrChild)->markFoldedIntoParent();
Chris Lattner795ba6c2003-01-15 21:36:50 +0000129
Misha Brukman81b06862003-05-21 18:48:06 +0000130 // Get the previous GEP instruction and continue trying to fold
131 ptrChild = dyn_cast<InstructionNode>(ptrChild->leftChild());
132 } else // cannot fold this getElementPtr instr. or any preceding ones
133 break;
134 }
Chris Lattner795ba6c2003-01-15 21:36:50 +0000135
136 // If the first getElementPtr instruction had a leading [0], add it back.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000137 // Note that this instruction is the *last* one that was successfully
138 // folded *and* contributed any indices, in the loop above.
139 //
Chris Lattner795ba6c2003-01-15 21:36:50 +0000140 if (ptrVal && ! lastInstHasLeadingNonZero)
141 chainIdxVec.insert(chainIdxVec.begin(), ConstantSInt::get(Type::LongTy,0));
142
143 return ptrVal;
144}
145
146
147//---------------------------------------------------------------------------
148// Function: GetGEPInstArgs
149//
150// Purpose:
151// Helper function for GetMemInstArgs that handles the final getElementPtr
152// instruction used by (or same as) the memory operation.
153// Extracts the indices of the current instruction and tries to fold in
154// preceding ones if all indices of the current one are constant.
155//---------------------------------------------------------------------------
156
157static Value *
158GetGEPInstArgs(InstructionNode* gepNode,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000159 std::vector<Value*>& idxVec,
Chris Lattner795ba6c2003-01-15 21:36:50 +0000160 bool& allConstantIndices)
161{
162 allConstantIndices = true;
163 GetElementPtrInst* gepI = cast<GetElementPtrInst>(gepNode->getInstruction());
164
165 // Default pointer is the one from the current instruction.
166 Value* ptrVal = gepI->getPointerOperand();
167 InstrTreeNode* ptrChild = gepNode->leftChild();
168
Misha Brukman452db672003-09-23 17:28:11 +0000169 // Extract the index vector of the GEP instruction.
Chris Lattner795ba6c2003-01-15 21:36:50 +0000170 // If all indices are constant and first index is zero, try to fold
171 // in preceding GEPs with all constant indices.
172 for (User::op_iterator OI=gepI->idx_begin(), OE=gepI->idx_end();
173 allConstantIndices && OI != OE; ++OI)
174 if (! isa<Constant>(*OI))
175 allConstantIndices = false; // note: this also terminates loop!
176
177 // If we have only constant indices, fold chains of constant indices
178 // in this and any preceding GetElemPtr instructions.
179 bool foldedGEPs = false;
180 bool leadingNonZeroIdx = gepI && ! IsZero(*gepI->idx_begin());
181 if (allConstantIndices)
Misha Brukman81b06862003-05-21 18:48:06 +0000182 if (Value* newPtr = FoldGetElemChain(ptrChild, idxVec, leadingNonZeroIdx)) {
183 ptrVal = newPtr;
184 foldedGEPs = true;
185 }
Chris Lattner795ba6c2003-01-15 21:36:50 +0000186
187 // Append the index vector of the current instruction.
188 // Skip the leading [0] index if preceding GEPs were folded into this.
189 idxVec.insert(idxVec.end(),
190 gepI->idx_begin() + (foldedGEPs && !leadingNonZeroIdx),
191 gepI->idx_end());
192
193 return ptrVal;
194}
195
196//---------------------------------------------------------------------------
197// Function: GetMemInstArgs
198//
199// Purpose:
200// Get the pointer value and the index vector for a memory operation
201// (GetElementPtr, Load, or Store). If all indices of the given memory
202// operation are constant, fold in constant indices in a chain of
203// preceding GetElementPtr instructions (if any), and return the
204// pointer value of the first instruction in the chain.
205// All folded instructions are marked so no code is generated for them.
206//
207// Return values:
208// Returns the pointer Value to use.
209// Returns the resulting IndexVector in idxVec.
210// Returns true/false in allConstantIndices if all indices are/aren't const.
211//---------------------------------------------------------------------------
212
213static Value*
214GetMemInstArgs(InstructionNode* memInstrNode,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000215 std::vector<Value*>& idxVec,
Chris Lattner795ba6c2003-01-15 21:36:50 +0000216 bool& allConstantIndices)
217{
218 allConstantIndices = false;
219 Instruction* memInst = memInstrNode->getInstruction();
220 assert(idxVec.size() == 0 && "Need empty vector to return indices");
221
222 // If there is a GetElemPtr instruction to fold in to this instr,
223 // it must be in the left child for Load and GetElemPtr, and in the
224 // right child for Store instructions.
225 InstrTreeNode* ptrChild = (memInst->getOpcode() == Instruction::Store
226 ? memInstrNode->rightChild()
227 : memInstrNode->leftChild());
228
229 // Default pointer is the one from the current instruction.
230 Value* ptrVal = ptrChild->getValue();
231
232 // Find the "last" GetElemPtr instruction: this one or the immediate child.
233 // There will be none if this is a load or a store from a scalar pointer.
234 InstructionNode* gepNode = NULL;
235 if (isa<GetElementPtrInst>(memInst))
236 gepNode = memInstrNode;
Misha Brukman81b06862003-05-21 18:48:06 +0000237 else if (isa<InstructionNode>(ptrChild) && isa<GetElementPtrInst>(ptrVal)) {
238 // Child of load/store is a GEP and memInst is its only use.
239 // Use its indices and mark it as folded.
240 gepNode = cast<InstructionNode>(ptrChild);
241 gepNode->markFoldedIntoParent();
242 }
Chris Lattner795ba6c2003-01-15 21:36:50 +0000243
244 // If there are no indices, return the current pointer.
245 // Else extract the pointer from the GEP and fold the indices.
246 return gepNode ? GetGEPInstArgs(gepNode, idxVec, allConstantIndices)
247 : ptrVal;
248}
249
Chris Lattner54e898e2003-01-15 19:23:34 +0000250
Chris Lattner20b1ea02001-09-14 03:47:57 +0000251//************************ Internal Functions ******************************/
252
Chris Lattner20b1ea02001-09-14 03:47:57 +0000253
Chris Lattner20b1ea02001-09-14 03:47:57 +0000254static inline MachineOpCode
255ChooseBprInstruction(const InstructionNode* instrNode)
256{
257 MachineOpCode opCode;
258
259 Instruction* setCCInstr =
260 ((InstructionNode*) instrNode->leftChild())->getInstruction();
261
262 switch(setCCInstr->getOpcode())
Misha Brukman81b06862003-05-21 18:48:06 +0000263 {
264 case Instruction::SetEQ: opCode = V9::BRZ; break;
265 case Instruction::SetNE: opCode = V9::BRNZ; break;
266 case Instruction::SetLE: opCode = V9::BRLEZ; break;
267 case Instruction::SetGE: opCode = V9::BRGEZ; break;
268 case Instruction::SetLT: opCode = V9::BRLZ; break;
269 case Instruction::SetGT: opCode = V9::BRGZ; break;
270 default:
271 assert(0 && "Unrecognized VM instruction!");
272 opCode = V9::INVALID_OPCODE;
273 break;
274 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000275
276 return opCode;
277}
278
279
280static inline MachineOpCode
Chris Lattner20b1ea02001-09-14 03:47:57 +0000281ChooseBpccInstruction(const InstructionNode* instrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000282 const BinaryOperator* setCCInstr)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000283{
Misha Brukmana98cd452003-05-20 20:32:24 +0000284 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000285
286 bool isSigned = setCCInstr->getOperand(0)->getType()->isSigned();
287
Misha Brukman81b06862003-05-21 18:48:06 +0000288 if (isSigned) {
289 switch(setCCInstr->getOpcode())
Chris Lattner20b1ea02001-09-14 03:47:57 +0000290 {
Misha Brukman81b06862003-05-21 18:48:06 +0000291 case Instruction::SetEQ: opCode = V9::BE; break;
292 case Instruction::SetNE: opCode = V9::BNE; break;
293 case Instruction::SetLE: opCode = V9::BLE; break;
294 case Instruction::SetGE: opCode = V9::BGE; break;
295 case Instruction::SetLT: opCode = V9::BL; break;
296 case Instruction::SetGT: opCode = V9::BG; break;
297 default:
298 assert(0 && "Unrecognized VM instruction!");
299 break;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000300 }
Misha Brukman81b06862003-05-21 18:48:06 +0000301 } else {
302 switch(setCCInstr->getOpcode())
Chris Lattner20b1ea02001-09-14 03:47:57 +0000303 {
Misha Brukman81b06862003-05-21 18:48:06 +0000304 case Instruction::SetEQ: opCode = V9::BE; break;
305 case Instruction::SetNE: opCode = V9::BNE; break;
306 case Instruction::SetLE: opCode = V9::BLEU; break;
307 case Instruction::SetGE: opCode = V9::BCC; break;
308 case Instruction::SetLT: opCode = V9::BCS; break;
309 case Instruction::SetGT: opCode = V9::BGU; break;
310 default:
311 assert(0 && "Unrecognized VM instruction!");
312 break;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000313 }
Misha Brukman81b06862003-05-21 18:48:06 +0000314 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000315
316 return opCode;
317}
318
319static inline MachineOpCode
320ChooseBFpccInstruction(const InstructionNode* instrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000321 const BinaryOperator* setCCInstr)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000322{
Misha Brukmana98cd452003-05-20 20:32:24 +0000323 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000324
325 switch(setCCInstr->getOpcode())
Misha Brukman81b06862003-05-21 18:48:06 +0000326 {
327 case Instruction::SetEQ: opCode = V9::FBE; break;
328 case Instruction::SetNE: opCode = V9::FBNE; break;
329 case Instruction::SetLE: opCode = V9::FBLE; break;
330 case Instruction::SetGE: opCode = V9::FBGE; break;
331 case Instruction::SetLT: opCode = V9::FBL; break;
332 case Instruction::SetGT: opCode = V9::FBG; break;
333 default:
334 assert(0 && "Unrecognized VM instruction!");
335 break;
336 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000337
338 return opCode;
339}
340
341
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000342// Create a unique TmpInstruction for a boolean value,
343// representing the CC register used by a branch on that value.
344// For now, hack this using a little static cache of TmpInstructions.
345// Eventually the entire BURG instruction selection should be put
346// into a separate class that can hold such information.
Vikram S. Adveff5a09e2001-11-08 05:04:09 +0000347// The static cache is not too bad because the memory for these
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000348// TmpInstructions will be freed along with the rest of the Function anyway.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000349//
350static TmpInstruction*
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000351GetTmpForCC(Value* boolVal, const Function *F, const Type* ccType,
352 MachineCodeForInstruction& mcfi)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000353{
Chris Lattner09ff1122002-07-24 21:21:32 +0000354 typedef hash_map<const Value*, TmpInstruction*> BoolTmpCache;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000355 static BoolTmpCache boolToTmpCache; // Map boolVal -> TmpInstruction*
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000356 static const Function *lastFunction = 0;// Use to flush cache between funcs
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000357
358 assert(boolVal->getType() == Type::BoolTy && "Weird but ok! Delete assert");
359
Misha Brukman81b06862003-05-21 18:48:06 +0000360 if (lastFunction != F) {
361 lastFunction = F;
362 boolToTmpCache.clear();
363 }
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000364
Vikram S. Adveff5a09e2001-11-08 05:04:09 +0000365 // Look for tmpI and create a new one otherwise. The new value is
366 // directly written to map using the ref returned by operator[].
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000367 TmpInstruction*& tmpI = boolToTmpCache[boolVal];
368 if (tmpI == NULL)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000369 tmpI = new TmpInstruction(mcfi, ccType, boolVal);
Vikram S. Adveb7f06f42001-11-04 19:34:49 +0000370
371 return tmpI;
372}
373
374
Chris Lattner20b1ea02001-09-14 03:47:57 +0000375static inline MachineOpCode
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000376ChooseBccInstruction(const InstructionNode* instrNode,
Vikram S. Adve786833a2003-07-06 20:13:59 +0000377 const Type*& setCCType)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000378{
379 InstructionNode* setCCNode = (InstructionNode*) instrNode->leftChild();
Vikram S. Adve30a6f492002-08-22 02:56:10 +0000380 assert(setCCNode->getOpLabel() == SetCCOp);
381 BinaryOperator* setCCInstr =cast<BinaryOperator>(setCCNode->getInstruction());
Vikram S. Adve786833a2003-07-06 20:13:59 +0000382 setCCType = setCCInstr->getOperand(0)->getType();
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000383
Vikram S. Adve786833a2003-07-06 20:13:59 +0000384 if (setCCType->isFloatingPoint())
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000385 return ChooseBFpccInstruction(instrNode, setCCInstr);
386 else
387 return ChooseBpccInstruction(instrNode, setCCInstr);
388}
389
390
Misha Brukmaneecdb662003-06-02 20:55:14 +0000391// WARNING: since this function has only one caller, it always returns
392// the opcode that expects an immediate and a register. If this function
393// is ever used in cases where an opcode that takes two registers is required,
394// then modify this function and use convertOpcodeFromRegToImm() where required.
395//
396// It will be necessary to expand convertOpcodeFromRegToImm() to handle the
397// new cases of opcodes.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000398static inline MachineOpCode
Misha Brukmaneecdb662003-06-02 20:55:14 +0000399ChooseMovFpcciInstruction(const InstructionNode* instrNode)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000400{
Misha Brukmana98cd452003-05-20 20:32:24 +0000401 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000402
403 switch(instrNode->getInstruction()->getOpcode())
Misha Brukman81b06862003-05-21 18:48:06 +0000404 {
Misha Brukmaneecdb662003-06-02 20:55:14 +0000405 case Instruction::SetEQ: opCode = V9::MOVFEi; break;
406 case Instruction::SetNE: opCode = V9::MOVFNEi; break;
407 case Instruction::SetLE: opCode = V9::MOVFLEi; break;
408 case Instruction::SetGE: opCode = V9::MOVFGEi; break;
409 case Instruction::SetLT: opCode = V9::MOVFLi; break;
410 case Instruction::SetGT: opCode = V9::MOVFGi; break;
Misha Brukman81b06862003-05-21 18:48:06 +0000411 default:
412 assert(0 && "Unrecognized VM instruction!");
413 break;
414 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000415
416 return opCode;
417}
418
419
Vikram S. Adve951df2b2003-07-10 20:07:54 +0000420// ChooseMovpcciForSetCC -- Choose a conditional-move instruction
421// based on the type of SetCC operation.
Chris Lattner20b1ea02001-09-14 03:47:57 +0000422//
Misha Brukmaneecdb662003-06-02 20:55:14 +0000423// WARNING: since this function has only one caller, it always returns
424// the opcode that expects an immediate and a register. If this function
425// is ever used in cases where an opcode that takes two registers is required,
426// then modify this function and use convertOpcodeFromRegToImm() where required.
427//
428// It will be necessary to expand convertOpcodeFromRegToImm() to handle the
429// new cases of opcodes.
Vikram S. Adve951df2b2003-07-10 20:07:54 +0000430//
Chris Lattner20b1ea02001-09-14 03:47:57 +0000431static MachineOpCode
Vikram S. Adve951df2b2003-07-10 20:07:54 +0000432ChooseMovpcciForSetCC(const InstructionNode* instrNode)
433{
434 MachineOpCode opCode = V9::INVALID_OPCODE;
435
436 const Type* opType = instrNode->leftChild()->getValue()->getType();
437 assert(opType->isIntegral() || isa<PointerType>(opType));
438 bool noSign = opType->isUnsigned() || isa<PointerType>(opType);
439
440 switch(instrNode->getInstruction()->getOpcode())
441 {
442 case Instruction::SetEQ: opCode = V9::MOVEi; break;
443 case Instruction::SetLE: opCode = noSign? V9::MOVLEUi : V9::MOVLEi; break;
444 case Instruction::SetGE: opCode = noSign? V9::MOVCCi : V9::MOVGEi; break;
445 case Instruction::SetLT: opCode = noSign? V9::MOVCSi : V9::MOVLi; break;
446 case Instruction::SetGT: opCode = noSign? V9::MOVGUi : V9::MOVGi; break;
447 case Instruction::SetNE: opCode = V9::MOVNEi; break;
448 default: assert(0 && "Unrecognized LLVM instr!"); break;
449 }
450
451 return opCode;
452}
453
454
455// ChooseMovpregiForSetCC -- Choose a conditional-move-on-register-value
456// instruction based on the type of SetCC operation. These instructions
457// compare a register with 0 and perform the move is the comparison is true.
458//
459// WARNING: like the previous function, this function it always returns
460// the opcode that expects an immediate and a register. See above.
461//
462static MachineOpCode
463ChooseMovpregiForSetCC(const InstructionNode* instrNode)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000464{
Misha Brukmana98cd452003-05-20 20:32:24 +0000465 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000466
467 switch(instrNode->getInstruction()->getOpcode())
Misha Brukman81b06862003-05-21 18:48:06 +0000468 {
Vikram S. Adve951df2b2003-07-10 20:07:54 +0000469 case Instruction::SetEQ: opCode = V9::MOVRZi; break;
470 case Instruction::SetLE: opCode = V9::MOVRLEZi; break;
471 case Instruction::SetGE: opCode = V9::MOVRGEZi; break;
472 case Instruction::SetLT: opCode = V9::MOVRLZi; break;
473 case Instruction::SetGT: opCode = V9::MOVRGZi; break;
474 case Instruction::SetNE: opCode = V9::MOVRNZi; break;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000475 default: assert(0 && "Unrecognized VM instr!"); break;
Misha Brukman81b06862003-05-21 18:48:06 +0000476 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000477
478 return opCode;
479}
480
Vikram S. Adve951df2b2003-07-10 20:07:54 +0000481
Chris Lattner20b1ea02001-09-14 03:47:57 +0000482static inline MachineOpCode
Vikram S. Advee895a742003-08-06 18:48:40 +0000483ChooseConvertToFloatInstr(const TargetMachine& target,
484 OpLabel vopCode, const Type* opType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000485{
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000486 assert((vopCode == ToFloatTy || vopCode == ToDoubleTy) &&
487 "Unrecognized convert-to-float opcode!");
Vikram S. Advee895a742003-08-06 18:48:40 +0000488 assert((opType->isIntegral() || opType->isFloatingPoint() ||
489 isa<PointerType>(opType))
490 && "Trying to convert a non-scalar type to FLOAT/DOUBLE?");
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000491
Misha Brukmana98cd452003-05-20 20:32:24 +0000492 MachineOpCode opCode = V9::INVALID_OPCODE;
Vikram S. Advee895a742003-08-06 18:48:40 +0000493
494 unsigned opSize = target.getTargetData().getTypeSize(opType);
495
496 if (opType == Type::FloatTy)
497 opCode = (vopCode == ToFloatTy? V9::NOP : V9::FSTOD);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000498 else if (opType == Type::DoubleTy)
Vikram S. Advee895a742003-08-06 18:48:40 +0000499 opCode = (vopCode == ToFloatTy? V9::FDTOS : V9::NOP);
500 else if (opSize <= 4)
501 opCode = (vopCode == ToFloatTy? V9::FITOS : V9::FITOD);
502 else {
503 assert(opSize == 8 && "Unrecognized type size > 4 and < 8!");
504 opCode = (vopCode == ToFloatTy? V9::FXTOS : V9::FXTOD);
505 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000506
507 return opCode;
508}
509
510static inline MachineOpCode
Vikram S. Advee895a742003-08-06 18:48:40 +0000511ChooseConvertFPToIntInstr(const TargetMachine& target,
512 const Type* destType, const Type* opType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000513{
Vikram S. Adve94c40812002-09-27 14:33:08 +0000514 assert((opType == Type::FloatTy || opType == Type::DoubleTy)
515 && "This function should only be called for FLOAT or DOUBLE");
Vikram S. Advee895a742003-08-06 18:48:40 +0000516 assert((destType->isIntegral() || isa<PointerType>(destType))
517 && "Trying to convert FLOAT/DOUBLE to a non-scalar type?");
Vikram S. Adve94c40812002-09-27 14:33:08 +0000518
Vikram S. Advee895a742003-08-06 18:48:40 +0000519 MachineOpCode opCode = V9::INVALID_OPCODE;
520
521 unsigned destSize = target.getTargetData().getTypeSize(destType);
522
523 if (destType == Type::UIntTy)
524 assert(destType != Type::UIntTy && "Expand FP-to-uint beforehand.");
525 else if (destSize <= 4)
Misha Brukman81b06862003-05-21 18:48:06 +0000526 opCode = (opType == Type::FloatTy)? V9::FSTOI : V9::FDTOI;
Vikram S. Advee895a742003-08-06 18:48:40 +0000527 else {
528 assert(destSize == 8 && "Unrecognized type size > 4 and < 8!");
529 opCode = (opType == Type::FloatTy)? V9::FSTOX : V9::FDTOX;
530 }
Vikram S. Adve94c40812002-09-27 14:33:08 +0000531
Chris Lattner20b1ea02001-09-14 03:47:57 +0000532 return opCode;
533}
534
Vikram S. Advee895a742003-08-06 18:48:40 +0000535static MachineInstr*
536CreateConvertFPToIntInstr(const TargetMachine& target,
537 Value* srcVal,
538 Value* destVal,
539 const Type* destType)
Vikram S. Advedbc4fad2002-04-25 04:37:51 +0000540{
Vikram S. Advee895a742003-08-06 18:48:40 +0000541 MachineOpCode opCode = ChooseConvertFPToIntInstr(target, destType,
542 srcVal->getType());
Misha Brukmana98cd452003-05-20 20:32:24 +0000543 assert(opCode != V9::INVALID_OPCODE && "Expected to need conversion!");
Chris Lattner00dca912003-01-15 17:47:49 +0000544 return BuildMI(opCode, 2).addReg(srcVal).addRegDef(destVal);
Vikram S. Advedbc4fad2002-04-25 04:37:51 +0000545}
Chris Lattner20b1ea02001-09-14 03:47:57 +0000546
Vikram S. Adve8cfffd32002-08-24 20:56:53 +0000547// CreateCodeToConvertFloatToInt: Convert FP value to signed or unsigned integer
Vikram S. Adve1e606692002-07-31 21:01:34 +0000548// The FP value must be converted to the dest type in an FP register,
549// and the result is then copied from FP to int register via memory.
Vikram S. Advee895a742003-08-06 18:48:40 +0000550// SPARC does not have a float-to-uint conversion, only a float-to-int (fdtoi).
Vikram S. Advebabc0fa2002-09-05 18:32:13 +0000551// Since fdtoi converts to signed integers, any FP value V between MAXINT+1
Vikram S. Advee895a742003-08-06 18:48:40 +0000552// and MAXUNSIGNED (i.e., 2^31 <= V <= 2^32-1) would be converted incorrectly.
553// Therefore, for converting an FP value to uint32_t, we first need to convert
554// to uint64_t and then to uint32_t.
Vikram S. Advebabc0fa2002-09-05 18:32:13 +0000555//
Vikram S. Adve1e606692002-07-31 21:01:34 +0000556static void
Vikram S. Adve8cfffd32002-08-24 20:56:53 +0000557CreateCodeToConvertFloatToInt(const TargetMachine& target,
558 Value* opVal,
559 Instruction* destI,
560 std::vector<MachineInstr*>& mvec,
561 MachineCodeForInstruction& mcfi)
Vikram S. Adve1e606692002-07-31 21:01:34 +0000562{
Vikram S. Advee895a742003-08-06 18:48:40 +0000563 Function* F = destI->getParent()->getParent();
564
Vikram S. Adve1e606692002-07-31 21:01:34 +0000565 // Create a temporary to represent the FP register into which the
566 // int value will placed after conversion. The type of this temporary
567 // depends on the type of FP register to use: single-prec for a 32-bit
568 // int or smaller; double-prec for a 64-bit int.
569 //
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000570 size_t destSize = target.getTargetData().getTypeSize(destI->getType());
Vikram S. Adve1e606692002-07-31 21:01:34 +0000571
Vikram S. Advee895a742003-08-06 18:48:40 +0000572 const Type* castDestType = destI->getType(); // type for the cast instr result
573 const Type* castDestRegType; // type for cast instruction result reg
574 TmpInstruction* destForCast; // dest for cast instruction
575 Instruction* fpToIntCopyDest = destI; // dest for fp-reg-to-int-reg copy instr
576
577 // For converting an FP value to uint32_t, we first need to convert to
578 // uint64_t and then to uint32_t, as explained above.
579 if (destI->getType() == Type::UIntTy) {
580 castDestType = Type::ULongTy; // use this instead of type of destI
581 castDestRegType = Type::DoubleTy; // uint64_t needs 64-bit FP register.
582 destForCast = new TmpInstruction(mcfi, castDestRegType, opVal);
583 fpToIntCopyDest = new TmpInstruction(mcfi, castDestType, destForCast);
584 }
585 else {
586 castDestRegType = (destSize > 4)? Type::DoubleTy : Type::FloatTy;
587 destForCast = new TmpInstruction(mcfi, castDestRegType, opVal);
588 }
589
590 // Create the fp-to-int conversion instruction (src and dest regs are FP regs)
591 mvec.push_back(CreateConvertFPToIntInstr(target, opVal, destForCast,
592 castDestType));
Vikram S. Adve1e606692002-07-31 21:01:34 +0000593
594 // Create the fpreg-to-intreg copy code
Vikram S. Advee895a742003-08-06 18:48:40 +0000595 target.getInstrInfo().CreateCodeToCopyFloatToInt(target, F, destForCast,
596 fpToIntCopyDest, mvec, mcfi);
597
598 // Create the uint64_t to uint32_t conversion, if needed
599 if (destI->getType() == Type::UIntTy)
600 target.getInstrInfo().
601 CreateZeroExtensionInstructions(target, F, fpToIntCopyDest, destI,
602 /*numLowBits*/ 32, mvec, mcfi);
Vikram S. Adve1e606692002-07-31 21:01:34 +0000603}
604
605
Chris Lattner20b1ea02001-09-14 03:47:57 +0000606static inline MachineOpCode
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000607ChooseAddInstruction(const InstructionNode* instrNode)
608{
609 return ChooseAddInstructionByType(instrNode->getInstruction()->getType());
610}
611
612
Chris Lattner20b1ea02001-09-14 03:47:57 +0000613static inline MachineInstr*
614CreateMovFloatInstruction(const InstructionNode* instrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000615 const Type* resultType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000616{
Misha Brukmana98cd452003-05-20 20:32:24 +0000617 return BuildMI((resultType == Type::FloatTy) ? V9::FMOVS : V9::FMOVD, 2)
Chris Lattner00dca912003-01-15 17:47:49 +0000618 .addReg(instrNode->leftChild()->getValue())
619 .addRegDef(instrNode->getValue());
Chris Lattner20b1ea02001-09-14 03:47:57 +0000620}
621
622static inline MachineInstr*
623CreateAddConstInstruction(const InstructionNode* instrNode)
624{
625 MachineInstr* minstr = NULL;
626
627 Value* constOp = ((InstrTreeNode*) instrNode->rightChild())->getValue();
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000628 assert(isa<Constant>(constOp));
Chris Lattner20b1ea02001-09-14 03:47:57 +0000629
630 // Cases worth optimizing are:
631 // (1) Add with 0 for float or double: use an FMOV of appropriate type,
632 // instead of an FADD (1 vs 3 cycles). There is no integer MOV.
633 //
Chris Lattner9b625032002-05-06 16:15:30 +0000634 if (ConstantFP *FPC = dyn_cast<ConstantFP>(constOp)) {
Misha Brukman81b06862003-05-21 18:48:06 +0000635 double dval = FPC->getValue();
636 if (dval == 0.0)
637 minstr = CreateMovFloatInstruction(instrNode,
638 instrNode->getInstruction()->getType());
639 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000640
641 return minstr;
642}
643
644
645static inline MachineOpCode
Vikram S. Adve510eec72001-11-04 21:59:14 +0000646ChooseSubInstructionByType(const Type* resultType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000647{
Misha Brukmana98cd452003-05-20 20:32:24 +0000648 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000649
Misha Brukman81b06862003-05-21 18:48:06 +0000650 if (resultType->isInteger() || isa<PointerType>(resultType)) {
Misha Brukman91aee472003-05-27 22:37:00 +0000651 opCode = V9::SUBr;
Misha Brukman81b06862003-05-21 18:48:06 +0000652 } else {
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000653 switch(resultType->getPrimitiveID())
Misha Brukman81b06862003-05-21 18:48:06 +0000654 {
655 case Type::FloatTyID: opCode = V9::FSUBS; break;
656 case Type::DoubleTyID: opCode = V9::FSUBD; break;
657 default: assert(0 && "Invalid type for SUB instruction"); break;
658 }
659 }
660
Chris Lattner20b1ea02001-09-14 03:47:57 +0000661 return opCode;
662}
663
664
665static inline MachineInstr*
666CreateSubConstInstruction(const InstructionNode* instrNode)
667{
668 MachineInstr* minstr = NULL;
669
670 Value* constOp = ((InstrTreeNode*) instrNode->rightChild())->getValue();
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000671 assert(isa<Constant>(constOp));
Chris Lattner20b1ea02001-09-14 03:47:57 +0000672
673 // Cases worth optimizing are:
674 // (1) Sub with 0 for float or double: use an FMOV of appropriate type,
675 // instead of an FSUB (1 vs 3 cycles). There is no integer MOV.
676 //
Chris Lattner9b625032002-05-06 16:15:30 +0000677 if (ConstantFP *FPC = dyn_cast<ConstantFP>(constOp)) {
678 double dval = FPC->getValue();
679 if (dval == 0.0)
Vikram S. Adve242a8082002-05-19 15:25:51 +0000680 minstr = CreateMovFloatInstruction(instrNode,
681 instrNode->getInstruction()->getType());
Chris Lattner9b625032002-05-06 16:15:30 +0000682 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000683
684 return minstr;
685}
686
687
688static inline MachineOpCode
689ChooseFcmpInstruction(const InstructionNode* instrNode)
690{
Misha Brukmana98cd452003-05-20 20:32:24 +0000691 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000692
693 Value* operand = ((InstrTreeNode*) instrNode->leftChild())->getValue();
694 switch(operand->getType()->getPrimitiveID()) {
Misha Brukmana98cd452003-05-20 20:32:24 +0000695 case Type::FloatTyID: opCode = V9::FCMPS; break;
696 case Type::DoubleTyID: opCode = V9::FCMPD; break;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000697 default: assert(0 && "Invalid type for FCMP instruction"); break;
698 }
699
700 return opCode;
701}
702
703
704// Assumes that leftArg and rightArg are both cast instructions.
705//
706static inline bool
707BothFloatToDouble(const InstructionNode* instrNode)
708{
709 InstrTreeNode* leftArg = instrNode->leftChild();
710 InstrTreeNode* rightArg = instrNode->rightChild();
711 InstrTreeNode* leftArgArg = leftArg->leftChild();
712 InstrTreeNode* rightArgArg = rightArg->leftChild();
713 assert(leftArg->getValue()->getType() == rightArg->getValue()->getType());
714
715 // Check if both arguments are floats cast to double
716 return (leftArg->getValue()->getType() == Type::DoubleTy &&
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000717 leftArgArg->getValue()->getType() == Type::FloatTy &&
718 rightArgArg->getValue()->getType() == Type::FloatTy);
Chris Lattner20b1ea02001-09-14 03:47:57 +0000719}
720
721
722static inline MachineOpCode
Vikram S. Adve510eec72001-11-04 21:59:14 +0000723ChooseMulInstructionByType(const Type* resultType)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000724{
Misha Brukmana98cd452003-05-20 20:32:24 +0000725 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000726
Chris Lattner0c4e8862002-09-03 01:08:28 +0000727 if (resultType->isInteger())
Misha Brukman91aee472003-05-27 22:37:00 +0000728 opCode = V9::MULXr;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000729 else
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000730 switch(resultType->getPrimitiveID())
Misha Brukman7b647942003-05-30 20:11:56 +0000731 {
732 case Type::FloatTyID: opCode = V9::FMULS; break;
733 case Type::DoubleTyID: opCode = V9::FMULD; break;
734 default: assert(0 && "Invalid type for MUL instruction"); break;
735 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000736
737 return opCode;
738}
739
740
Vikram S. Adve510eec72001-11-04 21:59:14 +0000741
Chris Lattner20b1ea02001-09-14 03:47:57 +0000742static inline MachineInstr*
Vikram S. Adve74825322002-03-18 03:15:35 +0000743CreateIntNegInstruction(const TargetMachine& target,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000744 Value* vreg)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000745{
Misha Brukman91aee472003-05-27 22:37:00 +0000746 return BuildMI(V9::SUBr, 3).addMReg(target.getRegInfo().getZeroRegNum())
Misha Brukmana98cd452003-05-20 20:32:24 +0000747 .addReg(vreg).addRegDef(vreg);
Chris Lattner20b1ea02001-09-14 03:47:57 +0000748}
749
750
Vikram S. Adve242a8082002-05-19 15:25:51 +0000751// Create instruction sequence for any shift operation.
752// SLL or SLLX on an operand smaller than the integer reg. size (64bits)
753// requires a second instruction for explicit sign-extension.
754// Note that we only have to worry about a sign-bit appearing in the
755// most significant bit of the operand after shifting (e.g., bit 32 of
756// Int or bit 16 of Short), so we do not have to worry about results
757// that are as large as a normal integer register.
758//
759static inline void
760CreateShiftInstructions(const TargetMachine& target,
761 Function* F,
762 MachineOpCode shiftOpCode,
763 Value* argVal1,
764 Value* optArgVal2, /* Use optArgVal2 if not NULL */
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000765 unsigned optShiftNum, /* else use optShiftNum */
Vikram S. Adve242a8082002-05-19 15:25:51 +0000766 Instruction* destVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000767 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000768 MachineCodeForInstruction& mcfi)
769{
770 assert((optArgVal2 != NULL || optShiftNum <= 64) &&
771 "Large shift sizes unexpected, but can be handled below: "
772 "You need to check whether or not it fits in immed field below");
773
774 // If this is a logical left shift of a type smaller than the standard
775 // integer reg. size, we have to extend the sign-bit into upper bits
776 // of dest, so we need to put the result of the SLL into a temporary.
777 //
778 Value* shiftDest = destVal;
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000779 unsigned opSize = target.getTargetData().getTypeSize(argVal1->getType());
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000780
Misha Brukmand36e30e2003-06-06 09:52:23 +0000781 if ((shiftOpCode == V9::SLLr5 || shiftOpCode == V9::SLLXr6) && opSize < 8) {
Misha Brukman7b647942003-05-30 20:11:56 +0000782 // put SLL result into a temporary
Vikram S. Adved0d06ad2003-05-31 07:32:01 +0000783 shiftDest = new TmpInstruction(mcfi, argVal1, optArgVal2, "sllTmp");
Misha Brukman7b647942003-05-30 20:11:56 +0000784 }
Vikram S. Adve242a8082002-05-19 15:25:51 +0000785
786 MachineInstr* M = (optArgVal2 != NULL)
Chris Lattnere5b1ed92003-01-15 00:03:28 +0000787 ? BuildMI(shiftOpCode, 3).addReg(argVal1).addReg(optArgVal2)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000788 .addReg(shiftDest, MachineOperand::Def)
Chris Lattnere5b1ed92003-01-15 00:03:28 +0000789 : BuildMI(shiftOpCode, 3).addReg(argVal1).addZImm(optShiftNum)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +0000790 .addReg(shiftDest, MachineOperand::Def);
Vikram S. Adve242a8082002-05-19 15:25:51 +0000791 mvec.push_back(M);
792
Misha Brukman7b647942003-05-30 20:11:56 +0000793 if (shiftDest != destVal) {
794 // extend the sign-bit of the result into all upper bits of dest
795 assert(8*opSize <= 32 && "Unexpected type size > 4 and < IntRegSize?");
796 target.getInstrInfo().
797 CreateSignExtensionInstructions(target, F, shiftDest, destVal,
798 8*opSize, mvec, mcfi);
799 }
Vikram S. Adve242a8082002-05-19 15:25:51 +0000800}
801
802
Vikram S. Adve74825322002-03-18 03:15:35 +0000803// Does not create any instructions if we cannot exploit constant to
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000804// create a cheaper instruction.
805// This returns the approximate cost of the instructions generated,
806// which is used to pick the cheapest when both operands are constant.
Vikram S. Adve645fea32003-05-25 21:59:47 +0000807static unsigned
Vikram S. Adve242a8082002-05-19 15:25:51 +0000808CreateMulConstInstruction(const TargetMachine &target, Function* F,
809 Value* lval, Value* rval, Instruction* destVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000810 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000811 MachineCodeForInstruction& mcfi)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000812{
Vikram S. Adve242a8082002-05-19 15:25:51 +0000813 /* Use max. multiply cost, viz., cost of MULX */
Misha Brukman91aee472003-05-27 22:37:00 +0000814 unsigned cost = target.getInstrInfo().minLatency(V9::MULXr);
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000815 unsigned firstNewInstr = mvec.size();
Vikram S. Adve74825322002-03-18 03:15:35 +0000816
817 Value* constOp = rval;
818 if (! isa<Constant>(constOp))
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000819 return cost;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000820
821 // Cases worth optimizing are:
822 // (1) Multiply by 0 or 1 for any type: replace with copy (ADD or FMOV)
823 // (2) Multiply by 2^x for integer types: replace with Shift
824 //
Vikram S. Adve74825322002-03-18 03:15:35 +0000825 const Type* resultType = destVal->getType();
Chris Lattner20b1ea02001-09-14 03:47:57 +0000826
Misha Brukmana98cd452003-05-20 20:32:24 +0000827 if (resultType->isInteger() || isa<PointerType>(resultType)) {
828 bool isValidConst;
Vikram S. Advee6124d32003-07-29 19:59:23 +0000829 int64_t C = (int64_t) target.getInstrInfo().ConvertConstantToIntType(target,
830 constOp, constOp->getType(), isValidConst);
Misha Brukmana98cd452003-05-20 20:32:24 +0000831 if (isValidConst) {
832 unsigned pow;
833 bool needNeg = false;
834 if (C < 0) {
835 needNeg = true;
836 C = -C;
837 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000838
Misha Brukmana98cd452003-05-20 20:32:24 +0000839 if (C == 0 || C == 1) {
Misha Brukman91aee472003-05-27 22:37:00 +0000840 cost = target.getInstrInfo().minLatency(V9::ADDr);
Misha Brukmana98cd452003-05-20 20:32:24 +0000841 unsigned Zero = target.getRegInfo().getZeroRegNum();
842 MachineInstr* M;
843 if (C == 0)
Misha Brukman91aee472003-05-27 22:37:00 +0000844 M =BuildMI(V9::ADDr,3).addMReg(Zero).addMReg(Zero).addRegDef(destVal);
Misha Brukmana98cd452003-05-20 20:32:24 +0000845 else
Misha Brukman91aee472003-05-27 22:37:00 +0000846 M = BuildMI(V9::ADDr,3).addReg(lval).addMReg(Zero).addRegDef(destVal);
Misha Brukmana98cd452003-05-20 20:32:24 +0000847 mvec.push_back(M);
Misha Brukman7b647942003-05-30 20:11:56 +0000848 } else if (isPowerOf2(C, pow)) {
Misha Brukmana98cd452003-05-20 20:32:24 +0000849 unsigned opSize = target.getTargetData().getTypeSize(resultType);
Misha Brukmand36e30e2003-06-06 09:52:23 +0000850 MachineOpCode opCode = (opSize <= 32)? V9::SLLr5 : V9::SLLXr6;
Misha Brukmana98cd452003-05-20 20:32:24 +0000851 CreateShiftInstructions(target, F, opCode, lval, NULL, pow,
852 destVal, mvec, mcfi);
853 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000854
Misha Brukman7b647942003-05-30 20:11:56 +0000855 if (mvec.size() > 0 && needNeg) {
856 // insert <reg = SUB 0, reg> after the instr to flip the sign
Misha Brukmana98cd452003-05-20 20:32:24 +0000857 MachineInstr* M = CreateIntNegInstruction(target, destVal);
858 mvec.push_back(M);
859 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000860 }
Misha Brukmana98cd452003-05-20 20:32:24 +0000861 } else {
862 if (ConstantFP *FPC = dyn_cast<ConstantFP>(constOp)) {
863 double dval = FPC->getValue();
864 if (fabs(dval) == 1) {
865 MachineOpCode opCode = (dval < 0)
866 ? (resultType == Type::FloatTy? V9::FNEGS : V9::FNEGD)
867 : (resultType == Type::FloatTy? V9::FMOVS : V9::FMOVD);
868 mvec.push_back(BuildMI(opCode,2).addReg(lval).addRegDef(destVal));
869 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000870 }
Misha Brukmana98cd452003-05-20 20:32:24 +0000871 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000872
Misha Brukmana98cd452003-05-20 20:32:24 +0000873 if (firstNewInstr < mvec.size()) {
874 cost = 0;
875 for (unsigned i=firstNewInstr; i < mvec.size(); ++i)
Brian Gaeke12c1d2c2004-02-11 20:47:34 +0000876 cost += target.getInstrInfo().minLatency(mvec[i]->getOpcode());
Misha Brukmana98cd452003-05-20 20:32:24 +0000877 }
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000878
879 return cost;
Vikram S. Adve74825322002-03-18 03:15:35 +0000880}
881
882
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000883// Does not create any instructions if we cannot exploit constant to
884// create a cheaper instruction.
885//
886static inline void
887CreateCheapestMulConstInstruction(const TargetMachine &target,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000888 Function* F,
889 Value* lval, Value* rval,
890 Instruction* destVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000891 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000892 MachineCodeForInstruction& mcfi)
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000893{
894 Value* constOp;
Misha Brukman7b647942003-05-30 20:11:56 +0000895 if (isa<Constant>(lval) && isa<Constant>(rval)) {
896 // both operands are constant: evaluate and "set" in dest
Chris Lattnerd4d4ab52004-01-12 18:08:18 +0000897 Constant* P = ConstantExpr::get(Instruction::Mul,
898 cast<Constant>(lval),
899 cast<Constant>(rval));
Misha Brukman7b647942003-05-30 20:11:56 +0000900 target.getInstrInfo().CreateCodeToLoadConst(target,F,P,destVal,mvec,mcfi);
901 }
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000902 else if (isa<Constant>(rval)) // rval is constant, but not lval
Vikram S. Adve242a8082002-05-19 15:25:51 +0000903 CreateMulConstInstruction(target, F, lval, rval, destVal, mvec, mcfi);
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000904 else if (isa<Constant>(lval)) // lval is constant, but not rval
Vikram S. Adve242a8082002-05-19 15:25:51 +0000905 CreateMulConstInstruction(target, F, lval, rval, destVal, mvec, mcfi);
Vikram S. Advefd3900a2002-03-24 03:33:02 +0000906
907 // else neither is constant
908 return;
909}
910
Vikram S. Adve74825322002-03-18 03:15:35 +0000911// Return NULL if we cannot exploit constant to create a cheaper instruction
912static inline void
Vikram S. Adve242a8082002-05-19 15:25:51 +0000913CreateMulInstruction(const TargetMachine &target, Function* F,
914 Value* lval, Value* rval, Instruction* destVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000915 std::vector<MachineInstr*>& mvec,
Vikram S. Adve242a8082002-05-19 15:25:51 +0000916 MachineCodeForInstruction& mcfi,
Chris Lattner07239692004-02-29 05:57:59 +0000917 MachineOpCode forceMulOp = -1)
Vikram S. Adve74825322002-03-18 03:15:35 +0000918{
Chris Lattnerea45d7b2002-12-28 20:19:44 +0000919 unsigned L = mvec.size();
Vikram S. Adve242a8082002-05-19 15:25:51 +0000920 CreateCheapestMulConstInstruction(target,F, lval, rval, destVal, mvec, mcfi);
Misha Brukmana98cd452003-05-20 20:32:24 +0000921 if (mvec.size() == L) {
922 // no instructions were added so create MUL reg, reg, reg.
923 // Use FSMULD if both operands are actually floats cast to doubles.
924 // Otherwise, use the default opcode for the appropriate type.
Chris Lattner07239692004-02-29 05:57:59 +0000925 MachineOpCode mulOp = ((forceMulOp != -1)
Misha Brukmana98cd452003-05-20 20:32:24 +0000926 ? forceMulOp
927 : ChooseMulInstructionByType(destVal->getType()));
928 mvec.push_back(BuildMI(mulOp, 3).addReg(lval).addReg(rval)
929 .addRegDef(destVal));
930 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000931}
932
933
Vikram S. Adve510eec72001-11-04 21:59:14 +0000934// Generate a divide instruction for Div or Rem.
935// For Rem, this assumes that the operand type will be signed if the result
936// type is signed. This is correct because they must have the same sign.
937//
Chris Lattner20b1ea02001-09-14 03:47:57 +0000938static inline MachineOpCode
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000939ChooseDivInstruction(TargetMachine &target,
940 const InstructionNode* instrNode)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000941{
Misha Brukmana98cd452003-05-20 20:32:24 +0000942 MachineOpCode opCode = V9::INVALID_OPCODE;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000943
944 const Type* resultType = instrNode->getInstruction()->getType();
945
Chris Lattner0c4e8862002-09-03 01:08:28 +0000946 if (resultType->isInteger())
Misha Brukman91aee472003-05-27 22:37:00 +0000947 opCode = resultType->isSigned()? V9::SDIVXr : V9::UDIVXr;
Chris Lattner20b1ea02001-09-14 03:47:57 +0000948 else
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000949 switch(resultType->getPrimitiveID())
950 {
Misha Brukmana98cd452003-05-20 20:32:24 +0000951 case Type::FloatTyID: opCode = V9::FDIVS; break;
952 case Type::DoubleTyID: opCode = V9::FDIVD; break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000953 default: assert(0 && "Invalid type for DIV instruction"); break;
954 }
Chris Lattner20b1ea02001-09-14 03:47:57 +0000955
956 return opCode;
957}
958
959
Chris Lattner54e898e2003-01-15 19:23:34 +0000960// Return if we cannot exploit constant to create a cheaper instruction
Vikram S. Adve645fea32003-05-25 21:59:47 +0000961static void
Vikram S. Adve4cecdd22001-10-01 00:12:53 +0000962CreateDivConstInstruction(TargetMachine &target,
963 const InstructionNode* instrNode,
Misha Brukmanee563cb2003-05-21 17:59:06 +0000964 std::vector<MachineInstr*>& mvec)
Chris Lattner20b1ea02001-09-14 03:47:57 +0000965{
Chris Lattner54e898e2003-01-15 19:23:34 +0000966 Value* LHS = instrNode->leftChild()->getValue();
Chris Lattner20b1ea02001-09-14 03:47:57 +0000967 Value* constOp = ((InstrTreeNode*) instrNode->rightChild())->getValue();
Chris Lattner54e898e2003-01-15 19:23:34 +0000968 if (!isa<Constant>(constOp))
Vikram S. Adve74825322002-03-18 03:15:35 +0000969 return;
Chris Lattner54e898e2003-01-15 19:23:34 +0000970
Vikram S. Adve645fea32003-05-25 21:59:47 +0000971 Instruction* destVal = instrNode->getInstruction();
Chris Lattner54e898e2003-01-15 19:23:34 +0000972 unsigned ZeroReg = target.getRegInfo().getZeroRegNum();
Chris Lattner20b1ea02001-09-14 03:47:57 +0000973
974 // Cases worth optimizing are:
975 // (1) Divide by 1 for any type: replace with copy (ADD or FMOV)
976 // (2) Divide by 2^x for integer types: replace with SR[L or A]{X}
977 //
978 const Type* resultType = instrNode->getInstruction()->getType();
Chris Lattner54e898e2003-01-15 19:23:34 +0000979
Misha Brukman7b647942003-05-30 20:11:56 +0000980 if (resultType->isInteger()) {
Misha Brukmana98cd452003-05-20 20:32:24 +0000981 unsigned pow;
982 bool isValidConst;
Vikram S. Advee6124d32003-07-29 19:59:23 +0000983 int64_t C = (int64_t) target.getInstrInfo().ConvertConstantToIntType(target,
984 constOp, constOp->getType(), isValidConst);
Misha Brukmana98cd452003-05-20 20:32:24 +0000985 if (isValidConst) {
986 bool needNeg = false;
987 if (C < 0) {
988 needNeg = true;
989 C = -C;
990 }
Vikram S. Advee6124d32003-07-29 19:59:23 +0000991
Misha Brukmana98cd452003-05-20 20:32:24 +0000992 if (C == 1) {
Misha Brukman91aee472003-05-27 22:37:00 +0000993 mvec.push_back(BuildMI(V9::ADDr, 3).addReg(LHS).addMReg(ZeroReg)
Vikram S. Adve645fea32003-05-25 21:59:47 +0000994 .addRegDef(destVal));
Misha Brukmana98cd452003-05-20 20:32:24 +0000995 } else if (isPowerOf2(C, pow)) {
Vikram S. Adve645fea32003-05-25 21:59:47 +0000996 unsigned opCode;
997 Value* shiftOperand;
Vikram S. Advee895a742003-08-06 18:48:40 +0000998 unsigned opSize = target.getTargetData().getTypeSize(resultType);
Vikram S. Adve645fea32003-05-25 21:59:47 +0000999
1000 if (resultType->isSigned()) {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001001 // For N / 2^k, if the operand N is negative,
1002 // we need to add (2^k - 1) before right-shifting by k, i.e.,
Vikram S. Adve645fea32003-05-25 21:59:47 +00001003 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001004 // (N / 2^k) = N >> k, if N >= 0;
1005 // (N + 2^k - 1) >> k, if N < 0
1006 //
1007 // If N is <= 32 bits, use:
1008 // sra N, 31, t1 // t1 = ~0, if N < 0, 0 else
1009 // srl t1, 32-k, t2 // t2 = 2^k - 1, if N < 0, 0 else
1010 // add t2, N, t3 // t3 = N + 2^k -1, if N < 0, N else
1011 // sra t3, k, result // result = N / 2^k
1012 //
1013 // If N is 64 bits, use:
1014 // srax N, k-1, t1 // t1 = sign bit in high k positions
1015 // srlx t1, 64-k, t2 // t2 = 2^k - 1, if N < 0, 0 else
1016 // add t2, N, t3 // t3 = N + 2^k -1, if N < 0, N else
1017 // sra t3, k, result // result = N / 2^k
1018 //
1019 TmpInstruction *sraTmp, *srlTmp, *addTmp;
Vikram S. Adve645fea32003-05-25 21:59:47 +00001020 MachineCodeForInstruction& mcfi
1021 = MachineCodeForInstruction::get(destVal);
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001022 sraTmp = new TmpInstruction(mcfi, resultType, LHS, 0, "getSign");
1023 srlTmp = new TmpInstruction(mcfi, resultType, LHS, 0, "getPlus2km1");
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001024 addTmp = new TmpInstruction(mcfi, resultType, LHS, srlTmp,"incIfNeg");
Vikram S. Adve645fea32003-05-25 21:59:47 +00001025
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001026 // Create the SRA or SRAX instruction to get the sign bit
Vikram S. Advee895a742003-08-06 18:48:40 +00001027 mvec.push_back(BuildMI((opSize > 4)? V9::SRAXi6 : V9::SRAi5, 3)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001028 .addReg(LHS)
1029 .addSImm((resultType==Type::LongTy)? pow-1 : 31)
1030 .addRegDef(sraTmp));
1031
Vikram S. Adve645fea32003-05-25 21:59:47 +00001032 // Create the SRL or SRLX instruction to get the sign bit
Vikram S. Advee895a742003-08-06 18:48:40 +00001033 mvec.push_back(BuildMI((opSize > 4)? V9::SRLXi6 : V9::SRLi5, 3)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001034 .addReg(sraTmp)
1035 .addSImm((resultType==Type::LongTy)? 64-pow : 32-pow)
Vikram S. Adve645fea32003-05-25 21:59:47 +00001036 .addRegDef(srlTmp));
1037
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001038 // Create the ADD instruction to add 2^pow-1 for negative values
Misha Brukman91aee472003-05-27 22:37:00 +00001039 mvec.push_back(BuildMI(V9::ADDr, 3).addReg(LHS).addReg(srlTmp)
Vikram S. Adve645fea32003-05-25 21:59:47 +00001040 .addRegDef(addTmp));
1041
1042 // Get the shift operand and "right-shift" opcode to do the divide
1043 shiftOperand = addTmp;
Vikram S. Advee895a742003-08-06 18:48:40 +00001044 opCode = (opSize > 4)? V9::SRAXi6 : V9::SRAi5;
Misha Brukman7b647942003-05-30 20:11:56 +00001045 } else {
Vikram S. Adve645fea32003-05-25 21:59:47 +00001046 // Get the shift operand and "right-shift" opcode to do the divide
1047 shiftOperand = LHS;
Vikram S. Advee895a742003-08-06 18:48:40 +00001048 opCode = (opSize > 4)? V9::SRLXi6 : V9::SRLi5;
Vikram S. Adve645fea32003-05-25 21:59:47 +00001049 }
1050
1051 // Now do the actual shift!
1052 mvec.push_back(BuildMI(opCode, 3).addReg(shiftOperand).addZImm(pow)
1053 .addRegDef(destVal));
Misha Brukmana98cd452003-05-20 20:32:24 +00001054 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001055
Misha Brukmana98cd452003-05-20 20:32:24 +00001056 if (needNeg && (C == 1 || isPowerOf2(C, pow))) {
1057 // insert <reg = SUB 0, reg> after the instr to flip the sign
Vikram S. Adve645fea32003-05-25 21:59:47 +00001058 mvec.push_back(CreateIntNegInstruction(target, destVal));
Misha Brukmana98cd452003-05-20 20:32:24 +00001059 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001060 }
Misha Brukmana98cd452003-05-20 20:32:24 +00001061 } else {
1062 if (ConstantFP *FPC = dyn_cast<ConstantFP>(constOp)) {
1063 double dval = FPC->getValue();
1064 if (fabs(dval) == 1) {
1065 unsigned opCode =
1066 (dval < 0) ? (resultType == Type::FloatTy? V9::FNEGS : V9::FNEGD)
1067 : (resultType == Type::FloatTy? V9::FMOVS : V9::FMOVD);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001068
Vikram S. Adve645fea32003-05-25 21:59:47 +00001069 mvec.push_back(BuildMI(opCode, 2).addReg(LHS).addRegDef(destVal));
Misha Brukmana98cd452003-05-20 20:32:24 +00001070 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001071 }
Misha Brukmana98cd452003-05-20 20:32:24 +00001072 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001073}
1074
1075
Vikram S. Adve74825322002-03-18 03:15:35 +00001076static void
1077CreateCodeForVariableSizeAlloca(const TargetMachine& target,
1078 Instruction* result,
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001079 unsigned tsize,
Vikram S. Adve74825322002-03-18 03:15:35 +00001080 Value* numElementsVal,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001081 std::vector<MachineInstr*>& getMvec)
Vikram S. Adve74825322002-03-18 03:15:35 +00001082{
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001083 Value* totalSizeVal;
Vikram S. Adve74825322002-03-18 03:15:35 +00001084 MachineInstr* M;
Vikram S. Adved3e26482002-10-13 00:18:57 +00001085 MachineCodeForInstruction& mcfi = MachineCodeForInstruction::get(result);
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001086 Function *F = result->getParent()->getParent();
Vikram S. Adved3e26482002-10-13 00:18:57 +00001087
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001088 // Enforce the alignment constraints on the stack pointer at
1089 // compile time if the total size is a known constant.
Misha Brukman7b647942003-05-30 20:11:56 +00001090 if (isa<Constant>(numElementsVal)) {
1091 bool isValid;
Vikram S. Advee6124d32003-07-29 19:59:23 +00001092 int64_t numElem = (int64_t) target.getInstrInfo().
1093 ConvertConstantToIntType(target, numElementsVal,
1094 numElementsVal->getType(), isValid);
Misha Brukman7b647942003-05-30 20:11:56 +00001095 assert(isValid && "Unexpectedly large array dimension in alloca!");
1096 int64_t total = numElem * tsize;
1097 if (int extra= total % target.getFrameInfo().getStackFrameSizeAlignment())
1098 total += target.getFrameInfo().getStackFrameSizeAlignment() - extra;
1099 totalSizeVal = ConstantSInt::get(Type::IntTy, total);
1100 } else {
1101 // The size is not a constant. Generate code to compute it and
1102 // code to pad the size for stack alignment.
1103 // Create a Value to hold the (constant) element size
1104 Value* tsizeVal = ConstantSInt::get(Type::IntTy, tsize);
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001105
Misha Brukman7b647942003-05-30 20:11:56 +00001106 // Create temporary values to hold the result of MUL, SLL, SRL
Vikram S. Adve80544442003-06-23 02:13:57 +00001107 // To pad `size' to next smallest multiple of 16:
1108 // size = (size + 15) & (-16 = 0xfffffffffffffff0)
1109 //
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001110 TmpInstruction* tmpProd = new TmpInstruction(mcfi,numElementsVal, tsizeVal);
Vikram S. Adve80544442003-06-23 02:13:57 +00001111 TmpInstruction* tmpAdd15= new TmpInstruction(mcfi,numElementsVal, tmpProd);
1112 TmpInstruction* tmpAndf0= new TmpInstruction(mcfi,numElementsVal, tmpAdd15);
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001113
Misha Brukman7b647942003-05-30 20:11:56 +00001114 // Instruction 1: mul numElements, typeSize -> tmpProd
1115 // This will optimize the MUL as far as possible.
Vikram S. Adve80544442003-06-23 02:13:57 +00001116 CreateMulInstruction(target, F, numElementsVal, tsizeVal, tmpProd, getMvec,
Chris Lattner07239692004-02-29 05:57:59 +00001117 mcfi, -1);
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001118
Vikram S. Adve80544442003-06-23 02:13:57 +00001119 // Instruction 2: andn tmpProd, 0x0f -> tmpAndn
1120 getMvec.push_back(BuildMI(V9::ADDi, 3).addReg(tmpProd).addSImm(15)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001121 .addReg(tmpAdd15, MachineOperand::Def));
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001122
Vikram S. Adve80544442003-06-23 02:13:57 +00001123 // Instruction 3: add tmpAndn, 0x10 -> tmpAdd16
1124 getMvec.push_back(BuildMI(V9::ANDi, 3).addReg(tmpAdd15).addSImm(-16)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001125 .addReg(tmpAndf0, MachineOperand::Def));
Vikram S. Adve80544442003-06-23 02:13:57 +00001126
1127 totalSizeVal = tmpAndf0;
Misha Brukman7b647942003-05-30 20:11:56 +00001128 }
Vikram S. Adve74825322002-03-18 03:15:35 +00001129
1130 // Get the constant offset from SP for dynamically allocated storage
1131 // and create a temporary Value to hold it.
Misha Brukmanfce11432002-10-28 00:28:31 +00001132 MachineFunction& mcInfo = MachineFunction::get(F);
Vikram S. Adve74825322002-03-18 03:15:35 +00001133 bool growUp;
1134 ConstantSInt* dynamicAreaOffset =
1135 ConstantSInt::get(Type::IntTy,
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001136 target.getFrameInfo().getDynamicAreaOffset(mcInfo,growUp));
Vikram S. Adve74825322002-03-18 03:15:35 +00001137 assert(! growUp && "Has SPARC v9 stack frame convention changed?");
1138
Chris Lattner54e898e2003-01-15 19:23:34 +00001139 unsigned SPReg = target.getRegInfo().getStackPointer();
1140
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001141 // Instruction 2: sub %sp, totalSizeVal -> %sp
Misha Brukman91aee472003-05-27 22:37:00 +00001142 getMvec.push_back(BuildMI(V9::SUBr, 3).addMReg(SPReg).addReg(totalSizeVal)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001143 .addMReg(SPReg,MachineOperand::Def));
Vikram S. Adveaabb5952002-10-29 19:37:31 +00001144
Vikram S. Adve74825322002-03-18 03:15:35 +00001145 // Instruction 3: add %sp, frameSizeBelowDynamicArea -> result
Misha Brukman91aee472003-05-27 22:37:00 +00001146 getMvec.push_back(BuildMI(V9::ADDr,3).addMReg(SPReg).addReg(dynamicAreaOffset)
Misha Brukmana98cd452003-05-20 20:32:24 +00001147 .addRegDef(result));
Vikram S. Adve74825322002-03-18 03:15:35 +00001148}
1149
1150
1151static void
1152CreateCodeForFixedSizeAlloca(const TargetMachine& target,
1153 Instruction* result,
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001154 unsigned tsize,
1155 unsigned numElements,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001156 std::vector<MachineInstr*>& getMvec)
Vikram S. Adve74825322002-03-18 03:15:35 +00001157{
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001158 assert(result && result->getParent() &&
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001159 "Result value is not part of a function?");
1160 Function *F = result->getParent()->getParent();
Misha Brukmanfce11432002-10-28 00:28:31 +00001161 MachineFunction &mcInfo = MachineFunction::get(F);
Vikram S. Adve74825322002-03-18 03:15:35 +00001162
Chris Lattner6b835362004-03-19 04:21:43 +00001163 // If the alloca is of zero bytes (which is perfectly legal) we bump it up to
1164 // one byte. This is unnecessary, but I really don't want to break any
1165 // fragile logic in this code. FIXME.
1166 if (tsize == 0)
1167 tsize = 1;
1168
1169
Vikram S. Adveea28dd32003-07-02 06:59:22 +00001170 // Put the variable in the dynamically sized area of the frame if either:
1171 // (a) The offset is too large to use as an immediate in load/stores
1172 // (check LDX because all load/stores have the same-size immed. field).
1173 // (b) The object is "large", so it could cause many other locals,
1174 // spills, and temporaries to have large offsets.
1175 // NOTE: We use LARGE = 8 * argSlotSize = 64 bytes.
1176 // You've gotta love having only 13 bits for constant offset values :-|.
1177 //
1178 unsigned paddedSize;
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001179 int offsetFromFP = mcInfo.getInfo()->computeOffsetforLocalVar(result,
Vikram S. Adveea28dd32003-07-02 06:59:22 +00001180 paddedSize,
1181 tsize * numElements);
1182
1183 if (((int)paddedSize) > 8 * target.getFrameInfo().getSizeOfEachArgOnStack() ||
1184 ! target.getInstrInfo().constantFitsInImmedField(V9::LDXi,offsetFromFP)) {
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001185 CreateCodeForVariableSizeAlloca(target, result, tsize,
1186 ConstantSInt::get(Type::IntTy,numElements),
1187 getMvec);
1188 return;
1189 }
Vikram S. Adve74825322002-03-18 03:15:35 +00001190
1191 // else offset fits in immediate field so go ahead and allocate it.
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001192 offsetFromFP = mcInfo.getInfo()->allocateLocalVar(result, tsize *numElements);
Vikram S. Adve74825322002-03-18 03:15:35 +00001193
1194 // Create a temporary Value to hold the constant offset.
1195 // This is needed because it may not fit in the immediate field.
1196 ConstantSInt* offsetVal = ConstantSInt::get(Type::IntTy, offsetFromFP);
1197
1198 // Instruction 1: add %fp, offsetFromFP -> result
Chris Lattner54e898e2003-01-15 19:23:34 +00001199 unsigned FPReg = target.getRegInfo().getFramePointer();
Misha Brukman91aee472003-05-27 22:37:00 +00001200 getMvec.push_back(BuildMI(V9::ADDr, 3).addMReg(FPReg).addReg(offsetVal)
Misha Brukmana98cd452003-05-20 20:32:24 +00001201 .addRegDef(result));
Vikram S. Adve74825322002-03-18 03:15:35 +00001202}
1203
1204
Chris Lattner20b1ea02001-09-14 03:47:57 +00001205//------------------------------------------------------------------------
1206// Function SetOperandsForMemInstr
1207//
1208// Choose addressing mode for the given load or store instruction.
1209// Use [reg+reg] if it is an indexed reference, and the index offset is
1210// not a constant or if it cannot fit in the offset field.
1211// Use [reg+offset] in all other cases.
1212//
1213// This assumes that all array refs are "lowered" to one of these forms:
1214// %x = load (subarray*) ptr, constant ; single constant offset
1215// %x = load (subarray*) ptr, offsetVal ; single non-constant offset
1216// Generally, this should happen via strength reduction + LICM.
1217// Also, strength reduction should take care of using the same register for
1218// the loop index variable and an array index, when that is profitable.
1219//------------------------------------------------------------------------
1220
1221static void
Chris Lattner54e898e2003-01-15 19:23:34 +00001222SetOperandsForMemInstr(unsigned Opcode,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001223 std::vector<MachineInstr*>& mvec,
Vikram S. Adveefc94332002-10-14 16:32:24 +00001224 InstructionNode* vmInstrNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001225 const TargetMachine& target)
Chris Lattner20b1ea02001-09-14 03:47:57 +00001226{
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001227 Instruction* memInst = vmInstrNode->getInstruction();
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001228 // Index vector, ptr value, and flag if all indices are const.
Misha Brukmanee563cb2003-05-21 17:59:06 +00001229 std::vector<Value*> idxVec;
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001230 bool allConstantIndices;
1231 Value* ptrVal = GetMemInstArgs(vmInstrNode, idxVec, allConstantIndices);
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001232
Vikram S. Adve8cfffd32002-08-24 20:56:53 +00001233 // Now create the appropriate operands for the machine instruction.
1234 // First, initialize so we default to storing the offset in a register.
Chris Lattner8e5c0b42001-11-07 14:01:59 +00001235 int64_t smallConstOffset = 0;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001236 Value* valueForRegOffset = NULL;
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001237 MachineOperand::MachineOperandType offsetOpType =
1238 MachineOperand::MO_VirtualRegister;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001239
Vikram S. Adve74825322002-03-18 03:15:35 +00001240 // Check if there is an index vector and if so, compute the
1241 // right offset for structures and for arrays
Chris Lattner20b1ea02001-09-14 03:47:57 +00001242 //
Misha Brukman7b647942003-05-30 20:11:56 +00001243 if (!idxVec.empty()) {
1244 const PointerType* ptrType = cast<PointerType>(ptrVal->getType());
Chris Lattner20b1ea02001-09-14 03:47:57 +00001245
Misha Brukman7b647942003-05-30 20:11:56 +00001246 // If all indices are constant, compute the combined offset directly.
1247 if (allConstantIndices) {
1248 // Compute the offset value using the index vector. Create a
1249 // virtual reg. for it since it may not fit in the immed field.
1250 uint64_t offset = target.getTargetData().getIndexedOffset(ptrType,idxVec);
1251 valueForRegOffset = ConstantSInt::get(Type::LongTy, offset);
1252 } else {
1253 // There is at least one non-constant offset. Therefore, this must
1254 // be an array ref, and must have been lowered to a single non-zero
1255 // offset. (An extra leading zero offset, if any, can be ignored.)
1256 // Generate code sequence to compute address from index.
1257 //
1258 bool firstIdxIsZero = IsZero(idxVec[0]);
1259 assert(idxVec.size() == 1U + firstIdxIsZero
1260 && "Array refs must be lowered before Instruction Selection");
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001261
Misha Brukman7b647942003-05-30 20:11:56 +00001262 Value* idxVal = idxVec[firstIdxIsZero];
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001263
Misha Brukman7b647942003-05-30 20:11:56 +00001264 std::vector<MachineInstr*> mulVec;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001265 Instruction* addr =
1266 new TmpInstruction(MachineCodeForInstruction::get(memInst),
1267 Type::ULongTy, memInst);
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001268
Misha Brukman7b647942003-05-30 20:11:56 +00001269 // Get the array type indexed by idxVal, and compute its element size.
1270 // The call to getTypeSize() will fail if size is not constant.
1271 const Type* vecType = (firstIdxIsZero
1272 ? GetElementPtrInst::getIndexedType(ptrType,
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001273 std::vector<Value*>(1U, idxVec[0]),
1274 /*AllowCompositeLeaf*/ true)
1275 : ptrType);
Misha Brukman7b647942003-05-30 20:11:56 +00001276 const Type* eltType = cast<SequentialType>(vecType)->getElementType();
1277 ConstantUInt* eltSizeVal = ConstantUInt::get(Type::ULongTy,
1278 target.getTargetData().getTypeSize(eltType));
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001279
Misha Brukman7b647942003-05-30 20:11:56 +00001280 // CreateMulInstruction() folds constants intelligently enough.
1281 CreateMulInstruction(target, memInst->getParent()->getParent(),
1282 idxVal, /* lval, not likely to be const*/
1283 eltSizeVal, /* rval, likely to be constant */
1284 addr, /* result */
1285 mulVec, MachineCodeForInstruction::get(memInst),
Chris Lattner07239692004-02-29 05:57:59 +00001286 -1);
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001287
Misha Brukman7b647942003-05-30 20:11:56 +00001288 assert(mulVec.size() > 0 && "No multiply code created?");
1289 mvec.insert(mvec.end(), mulVec.begin(), mulVec.end());
1290
1291 valueForRegOffset = addr;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001292 }
Misha Brukman7b647942003-05-30 20:11:56 +00001293 } else {
1294 offsetOpType = MachineOperand::MO_SignExtendedImmed;
1295 smallConstOffset = 0;
1296 }
Vikram S. Adveed3fefb2002-08-03 13:48:21 +00001297
Vikram S. Advea10d1a72002-03-31 19:07:35 +00001298 // For STORE:
1299 // Operand 0 is value, operand 1 is ptr, operand 2 is offset
1300 // For LOAD or GET_ELEMENT_PTR,
1301 // Operand 0 is ptr, operand 1 is offset, operand 2 is result.
1302 //
1303 unsigned offsetOpNum, ptrOpNum;
Chris Lattner54e898e2003-01-15 19:23:34 +00001304 MachineInstr *MI;
1305 if (memInst->getOpcode() == Instruction::Store) {
Misha Brukman7b647942003-05-30 20:11:56 +00001306 if (offsetOpType == MachineOperand::MO_VirtualRegister) {
Chris Lattner54e898e2003-01-15 19:23:34 +00001307 MI = BuildMI(Opcode, 3).addReg(vmInstrNode->leftChild()->getValue())
1308 .addReg(ptrVal).addReg(valueForRegOffset);
Misha Brukman7b647942003-05-30 20:11:56 +00001309 } else {
Misha Brukman91aee472003-05-27 22:37:00 +00001310 Opcode = convertOpcodeFromRegToImm(Opcode);
Chris Lattner54e898e2003-01-15 19:23:34 +00001311 MI = BuildMI(Opcode, 3).addReg(vmInstrNode->leftChild()->getValue())
1312 .addReg(ptrVal).addSImm(smallConstOffset);
Misha Brukman91aee472003-05-27 22:37:00 +00001313 }
Chris Lattner54e898e2003-01-15 19:23:34 +00001314 } else {
Misha Brukman7b647942003-05-30 20:11:56 +00001315 if (offsetOpType == MachineOperand::MO_VirtualRegister) {
Chris Lattner54e898e2003-01-15 19:23:34 +00001316 MI = BuildMI(Opcode, 3).addReg(ptrVal).addReg(valueForRegOffset)
1317 .addRegDef(memInst);
Misha Brukman7b647942003-05-30 20:11:56 +00001318 } else {
Misha Brukman91aee472003-05-27 22:37:00 +00001319 Opcode = convertOpcodeFromRegToImm(Opcode);
Chris Lattner54e898e2003-01-15 19:23:34 +00001320 MI = BuildMI(Opcode, 3).addReg(ptrVal).addSImm(smallConstOffset)
1321 .addRegDef(memInst);
Misha Brukman91aee472003-05-27 22:37:00 +00001322 }
Chris Lattner54e898e2003-01-15 19:23:34 +00001323 }
1324 mvec.push_back(MI);
Chris Lattner20b1ea02001-09-14 03:47:57 +00001325}
1326
1327
Chris Lattner20b1ea02001-09-14 03:47:57 +00001328//
1329// Substitute operand `operandNum' of the instruction in node `treeNode'
Vikram S. Advec025fc12001-10-14 23:28:43 +00001330// in place of the use(s) of that instruction in node `parent'.
1331// Check both explicit and implicit operands!
Vikram S. Adve74825322002-03-18 03:15:35 +00001332// Also make sure to skip over a parent who:
1333// (1) is a list node in the Burg tree, or
1334// (2) itself had its results forwarded to its parent
Chris Lattner20b1ea02001-09-14 03:47:57 +00001335//
1336static void
1337ForwardOperand(InstructionNode* treeNode,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001338 InstrTreeNode* parent,
1339 int operandNum)
Chris Lattner20b1ea02001-09-14 03:47:57 +00001340{
Vikram S. Adve243dd452001-09-18 13:03:13 +00001341 assert(treeNode && parent && "Invalid invocation of ForwardOperand");
1342
Chris Lattner20b1ea02001-09-14 03:47:57 +00001343 Instruction* unusedOp = treeNode->getInstruction();
1344 Value* fwdOp = unusedOp->getOperand(operandNum);
Vikram S. Adve243dd452001-09-18 13:03:13 +00001345
1346 // The parent itself may be a list node, so find the real parent instruction
1347 while (parent->getNodeType() != InstrTreeNode::NTInstructionNode)
1348 {
1349 parent = parent->parent();
1350 assert(parent && "ERROR: Non-instruction node has no parent in tree.");
1351 }
1352 InstructionNode* parentInstrNode = (InstructionNode*) parent;
1353
1354 Instruction* userInstr = parentInstrNode->getInstruction();
Chris Lattner9c461082002-02-03 07:50:56 +00001355 MachineCodeForInstruction &mvec = MachineCodeForInstruction::get(userInstr);
Vikram S. Adve74825322002-03-18 03:15:35 +00001356
1357 // The parent's mvec would be empty if it was itself forwarded.
1358 // Recursively call ForwardOperand in that case...
1359 //
Misha Brukman7b647942003-05-30 20:11:56 +00001360 if (mvec.size() == 0) {
1361 assert(parent->parent() != NULL &&
1362 "Parent could not have been forwarded, yet has no instructions?");
1363 ForwardOperand(treeNode, parent->parent(), operandNum);
1364 } else {
1365 for (unsigned i=0, N=mvec.size(); i < N; i++) {
1366 MachineInstr* minstr = mvec[i];
1367 for (unsigned i=0, numOps=minstr->getNumOperands(); i < numOps; ++i) {
1368 const MachineOperand& mop = minstr->getOperand(i);
1369 if (mop.getType() == MachineOperand::MO_VirtualRegister &&
1370 mop.getVRegValue() == unusedOp)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001371 {
Misha Brukman7b647942003-05-30 20:11:56 +00001372 minstr->SetMachineOperandVal(i, MachineOperand::MO_VirtualRegister,
1373 fwdOp);
1374 }
1375 }
Vikram S. Adve74825322002-03-18 03:15:35 +00001376
Misha Brukman7b647942003-05-30 20:11:56 +00001377 for (unsigned i=0,numOps=minstr->getNumImplicitRefs(); i<numOps; ++i)
Chris Lattner907b7dc2003-08-05 16:59:24 +00001378 if (minstr->getImplicitRef(i) == unusedOp)
1379 minstr->setImplicitRef(i, fwdOp);
Chris Lattner20b1ea02001-09-14 03:47:57 +00001380 }
Misha Brukman7b647942003-05-30 20:11:56 +00001381 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001382}
1383
1384
Vikram S. Adve242a8082002-05-19 15:25:51 +00001385inline bool
1386AllUsesAreBranches(const Instruction* setccI)
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001387{
Vikram S. Adve242a8082002-05-19 15:25:51 +00001388 for (Value::use_const_iterator UI=setccI->use_begin(), UE=setccI->use_end();
1389 UI != UE; ++UI)
1390 if (! isa<TmpInstruction>(*UI) // ignore tmp instructions here
1391 && cast<Instruction>(*UI)->getOpcode() != Instruction::Br)
1392 return false;
1393 return true;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001394}
1395
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001396// Generate code for any intrinsic that needs a special code sequence
1397// instead of a regular call. If not that kind of intrinsic, do nothing.
1398// Returns true if code was generated, otherwise false.
1399//
Chris Lattner37b18262003-12-28 09:46:33 +00001400static bool CodeGenIntrinsic(Intrinsic::ID iid, CallInst &callInstr,
1401 TargetMachine &target,
1402 std::vector<MachineInstr*>& mvec) {
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001403 switch (iid) {
Chris Lattner37b18262003-12-28 09:46:33 +00001404 default:
1405 assert(0 && "Unknown intrinsic function call should have been lowered!");
Chris Lattner317201d2004-03-13 00:24:00 +00001406 case Intrinsic::vastart: {
Vikram S. Adve40dee512003-10-21 11:25:09 +00001407 // Get the address of the first incoming vararg argument on the stack
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001408 bool ignore;
1409 Function* func = cast<Function>(callInstr.getParent()->getParent());
1410 int numFixedArgs = func->getFunctionType()->getNumParams();
1411 int fpReg = target.getFrameInfo().getIncomingArgBaseRegNum();
1412 int argSize = target.getFrameInfo().getSizeOfEachArgOnStack();
1413 int firstVarArgOff = numFixedArgs * argSize + target.getFrameInfo().
1414 getFirstIncomingArgOffset(MachineFunction::get(func), ignore);
Misha Brukman91aee472003-05-27 22:37:00 +00001415 mvec.push_back(BuildMI(V9::ADDi, 3).addMReg(fpReg).addSImm(firstVarArgOff).
Vikram S. Adve40dee512003-10-21 11:25:09 +00001416 addRegDef(&callInstr));
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001417 return true;
1418 }
1419
Chris Lattner317201d2004-03-13 00:24:00 +00001420 case Intrinsic::vaend:
Brian Gaekee3d68072004-02-25 18:44:15 +00001421 return true; // no-op on SparcV9
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001422
Chris Lattner317201d2004-03-13 00:24:00 +00001423 case Intrinsic::vacopy:
Vikram S. Adve40dee512003-10-21 11:25:09 +00001424 // Simple copy of current va_list (arg1) to new va_list (result)
Misha Brukman91aee472003-05-27 22:37:00 +00001425 mvec.push_back(BuildMI(V9::ORr, 3).
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001426 addMReg(target.getRegInfo().getZeroRegNum()).
Vikram S. Adve40dee512003-10-21 11:25:09 +00001427 addReg(callInstr.getOperand(1)).
1428 addRegDef(&callInstr));
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001429 return true;
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00001430 }
1431}
1432
Vikram S. Advefb361122001-10-22 13:36:31 +00001433//******************* Externally Visible Functions *************************/
1434
Vikram S. Advefb361122001-10-22 13:36:31 +00001435//------------------------------------------------------------------------
1436// External Function: ThisIsAChainRule
1437//
1438// Purpose:
1439// Check if a given BURG rule is a chain rule.
1440//------------------------------------------------------------------------
1441
1442extern bool
1443ThisIsAChainRule(int eruleno)
1444{
1445 switch(eruleno)
1446 {
1447 case 111: // stmt: reg
Vikram S. Advefb361122001-10-22 13:36:31 +00001448 case 123:
1449 case 124:
1450 case 125:
1451 case 126:
1452 case 127:
1453 case 128:
1454 case 129:
1455 case 130:
1456 case 131:
1457 case 132:
1458 case 133:
1459 case 155:
1460 case 221:
1461 case 222:
1462 case 241:
1463 case 242:
1464 case 243:
1465 case 244:
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001466 case 245:
Vikram S. Adve85e1e9c2002-04-01 20:28:48 +00001467 case 321:
Vikram S. Advefb361122001-10-22 13:36:31 +00001468 return true; break;
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001469
Vikram S. Advefb361122001-10-22 13:36:31 +00001470 default:
1471 return false; break;
1472 }
1473}
Chris Lattner20b1ea02001-09-14 03:47:57 +00001474
1475
1476//------------------------------------------------------------------------
1477// External Function: GetInstructionsByRule
1478//
1479// Purpose:
1480// Choose machine instructions for the SPARC according to the
1481// patterns chosen by the BURG-generated parser.
1482//------------------------------------------------------------------------
1483
Vikram S. Adve74825322002-03-18 03:15:35 +00001484void
Chris Lattner20b1ea02001-09-14 03:47:57 +00001485GetInstructionsByRule(InstructionNode* subtreeRoot,
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001486 int ruleForNode,
1487 short* nts,
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001488 TargetMachine &target,
Misha Brukmanee563cb2003-05-21 17:59:06 +00001489 std::vector<MachineInstr*>& mvec)
Chris Lattner20b1ea02001-09-14 03:47:57 +00001490{
Chris Lattner20b1ea02001-09-14 03:47:57 +00001491 bool checkCast = false; // initialize here to use fall-through
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00001492 bool maskUnsignedResult = false;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001493 int nextRule;
1494 int forwardOperandNum = -1;
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001495 unsigned allocaSize = 0;
Vikram S. Adve74825322002-03-18 03:15:35 +00001496 MachineInstr* M, *M2;
Chris Lattnerea45d7b2002-12-28 20:19:44 +00001497 unsigned L;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001498 bool foldCase = false;
Vikram S. Adve74825322002-03-18 03:15:35 +00001499
1500 mvec.clear();
Chris Lattner20b1ea02001-09-14 03:47:57 +00001501
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001502 // If the code for this instruction was folded into the parent (user),
1503 // then do nothing!
1504 if (subtreeRoot->isFoldedIntoParent())
1505 return;
1506
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001507 //
1508 // Let's check for chain rules outside the switch so that we don't have
1509 // to duplicate the list of chain rule production numbers here again
1510 //
Misha Brukmanb461d372003-10-23 16:48:30 +00001511 if (ThisIsAChainRule(ruleForNode)) {
1512 // Chain rules have a single nonterminal on the RHS.
1513 // Get the rule that matches the RHS non-terminal and use that instead.
1514 //
1515 assert(nts[0] && ! nts[1]
1516 && "A chain rule should have only one RHS non-terminal!");
1517 nextRule = burm_rule(subtreeRoot->state, nts[0]);
1518 nts = burm_nts[nextRule];
1519 GetInstructionsByRule(subtreeRoot, nextRule, nts, target, mvec);
1520 } else {
1521 switch(ruleForNode) {
1522 case 1: // stmt: Ret
1523 case 2: // stmt: RetValue(reg)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001524 { // NOTE: Prepass of register allocation is responsible
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001525 // for moving return value to appropriate register.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001526 // Copy the return value to the required return register.
1527 // Mark the return Value as an implicit ref of the RET instr..
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001528 // Mark the return-address register as a hidden virtual reg.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001529 // Finally put a NOP in the delay slot.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001530 ReturnInst *returnInstr=cast<ReturnInst>(subtreeRoot->getInstruction());
1531 Value* retVal = returnInstr->getReturnValue();
1532 MachineCodeForInstruction& mcfi =
1533 MachineCodeForInstruction::get(returnInstr);
1534
1535 // Create a hidden virtual reg to represent the return address register
1536 // used by the machine instruction but not represented in LLVM.
1537 //
1538 Instruction* returnAddrTmp = new TmpInstruction(mcfi, returnInstr);
1539
1540 MachineInstr* retMI =
1541 BuildMI(V9::JMPLRETi, 3).addReg(returnAddrTmp).addSImm(8)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001542 .addMReg(target.getRegInfo().getZeroRegNum(), MachineOperand::Def);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001543
Vikram S. Advee9a567c2003-07-25 21:08:58 +00001544 // If there is a value to return, we need to:
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001545 // (a) Sign-extend the value if it is smaller than 8 bytes (reg size)
1546 // (b) Insert a copy to copy the return value to the appropriate reg.
1547 // -- For FP values, create a FMOVS or FMOVD instruction
1548 // -- For non-FP values, create an add-with-0 instruction
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001549 //
1550 if (retVal != NULL) {
Brian Gaekee3d68072004-02-25 18:44:15 +00001551 const SparcV9RegInfo& regInfo =
1552 (SparcV9RegInfo&) target.getRegInfo();
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001553 const Type* retType = retVal->getType();
1554 unsigned regClassID = regInfo.getRegClassIDOfType(retType);
1555 unsigned retRegNum = (retType->isFloatingPoint()
Brian Gaekee3d68072004-02-25 18:44:15 +00001556 ? (unsigned) SparcV9FloatRegClass::f0
1557 : (unsigned) SparcV9IntRegClass::i0);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001558 retRegNum = regInfo.getUnifiedRegNum(regClassID, retRegNum);
1559
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001560 // () Insert sign-extension instructions for small signed values.
1561 //
1562 Value* retValToUse = retVal;
1563 if (retType->isIntegral() && retType->isSigned()) {
1564 unsigned retSize = target.getTargetData().getTypeSize(retType);
1565 if (retSize <= 4) {
1566 // create a temporary virtual reg. to hold the sign-extension
1567 retValToUse = new TmpInstruction(mcfi, retVal);
1568
1569 // sign-extend retVal and put the result in the temporary reg.
1570 target.getInstrInfo().CreateSignExtensionInstructions
1571 (target, returnInstr->getParent()->getParent(),
1572 retVal, retValToUse, 8*retSize, mvec, mcfi);
1573 }
1574 }
1575
1576 // (b) Now, insert a copy to to the appropriate register:
1577 // -- For FP values, create a FMOVS or FMOVD instruction
1578 // -- For non-FP values, create an add-with-0 instruction
1579 //
1580 // First, create a virtual register to represent the register and
1581 // mark this vreg as being an implicit operand of the ret MI.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001582 TmpInstruction* retVReg =
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001583 new TmpInstruction(mcfi, retValToUse, NULL, "argReg");
1584
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001585 retMI->addImplicitRef(retVReg);
Vikram S. Advee9a567c2003-07-25 21:08:58 +00001586
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001587 if (retType->isFloatingPoint())
1588 M = (BuildMI(retType==Type::FloatTy? V9::FMOVS : V9::FMOVD, 2)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001589 .addReg(retValToUse).addReg(retVReg, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001590 else
1591 M = (BuildMI(ChooseAddInstructionByType(retType), 3)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001592 .addReg(retValToUse).addSImm((int64_t) 0)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001593 .addReg(retVReg, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001594
1595 // Mark the operand with the register it should be assigned
1596 M->SetRegForOperand(M->getNumOperands()-1, retRegNum);
1597 retMI->SetRegForImplicitRef(retMI->getNumImplicitRefs()-1, retRegNum);
1598
1599 mvec.push_back(M);
1600 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001601
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001602 // Now insert the RET instruction and a NOP for the delay slot
1603 mvec.push_back(retMI);
Misha Brukmana98cd452003-05-20 20:32:24 +00001604 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001605
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001606 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001607 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001608
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001609 case 3: // stmt: Store(reg,reg)
1610 case 4: // stmt: Store(reg,ptrreg)
1611 SetOperandsForMemInstr(ChooseStoreInstruction(
Chris Lattner54e898e2003-01-15 19:23:34 +00001612 subtreeRoot->leftChild()->getValue()->getType()),
1613 mvec, subtreeRoot, target);
Misha Brukmanb3fabe02003-05-31 06:22:37 +00001614 break;
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001615
1616 case 5: // stmt: BrUncond
1617 {
1618 BranchInst *BI = cast<BranchInst>(subtreeRoot->getInstruction());
1619 mvec.push_back(BuildMI(V9::BA, 1).addPCDisp(BI->getSuccessor(0)));
1620
1621 // delay slot
1622 mvec.push_back(BuildMI(V9::NOP, 0));
1623 break;
1624 }
1625
1626 case 206: // stmt: BrCond(setCCconst)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001627 { // setCCconst => boolean was computed with `%b = setCC type reg1 const'
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001628 // If the constant is ZERO, we can use the branch-on-integer-register
1629 // instructions and avoid the SUBcc instruction entirely.
1630 // Otherwise this is just the same as case 5, so just fall through.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001631 //
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001632 InstrTreeNode* constNode = subtreeRoot->leftChild()->rightChild();
1633 assert(constNode &&
1634 constNode->getNodeType() ==InstrTreeNode::NTConstNode);
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001635 Constant *constVal = cast<Constant>(constNode->getValue());
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001636 bool isValidConst;
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001637
Chris Lattner0c4e8862002-09-03 01:08:28 +00001638 if ((constVal->getType()->isInteger()
Chris Lattner9b625032002-05-06 16:15:30 +00001639 || isa<PointerType>(constVal->getType()))
Vikram S. Advee6124d32003-07-29 19:59:23 +00001640 && target.getInstrInfo().ConvertConstantToIntType(target,
1641 constVal, constVal->getType(), isValidConst) == 0
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001642 && isValidConst)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001643 {
1644 // That constant is a zero after all...
1645 // Use the left child of setCC as the first argument!
1646 // Mark the setCC node so that no code is generated for it.
1647 InstructionNode* setCCNode = (InstructionNode*)
1648 subtreeRoot->leftChild();
1649 assert(setCCNode->getOpLabel() == SetCCOp);
1650 setCCNode->markFoldedIntoParent();
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001651
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001652 BranchInst* brInst=cast<BranchInst>(subtreeRoot->getInstruction());
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001653
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001654 M = BuildMI(ChooseBprInstruction(subtreeRoot), 2)
1655 .addReg(setCCNode->leftChild()->getValue())
1656 .addPCDisp(brInst->getSuccessor(0));
1657 mvec.push_back(M);
Vikram S. Advefd3900a2002-03-24 03:33:02 +00001658
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001659 // delay slot
1660 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001661
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001662 // false branch
1663 mvec.push_back(BuildMI(V9::BA, 1)
1664 .addPCDisp(brInst->getSuccessor(1)));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001665
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001666 // delay slot
1667 mvec.push_back(BuildMI(V9::NOP, 0));
1668 break;
1669 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001670 // ELSE FALL THROUGH
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001671 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001672
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001673 case 6: // stmt: BrCond(setCC)
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001674 { // bool => boolean was computed with SetCC.
1675 // The branch to use depends on whether it is FP, signed, or unsigned.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001676 // If it is an integer CC, we also need to find the unique
1677 // TmpInstruction representing that CC.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001678 //
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001679 BranchInst* brInst = cast<BranchInst>(subtreeRoot->getInstruction());
Vikram S. Adve786833a2003-07-06 20:13:59 +00001680 const Type* setCCType;
1681 unsigned Opcode = ChooseBccInstruction(subtreeRoot, setCCType);
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001682 Value* ccValue = GetTmpForCC(subtreeRoot->leftChild()->getValue(),
1683 brInst->getParent()->getParent(),
Vikram S. Adve786833a2003-07-06 20:13:59 +00001684 setCCType,
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001685 MachineCodeForInstruction::get(brInst));
Chris Lattner54e898e2003-01-15 19:23:34 +00001686 M = BuildMI(Opcode, 2).addCCReg(ccValue)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001687 .addPCDisp(brInst->getSuccessor(0));
Vikram S. Adve74825322002-03-18 03:15:35 +00001688 mvec.push_back(M);
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001689
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001690 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001691 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001692
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001693 // false branch
Misha Brukmana98cd452003-05-20 20:32:24 +00001694 mvec.push_back(BuildMI(V9::BA, 1).addPCDisp(brInst->getSuccessor(1)));
Vikram S. Adve30a6f492002-08-22 02:56:10 +00001695
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001696 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001697 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001698 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001699 }
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001700
1701 case 208: // stmt: BrCond(boolconst)
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001702 {
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001703 // boolconst => boolean is a constant; use BA to first or second label
Chris Lattnere9bb2df2001-12-03 22:26:30 +00001704 Constant* constVal =
1705 cast<Constant>(subtreeRoot->leftChild()->getValue());
1706 unsigned dest = cast<ConstantBool>(constVal)->getValue()? 0 : 1;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001707
Misha Brukmana98cd452003-05-20 20:32:24 +00001708 M = BuildMI(V9::BA, 1).addPCDisp(
Chris Lattner35504202002-04-27 03:14:39 +00001709 cast<BranchInst>(subtreeRoot->getInstruction())->getSuccessor(dest));
Vikram S. Adve74825322002-03-18 03:15:35 +00001710 mvec.push_back(M);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001711
1712 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001713 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001714 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001715 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001716
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001717 case 8: // stmt: BrCond(boolreg)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001718 { // boolreg => boolean is recorded in an integer register.
1719 // Use branch-on-integer-register instruction.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001720 //
Chris Lattner54e898e2003-01-15 19:23:34 +00001721 BranchInst *BI = cast<BranchInst>(subtreeRoot->getInstruction());
Misha Brukmana98cd452003-05-20 20:32:24 +00001722 M = BuildMI(V9::BRNZ, 2).addReg(subtreeRoot->leftChild()->getValue())
Chris Lattner54e898e2003-01-15 19:23:34 +00001723 .addPCDisp(BI->getSuccessor(0));
Vikram S. Adve74825322002-03-18 03:15:35 +00001724 mvec.push_back(M);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001725
1726 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001727 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001728
1729 // false branch
Misha Brukmana98cd452003-05-20 20:32:24 +00001730 mvec.push_back(BuildMI(V9::BA, 1).addPCDisp(BI->getSuccessor(1)));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001731
1732 // delay slot
Misha Brukmana98cd452003-05-20 20:32:24 +00001733 mvec.push_back(BuildMI(V9::NOP, 0));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001734 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00001735 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00001736
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001737 case 9: // stmt: Switch(reg)
1738 assert(0 && "*** SWITCH instruction is not implemented yet.");
1739 break;
Chris Lattner20b1ea02001-09-14 03:47:57 +00001740
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001741 case 10: // reg: VRegList(reg, reg)
1742 assert(0 && "VRegList should never be the topmost non-chain rule");
1743 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001744
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001745 case 21: // bool: Not(bool,reg): Compute with a conditional-move-on-reg
1746 { // First find the unary operand. It may be left or right, usually right.
1747 Instruction* notI = subtreeRoot->getInstruction();
1748 Value* notArg = BinaryOperator::getNotArgument(
1749 cast<BinaryOperator>(subtreeRoot->getInstruction()));
1750 unsigned ZeroReg = target.getRegInfo().getZeroRegNum();
1751
1752 // Unconditionally set register to 0
1753 mvec.push_back(BuildMI(V9::SETHI, 2).addZImm(0).addRegDef(notI));
1754
1755 // Now conditionally move 1 into the register.
1756 // Mark the register as a use (as well as a def) because the old
1757 // value will be retained if the condition is false.
1758 mvec.push_back(BuildMI(V9::MOVRZi, 3).addReg(notArg).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001759 .addReg(notI, MachineOperand::UseAndDef));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001760
1761 break;
1762 }
1763
1764 case 421: // reg: BNot(reg,reg): Compute as reg = reg XOR-NOT 0
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001765 { // First find the unary operand. It may be left or right, usually right.
1766 Value* notArg = BinaryOperator::getNotArgument(
1767 cast<BinaryOperator>(subtreeRoot->getInstruction()));
Chris Lattner00dca912003-01-15 17:47:49 +00001768 unsigned ZeroReg = target.getRegInfo().getZeroRegNum();
Misha Brukman91aee472003-05-27 22:37:00 +00001769 mvec.push_back(BuildMI(V9::XNORr, 3).addReg(notArg).addMReg(ZeroReg)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001770 .addRegDef(subtreeRoot->getValue()));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001771 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00001772 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001773
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001774 case 322: // reg: Not(tobool, reg):
1775 // Fold CAST-TO-BOOL with NOT by inverting the sense of cast-to-bool
1776 foldCase = true;
1777 // Just fall through!
1778
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001779 case 22: // reg: ToBoolTy(reg):
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001780 {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001781 Instruction* castI = subtreeRoot->getInstruction();
1782 Value* opVal = subtreeRoot->leftChild()->getValue();
1783 assert(opVal->getType()->isIntegral() ||
1784 isa<PointerType>(opVal->getType()));
1785
1786 // Unconditionally set register to 0
1787 mvec.push_back(BuildMI(V9::SETHI, 2).addZImm(0).addRegDef(castI));
1788
1789 // Now conditionally move 1 into the register.
1790 // Mark the register as a use (as well as a def) because the old
1791 // value will be retained if the condition is false.
1792 MachineOpCode opCode = foldCase? V9::MOVRZi : V9::MOVRNZi;
1793 mvec.push_back(BuildMI(opCode, 3).addReg(opVal).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00001794 .addReg(castI, MachineOperand::UseAndDef));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001795
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001796 break;
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001797 }
1798
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001799 case 23: // reg: ToUByteTy(reg)
1800 case 24: // reg: ToSByteTy(reg)
1801 case 25: // reg: ToUShortTy(reg)
1802 case 26: // reg: ToShortTy(reg)
1803 case 27: // reg: ToUIntTy(reg)
1804 case 28: // reg: ToIntTy(reg)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001805 case 29: // reg: ToULongTy(reg)
1806 case 30: // reg: ToLongTy(reg)
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00001807 {
Vikram S. Adve94c40812002-09-27 14:33:08 +00001808 //======================================================================
1809 // Rules for integer conversions:
1810 //
1811 //--------
1812 // From ISO 1998 C++ Standard, Sec. 4.7:
1813 //
1814 // 2. If the destination type is unsigned, the resulting value is
1815 // the least unsigned integer congruent to the source integer
1816 // (modulo 2n where n is the number of bits used to represent the
1817 // unsigned type). [Note: In a two s complement representation,
1818 // this conversion is conceptual and there is no change in the
1819 // bit pattern (if there is no truncation). ]
1820 //
1821 // 3. If the destination type is signed, the value is unchanged if
1822 // it can be represented in the destination type (and bitfield width);
1823 // otherwise, the value is implementation-defined.
1824 //--------
1825 //
1826 // Since we assume 2s complement representations, this implies:
1827 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001828 // -- If operand is smaller than destination, zero-extend or sign-extend
1829 // according to the signedness of the *operand*: source decides:
1830 // (1) If operand is signed, sign-extend it.
1831 // If dest is unsigned, zero-ext the result!
1832 // (2) If operand is unsigned, our current invariant is that
1833 // it's high bits are correct, so zero-extension is not needed.
Vikram S. Adve94c40812002-09-27 14:33:08 +00001834 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001835 // -- If operand is same size as or larger than destination,
1836 // zero-extend or sign-extend according to the signedness of
1837 // the *destination*: destination decides:
1838 // (1) If destination is signed, sign-extend (truncating if needed)
1839 // This choice is implementation defined. We sign-extend the
1840 // operand, which matches both Sun's cc and gcc3.2.
1841 // (2) If destination is unsigned, zero-extend (truncating if needed)
Vikram S. Adve94c40812002-09-27 14:33:08 +00001842 //======================================================================
1843
Vikram S. Adve242a8082002-05-19 15:25:51 +00001844 Instruction* destI = subtreeRoot->getInstruction();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001845 Function* currentFunc = destI->getParent()->getParent();
1846 MachineCodeForInstruction& mcfi=MachineCodeForInstruction::get(destI);
1847
Vikram S. Adve242a8082002-05-19 15:25:51 +00001848 Value* opVal = subtreeRoot->leftChild()->getValue();
Vikram S. Adve94c40812002-09-27 14:33:08 +00001849 const Type* opType = opVal->getType();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001850 const Type* destType = destI->getType();
1851 unsigned opSize = target.getTargetData().getTypeSize(opType);
1852 unsigned destSize = target.getTargetData().getTypeSize(destType);
1853
1854 bool isIntegral = opType->isIntegral() || isa<PointerType>(opType);
1855
1856 if (opType == Type::BoolTy ||
1857 opType == destType ||
1858 isIntegral && opSize == destSize && opSize == 8) {
1859 // nothing to do in all these cases
1860 forwardOperandNum = 0; // forward first operand to user
1861
Misha Brukman7b647942003-05-30 20:11:56 +00001862 } else if (opType->isFloatingPoint()) {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001863
1864 CreateCodeToConvertFloatToInt(target, opVal, destI, mvec, mcfi);
Vikram S. Advee895a742003-08-06 18:48:40 +00001865 if (destI->getType()->isUnsigned() && destI->getType() !=Type::UIntTy)
Misha Brukman7b647942003-05-30 20:11:56 +00001866 maskUnsignedResult = true; // not handled by fp->int code
Vikram S. Adve1e606692002-07-31 21:01:34 +00001867
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001868 } else if (isIntegral) {
Vikram S. Adve94c40812002-09-27 14:33:08 +00001869
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001870 bool opSigned = opType->isSigned();
1871 bool destSigned = destType->isSigned();
1872 unsigned extSourceInBits = 8 * std::min<unsigned>(opSize, destSize);
1873
1874 assert(! (opSize == destSize && opSigned == destSigned) &&
1875 "How can different int types have same size and signedness?");
1876
1877 bool signExtend = (opSize < destSize && opSigned ||
1878 opSize >= destSize && destSigned);
1879
1880 bool signAndZeroExtend = (opSize < destSize && destSize < 8u &&
1881 opSigned && !destSigned);
1882 assert(!signAndZeroExtend || signExtend);
1883
1884 bool zeroExtendOnly = opSize >= destSize && !destSigned;
1885 assert(!zeroExtendOnly || !signExtend);
1886
1887 if (signExtend) {
1888 Value* signExtDest = (signAndZeroExtend
1889 ? new TmpInstruction(mcfi, destType, opVal)
1890 : destI);
1891
1892 target.getInstrInfo().CreateSignExtensionInstructions
1893 (target, currentFunc,opVal,signExtDest,extSourceInBits,mvec,mcfi);
1894
1895 if (signAndZeroExtend)
1896 target.getInstrInfo().CreateZeroExtensionInstructions
1897 (target, currentFunc, signExtDest, destI, 8*destSize, mvec, mcfi);
1898 }
1899 else if (zeroExtendOnly) {
1900 target.getInstrInfo().CreateZeroExtensionInstructions
1901 (target, currentFunc, opVal, destI, extSourceInBits, mvec, mcfi);
1902 }
1903 else
1904 forwardOperandNum = 0; // forward first operand to user
1905
Misha Brukman7b647942003-05-30 20:11:56 +00001906 } else
Vikram S. Adve951df2b2003-07-10 20:07:54 +00001907 assert(0 && "Unrecognized operand type for convert-to-integer");
1908
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001909 break;
Vikram S. Adve94c40812002-09-27 14:33:08 +00001910 }
1911
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001912 case 31: // reg: ToFloatTy(reg):
1913 case 32: // reg: ToDoubleTy(reg):
1914 case 232: // reg: ToDoubleTy(Constant):
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001915
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001916 // If this instruction has a parent (a user) in the tree
1917 // and the user is translated as an FsMULd instruction,
1918 // then the cast is unnecessary. So check that first.
1919 // In the future, we'll want to do the same for the FdMULq instruction,
1920 // so do the check here instead of only for ToFloatTy(reg).
1921 //
1922 if (subtreeRoot->parent() != NULL) {
1923 const MachineCodeForInstruction& mcfi =
1924 MachineCodeForInstruction::get(
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001925 cast<InstructionNode>(subtreeRoot->parent())->getInstruction());
Brian Gaeke12c1d2c2004-02-11 20:47:34 +00001926 if (mcfi.size() == 0 || mcfi.front()->getOpcode() == V9::FSMULD)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001927 forwardOperandNum = 0; // forward first operand to user
1928 }
Vikram S. Adveec7f4822002-09-09 14:54:21 +00001929
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001930 if (forwardOperandNum != 0) { // we do need the cast
1931 Value* leftVal = subtreeRoot->leftChild()->getValue();
1932 const Type* opType = leftVal->getType();
Vikram S. Advee895a742003-08-06 18:48:40 +00001933 MachineOpCode opCode=ChooseConvertToFloatInstr(target,
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001934 subtreeRoot->getOpLabel(), opType);
Vikram S. Advee895a742003-08-06 18:48:40 +00001935 if (opCode == V9::NOP) { // no conversion needed
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001936 forwardOperandNum = 0; // forward first operand to user
1937 } else {
1938 // If the source operand is a non-FP type it must be
1939 // first copied from int to float register via memory!
1940 Instruction *dest = subtreeRoot->getInstruction();
1941 Value* srcForCast;
1942 int n = 0;
1943 if (! opType->isFloatingPoint()) {
1944 // Create a temporary to represent the FP register
1945 // into which the integer will be copied via memory.
1946 // The type of this temporary will determine the FP
1947 // register used: single-prec for a 32-bit int or smaller,
1948 // double-prec for a 64-bit int.
1949 //
1950 uint64_t srcSize =
1951 target.getTargetData().getTypeSize(leftVal->getType());
1952 Type* tmpTypeToUse =
1953 (srcSize <= 4)? Type::FloatTy : Type::DoubleTy;
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001954 MachineCodeForInstruction &destMCFI =
1955 MachineCodeForInstruction::get(dest);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00001956 srcForCast = new TmpInstruction(destMCFI, tmpTypeToUse, dest);
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001957
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001958 target.getInstrInfo().CreateCodeToCopyIntToFloat(target,
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00001959 dest->getParent()->getParent(),
Vikram S. Advebabc0fa2002-09-05 18:32:13 +00001960 leftVal, cast<Instruction>(srcForCast),
Vikram S. Adve242a8082002-05-19 15:25:51 +00001961 mvec, destMCFI);
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001962 } else
1963 srcForCast = leftVal;
1964
1965 M = BuildMI(opCode, 2).addReg(srcForCast).addRegDef(dest);
1966 mvec.push_back(M);
1967 }
Misha Brukman7b647942003-05-30 20:11:56 +00001968 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00001969 break;
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001970
1971 case 19: // reg: ToArrayTy(reg):
1972 case 20: // reg: ToPointerTy(reg):
1973 forwardOperandNum = 0; // forward first operand to user
Misha Brukmanb3fabe02003-05-31 06:22:37 +00001974 break;
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001975
1976 case 233: // reg: Add(reg, Constant)
1977 maskUnsignedResult = true;
1978 M = CreateAddConstInstruction(subtreeRoot);
1979 if (M != NULL) {
1980 mvec.push_back(M);
1981 break;
1982 }
1983 // ELSE FALL THROUGH
Misha Brukmanb3fabe02003-05-31 06:22:37 +00001984
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00001985 case 33: // reg: Add(reg, reg)
1986 maskUnsignedResult = true;
1987 Add3OperandInstr(ChooseAddInstruction(subtreeRoot), subtreeRoot, mvec);
1988 break;
1989
1990 case 234: // reg: Sub(reg, Constant)
1991 maskUnsignedResult = true;
1992 M = CreateSubConstInstruction(subtreeRoot);
1993 if (M != NULL) {
1994 mvec.push_back(M);
1995 break;
1996 }
1997 // ELSE FALL THROUGH
1998
1999 case 34: // reg: Sub(reg, reg)
2000 maskUnsignedResult = true;
2001 Add3OperandInstr(ChooseSubInstructionByType(
Chris Lattner54e898e2003-01-15 19:23:34 +00002002 subtreeRoot->getInstruction()->getType()),
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002003 subtreeRoot, mvec);
2004 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002005
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002006 case 135: // reg: Mul(todouble, todouble)
2007 checkCast = true;
2008 // FALL THROUGH
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002009
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002010 case 35: // reg: Mul(reg, reg)
Vikram S. Adve74825322002-03-18 03:15:35 +00002011 {
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002012 maskUnsignedResult = true;
Vikram S. Adve74825322002-03-18 03:15:35 +00002013 MachineOpCode forceOp = ((checkCast && BothFloatToDouble(subtreeRoot))
Chris Lattnerb4198a22004-02-13 16:14:50 +00002014 ? (MachineOpCode)V9::FSMULD
Chris Lattner07239692004-02-29 05:57:59 +00002015 : -1);
Vikram S. Adve242a8082002-05-19 15:25:51 +00002016 Instruction* mulInstr = subtreeRoot->getInstruction();
2017 CreateMulInstruction(target, mulInstr->getParent()->getParent(),
Vikram S. Adve74825322002-03-18 03:15:35 +00002018 subtreeRoot->leftChild()->getValue(),
2019 subtreeRoot->rightChild()->getValue(),
Vikram S. Adve242a8082002-05-19 15:25:51 +00002020 mulInstr, mvec,
2021 MachineCodeForInstruction::get(mulInstr),forceOp);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002022 break;
Vikram S. Adve74825322002-03-18 03:15:35 +00002023 }
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002024 case 335: // reg: Mul(todouble, todoubleConst)
2025 checkCast = true;
2026 // FALL THROUGH
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002027
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002028 case 235: // reg: Mul(reg, Constant)
Vikram S. Adve74825322002-03-18 03:15:35 +00002029 {
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002030 maskUnsignedResult = true;
Vikram S. Adve74825322002-03-18 03:15:35 +00002031 MachineOpCode forceOp = ((checkCast && BothFloatToDouble(subtreeRoot))
Chris Lattnerb4198a22004-02-13 16:14:50 +00002032 ? (MachineOpCode)V9::FSMULD
Chris Lattner07239692004-02-29 05:57:59 +00002033 : -1);
Vikram S. Adve242a8082002-05-19 15:25:51 +00002034 Instruction* mulInstr = subtreeRoot->getInstruction();
2035 CreateMulInstruction(target, mulInstr->getParent()->getParent(),
Vikram S. Adve74825322002-03-18 03:15:35 +00002036 subtreeRoot->leftChild()->getValue(),
2037 subtreeRoot->rightChild()->getValue(),
Vikram S. Adve242a8082002-05-19 15:25:51 +00002038 mulInstr, mvec,
2039 MachineCodeForInstruction::get(mulInstr),
2040 forceOp);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002041 break;
Vikram S. Adve74825322002-03-18 03:15:35 +00002042 }
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002043 case 236: // reg: Div(reg, Constant)
2044 maskUnsignedResult = true;
2045 L = mvec.size();
2046 CreateDivConstInstruction(target, subtreeRoot, mvec);
2047 if (mvec.size() > L)
2048 break;
2049 // ELSE FALL THROUGH
Misha Brukmanb3fabe02003-05-31 06:22:37 +00002050
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002051 case 36: // reg: Div(reg, reg)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002052 {
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002053 maskUnsignedResult = true;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002054
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002055 // If either operand of divide is smaller than 64 bits, we have
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002056 // to make sure the unused top bits are correct because they affect
2057 // the result. These bits are already correct for unsigned values.
2058 // They may be incorrect for signed values, so sign extend to fill in.
2059 Instruction* divI = subtreeRoot->getInstruction();
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002060 Value* divOp1 = subtreeRoot->leftChild()->getValue();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002061 Value* divOp2 = subtreeRoot->rightChild()->getValue();
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002062 Value* divOp1ToUse = divOp1;
2063 Value* divOp2ToUse = divOp2;
2064 if (divI->getType()->isSigned()) {
2065 unsigned opSize=target.getTargetData().getTypeSize(divI->getType());
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002066 if (opSize < 8) {
2067 MachineCodeForInstruction& mcfi=MachineCodeForInstruction::get(divI);
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002068 divOp1ToUse = new TmpInstruction(mcfi, divOp1);
2069 divOp2ToUse = new TmpInstruction(mcfi, divOp2);
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002070 target.getInstrInfo().
2071 CreateSignExtensionInstructions(target,
2072 divI->getParent()->getParent(),
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002073 divOp1, divOp1ToUse,
2074 8*opSize, mvec, mcfi);
2075 target.getInstrInfo().
2076 CreateSignExtensionInstructions(target,
2077 divI->getParent()->getParent(),
2078 divOp2, divOp2ToUse,
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002079 8*opSize, mvec, mcfi);
2080 }
2081 }
2082
2083 mvec.push_back(BuildMI(ChooseDivInstruction(target, subtreeRoot), 3)
Vikram S. Adve97e02eb2003-08-01 15:54:38 +00002084 .addReg(divOp1ToUse)
2085 .addReg(divOp2ToUse)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002086 .addRegDef(divI));
2087
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002088 break;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002089 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002090
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002091 case 37: // reg: Rem(reg, reg)
2092 case 237: // reg: Rem(reg, Constant)
Vikram S. Adve510eec72001-11-04 21:59:14 +00002093 {
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002094 maskUnsignedResult = true;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002095
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002096 Instruction* remI = subtreeRoot->getInstruction();
2097 Value* divOp1 = subtreeRoot->leftChild()->getValue();
2098 Value* divOp2 = subtreeRoot->rightChild()->getValue();
2099
2100 MachineCodeForInstruction& mcfi = MachineCodeForInstruction::get(remI);
Vikram S. Adve510eec72001-11-04 21:59:14 +00002101
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002102 // If second operand of divide is smaller than 64 bits, we have
2103 // to make sure the unused top bits are correct because they affect
2104 // the result. These bits are already correct for unsigned values.
2105 // They may be incorrect for signed values, so sign extend to fill in.
2106 //
2107 Value* divOpToUse = divOp2;
2108 if (divOp2->getType()->isSigned()) {
2109 unsigned opSize=target.getTargetData().getTypeSize(divOp2->getType());
2110 if (opSize < 8) {
2111 divOpToUse = new TmpInstruction(mcfi, divOp2);
2112 target.getInstrInfo().
2113 CreateSignExtensionInstructions(target,
2114 remI->getParent()->getParent(),
2115 divOp2, divOpToUse,
2116 8*opSize, mvec, mcfi);
2117 }
2118 }
2119
2120 // Now compute: result = rem V1, V2 as:
2121 // result = V1 - (V1 / signExtend(V2)) * signExtend(V2)
2122 //
2123 TmpInstruction* quot = new TmpInstruction(mcfi, divOp1, divOpToUse);
2124 TmpInstruction* prod = new TmpInstruction(mcfi, quot, divOpToUse);
2125
2126 mvec.push_back(BuildMI(ChooseDivInstruction(target, subtreeRoot), 3)
2127 .addReg(divOp1).addReg(divOpToUse).addRegDef(quot));
Vikram S. Adve510eec72001-11-04 21:59:14 +00002128
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002129 mvec.push_back(BuildMI(ChooseMulInstructionByType(remI->getType()), 3)
2130 .addReg(quot).addReg(divOpToUse).addRegDef(prod));
Vikram S. Adve510eec72001-11-04 21:59:14 +00002131
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002132 mvec.push_back(BuildMI(ChooseSubInstructionByType(remI->getType()), 3)
2133 .addReg(divOp1).addReg(prod).addRegDef(remI));
2134
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002135 break;
Vikram S. Adve510eec72001-11-04 21:59:14 +00002136 }
2137
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002138 case 38: // bool: And(bool, bool)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002139 case 138: // bool: And(bool, not)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002140 case 238: // bool: And(bool, boolconst)
2141 case 338: // reg : BAnd(reg, reg)
2142 case 538: // reg : BAnd(reg, Constant)
2143 Add3OperandInstr(V9::ANDr, subtreeRoot, mvec);
2144 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002145
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002146 case 438: // bool: BAnd(bool, bnot)
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002147 { // Use the argument of NOT as the second argument!
2148 // Mark the NOT node so that no code is generated for it.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002149 // If the type is boolean, set 1 or 0 in the result register.
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002150 InstructionNode* notNode = (InstructionNode*) subtreeRoot->rightChild();
2151 Value* notArg = BinaryOperator::getNotArgument(
2152 cast<BinaryOperator>(notNode->getInstruction()));
2153 notNode->markFoldedIntoParent();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002154 Value *lhs = subtreeRoot->leftChild()->getValue();
2155 Value *dest = subtreeRoot->getValue();
2156 mvec.push_back(BuildMI(V9::ANDNr, 3).addReg(lhs).addReg(notArg)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002157 .addReg(dest, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002158
Misha Brukmanb461d372003-10-23 16:48:30 +00002159 if (notArg->getType() == Type::BoolTy) {
2160 // set 1 in result register if result of above is non-zero
2161 mvec.push_back(BuildMI(V9::MOVRNZi, 3).addReg(dest).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002162 .addReg(dest, MachineOperand::UseAndDef));
Misha Brukmanb461d372003-10-23 16:48:30 +00002163 }
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002164
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002165 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002166 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002167
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002168 case 39: // bool: Or(bool, bool)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002169 case 139: // bool: Or(bool, not)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002170 case 239: // bool: Or(bool, boolconst)
2171 case 339: // reg : BOr(reg, reg)
2172 case 539: // reg : BOr(reg, Constant)
2173 Add3OperandInstr(V9::ORr, subtreeRoot, mvec);
2174 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002175
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002176 case 439: // bool: BOr(bool, bnot)
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002177 { // Use the argument of NOT as the second argument!
2178 // Mark the NOT node so that no code is generated for it.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002179 // If the type is boolean, set 1 or 0 in the result register.
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002180 InstructionNode* notNode = (InstructionNode*) subtreeRoot->rightChild();
2181 Value* notArg = BinaryOperator::getNotArgument(
2182 cast<BinaryOperator>(notNode->getInstruction()));
2183 notNode->markFoldedIntoParent();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002184 Value *lhs = subtreeRoot->leftChild()->getValue();
2185 Value *dest = subtreeRoot->getValue();
2186
2187 mvec.push_back(BuildMI(V9::ORNr, 3).addReg(lhs).addReg(notArg)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002188 .addReg(dest, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002189
Misha Brukmanb461d372003-10-23 16:48:30 +00002190 if (notArg->getType() == Type::BoolTy) {
2191 // set 1 in result register if result of above is non-zero
2192 mvec.push_back(BuildMI(V9::MOVRNZi, 3).addReg(dest).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002193 .addReg(dest, MachineOperand::UseAndDef));
Misha Brukmanb461d372003-10-23 16:48:30 +00002194 }
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002195
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002196 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002197 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002198
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002199 case 40: // bool: Xor(bool, bool)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002200 case 140: // bool: Xor(bool, not)
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002201 case 240: // bool: Xor(bool, boolconst)
2202 case 340: // reg : BXor(reg, reg)
2203 case 540: // reg : BXor(reg, Constant)
2204 Add3OperandInstr(V9::XORr, subtreeRoot, mvec);
2205 break;
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002206
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002207 case 440: // bool: BXor(bool, bnot)
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002208 { // Use the argument of NOT as the second argument!
2209 // Mark the NOT node so that no code is generated for it.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002210 // If the type is boolean, set 1 or 0 in the result register.
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002211 InstructionNode* notNode = (InstructionNode*) subtreeRoot->rightChild();
2212 Value* notArg = BinaryOperator::getNotArgument(
2213 cast<BinaryOperator>(notNode->getInstruction()));
2214 notNode->markFoldedIntoParent();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002215 Value *lhs = subtreeRoot->leftChild()->getValue();
2216 Value *dest = subtreeRoot->getValue();
2217 mvec.push_back(BuildMI(V9::XNORr, 3).addReg(lhs).addReg(notArg)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002218 .addReg(dest, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002219
Misha Brukmanb461d372003-10-23 16:48:30 +00002220 if (notArg->getType() == Type::BoolTy) {
2221 // set 1 in result register if result of above is non-zero
2222 mvec.push_back(BuildMI(V9::MOVRNZi, 3).addReg(dest).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002223 .addReg(dest, MachineOperand::UseAndDef));
Misha Brukmanb461d372003-10-23 16:48:30 +00002224 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002225 break;
Vikram S. Advece08e1d2002-08-15 14:17:37 +00002226 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002227
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002228 case 41: // setCCconst: SetCC(reg, Constant)
2229 { // Comparison is with a constant:
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002230 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002231 // If the bool result must be computed into a register (see below),
2232 // and the constant is int ZERO, we can use the MOVR[op] instructions
2233 // and avoid the SUBcc instruction entirely.
2234 // Otherwise this is just the same as case 42, so just fall through.
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002235 //
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002236 // The result of the SetCC must be computed and stored in a register if
2237 // it is used outside the current basic block (so it must be computed
2238 // as a boolreg) or it is used by anything other than a branch.
2239 // We will use a conditional move to do this.
2240 //
2241 Instruction* setCCInstr = subtreeRoot->getInstruction();
2242 bool computeBoolVal = (subtreeRoot->parent() == NULL ||
2243 ! AllUsesAreBranches(setCCInstr));
2244
Misha Brukmanb461d372003-10-23 16:48:30 +00002245 if (computeBoolVal) {
2246 InstrTreeNode* constNode = subtreeRoot->rightChild();
2247 assert(constNode &&
2248 constNode->getNodeType() ==InstrTreeNode::NTConstNode);
2249 Constant *constVal = cast<Constant>(constNode->getValue());
2250 bool isValidConst;
2251
2252 if ((constVal->getType()->isInteger()
2253 || isa<PointerType>(constVal->getType()))
2254 && target.getInstrInfo().ConvertConstantToIntType(target,
Vikram S. Advee6124d32003-07-29 19:59:23 +00002255 constVal, constVal->getType(), isValidConst) == 0
Misha Brukmanb461d372003-10-23 16:48:30 +00002256 && isValidConst)
2257 {
2258 // That constant is an integer zero after all...
2259 // Use a MOVR[op] to compute the boolean result
2260 // Unconditionally set register to 0
2261 mvec.push_back(BuildMI(V9::SETHI, 2).addZImm(0)
2262 .addRegDef(setCCInstr));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002263
Misha Brukmanb461d372003-10-23 16:48:30 +00002264 // Now conditionally move 1 into the register.
2265 // Mark the register as a use (as well as a def) because the old
2266 // value will be retained if the condition is false.
2267 MachineOpCode movOpCode = ChooseMovpregiForSetCC(subtreeRoot);
2268 mvec.push_back(BuildMI(movOpCode, 3)
2269 .addReg(subtreeRoot->leftChild()->getValue())
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002270 .addZImm(1)
2271 .addReg(setCCInstr, MachineOperand::UseAndDef));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002272
Misha Brukmanb461d372003-10-23 16:48:30 +00002273 break;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002274 }
Misha Brukmanb461d372003-10-23 16:48:30 +00002275 }
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002276 // ELSE FALL THROUGH
2277 }
2278
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002279 case 42: // bool: SetCC(reg, reg):
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002280 {
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002281 // This generates a SUBCC instruction, putting the difference in a
2282 // result reg. if needed, and/or setting a condition code if needed.
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002283 //
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002284 Instruction* setCCInstr = subtreeRoot->getInstruction();
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002285 Value* leftVal = subtreeRoot->leftChild()->getValue();
2286 Value* rightVal = subtreeRoot->rightChild()->getValue();
2287 const Type* opType = leftVal->getType();
2288 bool isFPCompare = opType->isFloatingPoint();
Vikram S. Adve242a8082002-05-19 15:25:51 +00002289
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002290 // If the boolean result of the SetCC is used outside the current basic
2291 // block (so it must be computed as a boolreg) or is used by anything
2292 // other than a branch, the boolean must be computed and stored
2293 // in a result register. We will use a conditional move to do this.
2294 //
2295 bool computeBoolVal = (subtreeRoot->parent() == NULL ||
2296 ! AllUsesAreBranches(setCCInstr));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002297
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00002298 // A TmpInstruction is created to represent the CC "result".
2299 // Unlike other instances of TmpInstruction, this one is used
2300 // by machine code of multiple LLVM instructions, viz.,
2301 // the SetCC and the branch. Make sure to get the same one!
2302 // Note that we do this even for FP CC registers even though they
2303 // are explicit operands, because the type of the operand
2304 // needs to be a floating point condition code, not an integer
2305 // condition code. Think of this as casting the bool result to
2306 // a FP condition code register.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002307 // Later, we mark the 4th operand as being a CC register, and as a def.
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00002308 //
Vikram S. Adveff5a09e2001-11-08 05:04:09 +00002309 TmpInstruction* tmpForCC = GetTmpForCC(setCCInstr,
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002310 setCCInstr->getParent()->getParent(),
Vikram S. Adve786833a2003-07-06 20:13:59 +00002311 leftVal->getType(),
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002312 MachineCodeForInstruction::get(setCCInstr));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002313
2314 // If the operands are signed values smaller than 4 bytes, then they
2315 // must be sign-extended in order to do a valid 32-bit comparison
2316 // and get the right result in the 32-bit CC register (%icc).
2317 //
2318 Value* leftOpToUse = leftVal;
2319 Value* rightOpToUse = rightVal;
2320 if (opType->isIntegral() && opType->isSigned()) {
2321 unsigned opSize = target.getTargetData().getTypeSize(opType);
2322 if (opSize < 4) {
2323 MachineCodeForInstruction& mcfi =
2324 MachineCodeForInstruction::get(setCCInstr);
2325
2326 // create temporary virtual regs. to hold the sign-extensions
2327 leftOpToUse = new TmpInstruction(mcfi, leftVal);
2328 rightOpToUse = new TmpInstruction(mcfi, rightVal);
2329
2330 // sign-extend each operand and put the result in the temporary reg.
2331 target.getInstrInfo().CreateSignExtensionInstructions
2332 (target, setCCInstr->getParent()->getParent(),
2333 leftVal, leftOpToUse, 8*opSize, mvec, mcfi);
2334 target.getInstrInfo().CreateSignExtensionInstructions
2335 (target, setCCInstr->getParent()->getParent(),
2336 rightVal, rightOpToUse, 8*opSize, mvec, mcfi);
2337 }
2338 }
2339
Misha Brukman7b647942003-05-30 20:11:56 +00002340 if (! isFPCompare) {
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002341 // Integer condition: set CC and discard result.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002342 mvec.push_back(BuildMI(V9::SUBccr, 4)
2343 .addReg(leftOpToUse)
2344 .addReg(rightOpToUse)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002345 .addMReg(target.getRegInfo()
2346 .getZeroRegNum(), MachineOperand::Def)
2347 .addCCReg(tmpForCC, MachineOperand::Def));
Misha Brukman7b647942003-05-30 20:11:56 +00002348 } else {
2349 // FP condition: dest of FCMP should be some FCCn register
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002350 mvec.push_back(BuildMI(ChooseFcmpInstruction(subtreeRoot), 3)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002351 .addCCReg(tmpForCC, MachineOperand::Def)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002352 .addReg(leftOpToUse)
2353 .addReg(rightOpToUse));
Misha Brukman7b647942003-05-30 20:11:56 +00002354 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002355
Misha Brukman7b647942003-05-30 20:11:56 +00002356 if (computeBoolVal) {
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002357 MachineOpCode movOpCode = (isFPCompare
Misha Brukmaneecdb662003-06-02 20:55:14 +00002358 ? ChooseMovFpcciInstruction(subtreeRoot)
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002359 : ChooseMovpcciForSetCC(subtreeRoot));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002360
2361 // Unconditionally set register to 0
2362 M = BuildMI(V9::SETHI, 2).addZImm(0).addRegDef(setCCInstr);
2363 mvec.push_back(M);
2364
2365 // Now conditionally move 1 into the register.
Misha Brukman7b647942003-05-30 20:11:56 +00002366 // Mark the register as a use (as well as a def) because the old
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002367 // value will be retained if the condition is false.
2368 M = (BuildMI(movOpCode, 3).addCCReg(tmpForCC).addZImm(1)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002369 .addReg(setCCInstr, MachineOperand::UseAndDef));
Misha Brukman7b647942003-05-30 20:11:56 +00002370 mvec.push_back(M);
2371 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002372 break;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002373 }
2374
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002375 case 51: // reg: Load(reg)
2376 case 52: // reg: Load(ptrreg)
Chris Lattner54e898e2003-01-15 19:23:34 +00002377 SetOperandsForMemInstr(ChooseLoadInstruction(
2378 subtreeRoot->getValue()->getType()),
2379 mvec, subtreeRoot, target);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002380 break;
2381
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002382 case 55: // reg: GetElemPtr(reg)
2383 case 56: // reg: GetElemPtrIdx(reg,reg)
2384 // If the GetElemPtr was folded into the user (parent), it will be
2385 // caught above. For other cases, we have to compute the address.
2386 SetOperandsForMemInstr(V9::ADDr, mvec, subtreeRoot, target);
2387 break;
Vikram S. Adved3e26482002-10-13 00:18:57 +00002388
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002389 case 57: // reg: Alloca: Implement as 1 instruction:
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002390 { // add %fp, offsetFromFP -> result
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002391 AllocationInst* instr =
2392 cast<AllocationInst>(subtreeRoot->getInstruction());
Chris Lattnerea45d7b2002-12-28 20:19:44 +00002393 unsigned tsize =
2394 target.getTargetData().getTypeSize(instr->getAllocatedType());
Vikram S. Adve74825322002-03-18 03:15:35 +00002395 assert(tsize != 0);
2396 CreateCodeForFixedSizeAlloca(target, instr, tsize, 1, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002397 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002398 }
Vikram S. Adved3e26482002-10-13 00:18:57 +00002399
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002400 case 58: // reg: Alloca(reg): Implement as 3 instructions:
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002401 // mul num, typeSz -> tmp
2402 // sub %sp, tmp -> %sp
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002403 { // add %sp, frameSizeBelowDynamicArea -> result
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002404 AllocationInst* instr =
2405 cast<AllocationInst>(subtreeRoot->getInstruction());
Vikram S. Adve74825322002-03-18 03:15:35 +00002406 const Type* eltType = instr->getAllocatedType();
2407
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002408 // If #elements is constant, use simpler code for fixed-size allocas
Chris Lattnerea45d7b2002-12-28 20:19:44 +00002409 int tsize = (int) target.getTargetData().getTypeSize(eltType);
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002410 Value* numElementsVal = NULL;
2411 bool isArray = instr->isArrayAllocation();
2412
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002413 if (!isArray || isa<Constant>(numElementsVal = instr->getArraySize())) {
Misha Brukman7b647942003-05-30 20:11:56 +00002414 // total size is constant: generate code for fixed-size alloca
2415 unsigned numElements = isArray?
2416 cast<ConstantUInt>(numElementsVal)->getValue() : 1;
2417 CreateCodeForFixedSizeAlloca(target, instr, tsize,
2418 numElements, mvec);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002419 } else {
2420 // total size is not constant.
Vikram S. Adve74825322002-03-18 03:15:35 +00002421 CreateCodeForVariableSizeAlloca(target, instr, tsize,
Vikram S. Advefd3900a2002-03-24 03:33:02 +00002422 numElementsVal, mvec);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002423 }
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002424 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002425 }
Vikram S. Adved3e26482002-10-13 00:18:57 +00002426
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002427 case 61: // reg: Call
Vikram S. Adve4a8bb2b2002-09-28 16:55:41 +00002428 { // Generate a direct (CALL) or indirect (JMPL) call.
2429 // Mark the return-address register, the indirection
2430 // register (for indirect calls), the operands of the Call,
2431 // and the return value (if any) as implicit operands
2432 // of the machine instruction.
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002433 //
Vikram S. Advedbc4fad2002-04-25 04:37:51 +00002434 // If this is a varargs function, floating point arguments
2435 // have to passed in integer registers so insert
2436 // copy-float-to-int instructions for each float operand.
2437 //
Chris Lattnerb00c5822001-10-02 03:41:24 +00002438 CallInst *callInstr = cast<CallInst>(subtreeRoot->getInstruction());
Chris Lattner749655f2001-10-13 06:54:30 +00002439 Value *callee = callInstr->getCalledValue();
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002440 Function* calledFunc = dyn_cast<Function>(callee);
Vikram S. Adve4a8bb2b2002-09-28 16:55:41 +00002441
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002442 // Check if this is an intrinsic function that needs a special code
2443 // sequence (e.g., va_start). Indirect calls cannot be special.
Vikram S. Adveea21a6c2001-10-20 20:57:06 +00002444 //
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002445 bool specialIntrinsic = false;
Brian Gaeked0fde302003-11-11 22:41:34 +00002446 Intrinsic::ID iid;
2447 if (calledFunc && (iid=(Intrinsic::ID)calledFunc->getIntrinsicID()))
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002448 specialIntrinsic = CodeGenIntrinsic(iid, *callInstr, target, mvec);
Vikram S. Advea10d1a72002-03-31 19:07:35 +00002449
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002450 // If not, generate the normal call sequence for the function.
2451 // This can also handle any intrinsics that are just function calls.
2452 //
Misha Brukman7b647942003-05-30 20:11:56 +00002453 if (! specialIntrinsic) {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002454 Function* currentFunc = callInstr->getParent()->getParent();
2455 MachineFunction& MF = MachineFunction::get(currentFunc);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002456 MachineCodeForInstruction& mcfi =
2457 MachineCodeForInstruction::get(callInstr);
Brian Gaekee3d68072004-02-25 18:44:15 +00002458 const SparcV9RegInfo& regInfo =
2459 (SparcV9RegInfo&) target.getRegInfo();
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002460 const TargetFrameInfo& frameInfo = target.getFrameInfo();
2461
Misha Brukman7b647942003-05-30 20:11:56 +00002462 // Create hidden virtual register for return address with type void*
2463 TmpInstruction* retAddrReg =
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002464 new TmpInstruction(mcfi, PointerType::get(Type::VoidTy), callInstr);
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002465
Misha Brukman7b647942003-05-30 20:11:56 +00002466 // Generate the machine instruction and its operands.
2467 // Use CALL for direct function calls; this optimistically assumes
2468 // the PC-relative address fits in the CALL address field (22 bits).
2469 // Use JMPL for indirect calls.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002470 // This will be added to mvec later, after operand copies.
Misha Brukman7b647942003-05-30 20:11:56 +00002471 //
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002472 MachineInstr* callMI;
Misha Brukman7b647942003-05-30 20:11:56 +00002473 if (calledFunc) // direct function call
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002474 callMI = BuildMI(V9::CALL, 1).addPCDisp(callee);
Misha Brukman7b647942003-05-30 20:11:56 +00002475 else // indirect function call
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002476 callMI = (BuildMI(V9::JMPLCALLi,3).addReg(callee)
2477 .addSImm((int64_t)0).addRegDef(retAddrReg));
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002478
Misha Brukman7b647942003-05-30 20:11:56 +00002479 const FunctionType* funcType =
2480 cast<FunctionType>(cast<PointerType>(callee->getType())
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002481 ->getElementType());
Misha Brukman7b647942003-05-30 20:11:56 +00002482 bool isVarArgs = funcType->isVarArg();
2483 bool noPrototype = isVarArgs && funcType->getNumParams() == 0;
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002484
Misha Brukman7b647942003-05-30 20:11:56 +00002485 // Use a descriptor to pass information about call arguments
2486 // to the register allocator. This descriptor will be "owned"
2487 // and freed automatically when the MachineCodeForInstruction
2488 // object for the callInstr goes away.
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002489 CallArgsDescriptor* argDesc =
2490 new CallArgsDescriptor(callInstr, retAddrReg,isVarArgs,noPrototype);
Misha Brukman7b647942003-05-30 20:11:56 +00002491 assert(callInstr->getOperand(0) == callee
2492 && "This is assumed in the loop below!");
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002493
2494 // Insert sign-extension instructions for small signed values,
2495 // if this is an unknown function (i.e., called via a funcptr)
2496 // or an external one (i.e., which may not be compiled by llc).
2497 //
2498 if (calledFunc == NULL || calledFunc->isExternal()) {
2499 for (unsigned i=1, N=callInstr->getNumOperands(); i < N; ++i) {
2500 Value* argVal = callInstr->getOperand(i);
2501 const Type* argType = argVal->getType();
2502 if (argType->isIntegral() && argType->isSigned()) {
2503 unsigned argSize = target.getTargetData().getTypeSize(argType);
2504 if (argSize <= 4) {
2505 // create a temporary virtual reg. to hold the sign-extension
2506 TmpInstruction* argExtend = new TmpInstruction(mcfi, argVal);
2507
2508 // sign-extend argVal and put the result in the temporary reg.
2509 target.getInstrInfo().CreateSignExtensionInstructions
2510 (target, currentFunc, argVal, argExtend,
2511 8*argSize, mvec, mcfi);
2512
2513 // replace argVal with argExtend in CallArgsDescriptor
2514 argDesc->getArgInfo(i-1).replaceArgVal(argExtend);
2515 }
2516 }
2517 }
2518 }
2519
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002520 // Insert copy instructions to get all the arguments into
2521 // all the places that they need to be.
2522 //
Misha Brukman7b647942003-05-30 20:11:56 +00002523 for (unsigned i=1, N=callInstr->getNumOperands(); i < N; ++i) {
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002524 int argNo = i-1;
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002525 CallArgInfo& argInfo = argDesc->getArgInfo(argNo);
2526 Value* argVal = argInfo.getArgVal(); // don't use callInstr arg here
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002527 const Type* argType = argVal->getType();
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002528 unsigned regType = regInfo.getRegTypeForDataType(argType);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002529 unsigned argSize = target.getTargetData().getTypeSize(argType);
2530 int regNumForArg = TargetRegInfo::getInvalidRegNum();
2531 unsigned regClassIDOfArgReg;
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002532
Misha Brukman7b647942003-05-30 20:11:56 +00002533 // Check for FP arguments to varargs functions.
2534 // Any such argument in the first $K$ args must be passed in an
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002535 // integer register. If there is no prototype, it must also
2536 // be passed as an FP register.
2537 // K = #integer argument registers.
2538 bool isFPArg = argVal->getType()->isFloatingPoint();
2539 if (isVarArgs && isFPArg) {
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002540
2541 if (noPrototype) {
2542 // It is a function with no prototype: pass value
2543 // as an FP value as well as a varargs value. The FP value
2544 // may go in a register or on the stack. The copy instruction
2545 // to the outgoing reg/stack is created by the normal argument
2546 // handling code since this is the "normal" passing mode.
2547 //
2548 regNumForArg = regInfo.regNumForFPArg(regType,
2549 false, false, argNo,
2550 regClassIDOfArgReg);
2551 if (regNumForArg == regInfo.getInvalidRegNum())
2552 argInfo.setUseStackSlot();
2553 else
2554 argInfo.setUseFPArgReg();
2555 }
2556
2557 // If this arg. is in the first $K$ regs, add special copy-
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002558 // float-to-int instructions to pass the value as an int.
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002559 // To check if it is in the first $K$, get the register
2560 // number for the arg #i. These copy instructions are
2561 // generated here because they are extra cases and not needed
2562 // for the normal argument handling (some code reuse is
2563 // possible though -- later).
2564 //
Misha Brukmanea481cc2003-06-03 03:21:58 +00002565 int copyRegNum = regInfo.regNumForIntArg(false, false, argNo,
2566 regClassIDOfArgReg);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002567 if (copyRegNum != regInfo.getInvalidRegNum()) {
2568 // Create a virtual register to represent copyReg. Mark
2569 // this vreg as being an implicit operand of the call MI
2570 const Type* loadTy = (argType == Type::FloatTy
2571 ? Type::IntTy : Type::LongTy);
Misha Brukmanea481cc2003-06-03 03:21:58 +00002572 TmpInstruction* argVReg = new TmpInstruction(mcfi, loadTy,
2573 argVal, NULL,
2574 "argRegCopy");
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002575 callMI->addImplicitRef(argVReg);
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002576
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002577 // Get a temp stack location to use to copy
2578 // float-to-int via the stack.
2579 //
2580 // FIXME: For now, we allocate permanent space because
2581 // the stack frame manager does not allow locals to be
2582 // allocated (e.g., for alloca) after a temp is
2583 // allocated!
2584 //
2585 // int tmpOffset = MF.getInfo()->pushTempValue(argSize);
2586 int tmpOffset = MF.getInfo()->allocateLocalVar(argVReg);
Vikram S. Adve242a8082002-05-19 15:25:51 +00002587
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002588 // Generate the store from FP reg to stack
Misha Brukmanea481cc2003-06-03 03:21:58 +00002589 unsigned StoreOpcode = ChooseStoreInstruction(argType);
2590 M = BuildMI(convertOpcodeFromRegToImm(StoreOpcode), 3)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002591 .addReg(argVal).addMReg(regInfo.getFramePointer())
2592 .addSImm(tmpOffset);
2593 mvec.push_back(M);
2594
2595 // Generate the load from stack to int arg reg
Misha Brukmanea481cc2003-06-03 03:21:58 +00002596 unsigned LoadOpcode = ChooseLoadInstruction(loadTy);
2597 M = BuildMI(convertOpcodeFromRegToImm(LoadOpcode), 3)
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002598 .addMReg(regInfo.getFramePointer()).addSImm(tmpOffset)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002599 .addReg(argVReg, MachineOperand::Def);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002600
2601 // Mark operand with register it should be assigned
2602 // both for copy and for the callMI
2603 M->SetRegForOperand(M->getNumOperands()-1, copyRegNum);
Misha Brukmanea481cc2003-06-03 03:21:58 +00002604 callMI->SetRegForImplicitRef(callMI->getNumImplicitRefs()-1,
2605 copyRegNum);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002606 mvec.push_back(M);
2607
2608 // Add info about the argument to the CallArgsDescriptor
2609 argInfo.setUseIntArgReg();
2610 argInfo.setArgCopy(copyRegNum);
2611 } else {
Misha Brukman7b647942003-05-30 20:11:56 +00002612 // Cannot fit in first $K$ regs so pass arg on stack
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002613 argInfo.setUseStackSlot();
2614 }
2615 } else if (isFPArg) {
2616 // Get the outgoing arg reg to see if there is one.
2617 regNumForArg = regInfo.regNumForFPArg(regType, false, false,
2618 argNo, regClassIDOfArgReg);
2619 if (regNumForArg == regInfo.getInvalidRegNum())
2620 argInfo.setUseStackSlot();
2621 else {
2622 argInfo.setUseFPArgReg();
2623 regNumForArg =regInfo.getUnifiedRegNum(regClassIDOfArgReg,
2624 regNumForArg);
2625 }
2626 } else {
2627 // Get the outgoing arg reg to see if there is one.
2628 regNumForArg = regInfo.regNumForIntArg(false,false,
2629 argNo, regClassIDOfArgReg);
2630 if (regNumForArg == regInfo.getInvalidRegNum())
2631 argInfo.setUseStackSlot();
2632 else {
2633 argInfo.setUseIntArgReg();
2634 regNumForArg =regInfo.getUnifiedRegNum(regClassIDOfArgReg,
2635 regNumForArg);
2636 }
2637 }
2638
2639 //
2640 // Now insert copy instructions to stack slot or arg. register
2641 //
2642 if (argInfo.usesStackSlot()) {
2643 // Get the stack offset for this argument slot.
2644 // FP args on stack are right justified so adjust offset!
2645 // int arguments are also right justified but they are
2646 // always loaded as a full double-word so the offset does
2647 // not need to be adjusted.
2648 int argOffset = frameInfo.getOutgoingArgOffset(MF, argNo);
2649 if (argType->isFloatingPoint()) {
2650 unsigned slotSize = frameInfo.getSizeOfEachArgOnStack();
2651 assert(argSize <= slotSize && "Insufficient slot size!");
2652 argOffset += slotSize - argSize;
2653 }
2654
2655 // Now generate instruction to copy argument to stack
2656 MachineOpCode storeOpCode =
2657 (argType->isFloatingPoint()
2658 ? ((argSize == 4)? V9::STFi : V9::STDFi) : V9::STXi);
2659
2660 M = BuildMI(storeOpCode, 3).addReg(argVal)
2661 .addMReg(regInfo.getStackPointer()).addSImm(argOffset);
2662 mvec.push_back(M);
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002663 }
2664 else if (regNumForArg != regInfo.getInvalidRegNum()) {
2665
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002666 // Create a virtual register to represent the arg reg. Mark
2667 // this vreg as being an implicit operand of the call MI.
2668 TmpInstruction* argVReg =
2669 new TmpInstruction(mcfi, argVal, NULL, "argReg");
2670
2671 callMI->addImplicitRef(argVReg);
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002672
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002673 // Generate the reg-to-reg copy into the outgoing arg reg.
2674 // -- For FP values, create a FMOVS or FMOVD instruction
2675 // -- For non-FP values, create an add-with-0 instruction
2676 if (argType->isFloatingPoint())
2677 M=(BuildMI(argType==Type::FloatTy? V9::FMOVS :V9::FMOVD,2)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002678 .addReg(argVal).addReg(argVReg, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002679 else
2680 M = (BuildMI(ChooseAddInstructionByType(argType), 3)
2681 .addReg(argVal).addSImm((int64_t) 0)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002682 .addReg(argVReg, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002683
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002684 // Mark the operand with the register it should be assigned
2685 M->SetRegForOperand(M->getNumOperands()-1, regNumForArg);
2686 callMI->SetRegForImplicitRef(callMI->getNumImplicitRefs()-1,
2687 regNumForArg);
2688
2689 mvec.push_back(M);
Misha Brukman7b647942003-05-30 20:11:56 +00002690 }
Vikram S. Advee9a567c2003-07-25 21:08:58 +00002691 else
2692 assert(argInfo.getArgCopy() != regInfo.getInvalidRegNum() &&
2693 "Arg. not in stack slot, primary or secondary register?");
Vikram S. Adve242a8082002-05-19 15:25:51 +00002694 }
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002695
2696 // add call instruction and delay slot before copying return value
2697 mvec.push_back(callMI);
2698 mvec.push_back(BuildMI(V9::NOP, 0));
2699
Misha Brukman7b647942003-05-30 20:11:56 +00002700 // Add the return value as an implicit ref. The call operands
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002701 // were added above. Also, add code to copy out the return value.
2702 // This is always register-to-register for int or FP return values.
2703 //
2704 if (callInstr->getType() != Type::VoidTy) {
2705 // Get the return value reg.
2706 const Type* retType = callInstr->getType();
2707
2708 int regNum = (retType->isFloatingPoint()
Brian Gaekee3d68072004-02-25 18:44:15 +00002709 ? (unsigned) SparcV9FloatRegClass::f0
2710 : (unsigned) SparcV9IntRegClass::o0);
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002711 unsigned regClassID = regInfo.getRegClassIDOfType(retType);
2712 regNum = regInfo.getUnifiedRegNum(regClassID, regNum);
2713
2714 // Create a virtual register to represent it and mark
2715 // this vreg as being an implicit operand of the call MI
2716 TmpInstruction* retVReg =
2717 new TmpInstruction(mcfi, callInstr, NULL, "argReg");
2718
2719 callMI->addImplicitRef(retVReg, /*isDef*/ true);
2720
2721 // Generate the reg-to-reg copy from the return value reg.
2722 // -- For FP values, create a FMOVS or FMOVD instruction
2723 // -- For non-FP values, create an add-with-0 instruction
2724 if (retType->isFloatingPoint())
2725 M = (BuildMI(retType==Type::FloatTy? V9::FMOVS : V9::FMOVD, 2)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002726 .addReg(retVReg).addReg(callInstr, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002727 else
2728 M = (BuildMI(ChooseAddInstructionByType(retType), 3)
2729 .addReg(retVReg).addSImm((int64_t) 0)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002730 .addReg(callInstr, MachineOperand::Def));
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002731
2732 // Mark the operand with the register it should be assigned
2733 // Also mark the implicit ref of the call defining this operand
2734 M->SetRegForOperand(0, regNum);
2735 callMI->SetRegForImplicitRef(callMI->getNumImplicitRefs()-1,regNum);
2736
2737 mvec.push_back(M);
2738 }
2739
Misha Brukman7b647942003-05-30 20:11:56 +00002740 // For the CALL instruction, the ret. addr. reg. is also implicit
2741 if (isa<Function>(callee))
Vikram S. Adved0d06ad2003-05-31 07:32:01 +00002742 callMI->addImplicitRef(retAddrReg, /*isDef*/ true);
2743
2744 MF.getInfo()->popAllTempValues(); // free temps used for this inst
Misha Brukman7b647942003-05-30 20:11:56 +00002745 }
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002746
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002747 break;
Vikram S. Adveb7f06f42001-11-04 19:34:49 +00002748 }
Vikram S. Adve242a8082002-05-19 15:25:51 +00002749
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002750 case 62: // reg: Shl(reg, reg)
Vikram S. Adve242a8082002-05-19 15:25:51 +00002751 {
2752 Value* argVal1 = subtreeRoot->leftChild()->getValue();
2753 Value* argVal2 = subtreeRoot->rightChild()->getValue();
2754 Instruction* shlInstr = subtreeRoot->getInstruction();
2755
2756 const Type* opType = argVal1->getType();
Chris Lattner0c4e8862002-09-03 01:08:28 +00002757 assert((opType->isInteger() || isa<PointerType>(opType)) &&
2758 "Shl unsupported for other types");
Vikram S. Advee895a742003-08-06 18:48:40 +00002759 unsigned opSize = target.getTargetData().getTypeSize(opType);
Vikram S. Adve242a8082002-05-19 15:25:51 +00002760
2761 CreateShiftInstructions(target, shlInstr->getParent()->getParent(),
Vikram S. Advee895a742003-08-06 18:48:40 +00002762 (opSize > 4)? V9::SLLXr6:V9::SLLr5,
Vikram S. Adve242a8082002-05-19 15:25:51 +00002763 argVal1, argVal2, 0, shlInstr, mvec,
2764 MachineCodeForInstruction::get(shlInstr));
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002765 break;
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00002766 }
2767
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002768 case 63: // reg: Shr(reg, reg)
Misha Brukman7b647942003-05-30 20:11:56 +00002769 {
2770 const Type* opType = subtreeRoot->leftChild()->getValue()->getType();
Chris Lattner0c4e8862002-09-03 01:08:28 +00002771 assert((opType->isInteger() || isa<PointerType>(opType)) &&
2772 "Shr unsupported for other types");
Vikram S. Advee895a742003-08-06 18:48:40 +00002773 unsigned opSize = target.getTargetData().getTypeSize(opType);
Chris Lattner54e898e2003-01-15 19:23:34 +00002774 Add3OperandInstr(opType->isSigned()
Vikram S. Advee895a742003-08-06 18:48:40 +00002775 ? (opSize > 4? V9::SRAXr6 : V9::SRAr5)
2776 : (opSize > 4? V9::SRLXr6 : V9::SRLr5),
Chris Lattner54e898e2003-01-15 19:23:34 +00002777 subtreeRoot, mvec);
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002778 break;
Vikram S. Adve6ad7c552001-11-09 02:18:16 +00002779 }
2780
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002781 case 64: // reg: Phi(reg,reg)
2782 break; // don't forward the value
Vikram S. Adve74825322002-03-18 03:15:35 +00002783
Vikram S. Adve40dee512003-10-21 11:25:09 +00002784 case 65: // reg: VANext(reg): the va_next(va_list, type) instruction
2785 { // Increment the va_list pointer register according to the type.
2786 // All LLVM argument types are <= 64 bits, so use one doubleword.
2787 Instruction* vaNextI = subtreeRoot->getInstruction();
2788 assert(target.getTargetData().getTypeSize(vaNextI->getType()) <= 8 &&
2789 "We assumed that all LLVM parameter types <= 8 bytes!");
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002790 int argSize = target.getFrameInfo().getSizeOfEachArgOnStack();
Vikram S. Adve40dee512003-10-21 11:25:09 +00002791 mvec.push_back(BuildMI(V9::ADDi, 3).addReg(vaNextI->getOperand(0)).
2792 addSImm(argSize).addRegDef(vaNextI));
Vikram S. Adve472c3042003-10-21 12:28:27 +00002793 break;
Vikram S. Adve40dee512003-10-21 11:25:09 +00002794 }
2795
2796 case 66: // reg: VAArg (reg): the va_arg instruction
2797 { // Load argument from stack using current va_list pointer value.
2798 // Use 64-bit load for all non-FP args, and LDDF or double for FP.
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002799 Instruction* vaArgI = subtreeRoot->getInstruction();
Vikram S. Adve40dee512003-10-21 11:25:09 +00002800 MachineOpCode loadOp = (vaArgI->getType()->isFloatingPoint()
2801 ? (vaArgI->getType() == Type::FloatTy
2802 ? V9::LDFi : V9::LDDFi)
2803 : V9::LDXi);
Vikram S. Adve9d275142003-08-12 03:04:05 +00002804 mvec.push_back(BuildMI(loadOp, 3).addReg(vaArgI->getOperand(0)).
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002805 addSImm(0).addRegDef(vaArgI));
Vikram S. Adve5b1b47b2003-05-25 15:59:47 +00002806 break;
2807 }
2808
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002809 case 71: // reg: VReg
2810 case 72: // reg: Constant
2811 break; // don't forward the value
Vikram S. Adve4cecdd22001-10-01 00:12:53 +00002812
Vikram S. Adveaf9fd512003-05-31 07:27:17 +00002813 default:
2814 assert(0 && "Unrecognized BURG rule");
2815 break;
2816 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00002817 }
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002818
Misha Brukman7b647942003-05-30 20:11:56 +00002819 if (forwardOperandNum >= 0) {
2820 // We did not generate a machine instruction but need to use operand.
2821 // If user is in the same tree, replace Value in its machine operand.
2822 // If not, insert a copy instruction which should get coalesced away
2823 // by register allocation.
2824 if (subtreeRoot->parent() != NULL)
2825 ForwardOperand(subtreeRoot, subtreeRoot->parent(), forwardOperandNum);
2826 else {
2827 std::vector<MachineInstr*> minstrVec;
2828 Instruction* instr = subtreeRoot->getInstruction();
2829 target.getInstrInfo().
2830 CreateCopyInstructionsByType(target,
2831 instr->getParent()->getParent(),
2832 instr->getOperand(forwardOperandNum),
2833 instr, minstrVec,
2834 MachineCodeForInstruction::get(instr));
2835 assert(minstrVec.size() > 0);
2836 mvec.insert(mvec.end(), minstrVec.begin(), minstrVec.end());
Chris Lattner20b1ea02001-09-14 03:47:57 +00002837 }
Misha Brukman7b647942003-05-30 20:11:56 +00002838 }
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002839
Misha Brukman7b647942003-05-30 20:11:56 +00002840 if (maskUnsignedResult) {
2841 // If result is unsigned and smaller than int reg size,
2842 // we need to clear high bits of result value.
2843 assert(forwardOperandNum < 0 && "Need mask but no instruction generated");
2844 Instruction* dest = subtreeRoot->getInstruction();
2845 if (dest->getType()->isUnsigned()) {
2846 unsigned destSize=target.getTargetData().getTypeSize(dest->getType());
2847 if (destSize <= 4) {
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002848 // Mask high 64 - N bits, where N = 4*destSize.
2849
2850 // Use a TmpInstruction to represent the
Misha Brukman7b647942003-05-30 20:11:56 +00002851 // intermediate result before masking. Since those instructions
2852 // have already been generated, go back and substitute tmpI
2853 // for dest in the result position of each one of them.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002854 //
2855 MachineCodeForInstruction& mcfi = MachineCodeForInstruction::get(dest);
2856 TmpInstruction *tmpI = new TmpInstruction(mcfi, dest->getType(),
2857 dest, NULL, "maskHi");
2858 Value* srlArgToUse = tmpI;
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002859
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002860 unsigned numSubst = 0;
2861 for (unsigned i=0, N=mvec.size(); i < N; ++i) {
Vikram S. Adve97a95bd2003-08-07 15:01:26 +00002862
2863 // Make sure we substitute all occurrences of dest in these instrs.
2864 // Otherwise, we will have bogus code.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002865 bool someArgsWereIgnored = false;
Vikram S. Adve97a95bd2003-08-07 15:01:26 +00002866
2867 // Make sure not to substitute an upwards-exposed use -- that would
2868 // introduce a use of `tmpI' with no preceding def. Therefore,
2869 // substitute a use or def-and-use operand only if a previous def
2870 // operand has already been substituted (i.e., numSusbt > 0).
2871 //
2872 numSubst += mvec[i]->substituteValue(dest, tmpI,
2873 /*defsOnly*/ numSubst == 0,
2874 /*notDefsAndUses*/ numSubst > 0,
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002875 someArgsWereIgnored);
2876 assert(!someArgsWereIgnored &&
2877 "Operand `dest' exists but not replaced: probably bogus!");
2878 }
2879 assert(numSubst > 0 && "Operand `dest' not replaced: probably bogus!");
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002880
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002881 // Left shift 32-N if size (N) is less than 32 bits.
Misha Brukman452db672003-09-23 17:28:11 +00002882 // Use another tmp. virtual register to represent this result.
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002883 if (destSize < 4) {
2884 srlArgToUse = new TmpInstruction(mcfi, dest->getType(),
2885 tmpI, NULL, "maskHi2");
2886 mvec.push_back(BuildMI(V9::SLLXi6, 3).addReg(tmpI)
2887 .addZImm(8*(4-destSize))
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002888 .addReg(srlArgToUse, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002889 }
2890
2891 // Logical right shift 32-N to get zero extension in top 64-N bits.
2892 mvec.push_back(BuildMI(V9::SRLi5, 3).addReg(srlArgToUse)
Alkis Evlogimenos890f9232004-02-22 19:23:26 +00002893 .addZImm(8*(4-destSize))
2894 .addReg(dest, MachineOperand::Def));
Vikram S. Adve951df2b2003-07-10 20:07:54 +00002895
Misha Brukman7b647942003-05-30 20:11:56 +00002896 } else if (destSize < 8) {
2897 assert(0 && "Unsupported type size: 32 < size < 64 bits");
2898 }
Vikram S. Adve65a2dee2002-08-13 17:40:54 +00002899 }
Misha Brukman7b647942003-05-30 20:11:56 +00002900 }
Chris Lattner20b1ea02001-09-14 03:47:57 +00002901}
Brian Gaeked0fde302003-11-11 22:41:34 +00002902
2903}