blob: 93c194ab548f57eab83f0ada5d3894e8ad52b8a8 [file] [log] [blame]
Dan Gohman3b172f12010-04-22 20:06:42 +00001//===-- FastISel.cpp - Implementation of the FastISel class ---------------===//
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00002//
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//
Dan Gohman5ec9efd2008-09-30 20:48:29 +000012// "Fast" instruction selection is designed to emit very poor code quickly.
13// Also, it is not designed to be able to do much lowering, so most illegal
Chris Lattner44d2a982008-10-13 01:59:13 +000014// types (e.g. i64 on 32-bit targets) and operations are not supported. It is
15// also not intended to be able to do much optimization, except in a few cases
16// where doing optimizations reduces overall compile time. For example, folding
17// constants into immediate fields is often done, because it's cheap and it
18// reduces the number of instructions later phases have to examine.
Dan Gohman5ec9efd2008-09-30 20:48:29 +000019//
20// "Fast" instruction selection is able to fail gracefully and transfer
21// control to the SelectionDAG selector for operations that it doesn't
Chris Lattner44d2a982008-10-13 01:59:13 +000022// support. In many cases, this allows us to avoid duplicating a lot of
Dan Gohman5ec9efd2008-09-30 20:48:29 +000023// the complicated lowering logic that SelectionDAG currently has.
24//
25// The intended use for "fast" instruction selection is "-O0" mode
26// compilation, where the quality of the generated code is irrelevant when
Chris Lattner44d2a982008-10-13 01:59:13 +000027// weighed against the speed at which the code can be generated. Also,
Dan Gohman5ec9efd2008-09-30 20:48:29 +000028// at -O0, the LLVM optimizers are not running, and this makes the
29// compile time of codegen a much higher portion of the overall compile
Chris Lattner44d2a982008-10-13 01:59:13 +000030// time. Despite its limitations, "fast" instruction selection is able to
Dan Gohman5ec9efd2008-09-30 20:48:29 +000031// handle enough code on its own to provide noticeable overall speedups
32// in -O0 compiles.
33//
34// Basic operations are supported in a target-independent way, by reading
35// the same instruction descriptions that the SelectionDAG selector reads,
36// and identifying simple arithmetic operations that can be directly selected
Chris Lattner44d2a982008-10-13 01:59:13 +000037// from simple operators. More complicated operations currently require
Dan Gohman5ec9efd2008-09-30 20:48:29 +000038// target-specific code.
39//
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000040//===----------------------------------------------------------------------===//
41
Dan Gohman33134c42008-09-25 17:05:24 +000042#include "llvm/Function.h"
43#include "llvm/GlobalVariable.h"
Dan Gohman6f2766d2008-08-19 22:31:46 +000044#include "llvm/Instructions.h"
Dan Gohman33134c42008-09-25 17:05:24 +000045#include "llvm/IntrinsicInst.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000046#include "llvm/CodeGen/FastISel.h"
47#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohman33134c42008-09-25 17:05:24 +000048#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000049#include "llvm/CodeGen/MachineRegisterInfo.h"
Devang Patel83489bb2009-01-13 00:35:13 +000050#include "llvm/Analysis/DebugInfo.h"
Dan Gohman7fbcc982010-07-01 03:49:38 +000051#include "llvm/Analysis/Loads.h"
Evan Cheng83785c82008-08-20 22:45:34 +000052#include "llvm/Target/TargetData.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000053#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng83785c82008-08-20 22:45:34 +000054#include "llvm/Target/TargetLowering.h"
Dan Gohmanbb466332008-08-20 21:05:57 +000055#include "llvm/Target/TargetMachine.h"
Dan Gohmanba5be5c2010-04-20 15:00:41 +000056#include "llvm/Support/ErrorHandling.h"
Dan Gohman66336ed2009-11-23 17:42:46 +000057#include "FunctionLoweringInfo.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000058using namespace llvm;
59
Dan Gohmana6cb6412010-05-11 23:54:07 +000060bool FastISel::hasTrivialKill(const Value *V) const {
Dan Gohman7f0d6952010-05-14 22:53:18 +000061 // Don't consider constants or arguments to have trivial kills.
Dan Gohmana6cb6412010-05-11 23:54:07 +000062 const Instruction *I = dyn_cast<Instruction>(V);
Dan Gohman7f0d6952010-05-14 22:53:18 +000063 if (!I)
64 return false;
65
66 // No-op casts are trivially coalesced by fast-isel.
67 if (const CastInst *Cast = dyn_cast<CastInst>(I))
68 if (Cast->isNoopCast(TD.getIntPtrType(Cast->getContext())) &&
69 !hasTrivialKill(Cast->getOperand(0)))
70 return false;
71
72 // Only instructions with a single use in the same basic block are considered
73 // to have trivial kills.
74 return I->hasOneUse() &&
75 !(I->getOpcode() == Instruction::BitCast ||
76 I->getOpcode() == Instruction::PtrToInt ||
77 I->getOpcode() == Instruction::IntToPtr) &&
Dan Gohmane1308d82010-05-13 19:19:32 +000078 cast<Instruction>(I->use_begin())->getParent() == I->getParent();
Dan Gohmana6cb6412010-05-11 23:54:07 +000079}
80
Dan Gohman46510a72010-04-15 01:51:59 +000081unsigned FastISel::getRegForValue(const Value *V) {
Owen Andersone50ed302009-08-10 22:56:29 +000082 EVT RealVT = TLI.getValueType(V->getType(), /*AllowUnknown=*/true);
Dan Gohman4fd55282009-04-07 20:40:11 +000083 // Don't handle non-simple values in FastISel.
84 if (!RealVT.isSimple())
85 return 0;
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +000086
87 // Ignore illegal types. We must do this before looking up the value
88 // in ValueMap because Arguments are given virtual registers regardless
89 // of whether FastISel can handle them.
Owen Anderson825b72b2009-08-11 20:47:22 +000090 MVT VT = RealVT.getSimpleVT();
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +000091 if (!TLI.isTypeLegal(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +000092 // Promote MVT::i1 to a legal type though, because it's common and easy.
93 if (VT == MVT::i1)
Owen Anderson23b9b192009-08-12 00:36:31 +000094 VT = TLI.getTypeToTransformTo(V->getContext(), VT).getSimpleVT();
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +000095 else
96 return 0;
97 }
98
Dan Gohman104e4ce2008-09-03 23:32:19 +000099 // Look up the value to see if we already have a register for it. We
100 // cache values defined by Instructions across blocks, and other values
101 // only locally. This is because Instructions already have the SSA
Dan Gohman5c9cf192010-01-12 04:30:26 +0000102 // def-dominates-use requirement enforced.
Dan Gohmaneddc1142010-05-25 21:59:42 +0000103 DenseMap<const Value *, unsigned>::iterator I = ValueMap.find(V);
104 if (I != ValueMap.end())
105 return I->second;
Dan Gohman104e4ce2008-09-03 23:32:19 +0000106 unsigned Reg = LocalValueMap[V];
107 if (Reg != 0)
108 return Reg;
Dan Gohmanad368ac2008-08-27 18:10:19 +0000109
Dan Gohman97c94b82010-05-06 00:02:14 +0000110 // In bottom-up mode, just create the virtual register which will be used
111 // to hold the value. It will be materialized later.
112 if (IsBottomUp) {
113 Reg = createResultReg(TLI.getRegClassFor(VT));
114 if (isa<Instruction>(V))
115 ValueMap[V] = Reg;
116 else
117 LocalValueMap[V] = Reg;
118 return Reg;
119 }
120
Dan Gohman1fdc6142010-05-03 23:36:34 +0000121 return materializeRegForValue(V, VT);
122}
123
124/// materializeRegForValue - Helper for getRegForVale. This function is
125/// called when the value isn't already available in a register and must
126/// be materialized with new instructions.
127unsigned FastISel::materializeRegForValue(const Value *V, MVT VT) {
128 unsigned Reg = 0;
129
Dan Gohman46510a72010-04-15 01:51:59 +0000130 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000131 if (CI->getValue().getActiveBits() <= 64)
132 Reg = FastEmit_i(VT, VT, ISD::Constant, CI->getZExtValue());
Dan Gohman0586d912008-09-10 20:11:02 +0000133 } else if (isa<AllocaInst>(V)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000134 Reg = TargetMaterializeAlloca(cast<AllocaInst>(V));
Dan Gohman205d9252008-08-28 21:19:07 +0000135 } else if (isa<ConstantPointerNull>(V)) {
Dan Gohman1e9e8c32008-10-07 22:03:27 +0000136 // Translate this as an integer zero so that it can be
137 // local-CSE'd with actual integer zeros.
Owen Anderson1d0be152009-08-13 21:58:54 +0000138 Reg =
139 getRegForValue(Constant::getNullValue(TD.getIntPtrType(V->getContext())));
Dan Gohman46510a72010-04-15 01:51:59 +0000140 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Dan Gohman4183e312010-04-13 17:07:06 +0000141 // Try to emit the constant directly.
Dan Gohman104e4ce2008-09-03 23:32:19 +0000142 Reg = FastEmit_f(VT, VT, ISD::ConstantFP, CF);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000143
144 if (!Reg) {
Dan Gohman4183e312010-04-13 17:07:06 +0000145 // Try to emit the constant by using an integer constant with a cast.
Dan Gohmanad368ac2008-08-27 18:10:19 +0000146 const APFloat &Flt = CF->getValueAPF();
Owen Andersone50ed302009-08-10 22:56:29 +0000147 EVT IntVT = TLI.getPointerTy();
Dan Gohmanad368ac2008-08-27 18:10:19 +0000148
149 uint64_t x[2];
150 uint32_t IntBitWidth = IntVT.getSizeInBits();
Dale Johannesen23a98552008-10-09 23:00:39 +0000151 bool isExact;
152 (void) Flt.convertToInteger(x, IntBitWidth, /*isSigned=*/true,
153 APFloat::rmTowardZero, &isExact);
154 if (isExact) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000155 APInt IntVal(IntBitWidth, 2, x);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000156
Owen Andersone922c022009-07-22 00:24:57 +0000157 unsigned IntegerReg =
Owen Andersoneed707b2009-07-24 23:12:02 +0000158 getRegForValue(ConstantInt::get(V->getContext(), IntVal));
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000159 if (IntegerReg != 0)
Dan Gohmana6cb6412010-05-11 23:54:07 +0000160 Reg = FastEmit_r(IntVT.getSimpleVT(), VT, ISD::SINT_TO_FP,
161 IntegerReg, /*Kill=*/false);
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000162 }
Dan Gohmanad368ac2008-08-27 18:10:19 +0000163 }
Dan Gohman46510a72010-04-15 01:51:59 +0000164 } else if (const Operator *Op = dyn_cast<Operator>(V)) {
Dan Gohman20d4be12010-07-01 02:58:57 +0000165 if (!SelectOperator(Op, Op->getOpcode()))
166 if (!isa<Instruction>(Op) ||
167 !TargetSelectInstruction(cast<Instruction>(Op)))
168 return 0;
Dan Gohman37db6cd2010-06-21 14:17:46 +0000169 Reg = lookUpRegForValue(Op);
Dan Gohman205d9252008-08-28 21:19:07 +0000170 } else if (isa<UndefValue>(V)) {
Dan Gohman104e4ce2008-09-03 23:32:19 +0000171 Reg = createResultReg(TLI.getRegClassFor(VT));
Chris Lattner518bb532010-02-09 19:54:29 +0000172 BuildMI(MBB, DL, TII.get(TargetOpcode::IMPLICIT_DEF), Reg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000173 }
Owen Andersond5d81a42008-09-03 17:51:57 +0000174
Dan Gohmandceffe62008-09-25 01:28:51 +0000175 // If target-independent code couldn't handle the value, give target-specific
176 // code a try.
Owen Anderson6e607452008-09-05 23:36:01 +0000177 if (!Reg && isa<Constant>(V))
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000178 Reg = TargetMaterializeConstant(cast<Constant>(V));
Owen Anderson6e607452008-09-05 23:36:01 +0000179
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000180 // Don't cache constant materializations in the general ValueMap.
181 // To do so would require tracking what uses they dominate.
Dan Gohmandceffe62008-09-25 01:28:51 +0000182 if (Reg != 0)
183 LocalValueMap[V] = Reg;
Dan Gohman104e4ce2008-09-03 23:32:19 +0000184 return Reg;
Dan Gohmanad368ac2008-08-27 18:10:19 +0000185}
186
Dan Gohman46510a72010-04-15 01:51:59 +0000187unsigned FastISel::lookUpRegForValue(const Value *V) {
Evan Cheng59fbc802008-09-09 01:26:59 +0000188 // Look up the value to see if we already have a register for it. We
189 // cache values defined by Instructions across blocks, and other values
190 // only locally. This is because Instructions already have the SSA
Dan Gohman1fdc6142010-05-03 23:36:34 +0000191 // def-dominates-use requirement enforced.
Dan Gohman3193a682010-06-21 14:21:47 +0000192 DenseMap<const Value *, unsigned>::iterator I = ValueMap.find(V);
193 if (I != ValueMap.end())
194 return I->second;
Evan Cheng59fbc802008-09-09 01:26:59 +0000195 return LocalValueMap[V];
196}
197
Owen Andersoncc54e762008-08-30 00:38:46 +0000198/// UpdateValueMap - Update the value map to include the new mapping for this
199/// instruction, or insert an extra copy to get the result in a previous
200/// determined register.
201/// NOTE: This is only necessary because we might select a block that uses
202/// a value before we select the block that defines the value. It might be
203/// possible to fix this by selecting blocks in reverse postorder.
Dan Gohman46510a72010-04-15 01:51:59 +0000204unsigned FastISel::UpdateValueMap(const Value *I, unsigned Reg) {
Dan Gohman40b189e2008-09-05 18:18:20 +0000205 if (!isa<Instruction>(I)) {
206 LocalValueMap[I] = Reg;
Chris Lattnerc5040ab2009-04-12 07:45:01 +0000207 return Reg;
Dan Gohman40b189e2008-09-05 18:18:20 +0000208 }
Chris Lattnerc5040ab2009-04-12 07:45:01 +0000209
210 unsigned &AssignedReg = ValueMap[I];
211 if (AssignedReg == 0)
212 AssignedReg = Reg;
Chris Lattner36e39462009-04-12 07:46:30 +0000213 else if (Reg != AssignedReg) {
Chris Lattnerc5040ab2009-04-12 07:45:01 +0000214 const TargetRegisterClass *RegClass = MRI.getRegClass(Reg);
215 TII.copyRegToReg(*MBB, MBB->end(), AssignedReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +0000216 Reg, RegClass, RegClass, DL);
Chris Lattnerc5040ab2009-04-12 07:45:01 +0000217 }
218 return AssignedReg;
Owen Andersoncc54e762008-08-30 00:38:46 +0000219}
220
Dan Gohmana6cb6412010-05-11 23:54:07 +0000221std::pair<unsigned, bool> FastISel::getRegForGEPIndex(const Value *Idx) {
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000222 unsigned IdxN = getRegForValue(Idx);
223 if (IdxN == 0)
224 // Unhandled operand. Halt "fast" selection and bail.
Dan Gohmana6cb6412010-05-11 23:54:07 +0000225 return std::pair<unsigned, bool>(0, false);
226
227 bool IdxNIsKill = hasTrivialKill(Idx);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000228
229 // If the index is smaller or larger than intptr_t, truncate or extend it.
Owen Anderson766b5ef2009-08-11 21:59:30 +0000230 MVT PtrVT = TLI.getPointerTy();
Owen Andersone50ed302009-08-10 22:56:29 +0000231 EVT IdxVT = EVT::getEVT(Idx->getType(), /*HandleUnknown=*/false);
Dan Gohmana6cb6412010-05-11 23:54:07 +0000232 if (IdxVT.bitsLT(PtrVT)) {
233 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::SIGN_EXTEND,
234 IdxN, IdxNIsKill);
235 IdxNIsKill = true;
236 }
237 else if (IdxVT.bitsGT(PtrVT)) {
238 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::TRUNCATE,
239 IdxN, IdxNIsKill);
240 IdxNIsKill = true;
241 }
242 return std::pair<unsigned, bool>(IdxN, IdxNIsKill);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000243}
244
Dan Gohmanbdedd442008-08-20 00:11:48 +0000245/// SelectBinaryOp - Select and emit code for a binary operator instruction,
246/// which has an opcode which directly corresponds to the given ISD opcode.
247///
Dan Gohman46510a72010-04-15 01:51:59 +0000248bool FastISel::SelectBinaryOp(const User *I, unsigned ISDOpcode) {
Owen Andersone50ed302009-08-10 22:56:29 +0000249 EVT VT = EVT::getEVT(I->getType(), /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +0000250 if (VT == MVT::Other || !VT.isSimple())
Dan Gohmanbdedd442008-08-20 00:11:48 +0000251 // Unhandled type. Halt "fast" selection and bail.
252 return false;
Dan Gohman638c6832008-09-05 18:44:22 +0000253
Dan Gohmanb71fea22008-08-26 20:52:40 +0000254 // We only handle legal types. For example, on x86-32 the instruction
255 // selector contains all of the 64-bit instructions from x86-64,
256 // under the assumption that i64 won't be used if the target doesn't
257 // support it.
Dan Gohman638c6832008-09-05 18:44:22 +0000258 if (!TLI.isTypeLegal(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000259 // MVT::i1 is special. Allow AND, OR, or XOR because they
Dan Gohman638c6832008-09-05 18:44:22 +0000260 // don't require additional zeroing, which makes them easy.
Owen Anderson825b72b2009-08-11 20:47:22 +0000261 if (VT == MVT::i1 &&
Dan Gohman5dd9c2e2008-09-25 17:22:52 +0000262 (ISDOpcode == ISD::AND || ISDOpcode == ISD::OR ||
263 ISDOpcode == ISD::XOR))
Owen Anderson23b9b192009-08-12 00:36:31 +0000264 VT = TLI.getTypeToTransformTo(I->getContext(), VT);
Dan Gohman638c6832008-09-05 18:44:22 +0000265 else
266 return false;
267 }
Dan Gohmanbdedd442008-08-20 00:11:48 +0000268
Dan Gohman3df24e62008-09-03 23:12:08 +0000269 unsigned Op0 = getRegForValue(I->getOperand(0));
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000270 if (Op0 == 0)
271 // Unhandled operand. Halt "fast" selection and bail.
272 return false;
273
Dan Gohmana6cb6412010-05-11 23:54:07 +0000274 bool Op0IsKill = hasTrivialKill(I->getOperand(0));
275
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000276 // Check if the second operand is a constant and handle it appropriately.
277 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
Dan Gohmanad368ac2008-08-27 18:10:19 +0000278 unsigned ResultReg = FastEmit_ri(VT.getSimpleVT(), VT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000279 ISDOpcode, Op0, Op0IsKill,
280 CI->getZExtValue());
Dan Gohmanad368ac2008-08-27 18:10:19 +0000281 if (ResultReg != 0) {
282 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000283 UpdateValueMap(I, ResultReg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000284 return true;
285 }
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000286 }
287
Dan Gohman10df0fa2008-08-27 01:09:54 +0000288 // Check if the second operand is a constant float.
289 if (ConstantFP *CF = dyn_cast<ConstantFP>(I->getOperand(1))) {
Dan Gohmanad368ac2008-08-27 18:10:19 +0000290 unsigned ResultReg = FastEmit_rf(VT.getSimpleVT(), VT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000291 ISDOpcode, Op0, Op0IsKill, CF);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000292 if (ResultReg != 0) {
293 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000294 UpdateValueMap(I, ResultReg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000295 return true;
296 }
Dan Gohman10df0fa2008-08-27 01:09:54 +0000297 }
298
Dan Gohman3df24e62008-09-03 23:12:08 +0000299 unsigned Op1 = getRegForValue(I->getOperand(1));
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000300 if (Op1 == 0)
301 // Unhandled operand. Halt "fast" selection and bail.
302 return false;
303
Dan Gohmana6cb6412010-05-11 23:54:07 +0000304 bool Op1IsKill = hasTrivialKill(I->getOperand(1));
305
Dan Gohmanad368ac2008-08-27 18:10:19 +0000306 // Now we have both operands in registers. Emit the instruction.
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000307 unsigned ResultReg = FastEmit_rr(VT.getSimpleVT(), VT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000308 ISDOpcode,
309 Op0, Op0IsKill,
310 Op1, Op1IsKill);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000311 if (ResultReg == 0)
312 // Target-specific code wasn't able to find a machine opcode for
313 // the given ISD opcode and type. Halt "fast" selection and bail.
314 return false;
315
Dan Gohman8014e862008-08-20 00:23:20 +0000316 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000317 UpdateValueMap(I, ResultReg);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000318 return true;
319}
320
Dan Gohman46510a72010-04-15 01:51:59 +0000321bool FastISel::SelectGetElementPtr(const User *I) {
Dan Gohman3df24e62008-09-03 23:12:08 +0000322 unsigned N = getRegForValue(I->getOperand(0));
Evan Cheng83785c82008-08-20 22:45:34 +0000323 if (N == 0)
324 // Unhandled operand. Halt "fast" selection and bail.
325 return false;
326
Dan Gohmana6cb6412010-05-11 23:54:07 +0000327 bool NIsKill = hasTrivialKill(I->getOperand(0));
328
Evan Cheng83785c82008-08-20 22:45:34 +0000329 const Type *Ty = I->getOperand(0)->getType();
Owen Anderson825b72b2009-08-11 20:47:22 +0000330 MVT VT = TLI.getPointerTy();
Dan Gohman46510a72010-04-15 01:51:59 +0000331 for (GetElementPtrInst::const_op_iterator OI = I->op_begin()+1,
332 E = I->op_end(); OI != E; ++OI) {
333 const Value *Idx = *OI;
Evan Cheng83785c82008-08-20 22:45:34 +0000334 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
335 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
336 if (Field) {
337 // N = N + Offset
338 uint64_t Offs = TD.getStructLayout(StTy)->getElementOffset(Field);
339 // FIXME: This can be optimized by combining the add with a
340 // subsequent one.
Dan Gohmana6cb6412010-05-11 23:54:07 +0000341 N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, Offs, VT);
Evan Cheng83785c82008-08-20 22:45:34 +0000342 if (N == 0)
343 // Unhandled operand. Halt "fast" selection and bail.
344 return false;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000345 NIsKill = true;
Evan Cheng83785c82008-08-20 22:45:34 +0000346 }
347 Ty = StTy->getElementType(Field);
348 } else {
349 Ty = cast<SequentialType>(Ty)->getElementType();
350
351 // If this is a constant subscript, handle it quickly.
Dan Gohman46510a72010-04-15 01:51:59 +0000352 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Dan Gohmane368b462010-06-18 14:22:04 +0000353 if (CI->isZero()) continue;
Evan Cheng83785c82008-08-20 22:45:34 +0000354 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +0000355 TD.getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Dan Gohmana6cb6412010-05-11 23:54:07 +0000356 N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, Offs, VT);
Evan Cheng83785c82008-08-20 22:45:34 +0000357 if (N == 0)
358 // Unhandled operand. Halt "fast" selection and bail.
359 return false;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000360 NIsKill = true;
Evan Cheng83785c82008-08-20 22:45:34 +0000361 continue;
362 }
363
364 // N = N + Idx * ElementSize;
Duncan Sands777d2302009-05-09 07:06:46 +0000365 uint64_t ElementSize = TD.getTypeAllocSize(Ty);
Dan Gohmana6cb6412010-05-11 23:54:07 +0000366 std::pair<unsigned, bool> Pair = getRegForGEPIndex(Idx);
367 unsigned IdxN = Pair.first;
368 bool IdxNIsKill = Pair.second;
Evan Cheng83785c82008-08-20 22:45:34 +0000369 if (IdxN == 0)
370 // Unhandled operand. Halt "fast" selection and bail.
371 return false;
372
Dan Gohman80bc6e22008-08-26 20:57:08 +0000373 if (ElementSize != 1) {
Dan Gohmana6cb6412010-05-11 23:54:07 +0000374 IdxN = FastEmit_ri_(VT, ISD::MUL, IdxN, IdxNIsKill, ElementSize, VT);
Dan Gohman80bc6e22008-08-26 20:57:08 +0000375 if (IdxN == 0)
376 // Unhandled operand. Halt "fast" selection and bail.
377 return false;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000378 IdxNIsKill = true;
Dan Gohman80bc6e22008-08-26 20:57:08 +0000379 }
Dan Gohmana6cb6412010-05-11 23:54:07 +0000380 N = FastEmit_rr(VT, VT, ISD::ADD, N, NIsKill, IdxN, IdxNIsKill);
Evan Cheng83785c82008-08-20 22:45:34 +0000381 if (N == 0)
382 // Unhandled operand. Halt "fast" selection and bail.
383 return false;
384 }
385 }
386
387 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000388 UpdateValueMap(I, N);
Evan Cheng83785c82008-08-20 22:45:34 +0000389 return true;
Dan Gohmanbdedd442008-08-20 00:11:48 +0000390}
391
Dan Gohman46510a72010-04-15 01:51:59 +0000392bool FastISel::SelectCall(const User *I) {
393 const Function *F = cast<CallInst>(I)->getCalledFunction();
Dan Gohman33134c42008-09-25 17:05:24 +0000394 if (!F) return false;
395
Dan Gohman4183e312010-04-13 17:07:06 +0000396 // Handle selected intrinsic function calls.
Dan Gohman33134c42008-09-25 17:05:24 +0000397 unsigned IID = F->getIntrinsicID();
398 switch (IID) {
399 default: break;
Bill Wendling92c1e122009-02-13 02:16:35 +0000400 case Intrinsic::dbg_declare: {
Dan Gohman46510a72010-04-15 01:51:59 +0000401 const DbgDeclareInst *DI = cast<DbgDeclareInst>(I);
Devang Patel02f0dbd2010-05-07 22:04:20 +0000402 if (!DIVariable(DI->getVariable()).Verify() ||
Chris Lattnered3a8062010-04-05 06:05:26 +0000403 !MF.getMMI().hasDebugInfo())
Devang Patel7e1e31f2009-07-02 22:43:26 +0000404 return true;
405
Dan Gohman46510a72010-04-15 01:51:59 +0000406 const Value *Address = DI->getAddress();
Dale Johannesendc918562010-02-06 02:26:02 +0000407 if (!Address)
408 return true;
Dale Johannesen343b42e2010-04-07 01:15:14 +0000409 if (isa<UndefValue>(Address))
410 return true;
Dan Gohman46510a72010-04-15 01:51:59 +0000411 const AllocaInst *AI = dyn_cast<AllocaInst>(Address);
Devang Patel7e1e31f2009-07-02 22:43:26 +0000412 // Don't handle byval struct arguments or VLAs, for example.
Dale Johannesen7dc78402010-04-25 21:03:54 +0000413 // Note that if we have a byval struct argument, fast ISel is turned off;
414 // those are handled in SelectionDAGBuilder.
Devang Patel54fc4d62010-04-28 19:27:33 +0000415 if (AI) {
416 DenseMap<const AllocaInst*, int>::iterator SI =
417 StaticAllocaMap.find(AI);
418 if (SI == StaticAllocaMap.end()) break; // VLAs.
419 int FI = SI->second;
420 if (!DI->getDebugLoc().isUnknown())
421 MF.getMMI().setVariableDbgInfo(DI->getVariable(), FI, DI->getDebugLoc());
422 } else
423 // Building the map above is target independent. Generating DBG_VALUE
424 // inline is target dependent; do this now.
425 (void)TargetSelectInstruction(cast<Instruction>(I));
Dan Gohman33134c42008-09-25 17:05:24 +0000426 return true;
Bill Wendling92c1e122009-02-13 02:16:35 +0000427 }
Dale Johannesen45df7612010-02-26 20:01:55 +0000428 case Intrinsic::dbg_value: {
Dale Johannesen343b42e2010-04-07 01:15:14 +0000429 // This form of DBG_VALUE is target-independent.
Dan Gohman46510a72010-04-15 01:51:59 +0000430 const DbgValueInst *DI = cast<DbgValueInst>(I);
Dale Johannesen45df7612010-02-26 20:01:55 +0000431 const TargetInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE);
Dan Gohman46510a72010-04-15 01:51:59 +0000432 const Value *V = DI->getValue();
Dale Johannesen45df7612010-02-26 20:01:55 +0000433 if (!V) {
434 // Currently the optimizer can produce this; insert an undef to
435 // help debugging. Probably the optimizer should not do this.
436 BuildMI(MBB, DL, II).addReg(0U).addImm(DI->getOffset()).
437 addMetadata(DI->getVariable());
Dan Gohman46510a72010-04-15 01:51:59 +0000438 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Dale Johannesen45df7612010-02-26 20:01:55 +0000439 BuildMI(MBB, DL, II).addImm(CI->getZExtValue()).addImm(DI->getOffset()).
440 addMetadata(DI->getVariable());
Dan Gohman46510a72010-04-15 01:51:59 +0000441 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Dale Johannesen45df7612010-02-26 20:01:55 +0000442 BuildMI(MBB, DL, II).addFPImm(CF).addImm(DI->getOffset()).
443 addMetadata(DI->getVariable());
444 } else if (unsigned Reg = lookUpRegForValue(V)) {
445 BuildMI(MBB, DL, II).addReg(Reg, RegState::Debug).addImm(DI->getOffset()).
446 addMetadata(DI->getVariable());
447 } else {
448 // We can't yet handle anything else here because it would require
449 // generating code, thus altering codegen because of debug info.
450 // Insert an undef so we can see what we dropped.
451 BuildMI(MBB, DL, II).addReg(0U).addImm(DI->getOffset()).
452 addMetadata(DI->getVariable());
453 }
454 return true;
455 }
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000456 case Intrinsic::eh_exception: {
Owen Andersone50ed302009-08-10 22:56:29 +0000457 EVT VT = TLI.getValueType(I->getType());
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000458 switch (TLI.getOperationAction(ISD::EXCEPTIONADDR, VT)) {
459 default: break;
460 case TargetLowering::Expand: {
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000461 assert(MBB->isLandingPad() && "Call to eh.exception not in landing pad!");
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000462 unsigned Reg = TLI.getExceptionAddressRegister();
463 const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
464 unsigned ResultReg = createResultReg(RC);
465 bool InsertedCopy = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +0000466 Reg, RC, RC, DL);
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000467 assert(InsertedCopy && "Can't copy address registers!");
Evan Cheng24ac4082008-11-24 07:09:49 +0000468 InsertedCopy = InsertedCopy;
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000469 UpdateValueMap(I, ResultReg);
470 return true;
471 }
472 }
473 break;
474 }
Duncan Sandsb01bbdc2009-10-14 16:11:37 +0000475 case Intrinsic::eh_selector: {
Owen Andersone50ed302009-08-10 22:56:29 +0000476 EVT VT = TLI.getValueType(I->getType());
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000477 switch (TLI.getOperationAction(ISD::EHSELECTION, VT)) {
478 default: break;
479 case TargetLowering::Expand: {
Chris Lattnered3a8062010-04-05 06:05:26 +0000480 if (MBB->isLandingPad())
481 AddCatchInfo(*cast<CallInst>(I), &MF.getMMI(), MBB);
482 else {
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000483#ifndef NDEBUG
Chris Lattnered3a8062010-04-05 06:05:26 +0000484 CatchInfoLost.insert(cast<CallInst>(I));
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000485#endif
Chris Lattnered3a8062010-04-05 06:05:26 +0000486 // FIXME: Mark exception selector register as live in. Hack for PR1508.
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000487 unsigned Reg = TLI.getExceptionSelectorRegister();
Chris Lattnered3a8062010-04-05 06:05:26 +0000488 if (Reg) MBB->addLiveIn(Reg);
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000489 }
Chris Lattnered3a8062010-04-05 06:05:26 +0000490
491 unsigned Reg = TLI.getExceptionSelectorRegister();
492 EVT SrcVT = TLI.getPointerTy();
493 const TargetRegisterClass *RC = TLI.getRegClassFor(SrcVT);
494 unsigned ResultReg = createResultReg(RC);
495 bool InsertedCopy = TII.copyRegToReg(*MBB, MBB->end(), ResultReg, Reg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +0000496 RC, RC, DL);
Chris Lattnered3a8062010-04-05 06:05:26 +0000497 assert(InsertedCopy && "Can't copy address registers!");
498 InsertedCopy = InsertedCopy;
499
Dan Gohmana6cb6412010-05-11 23:54:07 +0000500 bool ResultRegIsKill = hasTrivialKill(I);
501
Chris Lattnered3a8062010-04-05 06:05:26 +0000502 // Cast the register to the type of the selector.
503 if (SrcVT.bitsGT(MVT::i32))
504 ResultReg = FastEmit_r(SrcVT.getSimpleVT(), MVT::i32, ISD::TRUNCATE,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000505 ResultReg, ResultRegIsKill);
Chris Lattnered3a8062010-04-05 06:05:26 +0000506 else if (SrcVT.bitsLT(MVT::i32))
507 ResultReg = FastEmit_r(SrcVT.getSimpleVT(), MVT::i32,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000508 ISD::SIGN_EXTEND, ResultReg, ResultRegIsKill);
Chris Lattnered3a8062010-04-05 06:05:26 +0000509 if (ResultReg == 0)
510 // Unhandled operand. Halt "fast" selection and bail.
511 return false;
512
513 UpdateValueMap(I, ResultReg);
514
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000515 return true;
516 }
517 }
518 break;
519 }
Dan Gohman33134c42008-09-25 17:05:24 +0000520 }
Dan Gohman4183e312010-04-13 17:07:06 +0000521
522 // An arbitrary call. Bail.
Dan Gohman33134c42008-09-25 17:05:24 +0000523 return false;
524}
525
Dan Gohman46510a72010-04-15 01:51:59 +0000526bool FastISel::SelectCast(const User *I, unsigned Opcode) {
Owen Andersone50ed302009-08-10 22:56:29 +0000527 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
528 EVT DstVT = TLI.getValueType(I->getType());
Owen Andersond0533c92008-08-26 23:46:32 +0000529
Owen Anderson825b72b2009-08-11 20:47:22 +0000530 if (SrcVT == MVT::Other || !SrcVT.isSimple() ||
531 DstVT == MVT::Other || !DstVT.isSimple())
Owen Andersond0533c92008-08-26 23:46:32 +0000532 // Unhandled type. Halt "fast" selection and bail.
533 return false;
534
Dan Gohman474d3b32009-03-13 23:53:06 +0000535 // Check if the destination type is legal. Or as a special case,
536 // it may be i1 if we're doing a truncate because that's
537 // easy and somewhat common.
538 if (!TLI.isTypeLegal(DstVT))
Owen Anderson825b72b2009-08-11 20:47:22 +0000539 if (DstVT != MVT::i1 || Opcode != ISD::TRUNCATE)
Dan Gohman91b6f972008-10-03 01:28:47 +0000540 // Unhandled type. Halt "fast" selection and bail.
541 return false;
Dan Gohman474d3b32009-03-13 23:53:06 +0000542
543 // Check if the source operand is legal. Or as a special case,
544 // it may be i1 if we're doing zero-extension because that's
545 // easy and somewhat common.
546 if (!TLI.isTypeLegal(SrcVT))
Owen Anderson825b72b2009-08-11 20:47:22 +0000547 if (SrcVT != MVT::i1 || Opcode != ISD::ZERO_EXTEND)
Dan Gohman474d3b32009-03-13 23:53:06 +0000548 // Unhandled type. Halt "fast" selection and bail.
549 return false;
550
Dan Gohman3df24e62008-09-03 23:12:08 +0000551 unsigned InputReg = getRegForValue(I->getOperand(0));
Owen Andersond0533c92008-08-26 23:46:32 +0000552 if (!InputReg)
553 // Unhandled operand. Halt "fast" selection and bail.
554 return false;
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000555
Dan Gohmana6cb6412010-05-11 23:54:07 +0000556 bool InputRegIsKill = hasTrivialKill(I->getOperand(0));
557
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000558 // If the operand is i1, arrange for the high bits in the register to be zero.
Owen Anderson825b72b2009-08-11 20:47:22 +0000559 if (SrcVT == MVT::i1) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000560 SrcVT = TLI.getTypeToTransformTo(I->getContext(), SrcVT);
Dan Gohmana6cb6412010-05-11 23:54:07 +0000561 InputReg = FastEmitZExtFromI1(SrcVT.getSimpleVT(), InputReg, InputRegIsKill);
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000562 if (!InputReg)
563 return false;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000564 InputRegIsKill = true;
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000565 }
Dan Gohman474d3b32009-03-13 23:53:06 +0000566 // If the result is i1, truncate to the target's type for i1 first.
Owen Anderson825b72b2009-08-11 20:47:22 +0000567 if (DstVT == MVT::i1)
Owen Anderson23b9b192009-08-12 00:36:31 +0000568 DstVT = TLI.getTypeToTransformTo(I->getContext(), DstVT);
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000569
Owen Andersond0533c92008-08-26 23:46:32 +0000570 unsigned ResultReg = FastEmit_r(SrcVT.getSimpleVT(),
571 DstVT.getSimpleVT(),
572 Opcode,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000573 InputReg, InputRegIsKill);
Owen Andersond0533c92008-08-26 23:46:32 +0000574 if (!ResultReg)
575 return false;
576
Dan Gohman3df24e62008-09-03 23:12:08 +0000577 UpdateValueMap(I, ResultReg);
Owen Andersond0533c92008-08-26 23:46:32 +0000578 return true;
579}
580
Dan Gohman46510a72010-04-15 01:51:59 +0000581bool FastISel::SelectBitCast(const User *I) {
Dan Gohmanad368ac2008-08-27 18:10:19 +0000582 // If the bitcast doesn't change the type, just use the operand value.
583 if (I->getType() == I->getOperand(0)->getType()) {
Dan Gohman3df24e62008-09-03 23:12:08 +0000584 unsigned Reg = getRegForValue(I->getOperand(0));
Dan Gohmana318dab2008-08-27 20:41:38 +0000585 if (Reg == 0)
586 return false;
Dan Gohman3df24e62008-09-03 23:12:08 +0000587 UpdateValueMap(I, Reg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000588 return true;
589 }
590
591 // Bitcasts of other values become reg-reg copies or BIT_CONVERT operators.
Owen Andersone50ed302009-08-10 22:56:29 +0000592 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
593 EVT DstVT = TLI.getValueType(I->getType());
Owen Andersond0533c92008-08-26 23:46:32 +0000594
Owen Anderson825b72b2009-08-11 20:47:22 +0000595 if (SrcVT == MVT::Other || !SrcVT.isSimple() ||
596 DstVT == MVT::Other || !DstVT.isSimple() ||
Owen Andersond0533c92008-08-26 23:46:32 +0000597 !TLI.isTypeLegal(SrcVT) || !TLI.isTypeLegal(DstVT))
598 // Unhandled type. Halt "fast" selection and bail.
599 return false;
600
Dan Gohman3df24e62008-09-03 23:12:08 +0000601 unsigned Op0 = getRegForValue(I->getOperand(0));
Dan Gohmanad368ac2008-08-27 18:10:19 +0000602 if (Op0 == 0)
603 // Unhandled operand. Halt "fast" selection and bail.
Owen Andersond0533c92008-08-26 23:46:32 +0000604 return false;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000605
606 bool Op0IsKill = hasTrivialKill(I->getOperand(0));
Owen Andersond0533c92008-08-26 23:46:32 +0000607
Dan Gohmanad368ac2008-08-27 18:10:19 +0000608 // First, try to perform the bitcast by inserting a reg-reg copy.
609 unsigned ResultReg = 0;
610 if (SrcVT.getSimpleVT() == DstVT.getSimpleVT()) {
611 TargetRegisterClass* SrcClass = TLI.getRegClassFor(SrcVT);
612 TargetRegisterClass* DstClass = TLI.getRegClassFor(DstVT);
613 ResultReg = createResultReg(DstClass);
614
615 bool InsertedCopy = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +0000616 Op0, DstClass, SrcClass, DL);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000617 if (!InsertedCopy)
618 ResultReg = 0;
619 }
620
621 // If the reg-reg copy failed, select a BIT_CONVERT opcode.
622 if (!ResultReg)
623 ResultReg = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000624 ISD::BIT_CONVERT, Op0, Op0IsKill);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000625
626 if (!ResultReg)
Owen Andersond0533c92008-08-26 23:46:32 +0000627 return false;
628
Dan Gohman3df24e62008-09-03 23:12:08 +0000629 UpdateValueMap(I, ResultReg);
Owen Andersond0533c92008-08-26 23:46:32 +0000630 return true;
631}
632
Dan Gohman3df24e62008-09-03 23:12:08 +0000633bool
Dan Gohman46510a72010-04-15 01:51:59 +0000634FastISel::SelectInstruction(const Instruction *I) {
Dan Gohmane8c92dd2010-04-23 15:29:50 +0000635 // Just before the terminator instruction, insert instructions to
636 // feed PHI nodes in successor blocks.
637 if (isa<TerminatorInst>(I))
638 if (!HandlePHINodesInSuccessorBlocks(I->getParent()))
639 return false;
640
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000641 DL = I->getDebugLoc();
642
Dan Gohman6e3ff372009-12-05 01:27:58 +0000643 // First, try doing target-independent selection.
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000644 if (SelectOperator(I, I->getOpcode())) {
645 DL = DebugLoc();
Dan Gohman6e3ff372009-12-05 01:27:58 +0000646 return true;
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000647 }
Dan Gohman6e3ff372009-12-05 01:27:58 +0000648
649 // Next, try calling the target to attempt to handle the instruction.
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000650 if (TargetSelectInstruction(I)) {
651 DL = DebugLoc();
Dan Gohman6e3ff372009-12-05 01:27:58 +0000652 return true;
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000653 }
Dan Gohman6e3ff372009-12-05 01:27:58 +0000654
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000655 DL = DebugLoc();
Dan Gohman6e3ff372009-12-05 01:27:58 +0000656 return false;
Dan Gohman40b189e2008-09-05 18:18:20 +0000657}
658
Dan Gohmand98d6202008-10-02 22:15:21 +0000659/// FastEmitBranch - Emit an unconditional branch to the given block,
660/// unless it is the immediate (fall-through) successor, and update
661/// the CFG.
662void
Stuart Hastings3bf91252010-06-17 22:43:56 +0000663FastISel::FastEmitBranch(MachineBasicBlock *MSucc, DebugLoc DL) {
Dan Gohmand98d6202008-10-02 22:15:21 +0000664 if (MBB->isLayoutSuccessor(MSucc)) {
665 // The unconditional fall-through case, which needs no instructions.
666 } else {
667 // The unconditional branch case.
Stuart Hastings3bf91252010-06-17 22:43:56 +0000668 TII.InsertBranch(*MBB, MSucc, NULL, SmallVector<MachineOperand, 0>(), DL);
Dan Gohmand98d6202008-10-02 22:15:21 +0000669 }
670 MBB->addSuccessor(MSucc);
671}
672
Dan Gohman3d45a852009-09-03 22:53:57 +0000673/// SelectFNeg - Emit an FNeg operation.
674///
675bool
Dan Gohman46510a72010-04-15 01:51:59 +0000676FastISel::SelectFNeg(const User *I) {
Dan Gohman3d45a852009-09-03 22:53:57 +0000677 unsigned OpReg = getRegForValue(BinaryOperator::getFNegArgument(I));
678 if (OpReg == 0) return false;
679
Dan Gohmana6cb6412010-05-11 23:54:07 +0000680 bool OpRegIsKill = hasTrivialKill(I);
681
Dan Gohman4a215a12009-09-11 00:36:43 +0000682 // If the target has ISD::FNEG, use it.
683 EVT VT = TLI.getValueType(I->getType());
684 unsigned ResultReg = FastEmit_r(VT.getSimpleVT(), VT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000685 ISD::FNEG, OpReg, OpRegIsKill);
Dan Gohman4a215a12009-09-11 00:36:43 +0000686 if (ResultReg != 0) {
687 UpdateValueMap(I, ResultReg);
688 return true;
689 }
690
Dan Gohman5e5abb72009-09-11 00:34:46 +0000691 // Bitcast the value to integer, twiddle the sign bit with xor,
692 // and then bitcast it back to floating-point.
Dan Gohman3d45a852009-09-03 22:53:57 +0000693 if (VT.getSizeInBits() > 64) return false;
Dan Gohman5e5abb72009-09-11 00:34:46 +0000694 EVT IntVT = EVT::getIntegerVT(I->getContext(), VT.getSizeInBits());
695 if (!TLI.isTypeLegal(IntVT))
696 return false;
697
698 unsigned IntReg = FastEmit_r(VT.getSimpleVT(), IntVT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000699 ISD::BIT_CONVERT, OpReg, OpRegIsKill);
Dan Gohman5e5abb72009-09-11 00:34:46 +0000700 if (IntReg == 0)
701 return false;
702
Dan Gohmana6cb6412010-05-11 23:54:07 +0000703 unsigned IntResultReg = FastEmit_ri_(IntVT.getSimpleVT(), ISD::XOR,
704 IntReg, /*Kill=*/true,
Dan Gohman5e5abb72009-09-11 00:34:46 +0000705 UINT64_C(1) << (VT.getSizeInBits()-1),
706 IntVT.getSimpleVT());
707 if (IntResultReg == 0)
708 return false;
709
710 ResultReg = FastEmit_r(IntVT.getSimpleVT(), VT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000711 ISD::BIT_CONVERT, IntResultReg, /*Kill=*/true);
Dan Gohman3d45a852009-09-03 22:53:57 +0000712 if (ResultReg == 0)
713 return false;
714
715 UpdateValueMap(I, ResultReg);
716 return true;
717}
718
Dan Gohman40b189e2008-09-05 18:18:20 +0000719bool
Dan Gohman7fbcc982010-07-01 03:49:38 +0000720FastISel::SelectLoad(const User *I) {
721 LoadInst *LI = const_cast<LoadInst *>(cast<LoadInst>(I));
722
723 // For a load from an alloca, make a limited effort to find the value
724 // already available in a register, avoiding redundant loads.
725 if (!LI->isVolatile() && isa<AllocaInst>(LI->getPointerOperand())) {
726 BasicBlock::iterator ScanFrom = LI;
727 if (const Value *V = FindAvailableLoadedValue(LI->getPointerOperand(),
728 LI->getParent(), ScanFrom)) {
729 unsigned ResultReg = getRegForValue(V);
730 if (ResultReg != 0) {
731 UpdateValueMap(I, ResultReg);
732 return true;
733 }
734 }
735 }
736
737 return false;
738}
739
740bool
Dan Gohman46510a72010-04-15 01:51:59 +0000741FastISel::SelectOperator(const User *I, unsigned Opcode) {
Dan Gohman40b189e2008-09-05 18:18:20 +0000742 switch (Opcode) {
Dan Gohman7fbcc982010-07-01 03:49:38 +0000743 case Instruction::Load:
744 return SelectLoad(I);
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000745 case Instruction::Add:
746 return SelectBinaryOp(I, ISD::ADD);
747 case Instruction::FAdd:
748 return SelectBinaryOp(I, ISD::FADD);
749 case Instruction::Sub:
750 return SelectBinaryOp(I, ISD::SUB);
751 case Instruction::FSub:
Dan Gohman3d45a852009-09-03 22:53:57 +0000752 // FNeg is currently represented in LLVM IR as a special case of FSub.
753 if (BinaryOperator::isFNeg(I))
754 return SelectFNeg(I);
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000755 return SelectBinaryOp(I, ISD::FSUB);
756 case Instruction::Mul:
757 return SelectBinaryOp(I, ISD::MUL);
758 case Instruction::FMul:
759 return SelectBinaryOp(I, ISD::FMUL);
Dan Gohman3df24e62008-09-03 23:12:08 +0000760 case Instruction::SDiv:
761 return SelectBinaryOp(I, ISD::SDIV);
762 case Instruction::UDiv:
763 return SelectBinaryOp(I, ISD::UDIV);
764 case Instruction::FDiv:
765 return SelectBinaryOp(I, ISD::FDIV);
766 case Instruction::SRem:
767 return SelectBinaryOp(I, ISD::SREM);
768 case Instruction::URem:
769 return SelectBinaryOp(I, ISD::UREM);
770 case Instruction::FRem:
771 return SelectBinaryOp(I, ISD::FREM);
772 case Instruction::Shl:
773 return SelectBinaryOp(I, ISD::SHL);
774 case Instruction::LShr:
775 return SelectBinaryOp(I, ISD::SRL);
776 case Instruction::AShr:
777 return SelectBinaryOp(I, ISD::SRA);
778 case Instruction::And:
779 return SelectBinaryOp(I, ISD::AND);
780 case Instruction::Or:
781 return SelectBinaryOp(I, ISD::OR);
782 case Instruction::Xor:
783 return SelectBinaryOp(I, ISD::XOR);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000784
Dan Gohman3df24e62008-09-03 23:12:08 +0000785 case Instruction::GetElementPtr:
786 return SelectGetElementPtr(I);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000787
Dan Gohman3df24e62008-09-03 23:12:08 +0000788 case Instruction::Br: {
Dan Gohman46510a72010-04-15 01:51:59 +0000789 const BranchInst *BI = cast<BranchInst>(I);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000790
Dan Gohman3df24e62008-09-03 23:12:08 +0000791 if (BI->isUnconditional()) {
Dan Gohman46510a72010-04-15 01:51:59 +0000792 const BasicBlock *LLVMSucc = BI->getSuccessor(0);
Dan Gohman3df24e62008-09-03 23:12:08 +0000793 MachineBasicBlock *MSucc = MBBMap[LLVMSucc];
Stuart Hastings3bf91252010-06-17 22:43:56 +0000794 FastEmitBranch(MSucc, BI->getDebugLoc());
Dan Gohman3df24e62008-09-03 23:12:08 +0000795 return true;
Owen Anderson9d5b4162008-08-27 00:31:01 +0000796 }
Dan Gohman3df24e62008-09-03 23:12:08 +0000797
798 // Conditional branches are not handed yet.
799 // Halt "fast" selection and bail.
800 return false;
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000801 }
802
Dan Gohman087c8502008-09-05 01:08:41 +0000803 case Instruction::Unreachable:
804 // Nothing to emit.
805 return true;
806
Dan Gohman0586d912008-09-10 20:11:02 +0000807 case Instruction::Alloca:
808 // FunctionLowering has the static-sized case covered.
809 if (StaticAllocaMap.count(cast<AllocaInst>(I)))
810 return true;
811
812 // Dynamic-sized alloca is not handled yet.
813 return false;
Dan Gohman3df24e62008-09-03 23:12:08 +0000814
Dan Gohman33134c42008-09-25 17:05:24 +0000815 case Instruction::Call:
816 return SelectCall(I);
817
Dan Gohman3df24e62008-09-03 23:12:08 +0000818 case Instruction::BitCast:
819 return SelectBitCast(I);
820
821 case Instruction::FPToSI:
822 return SelectCast(I, ISD::FP_TO_SINT);
823 case Instruction::ZExt:
824 return SelectCast(I, ISD::ZERO_EXTEND);
825 case Instruction::SExt:
826 return SelectCast(I, ISD::SIGN_EXTEND);
827 case Instruction::Trunc:
828 return SelectCast(I, ISD::TRUNCATE);
829 case Instruction::SIToFP:
830 return SelectCast(I, ISD::SINT_TO_FP);
831
832 case Instruction::IntToPtr: // Deliberate fall-through.
833 case Instruction::PtrToInt: {
Owen Andersone50ed302009-08-10 22:56:29 +0000834 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
835 EVT DstVT = TLI.getValueType(I->getType());
Dan Gohman3df24e62008-09-03 23:12:08 +0000836 if (DstVT.bitsGT(SrcVT))
837 return SelectCast(I, ISD::ZERO_EXTEND);
838 if (DstVT.bitsLT(SrcVT))
839 return SelectCast(I, ISD::TRUNCATE);
840 unsigned Reg = getRegForValue(I->getOperand(0));
841 if (Reg == 0) return false;
842 UpdateValueMap(I, Reg);
843 return true;
844 }
Dan Gohmand57dd5f2008-09-23 21:53:34 +0000845
Dan Gohmanba5be5c2010-04-20 15:00:41 +0000846 case Instruction::PHI:
847 llvm_unreachable("FastISel shouldn't visit PHI nodes!");
848
Dan Gohman3df24e62008-09-03 23:12:08 +0000849 default:
850 // Unhandled instruction. Halt "fast" selection and bail.
851 return false;
852 }
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000853}
854
Dan Gohman3df24e62008-09-03 23:12:08 +0000855FastISel::FastISel(MachineFunction &mf,
856 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +0000857 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmanf81eca02010-04-22 20:46:50 +0000858 DenseMap<const AllocaInst *, int> &am,
859 std::vector<std::pair<MachineInstr*, unsigned> > &pn
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000860#ifndef NDEBUG
Dan Gohman25208642010-04-14 19:53:31 +0000861 , SmallSet<const Instruction *, 8> &cil
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000862#endif
863 )
Dan Gohman3df24e62008-09-03 23:12:08 +0000864 : MBB(0),
865 ValueMap(vm),
866 MBBMap(bm),
Dan Gohman0586d912008-09-10 20:11:02 +0000867 StaticAllocaMap(am),
Dan Gohmanf81eca02010-04-22 20:46:50 +0000868 PHINodesToUpdate(pn),
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000869#ifndef NDEBUG
870 CatchInfoLost(cil),
871#endif
Dan Gohman3df24e62008-09-03 23:12:08 +0000872 MF(mf),
873 MRI(MF.getRegInfo()),
Dan Gohman0586d912008-09-10 20:11:02 +0000874 MFI(*MF.getFrameInfo()),
875 MCP(*MF.getConstantPool()),
Dan Gohman3df24e62008-09-03 23:12:08 +0000876 TM(MF.getTarget()),
Dan Gohman22bb3112008-08-22 00:20:26 +0000877 TD(*TM.getTargetData()),
878 TII(*TM.getInstrInfo()),
Dan Gohmana7a0ed72010-05-05 23:58:35 +0000879 TLI(*TM.getTargetLowering()),
Dan Gohmandb497122010-06-18 23:28:01 +0000880 TRI(*TM.getRegisterInfo()),
Dan Gohmana7a0ed72010-05-05 23:58:35 +0000881 IsBottomUp(false) {
Dan Gohmanbb466332008-08-20 21:05:57 +0000882}
883
Dan Gohmane285a742008-08-14 21:51:29 +0000884FastISel::~FastISel() {}
885
Owen Anderson825b72b2009-08-11 20:47:22 +0000886unsigned FastISel::FastEmit_(MVT, MVT,
Dan Gohman7c3ecb62010-01-05 22:26:32 +0000887 unsigned) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000888 return 0;
889}
890
Owen Anderson825b72b2009-08-11 20:47:22 +0000891unsigned FastISel::FastEmit_r(MVT, MVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000892 unsigned,
893 unsigned /*Op0*/, bool /*Op0IsKill*/) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000894 return 0;
895}
896
Owen Anderson825b72b2009-08-11 20:47:22 +0000897unsigned FastISel::FastEmit_rr(MVT, MVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000898 unsigned,
899 unsigned /*Op0*/, bool /*Op0IsKill*/,
900 unsigned /*Op1*/, bool /*Op1IsKill*/) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000901 return 0;
902}
903
Dan Gohman7c3ecb62010-01-05 22:26:32 +0000904unsigned FastISel::FastEmit_i(MVT, MVT, unsigned, uint64_t /*Imm*/) {
Evan Cheng83785c82008-08-20 22:45:34 +0000905 return 0;
906}
907
Owen Anderson825b72b2009-08-11 20:47:22 +0000908unsigned FastISel::FastEmit_f(MVT, MVT,
Dan Gohman46510a72010-04-15 01:51:59 +0000909 unsigned, const ConstantFP * /*FPImm*/) {
Dan Gohman10df0fa2008-08-27 01:09:54 +0000910 return 0;
911}
912
Owen Anderson825b72b2009-08-11 20:47:22 +0000913unsigned FastISel::FastEmit_ri(MVT, MVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000914 unsigned,
915 unsigned /*Op0*/, bool /*Op0IsKill*/,
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000916 uint64_t /*Imm*/) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000917 return 0;
918}
919
Owen Anderson825b72b2009-08-11 20:47:22 +0000920unsigned FastISel::FastEmit_rf(MVT, MVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000921 unsigned,
922 unsigned /*Op0*/, bool /*Op0IsKill*/,
Dan Gohman46510a72010-04-15 01:51:59 +0000923 const ConstantFP * /*FPImm*/) {
Dan Gohman10df0fa2008-08-27 01:09:54 +0000924 return 0;
925}
926
Owen Anderson825b72b2009-08-11 20:47:22 +0000927unsigned FastISel::FastEmit_rri(MVT, MVT,
Dan Gohman7c3ecb62010-01-05 22:26:32 +0000928 unsigned,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000929 unsigned /*Op0*/, bool /*Op0IsKill*/,
930 unsigned /*Op1*/, bool /*Op1IsKill*/,
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000931 uint64_t /*Imm*/) {
Evan Cheng83785c82008-08-20 22:45:34 +0000932 return 0;
933}
934
935/// FastEmit_ri_ - This method is a wrapper of FastEmit_ri. It first tries
936/// to emit an instruction with an immediate operand using FastEmit_ri.
937/// If that fails, it materializes the immediate into a register and try
938/// FastEmit_rr instead.
Dan Gohman7c3ecb62010-01-05 22:26:32 +0000939unsigned FastISel::FastEmit_ri_(MVT VT, unsigned Opcode,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000940 unsigned Op0, bool Op0IsKill,
941 uint64_t Imm, MVT ImmType) {
Evan Cheng83785c82008-08-20 22:45:34 +0000942 // First check if immediate type is legal. If not, we can't use the ri form.
Dan Gohmana6cb6412010-05-11 23:54:07 +0000943 unsigned ResultReg = FastEmit_ri(VT, VT, Opcode, Op0, Op0IsKill, Imm);
Evan Cheng83785c82008-08-20 22:45:34 +0000944 if (ResultReg != 0)
945 return ResultReg;
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000946 unsigned MaterialReg = FastEmit_i(ImmType, ImmType, ISD::Constant, Imm);
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000947 if (MaterialReg == 0)
948 return 0;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000949 return FastEmit_rr(VT, VT, Opcode,
950 Op0, Op0IsKill,
951 MaterialReg, /*Kill=*/true);
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000952}
953
Dan Gohman10df0fa2008-08-27 01:09:54 +0000954/// FastEmit_rf_ - This method is a wrapper of FastEmit_ri. It first tries
955/// to emit an instruction with a floating-point immediate operand using
956/// FastEmit_rf. If that fails, it materializes the immediate into a register
957/// and try FastEmit_rr instead.
Dan Gohman7c3ecb62010-01-05 22:26:32 +0000958unsigned FastISel::FastEmit_rf_(MVT VT, unsigned Opcode,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000959 unsigned Op0, bool Op0IsKill,
960 const ConstantFP *FPImm, MVT ImmType) {
Dan Gohman10df0fa2008-08-27 01:09:54 +0000961 // First check if immediate type is legal. If not, we can't use the rf form.
Dan Gohmana6cb6412010-05-11 23:54:07 +0000962 unsigned ResultReg = FastEmit_rf(VT, VT, Opcode, Op0, Op0IsKill, FPImm);
Dan Gohman10df0fa2008-08-27 01:09:54 +0000963 if (ResultReg != 0)
964 return ResultReg;
965
966 // Materialize the constant in a register.
967 unsigned MaterialReg = FastEmit_f(ImmType, ImmType, ISD::ConstantFP, FPImm);
968 if (MaterialReg == 0) {
Dan Gohman96a99992008-08-27 18:01:42 +0000969 // If the target doesn't have a way to directly enter a floating-point
970 // value into a register, use an alternate approach.
971 // TODO: The current approach only supports floating-point constants
972 // that can be constructed by conversion from integer values. This should
973 // be replaced by code that creates a load from a constant-pool entry,
974 // which will require some target-specific work.
Dan Gohman10df0fa2008-08-27 01:09:54 +0000975 const APFloat &Flt = FPImm->getValueAPF();
Owen Andersone50ed302009-08-10 22:56:29 +0000976 EVT IntVT = TLI.getPointerTy();
Dan Gohman10df0fa2008-08-27 01:09:54 +0000977
978 uint64_t x[2];
979 uint32_t IntBitWidth = IntVT.getSizeInBits();
Dale Johannesen23a98552008-10-09 23:00:39 +0000980 bool isExact;
981 (void) Flt.convertToInteger(x, IntBitWidth, /*isSigned=*/true,
982 APFloat::rmTowardZero, &isExact);
983 if (!isExact)
Dan Gohman10df0fa2008-08-27 01:09:54 +0000984 return 0;
985 APInt IntVal(IntBitWidth, 2, x);
986
987 unsigned IntegerReg = FastEmit_i(IntVT.getSimpleVT(), IntVT.getSimpleVT(),
988 ISD::Constant, IntVal.getZExtValue());
989 if (IntegerReg == 0)
990 return 0;
991 MaterialReg = FastEmit_r(IntVT.getSimpleVT(), VT,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000992 ISD::SINT_TO_FP, IntegerReg, /*Kill=*/true);
Dan Gohman10df0fa2008-08-27 01:09:54 +0000993 if (MaterialReg == 0)
994 return 0;
995 }
Dan Gohmana6cb6412010-05-11 23:54:07 +0000996 return FastEmit_rr(VT, VT, Opcode,
997 Op0, Op0IsKill,
998 MaterialReg, /*Kill=*/true);
Dan Gohman10df0fa2008-08-27 01:09:54 +0000999}
1000
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001001unsigned FastISel::createResultReg(const TargetRegisterClass* RC) {
1002 return MRI.createVirtualRegister(RC);
Evan Cheng83785c82008-08-20 22:45:34 +00001003}
1004
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001005unsigned FastISel::FastEmitInst_(unsigned MachineInstOpcode,
Dan Gohman77ad7962008-08-20 18:09:38 +00001006 const TargetRegisterClass* RC) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001007 unsigned ResultReg = createResultReg(RC);
Dan Gohmanbb466332008-08-20 21:05:57 +00001008 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001009
Bill Wendling9bc96a52009-02-03 00:55:04 +00001010 BuildMI(MBB, DL, II, ResultReg);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001011 return ResultReg;
1012}
1013
1014unsigned FastISel::FastEmitInst_r(unsigned MachineInstOpcode,
1015 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001016 unsigned Op0, bool Op0IsKill) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001017 unsigned ResultReg = createResultReg(RC);
Dan Gohmanbb466332008-08-20 21:05:57 +00001018 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001019
Evan Cheng5960e4e2008-09-08 08:38:20 +00001020 if (II.getNumDefs() >= 1)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001021 BuildMI(MBB, DL, II, ResultReg).addReg(Op0, Op0IsKill * RegState::Kill);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001022 else {
Dan Gohmana6cb6412010-05-11 23:54:07 +00001023 BuildMI(MBB, DL, II).addReg(Op0, Op0IsKill * RegState::Kill);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001024 bool InsertedCopy = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +00001025 II.ImplicitDefs[0], RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001026 if (!InsertedCopy)
1027 ResultReg = 0;
1028 }
1029
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001030 return ResultReg;
1031}
1032
1033unsigned FastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
1034 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001035 unsigned Op0, bool Op0IsKill,
1036 unsigned Op1, bool Op1IsKill) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001037 unsigned ResultReg = createResultReg(RC);
Dan Gohmanbb466332008-08-20 21:05:57 +00001038 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001039
Evan Cheng5960e4e2008-09-08 08:38:20 +00001040 if (II.getNumDefs() >= 1)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001041 BuildMI(MBB, DL, II, ResultReg)
1042 .addReg(Op0, Op0IsKill * RegState::Kill)
1043 .addReg(Op1, Op1IsKill * RegState::Kill);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001044 else {
Dan Gohmana6cb6412010-05-11 23:54:07 +00001045 BuildMI(MBB, DL, II)
1046 .addReg(Op0, Op0IsKill * RegState::Kill)
1047 .addReg(Op1, Op1IsKill * RegState::Kill);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001048 bool InsertedCopy = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +00001049 II.ImplicitDefs[0], RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001050 if (!InsertedCopy)
1051 ResultReg = 0;
1052 }
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001053 return ResultReg;
1054}
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001055
1056unsigned FastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
1057 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001058 unsigned Op0, bool Op0IsKill,
1059 uint64_t Imm) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001060 unsigned ResultReg = createResultReg(RC);
1061 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
1062
Evan Cheng5960e4e2008-09-08 08:38:20 +00001063 if (II.getNumDefs() >= 1)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001064 BuildMI(MBB, DL, II, ResultReg)
1065 .addReg(Op0, Op0IsKill * RegState::Kill)
1066 .addImm(Imm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001067 else {
Dan Gohmana6cb6412010-05-11 23:54:07 +00001068 BuildMI(MBB, DL, II)
1069 .addReg(Op0, Op0IsKill * RegState::Kill)
1070 .addImm(Imm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001071 bool InsertedCopy = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +00001072 II.ImplicitDefs[0], RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001073 if (!InsertedCopy)
1074 ResultReg = 0;
1075 }
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001076 return ResultReg;
1077}
1078
Dan Gohman10df0fa2008-08-27 01:09:54 +00001079unsigned FastISel::FastEmitInst_rf(unsigned MachineInstOpcode,
1080 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001081 unsigned Op0, bool Op0IsKill,
1082 const ConstantFP *FPImm) {
Dan Gohman10df0fa2008-08-27 01:09:54 +00001083 unsigned ResultReg = createResultReg(RC);
1084 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
1085
Evan Cheng5960e4e2008-09-08 08:38:20 +00001086 if (II.getNumDefs() >= 1)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001087 BuildMI(MBB, DL, II, ResultReg)
1088 .addReg(Op0, Op0IsKill * RegState::Kill)
1089 .addFPImm(FPImm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001090 else {
Dan Gohmana6cb6412010-05-11 23:54:07 +00001091 BuildMI(MBB, DL, II)
1092 .addReg(Op0, Op0IsKill * RegState::Kill)
1093 .addFPImm(FPImm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001094 bool InsertedCopy = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +00001095 II.ImplicitDefs[0], RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001096 if (!InsertedCopy)
1097 ResultReg = 0;
1098 }
Dan Gohman10df0fa2008-08-27 01:09:54 +00001099 return ResultReg;
1100}
1101
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001102unsigned FastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
1103 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001104 unsigned Op0, bool Op0IsKill,
1105 unsigned Op1, bool Op1IsKill,
1106 uint64_t Imm) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001107 unsigned ResultReg = createResultReg(RC);
1108 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
1109
Evan Cheng5960e4e2008-09-08 08:38:20 +00001110 if (II.getNumDefs() >= 1)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001111 BuildMI(MBB, DL, II, ResultReg)
1112 .addReg(Op0, Op0IsKill * RegState::Kill)
1113 .addReg(Op1, Op1IsKill * RegState::Kill)
1114 .addImm(Imm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001115 else {
Dan Gohmana6cb6412010-05-11 23:54:07 +00001116 BuildMI(MBB, DL, II)
1117 .addReg(Op0, Op0IsKill * RegState::Kill)
1118 .addReg(Op1, Op1IsKill * RegState::Kill)
1119 .addImm(Imm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001120 bool InsertedCopy = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +00001121 II.ImplicitDefs[0], RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001122 if (!InsertedCopy)
1123 ResultReg = 0;
1124 }
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001125 return ResultReg;
1126}
Owen Anderson6d0c25e2008-08-25 20:20:32 +00001127
1128unsigned FastISel::FastEmitInst_i(unsigned MachineInstOpcode,
1129 const TargetRegisterClass *RC,
1130 uint64_t Imm) {
1131 unsigned ResultReg = createResultReg(RC);
1132 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
1133
Evan Cheng5960e4e2008-09-08 08:38:20 +00001134 if (II.getNumDefs() >= 1)
Bill Wendling9bc96a52009-02-03 00:55:04 +00001135 BuildMI(MBB, DL, II, ResultReg).addImm(Imm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001136 else {
Bill Wendling9bc96a52009-02-03 00:55:04 +00001137 BuildMI(MBB, DL, II).addImm(Imm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001138 bool InsertedCopy = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +00001139 II.ImplicitDefs[0], RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001140 if (!InsertedCopy)
1141 ResultReg = 0;
1142 }
Owen Anderson6d0c25e2008-08-25 20:20:32 +00001143 return ResultReg;
Evan Chengb41aec52008-08-25 22:20:39 +00001144}
Owen Anderson8970f002008-08-27 22:30:02 +00001145
Owen Anderson825b72b2009-08-11 20:47:22 +00001146unsigned FastISel::FastEmitInst_extractsubreg(MVT RetVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001147 unsigned Op0, bool Op0IsKill,
1148 uint32_t Idx) {
Owen Anderson40a468f2008-08-28 17:47:37 +00001149 const TargetRegisterClass* RC = MRI.getRegClass(Op0);
Owen Anderson8970f002008-08-27 22:30:02 +00001150
Evan Cheng536ab132009-01-22 09:10:11 +00001151 unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT));
Chris Lattner518bb532010-02-09 19:54:29 +00001152 const TargetInstrDesc &II = TII.get(TargetOpcode::EXTRACT_SUBREG);
Owen Anderson8970f002008-08-27 22:30:02 +00001153
Evan Cheng5960e4e2008-09-08 08:38:20 +00001154 if (II.getNumDefs() >= 1)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001155 BuildMI(MBB, DL, II, ResultReg)
1156 .addReg(Op0, Op0IsKill * RegState::Kill)
1157 .addImm(Idx);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001158 else {
Dan Gohmana6cb6412010-05-11 23:54:07 +00001159 BuildMI(MBB, DL, II)
1160 .addReg(Op0, Op0IsKill * RegState::Kill)
1161 .addImm(Idx);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001162 bool InsertedCopy = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
Dan Gohman34dcc6f2010-05-06 20:33:48 +00001163 II.ImplicitDefs[0], RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001164 if (!InsertedCopy)
1165 ResultReg = 0;
1166 }
Owen Anderson8970f002008-08-27 22:30:02 +00001167 return ResultReg;
1168}
Dan Gohman14ea1ec2009-03-13 20:42:20 +00001169
1170/// FastEmitZExtFromI1 - Emit MachineInstrs to compute the value of Op
1171/// with all but the least significant bit set to zero.
Dan Gohmana6cb6412010-05-11 23:54:07 +00001172unsigned FastISel::FastEmitZExtFromI1(MVT VT, unsigned Op0, bool Op0IsKill) {
1173 return FastEmit_ri(VT, VT, ISD::AND, Op0, Op0IsKill, 1);
Dan Gohman14ea1ec2009-03-13 20:42:20 +00001174}
Dan Gohmanf81eca02010-04-22 20:46:50 +00001175
1176/// HandlePHINodesInSuccessorBlocks - Handle PHI nodes in successor blocks.
1177/// Emit code to ensure constants are copied into registers when needed.
1178/// Remember the virtual registers that need to be added to the Machine PHI
1179/// nodes as input. We cannot just directly add them, because expansion
1180/// might result in multiple MBB's for one BB. As such, the start of the
1181/// BB might correspond to a different MBB than the end.
1182bool FastISel::HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB) {
1183 const TerminatorInst *TI = LLVMBB->getTerminator();
1184
1185 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
1186 unsigned OrigNumPHINodesToUpdate = PHINodesToUpdate.size();
1187
1188 // Check successor nodes' PHI nodes that expect a constant to be available
1189 // from this block.
1190 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
1191 const BasicBlock *SuccBB = TI->getSuccessor(succ);
1192 if (!isa<PHINode>(SuccBB->begin())) continue;
1193 MachineBasicBlock *SuccMBB = MBBMap[SuccBB];
1194
1195 // If this terminator has multiple identical successors (common for
1196 // switches), only handle each succ once.
1197 if (!SuccsHandled.insert(SuccMBB)) continue;
1198
1199 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
1200
1201 // At this point we know that there is a 1-1 correspondence between LLVM PHI
1202 // nodes and Machine PHI nodes, but the incoming operands have not been
1203 // emitted yet.
1204 for (BasicBlock::const_iterator I = SuccBB->begin();
1205 const PHINode *PN = dyn_cast<PHINode>(I); ++I) {
Dan Gohmanfb95f892010-05-07 01:10:20 +00001206
Dan Gohmanf81eca02010-04-22 20:46:50 +00001207 // Ignore dead phi's.
1208 if (PN->use_empty()) continue;
1209
1210 // Only handle legal types. Two interesting things to note here. First,
1211 // by bailing out early, we may leave behind some dead instructions,
1212 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
1213 // own moves. Second, this check is necessary becuase FastISel doesn't
Dan Gohman89496d02010-07-02 00:10:16 +00001214 // use CreateRegs to create registers, so it always creates
Dan Gohmanf81eca02010-04-22 20:46:50 +00001215 // exactly one register for each non-void instruction.
1216 EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
1217 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
1218 // Promote MVT::i1.
1219 if (VT == MVT::i1)
1220 VT = TLI.getTypeToTransformTo(LLVMBB->getContext(), VT);
1221 else {
1222 PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
1223 return false;
1224 }
1225 }
1226
1227 const Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
1228
Dan Gohmanfb95f892010-05-07 01:10:20 +00001229 // Set the DebugLoc for the copy. Prefer the location of the operand
1230 // if there is one; use the location of the PHI otherwise.
1231 DL = PN->getDebugLoc();
1232 if (const Instruction *Inst = dyn_cast<Instruction>(PHIOp))
1233 DL = Inst->getDebugLoc();
1234
Dan Gohmanf81eca02010-04-22 20:46:50 +00001235 unsigned Reg = getRegForValue(PHIOp);
1236 if (Reg == 0) {
1237 PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
1238 return false;
1239 }
1240 PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
Dan Gohmanfb95f892010-05-07 01:10:20 +00001241 DL = DebugLoc();
Dan Gohmanf81eca02010-04-22 20:46:50 +00001242 }
1243 }
1244
1245 return true;
1246}