blob: 992b8edba4d7123f426025ecb8bfc16c6e495e8f [file] [log] [blame]
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001///===-- FastISel.cpp - Implementation of the FastISel class --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the implementation of the FastISel class.
11//
12//===----------------------------------------------------------------------===//
13
Dan Gohman6f2766d2008-08-19 22:31:46 +000014#include "llvm/Instructions.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000015#include "llvm/CodeGen/FastISel.h"
16#include "llvm/CodeGen/MachineInstrBuilder.h"
17#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Cheng83785c82008-08-20 22:45:34 +000018#include "llvm/Target/TargetData.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000019#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng83785c82008-08-20 22:45:34 +000020#include "llvm/Target/TargetLowering.h"
Dan Gohmanbb466332008-08-20 21:05:57 +000021#include "llvm/Target/TargetMachine.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000022using namespace llvm;
23
Dan Gohman3df24e62008-09-03 23:12:08 +000024unsigned FastISel::getRegForValue(Value *V) {
Dan Gohman104e4ce2008-09-03 23:32:19 +000025 // Look up the value to see if we already have a register for it. We
26 // cache values defined by Instructions across blocks, and other values
27 // only locally. This is because Instructions already have the SSA
28 // def-dominatess-use requirement enforced.
Owen Anderson99aaf102008-09-03 17:37:03 +000029 if (ValueMap.count(V))
30 return ValueMap[V];
Dan Gohman104e4ce2008-09-03 23:32:19 +000031 unsigned Reg = LocalValueMap[V];
32 if (Reg != 0)
33 return Reg;
Dan Gohmanad368ac2008-08-27 18:10:19 +000034
35 MVT::SimpleValueType VT = TLI.getValueType(V->getType()).getSimpleVT();
36 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
37 if (CI->getValue().getActiveBits() > 64)
38 return 0;
Owen Anderson99aaf102008-09-03 17:37:03 +000039 // Don't cache constant materializations. To do so would require
40 // tracking what uses they dominate.
Dan Gohman104e4ce2008-09-03 23:32:19 +000041 Reg = FastEmit_i(VT, VT, ISD::Constant, CI->getZExtValue());
Dan Gohman205d9252008-08-28 21:19:07 +000042 } else if (isa<ConstantPointerNull>(V)) {
Dan Gohman104e4ce2008-09-03 23:32:19 +000043 Reg = FastEmit_i(VT, VT, ISD::Constant, 0);
Dan Gohmanad368ac2008-08-27 18:10:19 +000044 } else if (ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Dan Gohman104e4ce2008-09-03 23:32:19 +000045 Reg = FastEmit_f(VT, VT, ISD::ConstantFP, CF);
Dan Gohmanad368ac2008-08-27 18:10:19 +000046
47 if (!Reg) {
48 const APFloat &Flt = CF->getValueAPF();
49 MVT IntVT = TLI.getPointerTy();
50
51 uint64_t x[2];
52 uint32_t IntBitWidth = IntVT.getSizeInBits();
53 if (Flt.convertToInteger(x, IntBitWidth, /*isSigned=*/true,
54 APFloat::rmTowardZero) != APFloat::opOK)
55 return 0;
56 APInt IntVal(IntBitWidth, 2, x);
57
58 unsigned IntegerReg = FastEmit_i(IntVT.getSimpleVT(), IntVT.getSimpleVT(),
59 ISD::Constant, IntVal.getZExtValue());
60 if (IntegerReg == 0)
61 return 0;
62 Reg = FastEmit_r(IntVT.getSimpleVT(), VT, ISD::SINT_TO_FP, IntegerReg);
63 if (Reg == 0)
64 return 0;
65 }
Dan Gohman40b189e2008-09-05 18:18:20 +000066 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
67 if (!SelectOperator(CE, CE->getOpcode())) return 0;
68 Reg = LocalValueMap[CE];
Dan Gohman205d9252008-08-28 21:19:07 +000069 } else if (isa<UndefValue>(V)) {
Dan Gohman104e4ce2008-09-03 23:32:19 +000070 Reg = createResultReg(TLI.getRegClassFor(VT));
Dan Gohman205d9252008-08-28 21:19:07 +000071 BuildMI(MBB, TII.get(TargetInstrInfo::IMPLICIT_DEF), Reg);
Dan Gohman104e4ce2008-09-03 23:32:19 +000072 } else {
73 return 0;
Dan Gohmanad368ac2008-08-27 18:10:19 +000074 }
Owen Andersond5d81a42008-09-03 17:51:57 +000075
Dan Gohman104e4ce2008-09-03 23:32:19 +000076 LocalValueMap[V] = Reg;
77 return Reg;
Dan Gohmanad368ac2008-08-27 18:10:19 +000078}
79
Owen Andersoncc54e762008-08-30 00:38:46 +000080/// UpdateValueMap - Update the value map to include the new mapping for this
81/// instruction, or insert an extra copy to get the result in a previous
82/// determined register.
83/// NOTE: This is only necessary because we might select a block that uses
84/// a value before we select the block that defines the value. It might be
85/// possible to fix this by selecting blocks in reverse postorder.
Owen Anderson95267a12008-09-05 00:06:23 +000086void FastISel::UpdateValueMap(Value* I, unsigned Reg) {
Dan Gohman40b189e2008-09-05 18:18:20 +000087 if (!isa<Instruction>(I)) {
88 LocalValueMap[I] = Reg;
89 return;
90 }
Owen Andersoncc54e762008-08-30 00:38:46 +000091 if (!ValueMap.count(I))
92 ValueMap[I] = Reg;
93 else
94 TII.copyRegToReg(*MBB, MBB->end(), ValueMap[I],
95 Reg, MRI.getRegClass(Reg), MRI.getRegClass(Reg));
96}
97
Dan Gohmanbdedd442008-08-20 00:11:48 +000098/// SelectBinaryOp - Select and emit code for a binary operator instruction,
99/// which has an opcode which directly corresponds to the given ISD opcode.
100///
Dan Gohman40b189e2008-09-05 18:18:20 +0000101bool FastISel::SelectBinaryOp(User *I, ISD::NodeType ISDOpcode) {
Dan Gohmanbdedd442008-08-20 00:11:48 +0000102 MVT VT = MVT::getMVT(I->getType(), /*HandleUnknown=*/true);
103 if (VT == MVT::Other || !VT.isSimple())
104 // Unhandled type. Halt "fast" selection and bail.
105 return false;
Dan Gohman638c6832008-09-05 18:44:22 +0000106
Dan Gohmanb71fea22008-08-26 20:52:40 +0000107 // We only handle legal types. For example, on x86-32 the instruction
108 // selector contains all of the 64-bit instructions from x86-64,
109 // under the assumption that i64 won't be used if the target doesn't
110 // support it.
Dan Gohman638c6832008-09-05 18:44:22 +0000111 if (!TLI.isTypeLegal(VT)) {
112 // MVT::i1 is special. Allow AND and OR (but not XOR) because they
113 // don't require additional zeroing, which makes them easy.
114 if (VT == MVT::i1 &&
115 (ISDOpcode == ISD::AND || ISDOpcode == ISD::OR))
116 VT = TLI.getTypeToTransformTo(VT);
117 else
118 return false;
119 }
Dan Gohmanbdedd442008-08-20 00:11:48 +0000120
Dan Gohman3df24e62008-09-03 23:12:08 +0000121 unsigned Op0 = getRegForValue(I->getOperand(0));
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000122 if (Op0 == 0)
123 // Unhandled operand. Halt "fast" selection and bail.
124 return false;
125
126 // Check if the second operand is a constant and handle it appropriately.
127 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
Dan Gohmanad368ac2008-08-27 18:10:19 +0000128 unsigned ResultReg = FastEmit_ri(VT.getSimpleVT(), VT.getSimpleVT(),
129 ISDOpcode, Op0, CI->getZExtValue());
130 if (ResultReg != 0) {
131 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000132 UpdateValueMap(I, ResultReg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000133 return true;
134 }
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000135 }
136
Dan Gohman10df0fa2008-08-27 01:09:54 +0000137 // Check if the second operand is a constant float.
138 if (ConstantFP *CF = dyn_cast<ConstantFP>(I->getOperand(1))) {
Dan Gohmanad368ac2008-08-27 18:10:19 +0000139 unsigned ResultReg = FastEmit_rf(VT.getSimpleVT(), VT.getSimpleVT(),
140 ISDOpcode, Op0, CF);
141 if (ResultReg != 0) {
142 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000143 UpdateValueMap(I, ResultReg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000144 return true;
145 }
Dan Gohman10df0fa2008-08-27 01:09:54 +0000146 }
147
Dan Gohman3df24e62008-09-03 23:12:08 +0000148 unsigned Op1 = getRegForValue(I->getOperand(1));
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000149 if (Op1 == 0)
150 // Unhandled operand. Halt "fast" selection and bail.
151 return false;
152
Dan Gohmanad368ac2008-08-27 18:10:19 +0000153 // Now we have both operands in registers. Emit the instruction.
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000154 unsigned ResultReg = FastEmit_rr(VT.getSimpleVT(), VT.getSimpleVT(),
155 ISDOpcode, Op0, Op1);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000156 if (ResultReg == 0)
157 // Target-specific code wasn't able to find a machine opcode for
158 // the given ISD opcode and type. Halt "fast" selection and bail.
159 return false;
160
Dan Gohman8014e862008-08-20 00:23:20 +0000161 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000162 UpdateValueMap(I, ResultReg);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000163 return true;
164}
165
Dan Gohman40b189e2008-09-05 18:18:20 +0000166bool FastISel::SelectGetElementPtr(User *I) {
Dan Gohman3df24e62008-09-03 23:12:08 +0000167 unsigned N = getRegForValue(I->getOperand(0));
Evan Cheng83785c82008-08-20 22:45:34 +0000168 if (N == 0)
169 // Unhandled operand. Halt "fast" selection and bail.
170 return false;
171
172 const Type *Ty = I->getOperand(0)->getType();
Dan Gohman7a0e6592008-08-21 17:25:26 +0000173 MVT::SimpleValueType VT = TLI.getPointerTy().getSimpleVT();
Evan Cheng83785c82008-08-20 22:45:34 +0000174 for (GetElementPtrInst::op_iterator OI = I->op_begin()+1, E = I->op_end();
175 OI != E; ++OI) {
176 Value *Idx = *OI;
177 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
178 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
179 if (Field) {
180 // N = N + Offset
181 uint64_t Offs = TD.getStructLayout(StTy)->getElementOffset(Field);
182 // FIXME: This can be optimized by combining the add with a
183 // subsequent one.
Dan Gohman7a0e6592008-08-21 17:25:26 +0000184 N = FastEmit_ri_(VT, ISD::ADD, N, Offs, VT);
Evan Cheng83785c82008-08-20 22:45:34 +0000185 if (N == 0)
186 // Unhandled operand. Halt "fast" selection and bail.
187 return false;
188 }
189 Ty = StTy->getElementType(Field);
190 } else {
191 Ty = cast<SequentialType>(Ty)->getElementType();
192
193 // If this is a constant subscript, handle it quickly.
194 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
195 if (CI->getZExtValue() == 0) continue;
196 uint64_t Offs =
197 TD.getABITypeSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Dan Gohman7a0e6592008-08-21 17:25:26 +0000198 N = FastEmit_ri_(VT, ISD::ADD, N, Offs, VT);
Evan Cheng83785c82008-08-20 22:45:34 +0000199 if (N == 0)
200 // Unhandled operand. Halt "fast" selection and bail.
201 return false;
202 continue;
203 }
204
205 // N = N + Idx * ElementSize;
206 uint64_t ElementSize = TD.getABITypeSize(Ty);
Dan Gohman3df24e62008-09-03 23:12:08 +0000207 unsigned IdxN = getRegForValue(Idx);
Evan Cheng83785c82008-08-20 22:45:34 +0000208 if (IdxN == 0)
209 // Unhandled operand. Halt "fast" selection and bail.
210 return false;
211
212 // If the index is smaller or larger than intptr_t, truncate or extend
213 // it.
Evan Cheng2076aa82008-08-21 01:19:11 +0000214 MVT IdxVT = MVT::getMVT(Idx->getType(), /*HandleUnknown=*/false);
Evan Cheng83785c82008-08-20 22:45:34 +0000215 if (IdxVT.bitsLT(VT))
Dan Gohman80bc6e22008-08-26 20:57:08 +0000216 IdxN = FastEmit_r(IdxVT.getSimpleVT(), VT, ISD::SIGN_EXTEND, IdxN);
Evan Cheng83785c82008-08-20 22:45:34 +0000217 else if (IdxVT.bitsGT(VT))
Dan Gohman80bc6e22008-08-26 20:57:08 +0000218 IdxN = FastEmit_r(IdxVT.getSimpleVT(), VT, ISD::TRUNCATE, IdxN);
Evan Cheng83785c82008-08-20 22:45:34 +0000219 if (IdxN == 0)
220 // Unhandled operand. Halt "fast" selection and bail.
221 return false;
222
Dan Gohman80bc6e22008-08-26 20:57:08 +0000223 if (ElementSize != 1) {
Dan Gohmanf93cf792008-08-21 17:37:05 +0000224 IdxN = FastEmit_ri_(VT, ISD::MUL, IdxN, ElementSize, VT);
Dan Gohman80bc6e22008-08-26 20:57:08 +0000225 if (IdxN == 0)
226 // Unhandled operand. Halt "fast" selection and bail.
227 return false;
228 }
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000229 N = FastEmit_rr(VT, VT, ISD::ADD, N, IdxN);
Evan Cheng83785c82008-08-20 22:45:34 +0000230 if (N == 0)
231 // Unhandled operand. Halt "fast" selection and bail.
232 return false;
233 }
234 }
235
236 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000237 UpdateValueMap(I, N);
Evan Cheng83785c82008-08-20 22:45:34 +0000238 return true;
Dan Gohmanbdedd442008-08-20 00:11:48 +0000239}
240
Dan Gohman40b189e2008-09-05 18:18:20 +0000241bool FastISel::SelectCast(User *I, ISD::NodeType Opcode) {
Owen Anderson6336b702008-08-27 18:58:30 +0000242 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
243 MVT DstVT = TLI.getValueType(I->getType());
Owen Andersond0533c92008-08-26 23:46:32 +0000244
245 if (SrcVT == MVT::Other || !SrcVT.isSimple() ||
246 DstVT == MVT::Other || !DstVT.isSimple() ||
247 !TLI.isTypeLegal(SrcVT) || !TLI.isTypeLegal(DstVT))
248 // Unhandled type. Halt "fast" selection and bail.
249 return false;
250
Dan Gohman3df24e62008-09-03 23:12:08 +0000251 unsigned InputReg = getRegForValue(I->getOperand(0));
Owen Andersond0533c92008-08-26 23:46:32 +0000252 if (!InputReg)
253 // Unhandled operand. Halt "fast" selection and bail.
254 return false;
255
256 unsigned ResultReg = FastEmit_r(SrcVT.getSimpleVT(),
257 DstVT.getSimpleVT(),
258 Opcode,
259 InputReg);
260 if (!ResultReg)
261 return false;
262
Dan Gohman3df24e62008-09-03 23:12:08 +0000263 UpdateValueMap(I, ResultReg);
Owen Andersond0533c92008-08-26 23:46:32 +0000264 return true;
265}
266
Dan Gohman40b189e2008-09-05 18:18:20 +0000267bool FastISel::SelectBitCast(User *I) {
Dan Gohmanad368ac2008-08-27 18:10:19 +0000268 // If the bitcast doesn't change the type, just use the operand value.
269 if (I->getType() == I->getOperand(0)->getType()) {
Dan Gohman3df24e62008-09-03 23:12:08 +0000270 unsigned Reg = getRegForValue(I->getOperand(0));
Dan Gohmana318dab2008-08-27 20:41:38 +0000271 if (Reg == 0)
272 return false;
Dan Gohman3df24e62008-09-03 23:12:08 +0000273 UpdateValueMap(I, Reg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000274 return true;
275 }
276
277 // Bitcasts of other values become reg-reg copies or BIT_CONVERT operators.
Owen Anderson6336b702008-08-27 18:58:30 +0000278 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
279 MVT DstVT = TLI.getValueType(I->getType());
Owen Andersond0533c92008-08-26 23:46:32 +0000280
281 if (SrcVT == MVT::Other || !SrcVT.isSimple() ||
282 DstVT == MVT::Other || !DstVT.isSimple() ||
283 !TLI.isTypeLegal(SrcVT) || !TLI.isTypeLegal(DstVT))
284 // Unhandled type. Halt "fast" selection and bail.
285 return false;
286
Dan Gohman3df24e62008-09-03 23:12:08 +0000287 unsigned Op0 = getRegForValue(I->getOperand(0));
Dan Gohmanad368ac2008-08-27 18:10:19 +0000288 if (Op0 == 0)
289 // Unhandled operand. Halt "fast" selection and bail.
Owen Andersond0533c92008-08-26 23:46:32 +0000290 return false;
291
Dan Gohmanad368ac2008-08-27 18:10:19 +0000292 // First, try to perform the bitcast by inserting a reg-reg copy.
293 unsigned ResultReg = 0;
294 if (SrcVT.getSimpleVT() == DstVT.getSimpleVT()) {
295 TargetRegisterClass* SrcClass = TLI.getRegClassFor(SrcVT);
296 TargetRegisterClass* DstClass = TLI.getRegClassFor(DstVT);
297 ResultReg = createResultReg(DstClass);
298
299 bool InsertedCopy = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
300 Op0, DstClass, SrcClass);
301 if (!InsertedCopy)
302 ResultReg = 0;
303 }
304
305 // If the reg-reg copy failed, select a BIT_CONVERT opcode.
306 if (!ResultReg)
307 ResultReg = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(),
308 ISD::BIT_CONVERT, Op0);
309
310 if (!ResultReg)
Owen Andersond0533c92008-08-26 23:46:32 +0000311 return false;
312
Dan Gohman3df24e62008-09-03 23:12:08 +0000313 UpdateValueMap(I, ResultReg);
Owen Andersond0533c92008-08-26 23:46:32 +0000314 return true;
315}
316
Dan Gohman3df24e62008-09-03 23:12:08 +0000317bool
318FastISel::SelectInstruction(Instruction *I) {
Dan Gohman40b189e2008-09-05 18:18:20 +0000319 return SelectOperator(I, I->getOpcode());
320}
321
322bool
323FastISel::SelectOperator(User *I, unsigned Opcode) {
324 switch (Opcode) {
Dan Gohman3df24e62008-09-03 23:12:08 +0000325 case Instruction::Add: {
326 ISD::NodeType Opc = I->getType()->isFPOrFPVector() ? ISD::FADD : ISD::ADD;
327 return SelectBinaryOp(I, Opc);
328 }
329 case Instruction::Sub: {
330 ISD::NodeType Opc = I->getType()->isFPOrFPVector() ? ISD::FSUB : ISD::SUB;
331 return SelectBinaryOp(I, Opc);
332 }
333 case Instruction::Mul: {
334 ISD::NodeType Opc = I->getType()->isFPOrFPVector() ? ISD::FMUL : ISD::MUL;
335 return SelectBinaryOp(I, Opc);
336 }
337 case Instruction::SDiv:
338 return SelectBinaryOp(I, ISD::SDIV);
339 case Instruction::UDiv:
340 return SelectBinaryOp(I, ISD::UDIV);
341 case Instruction::FDiv:
342 return SelectBinaryOp(I, ISD::FDIV);
343 case Instruction::SRem:
344 return SelectBinaryOp(I, ISD::SREM);
345 case Instruction::URem:
346 return SelectBinaryOp(I, ISD::UREM);
347 case Instruction::FRem:
348 return SelectBinaryOp(I, ISD::FREM);
349 case Instruction::Shl:
350 return SelectBinaryOp(I, ISD::SHL);
351 case Instruction::LShr:
352 return SelectBinaryOp(I, ISD::SRL);
353 case Instruction::AShr:
354 return SelectBinaryOp(I, ISD::SRA);
355 case Instruction::And:
356 return SelectBinaryOp(I, ISD::AND);
357 case Instruction::Or:
358 return SelectBinaryOp(I, ISD::OR);
359 case Instruction::Xor:
360 return SelectBinaryOp(I, ISD::XOR);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000361
Dan Gohman3df24e62008-09-03 23:12:08 +0000362 case Instruction::GetElementPtr:
363 return SelectGetElementPtr(I);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000364
Dan Gohman3df24e62008-09-03 23:12:08 +0000365 case Instruction::Br: {
366 BranchInst *BI = cast<BranchInst>(I);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000367
Dan Gohman3df24e62008-09-03 23:12:08 +0000368 if (BI->isUnconditional()) {
369 MachineFunction::iterator NextMBB =
370 next(MachineFunction::iterator(MBB));
371 BasicBlock *LLVMSucc = BI->getSuccessor(0);
372 MachineBasicBlock *MSucc = MBBMap[LLVMSucc];
Dan Gohman6f2766d2008-08-19 22:31:46 +0000373
Dan Gohman3df24e62008-09-03 23:12:08 +0000374 if (NextMBB != MF.end() && MSucc == NextMBB) {
375 // The unconditional fall-through case, which needs no instructions.
Owen Anderson9d5b4162008-08-27 00:31:01 +0000376 } else {
Dan Gohman3df24e62008-09-03 23:12:08 +0000377 // The unconditional branch case.
378 TII.InsertBranch(*MBB, MSucc, NULL, SmallVector<MachineOperand, 0>());
Owen Anderson9d5b4162008-08-27 00:31:01 +0000379 }
Dan Gohman3df24e62008-09-03 23:12:08 +0000380 MBB->addSuccessor(MSucc);
381 return true;
Owen Anderson9d5b4162008-08-27 00:31:01 +0000382 }
Dan Gohman3df24e62008-09-03 23:12:08 +0000383
384 // Conditional branches are not handed yet.
385 // Halt "fast" selection and bail.
386 return false;
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000387 }
388
Dan Gohman087c8502008-09-05 01:08:41 +0000389 case Instruction::Unreachable:
390 // Nothing to emit.
391 return true;
392
Dan Gohman3df24e62008-09-03 23:12:08 +0000393 case Instruction::PHI:
394 // PHI nodes are already emitted.
395 return true;
396
397 case Instruction::BitCast:
398 return SelectBitCast(I);
399
400 case Instruction::FPToSI:
401 return SelectCast(I, ISD::FP_TO_SINT);
402 case Instruction::ZExt:
403 return SelectCast(I, ISD::ZERO_EXTEND);
404 case Instruction::SExt:
405 return SelectCast(I, ISD::SIGN_EXTEND);
406 case Instruction::Trunc:
407 return SelectCast(I, ISD::TRUNCATE);
408 case Instruction::SIToFP:
409 return SelectCast(I, ISD::SINT_TO_FP);
410
411 case Instruction::IntToPtr: // Deliberate fall-through.
412 case Instruction::PtrToInt: {
413 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
414 MVT DstVT = TLI.getValueType(I->getType());
415 if (DstVT.bitsGT(SrcVT))
416 return SelectCast(I, ISD::ZERO_EXTEND);
417 if (DstVT.bitsLT(SrcVT))
418 return SelectCast(I, ISD::TRUNCATE);
419 unsigned Reg = getRegForValue(I->getOperand(0));
420 if (Reg == 0) return false;
421 UpdateValueMap(I, Reg);
422 return true;
423 }
424
425 default:
426 // Unhandled instruction. Halt "fast" selection and bail.
427 return false;
428 }
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000429}
430
Dan Gohman3df24e62008-09-03 23:12:08 +0000431FastISel::FastISel(MachineFunction &mf,
432 DenseMap<const Value *, unsigned> &vm,
433 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm)
434 : MBB(0),
435 ValueMap(vm),
436 MBBMap(bm),
437 MF(mf),
438 MRI(MF.getRegInfo()),
439 TM(MF.getTarget()),
Dan Gohman22bb3112008-08-22 00:20:26 +0000440 TD(*TM.getTargetData()),
441 TII(*TM.getInstrInfo()),
442 TLI(*TM.getTargetLowering()) {
Dan Gohmanbb466332008-08-20 21:05:57 +0000443}
444
Dan Gohmane285a742008-08-14 21:51:29 +0000445FastISel::~FastISel() {}
446
Evan Cheng36fd9412008-09-02 21:59:13 +0000447unsigned FastISel::FastEmit_(MVT::SimpleValueType, MVT::SimpleValueType,
448 ISD::NodeType) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000449 return 0;
450}
451
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000452unsigned FastISel::FastEmit_r(MVT::SimpleValueType, MVT::SimpleValueType,
453 ISD::NodeType, unsigned /*Op0*/) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000454 return 0;
455}
456
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000457unsigned FastISel::FastEmit_rr(MVT::SimpleValueType, MVT::SimpleValueType,
458 ISD::NodeType, unsigned /*Op0*/,
459 unsigned /*Op0*/) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000460 return 0;
461}
462
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000463unsigned FastISel::FastEmit_i(MVT::SimpleValueType, MVT::SimpleValueType,
464 ISD::NodeType, uint64_t /*Imm*/) {
Evan Cheng83785c82008-08-20 22:45:34 +0000465 return 0;
466}
467
Dan Gohman10df0fa2008-08-27 01:09:54 +0000468unsigned FastISel::FastEmit_f(MVT::SimpleValueType, MVT::SimpleValueType,
469 ISD::NodeType, ConstantFP * /*FPImm*/) {
470 return 0;
471}
472
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000473unsigned FastISel::FastEmit_ri(MVT::SimpleValueType, MVT::SimpleValueType,
474 ISD::NodeType, unsigned /*Op0*/,
475 uint64_t /*Imm*/) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000476 return 0;
477}
478
Dan Gohman10df0fa2008-08-27 01:09:54 +0000479unsigned FastISel::FastEmit_rf(MVT::SimpleValueType, MVT::SimpleValueType,
480 ISD::NodeType, unsigned /*Op0*/,
481 ConstantFP * /*FPImm*/) {
482 return 0;
483}
484
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000485unsigned FastISel::FastEmit_rri(MVT::SimpleValueType, MVT::SimpleValueType,
486 ISD::NodeType,
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000487 unsigned /*Op0*/, unsigned /*Op1*/,
488 uint64_t /*Imm*/) {
Evan Cheng83785c82008-08-20 22:45:34 +0000489 return 0;
490}
491
492/// FastEmit_ri_ - This method is a wrapper of FastEmit_ri. It first tries
493/// to emit an instruction with an immediate operand using FastEmit_ri.
494/// If that fails, it materializes the immediate into a register and try
495/// FastEmit_rr instead.
496unsigned FastISel::FastEmit_ri_(MVT::SimpleValueType VT, ISD::NodeType Opcode,
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000497 unsigned Op0, uint64_t Imm,
498 MVT::SimpleValueType ImmType) {
Evan Cheng83785c82008-08-20 22:45:34 +0000499 // First check if immediate type is legal. If not, we can't use the ri form.
Dan Gohman151ed612008-08-27 18:15:05 +0000500 unsigned ResultReg = FastEmit_ri(VT, VT, Opcode, Op0, Imm);
Evan Cheng83785c82008-08-20 22:45:34 +0000501 if (ResultReg != 0)
502 return ResultReg;
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000503 unsigned MaterialReg = FastEmit_i(ImmType, ImmType, ISD::Constant, Imm);
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000504 if (MaterialReg == 0)
505 return 0;
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000506 return FastEmit_rr(VT, VT, Opcode, Op0, MaterialReg);
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000507}
508
Dan Gohman10df0fa2008-08-27 01:09:54 +0000509/// FastEmit_rf_ - This method is a wrapper of FastEmit_ri. It first tries
510/// to emit an instruction with a floating-point immediate operand using
511/// FastEmit_rf. If that fails, it materializes the immediate into a register
512/// and try FastEmit_rr instead.
513unsigned FastISel::FastEmit_rf_(MVT::SimpleValueType VT, ISD::NodeType Opcode,
514 unsigned Op0, ConstantFP *FPImm,
515 MVT::SimpleValueType ImmType) {
Dan Gohman10df0fa2008-08-27 01:09:54 +0000516 // First check if immediate type is legal. If not, we can't use the rf form.
Dan Gohman151ed612008-08-27 18:15:05 +0000517 unsigned ResultReg = FastEmit_rf(VT, VT, Opcode, Op0, FPImm);
Dan Gohman10df0fa2008-08-27 01:09:54 +0000518 if (ResultReg != 0)
519 return ResultReg;
520
521 // Materialize the constant in a register.
522 unsigned MaterialReg = FastEmit_f(ImmType, ImmType, ISD::ConstantFP, FPImm);
523 if (MaterialReg == 0) {
Dan Gohman96a99992008-08-27 18:01:42 +0000524 // If the target doesn't have a way to directly enter a floating-point
525 // value into a register, use an alternate approach.
526 // TODO: The current approach only supports floating-point constants
527 // that can be constructed by conversion from integer values. This should
528 // be replaced by code that creates a load from a constant-pool entry,
529 // which will require some target-specific work.
Dan Gohman10df0fa2008-08-27 01:09:54 +0000530 const APFloat &Flt = FPImm->getValueAPF();
531 MVT IntVT = TLI.getPointerTy();
532
533 uint64_t x[2];
534 uint32_t IntBitWidth = IntVT.getSizeInBits();
535 if (Flt.convertToInteger(x, IntBitWidth, /*isSigned=*/true,
536 APFloat::rmTowardZero) != APFloat::opOK)
537 return 0;
538 APInt IntVal(IntBitWidth, 2, x);
539
540 unsigned IntegerReg = FastEmit_i(IntVT.getSimpleVT(), IntVT.getSimpleVT(),
541 ISD::Constant, IntVal.getZExtValue());
542 if (IntegerReg == 0)
543 return 0;
544 MaterialReg = FastEmit_r(IntVT.getSimpleVT(), VT,
545 ISD::SINT_TO_FP, IntegerReg);
546 if (MaterialReg == 0)
547 return 0;
548 }
549 return FastEmit_rr(VT, VT, Opcode, Op0, MaterialReg);
550}
551
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000552unsigned FastISel::createResultReg(const TargetRegisterClass* RC) {
553 return MRI.createVirtualRegister(RC);
Evan Cheng83785c82008-08-20 22:45:34 +0000554}
555
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000556unsigned FastISel::FastEmitInst_(unsigned MachineInstOpcode,
Dan Gohman77ad7962008-08-20 18:09:38 +0000557 const TargetRegisterClass* RC) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000558 unsigned ResultReg = createResultReg(RC);
Dan Gohmanbb466332008-08-20 21:05:57 +0000559 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000560
Dan Gohmanfd903942008-08-20 23:53:10 +0000561 BuildMI(MBB, II, ResultReg);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000562 return ResultReg;
563}
564
565unsigned FastISel::FastEmitInst_r(unsigned MachineInstOpcode,
566 const TargetRegisterClass *RC,
567 unsigned Op0) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000568 unsigned ResultReg = createResultReg(RC);
Dan Gohmanbb466332008-08-20 21:05:57 +0000569 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000570
Dan Gohmanfd903942008-08-20 23:53:10 +0000571 BuildMI(MBB, II, ResultReg).addReg(Op0);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000572 return ResultReg;
573}
574
575unsigned FastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
576 const TargetRegisterClass *RC,
577 unsigned Op0, unsigned Op1) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000578 unsigned ResultReg = createResultReg(RC);
Dan Gohmanbb466332008-08-20 21:05:57 +0000579 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000580
Dan Gohmanfd903942008-08-20 23:53:10 +0000581 BuildMI(MBB, II, ResultReg).addReg(Op0).addReg(Op1);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000582 return ResultReg;
583}
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000584
585unsigned FastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
586 const TargetRegisterClass *RC,
587 unsigned Op0, uint64_t Imm) {
588 unsigned ResultReg = createResultReg(RC);
589 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
590
591 BuildMI(MBB, II, ResultReg).addReg(Op0).addImm(Imm);
592 return ResultReg;
593}
594
Dan Gohman10df0fa2008-08-27 01:09:54 +0000595unsigned FastISel::FastEmitInst_rf(unsigned MachineInstOpcode,
596 const TargetRegisterClass *RC,
597 unsigned Op0, ConstantFP *FPImm) {
598 unsigned ResultReg = createResultReg(RC);
599 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
600
601 BuildMI(MBB, II, ResultReg).addReg(Op0).addFPImm(FPImm);
602 return ResultReg;
603}
604
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000605unsigned FastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
606 const TargetRegisterClass *RC,
607 unsigned Op0, unsigned Op1, uint64_t Imm) {
608 unsigned ResultReg = createResultReg(RC);
609 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
610
611 BuildMI(MBB, II, ResultReg).addReg(Op0).addReg(Op1).addImm(Imm);
612 return ResultReg;
613}
Owen Anderson6d0c25e2008-08-25 20:20:32 +0000614
615unsigned FastISel::FastEmitInst_i(unsigned MachineInstOpcode,
616 const TargetRegisterClass *RC,
617 uint64_t Imm) {
618 unsigned ResultReg = createResultReg(RC);
619 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
620
621 BuildMI(MBB, II, ResultReg).addImm(Imm);
622 return ResultReg;
Evan Chengb41aec52008-08-25 22:20:39 +0000623}
Owen Anderson8970f002008-08-27 22:30:02 +0000624
Owen Anderson40a468f2008-08-28 17:47:37 +0000625unsigned FastISel::FastEmitInst_extractsubreg(unsigned Op0, uint32_t Idx) {
626 const TargetRegisterClass* RC = MRI.getRegClass(Op0);
Owen Anderson8970f002008-08-27 22:30:02 +0000627 const TargetRegisterClass* SRC = *(RC->subregclasses_begin()+Idx-1);
628
629 unsigned ResultReg = createResultReg(SRC);
630 const TargetInstrDesc &II = TII.get(TargetInstrInfo::EXTRACT_SUBREG);
631
Owen Andersonc0bb68b2008-08-28 18:26:01 +0000632 BuildMI(MBB, II, ResultReg).addReg(Op0).addImm(Idx);
Owen Anderson8970f002008-08-27 22:30:02 +0000633 return ResultReg;
634}