blob: 468bd8f5b6eb770244e063548f852df4e2346415 [file] [log] [blame]
Vikram S. Advea1d14f32001-10-10 20:50:43 +00001// $Id$ -*-c++-*-
2//***************************************************************************
3// File:
4// InstrSelectionSupport.h
5//
6// Purpose:
7// Target-independent instruction selection code.
8// See SparcInstrSelection.cpp for usage.
9//
10// History:
11// 10/10/01 - Vikram Adve - Created
12//**************************************************************************/
13
14#include "llvm/CodeGen/InstrSelectionSupport.h"
15#include "llvm/CodeGen/InstrSelection.h"
16#include "llvm/CodeGen/MachineInstr.h"
17#include "llvm/Target/TargetMachine.h"
18#include "llvm/Target/MachineRegInfo.h"
Chris Lattnere9bb2df2001-12-03 22:26:30 +000019#include "llvm/ConstantVals.h"
Vikram S. Adve94e40ef2001-10-28 21:46:23 +000020#include "llvm/Method.h"
21#include "llvm/BasicBlock.h"
Vikram S. Advea1d14f32001-10-10 20:50:43 +000022#include "llvm/Instruction.h"
23#include "llvm/Type.h"
24#include "llvm/iMemory.h"
25
26
27//*************************** Local Functions ******************************/
28
Vikram S. Advea1d14f32001-10-10 20:50:43 +000029
Vikram S. Adve6d353262001-10-17 23:57:50 +000030static TmpInstruction*
31InsertCodeToLoadConstant(Value* opValue,
32 Instruction* vmInstr,
33 vector<MachineInstr*>& loadConstVec,
34 TargetMachine& target)
Vikram S. Advea1d14f32001-10-10 20:50:43 +000035{
Vikram S. Adve6d353262001-10-17 23:57:50 +000036 vector<TmpInstruction*> tempVec;
Vikram S. Advea1d14f32001-10-10 20:50:43 +000037
Vikram S. Adve6d353262001-10-17 23:57:50 +000038 // Create a tmp virtual register to hold the constant.
39 TmpInstruction* tmpReg =
40 new TmpInstruction(TMP_INSTRUCTION_OPCODE, opValue, NULL);
41 vmInstr->getMachineInstrVec().addTempValue(tmpReg);
Vikram S. Advea1d14f32001-10-10 20:50:43 +000042
Vikram S. Adve6d353262001-10-17 23:57:50 +000043 target.getInstrInfo().CreateCodeToLoadConst(opValue, tmpReg,
44 loadConstVec, tempVec);
45
46 // Register the new tmp values created for this m/c instruction sequence
47 for (unsigned i=0; i < tempVec.size(); i++)
48 vmInstr->getMachineInstrVec().addTempValue(tempVec[i]);
49
50 // Record the mapping from the tmp VM instruction to machine instruction.
51 // Do this for all machine instructions that were not mapped to any
52 // other temp values created by
53 // tmpReg->addMachineInstruction(loadConstVec.back());
54
55 return tmpReg;
Vikram S. Advea1d14f32001-10-10 20:50:43 +000056}
57
58
Vikram S. Adve6d353262001-10-17 23:57:50 +000059//---------------------------------------------------------------------------
60// Function GetConstantValueAsSignedInt
61//
62// Convenience function to get the value of an integer constant, for an
63// appropriate integer or non-integer type that can be held in an integer.
64// The type of the argument must be the following:
65// Signed or unsigned integer
66// Boolean
67// Pointer
68//
69// isValidConstant is set to true if a valid constant was found.
70//---------------------------------------------------------------------------
71
72int64_t
73GetConstantValueAsSignedInt(const Value *V,
74 bool &isValidConstant)
Vikram S. Advea1d14f32001-10-10 20:50:43 +000075{
Chris Lattnere9bb2df2001-12-03 22:26:30 +000076 if (!isa<Constant>(V))
Vikram S. Advea1d14f32001-10-10 20:50:43 +000077 {
Vikram S. Adve6d353262001-10-17 23:57:50 +000078 isValidConstant = false;
79 return 0;
Vikram S. Advea1d14f32001-10-10 20:50:43 +000080 }
81
Vikram S. Adve6d353262001-10-17 23:57:50 +000082 isValidConstant = true;
83
84 if (V->getType() == Type::BoolTy)
Chris Lattnere9bb2df2001-12-03 22:26:30 +000085 return (int64_t) cast<ConstantBool>(V)->getValue();
Vikram S. Adve6d353262001-10-17 23:57:50 +000086
87 if (V->getType()->isIntegral())
88 {
89 if (V->getType()->isSigned())
Chris Lattnere9bb2df2001-12-03 22:26:30 +000090 return cast<ConstantSInt>(V)->getValue();
Vikram S. Adve6d353262001-10-17 23:57:50 +000091
92 assert(V->getType()->isUnsigned());
Chris Lattnere9bb2df2001-12-03 22:26:30 +000093 uint64_t Val = cast<ConstantUInt>(V)->getValue();
Vikram S. Adve6d353262001-10-17 23:57:50 +000094 if (Val < INT64_MAX) // then safe to cast to signed
95 return (int64_t)Val;
96 }
97
98 isValidConstant = false;
99 return 0;
Vikram S. Advea1d14f32001-10-10 20:50:43 +0000100}
101
102
103//---------------------------------------------------------------------------
104// Function: FoldGetElemChain
105//
106// Purpose:
107// Fold a chain of GetElementPtr instructions into an equivalent
108// (Pointer, IndexVector) pair. Returns the pointer Value, and
109// stores the resulting IndexVector in argument chainIdxVec.
110//---------------------------------------------------------------------------
111
112Value*
113FoldGetElemChain(const InstructionNode* getElemInstrNode,
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000114 vector<Constant*>& chainIdxVec)
Vikram S. Advea1d14f32001-10-10 20:50:43 +0000115{
116 MemAccessInst* getElemInst = (MemAccessInst*)
117 getElemInstrNode->getInstruction();
118
119 // Initialize return values from the incoming instruction
Chris Lattner65ea1712001-11-14 11:27:58 +0000120 Value* ptrVal = getElemInst->getPointerOperand();
Chris Lattner69a86e42001-11-26 16:56:19 +0000121 chainIdxVec = getElemInst->getIndicesBROKEN(); // copies index vector values
Vikram S. Advea1d14f32001-10-10 20:50:43 +0000122
123 // Now chase the chain of getElementInstr instructions, if any
124 InstrTreeNode* ptrChild = getElemInstrNode->leftChild();
125 while (ptrChild->getOpLabel() == Instruction::GetElementPtr ||
126 ptrChild->getOpLabel() == GetElemPtrIdx)
127 {
128 // Child is a GetElemPtr instruction
129 getElemInst = (MemAccessInst*)
130 ((InstructionNode*) ptrChild)->getInstruction();
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000131 const vector<Constant*>& idxVec = getElemInst->getIndicesBROKEN();
Vikram S. Advea1d14f32001-10-10 20:50:43 +0000132
133 // Get the pointer value out of ptrChild and *prepend* its index vector
Chris Lattner65ea1712001-11-14 11:27:58 +0000134 ptrVal = getElemInst->getPointerOperand();
Vikram S. Advea1d14f32001-10-10 20:50:43 +0000135 chainIdxVec.insert(chainIdxVec.begin(), idxVec.begin(), idxVec.end());
136
137 ptrChild = ptrChild->leftChild();
138 }
139
140 return ptrVal;
141}
142
143
144//------------------------------------------------------------------------
145// Function Set2OperandsFromInstr
146// Function Set3OperandsFromInstr
147//
148// For the common case of 2- and 3-operand arithmetic/logical instructions,
149// set the m/c instr. operands directly from the VM instruction's operands.
150// Check whether the first or second operand is 0 and can use a dedicated "0"
151// register.
152// Check whether the second operand should use an immediate field or register.
153// (First and third operands are never immediates for such instructions.)
154//
155// Arguments:
156// canDiscardResult: Specifies that the result operand can be discarded
157// by using the dedicated "0"
158//
159// op1position, op2position and resultPosition: Specify in which position
160// in the machine instruction the 3 operands (arg1, arg2
161// and result) should go.
162//
163// RETURN VALUE: unsigned int flags, where
164// flags & 0x01 => operand 1 is constant and needs a register
165// flags & 0x02 => operand 2 is constant and needs a register
166//------------------------------------------------------------------------
167
168void
169Set2OperandsFromInstr(MachineInstr* minstr,
170 InstructionNode* vmInstrNode,
171 const TargetMachine& target,
172 bool canDiscardResult,
173 int op1Position,
174 int resultPosition)
175{
176 Set3OperandsFromInstr(minstr, vmInstrNode, target,
177 canDiscardResult, op1Position,
178 /*op2Position*/ -1, resultPosition);
179}
180
Vikram S. Advea1d14f32001-10-10 20:50:43 +0000181
182void
183Set3OperandsFromInstr(MachineInstr* minstr,
184 InstructionNode* vmInstrNode,
185 const TargetMachine& target,
186 bool canDiscardResult,
187 int op1Position,
188 int op2Position,
189 int resultPosition)
190{
191 assert(op1Position >= 0);
192 assert(resultPosition >= 0);
193
194 // operand 1
195 minstr->SetMachineOperand(op1Position, MachineOperand::MO_VirtualRegister,
196 vmInstrNode->leftChild()->getValue());
197
198 // operand 2 (if any)
199 if (op2Position >= 0)
200 minstr->SetMachineOperand(op2Position, MachineOperand::MO_VirtualRegister,
201 vmInstrNode->rightChild()->getValue());
202
203 // result operand: if it can be discarded, use a dead register if one exists
204 if (canDiscardResult && target.getRegInfo().getZeroRegNum() >= 0)
205 minstr->SetMachineOperand(resultPosition,
206 target.getRegInfo().getZeroRegNum());
207 else
208 minstr->SetMachineOperand(resultPosition,
209 MachineOperand::MO_VirtualRegister, vmInstrNode->getValue());
210}
211
212
213MachineOperand::MachineOperandType
214ChooseRegOrImmed(Value* val,
215 MachineOpCode opCode,
216 const TargetMachine& target,
217 bool canUseImmed,
218 unsigned int& getMachineRegNum,
219 int64_t& getImmedValue)
220{
221 MachineOperand::MachineOperandType opType =
222 MachineOperand::MO_VirtualRegister;
223 getMachineRegNum = 0;
224 getImmedValue = 0;
225
226 // Check for the common case first: argument is not constant
227 //
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000228 Constant *CPV = dyn_cast<Constant>(val);
Vikram S. Advea1d14f32001-10-10 20:50:43 +0000229 if (!CPV) return opType;
230
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000231 if (ConstantBool *CPB = dyn_cast<ConstantBool>(CPV))
Vikram S. Advea1d14f32001-10-10 20:50:43 +0000232 {
Vikram S. Advea1d14f32001-10-10 20:50:43 +0000233 if (!CPB->getValue() && target.getRegInfo().getZeroRegNum() >= 0)
234 {
235 getMachineRegNum = target.getRegInfo().getZeroRegNum();
236 return MachineOperand::MO_MachineRegister;
237 }
238
239 getImmedValue = 1;
240 return MachineOperand::MO_SignExtendedImmed;
241 }
242
Vikram S. Advec8117452001-11-14 17:24:49 +0000243 // Otherwise it needs to be an integer or a NULL pointer
244 if (! CPV->getType()->isIntegral() &&
245 ! (CPV->getType()->isPointerType() &&
246 CPV->isNullValue()))
247 return opType;
248
Vikram S. Advea1d14f32001-10-10 20:50:43 +0000249 // Now get the constant value and check if it fits in the IMMED field.
250 // Take advantage of the fact that the max unsigned value will rarely
251 // fit into any IMMED field and ignore that case (i.e., cast smaller
252 // unsigned constants to signed).
253 //
254 int64_t intValue;
Vikram S. Advec8117452001-11-14 17:24:49 +0000255 if (CPV->getType()->isPointerType())
256 {
257 intValue = 0;
258 }
Vikram S. Adve9e29f782001-11-14 17:55:02 +0000259 else if (CPV->getType()->isSigned())
Vikram S. Advea1d14f32001-10-10 20:50:43 +0000260 {
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000261 intValue = cast<ConstantSInt>(CPV)->getValue();
Vikram S. Advea1d14f32001-10-10 20:50:43 +0000262 }
263 else
264 {
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000265 uint64_t V = cast<ConstantUInt>(CPV)->getValue();
Vikram S. Advea1d14f32001-10-10 20:50:43 +0000266 if (V >= INT64_MAX) return opType;
267 intValue = (int64_t)V;
268 }
269
270 if (intValue == 0 && target.getRegInfo().getZeroRegNum() >= 0)
271 {
272 opType = MachineOperand::MO_MachineRegister;
273 getMachineRegNum = target.getRegInfo().getZeroRegNum();
274 }
275 else if (canUseImmed &&
276 target.getInstrInfo().constantFitsInImmedField(opCode, intValue))
277 {
278 opType = MachineOperand::MO_SignExtendedImmed;
279 getImmedValue = intValue;
280 }
281
282 return opType;
283}
284
Vikram S. Adve6d353262001-10-17 23:57:50 +0000285
286//---------------------------------------------------------------------------
287// Function: FixConstantOperandsForInstr
288//
289// Purpose:
290// Special handling for constant operands of a machine instruction
291// -- if the constant is 0, use the hardwired 0 register, if any;
292// -- if the constant fits in the IMMEDIATE field, use that field;
293// -- else create instructions to put the constant into a register, either
294// directly or by loading explicitly from the constant pool.
295//
296// In the first 2 cases, the operand of `minstr' is modified in place.
297// Returns a vector of machine instructions generated for operands that
298// fall under case 3; these must be inserted before `minstr'.
299//---------------------------------------------------------------------------
300
301vector<MachineInstr*>
302FixConstantOperandsForInstr(Instruction* vmInstr,
303 MachineInstr* minstr,
304 TargetMachine& target)
305{
306 vector<MachineInstr*> loadConstVec;
307
308 const MachineInstrDescriptor& instrDesc =
309 target.getInstrInfo().getDescriptor(minstr->getOpCode());
310
Vikram S. Adve94e40ef2001-10-28 21:46:23 +0000311 Method* method = vmInstr->getParent()->getParent();
312
Vikram S. Adve6d353262001-10-17 23:57:50 +0000313 for (unsigned op=0; op < minstr->getNumOperands(); op++)
314 {
315 const MachineOperand& mop = minstr->getOperand(op);
316
317 // skip the result position (for efficiency below) and any other
318 // positions already marked as not a virtual register
319 if (instrDesc.resultPos == (int) op ||
320 mop.getOperandType() != MachineOperand::MO_VirtualRegister ||
321 mop.getVRegValue() == NULL)
322 {
323 continue;
324 }
325
326 Value* opValue = mop.getVRegValue();
327 bool constantThatMustBeLoaded = false;
328
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000329 if (Constant *OpConst = dyn_cast<Constant>(opValue)) {
Vikram S. Adve6d353262001-10-17 23:57:50 +0000330 unsigned int machineRegNum;
331 int64_t immedValue;
332 MachineOperand::MachineOperandType opType =
333 ChooseRegOrImmed(opValue, minstr->getOpCode(), target,
Vikram S. Adveecd58132001-11-14 18:49:45 +0000334 (target.getInstrInfo().getImmmedConstantPos(minstr->getOpCode()) == (int) op),
Vikram S. Adve6d353262001-10-17 23:57:50 +0000335 machineRegNum, immedValue);
Vikram S. Adveecd58132001-11-14 18:49:45 +0000336
Vikram S. Adve6d353262001-10-17 23:57:50 +0000337 if (opType == MachineOperand::MO_MachineRegister)
338 minstr->SetMachineOperand(op, machineRegNum);
339 else if (opType == MachineOperand::MO_VirtualRegister)
340 constantThatMustBeLoaded = true; // load is generated below
341 else
342 minstr->SetMachineOperand(op, opType, immedValue);
Vikram S. Adve6d353262001-10-17 23:57:50 +0000343
Vikram S. Adve94e40ef2001-10-28 21:46:23 +0000344 if (constantThatMustBeLoaded)
345 { // register the value so it is emitted in the assembly
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000346 MachineCodeForMethod::get(method).addToConstantPool(OpConst);
Vikram S. Adve94e40ef2001-10-28 21:46:23 +0000347 }
348 }
349
Vikram S. Adve6d353262001-10-17 23:57:50 +0000350 if (constantThatMustBeLoaded || isa<GlobalValue>(opValue))
351 { // opValue is a constant that must be explicitly loaded into a reg.
352 TmpInstruction* tmpReg = InsertCodeToLoadConstant(opValue, vmInstr,
353 loadConstVec, target);
354 minstr->SetMachineOperand(op, MachineOperand::MO_VirtualRegister,
355 tmpReg);
356 }
357 }
358
359 //
360 // Also, check for implicit operands used (not those defined) by the
361 // machine instruction. These include:
362 // -- arguments to a Call
363 // -- return value of a Return
364 // Any such operand that is a constant value needs to be fixed also.
365 // The current instructions with implicit refs (viz., Call and Return)
366 // have no immediate fields, so the constant always needs to be loaded
367 // into a register.
368 //
369 for (unsigned i=0, N=minstr->getNumImplicitRefs(); i < N; ++i)
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000370 if (isa<Constant>(minstr->getImplicitRef(i)) ||
Vikram S. Adve6d353262001-10-17 23:57:50 +0000371 isa<GlobalValue>(minstr->getImplicitRef(i)))
372 {
Vikram S. Adve94e40ef2001-10-28 21:46:23 +0000373 Value* oldVal = minstr->getImplicitRef(i);
Vikram S. Adve6d353262001-10-17 23:57:50 +0000374 TmpInstruction* tmpReg =
Vikram S. Adve94e40ef2001-10-28 21:46:23 +0000375 InsertCodeToLoadConstant(oldVal, vmInstr, loadConstVec, target);
Vikram S. Adve6d353262001-10-17 23:57:50 +0000376 minstr->setImplicitRef(i, tmpReg);
Vikram S. Adve94e40ef2001-10-28 21:46:23 +0000377
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000378 if (Constant *C = dyn_cast<Constant>(oldVal))
Vikram S. Adve94e40ef2001-10-28 21:46:23 +0000379 { // register the value so it is emitted in the assembly
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000380 MachineCodeForMethod::get(method).addToConstantPool(C);
Vikram S. Adve94e40ef2001-10-28 21:46:23 +0000381 }
Vikram S. Adve6d353262001-10-17 23:57:50 +0000382 }
383
384 return loadConstVec;
385}
386
387