blob: 5b566f675fe0d65b977f2f4951567c9328874767 [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"
Dan Gohman4c3fd9f2010-07-07 16:01:37 +000047#include "llvm/CodeGen/FunctionLoweringInfo.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000048#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohman33134c42008-09-25 17:05:24 +000049#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000050#include "llvm/CodeGen/MachineRegisterInfo.h"
Devang Patel83489bb2009-01-13 00:35:13 +000051#include "llvm/Analysis/DebugInfo.h"
Dan Gohman7fbcc982010-07-01 03:49:38 +000052#include "llvm/Analysis/Loads.h"
Evan Cheng83785c82008-08-20 22:45:34 +000053#include "llvm/Target/TargetData.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000054#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng83785c82008-08-20 22:45:34 +000055#include "llvm/Target/TargetLowering.h"
Dan Gohmanbb466332008-08-20 21:05:57 +000056#include "llvm/Target/TargetMachine.h"
Dan Gohmanba5be5c2010-04-20 15:00:41 +000057#include "llvm/Support/ErrorHandling.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000058using namespace llvm;
59
Dan Gohman4df83ed2010-07-07 19:20:32 +000060/// startNewBlock - Set the current block to which generated machine
61/// instructions will be appended, and clear the local CSE map.
62///
63void FastISel::startNewBlock() {
64 LocalValueMap.clear();
65
66 // Start out as end(), meaining no local-value instructions have
67 // been emitted.
68 LastLocalValue = FuncInfo.MBB->end();
69}
70
Dan Gohmana6cb6412010-05-11 23:54:07 +000071bool FastISel::hasTrivialKill(const Value *V) const {
Dan Gohman7f0d6952010-05-14 22:53:18 +000072 // Don't consider constants or arguments to have trivial kills.
Dan Gohmana6cb6412010-05-11 23:54:07 +000073 const Instruction *I = dyn_cast<Instruction>(V);
Dan Gohman7f0d6952010-05-14 22:53:18 +000074 if (!I)
75 return false;
76
77 // No-op casts are trivially coalesced by fast-isel.
78 if (const CastInst *Cast = dyn_cast<CastInst>(I))
79 if (Cast->isNoopCast(TD.getIntPtrType(Cast->getContext())) &&
80 !hasTrivialKill(Cast->getOperand(0)))
81 return false;
82
83 // Only instructions with a single use in the same basic block are considered
84 // to have trivial kills.
85 return I->hasOneUse() &&
86 !(I->getOpcode() == Instruction::BitCast ||
87 I->getOpcode() == Instruction::PtrToInt ||
88 I->getOpcode() == Instruction::IntToPtr) &&
Dan Gohmane1308d82010-05-13 19:19:32 +000089 cast<Instruction>(I->use_begin())->getParent() == I->getParent();
Dan Gohmana6cb6412010-05-11 23:54:07 +000090}
91
Dan Gohman46510a72010-04-15 01:51:59 +000092unsigned FastISel::getRegForValue(const Value *V) {
Owen Andersone50ed302009-08-10 22:56:29 +000093 EVT RealVT = TLI.getValueType(V->getType(), /*AllowUnknown=*/true);
Dan Gohman4fd55282009-04-07 20:40:11 +000094 // Don't handle non-simple values in FastISel.
95 if (!RealVT.isSimple())
96 return 0;
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +000097
98 // Ignore illegal types. We must do this before looking up the value
99 // in ValueMap because Arguments are given virtual registers regardless
100 // of whether FastISel can handle them.
Owen Anderson825b72b2009-08-11 20:47:22 +0000101 MVT VT = RealVT.getSimpleVT();
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000102 if (!TLI.isTypeLegal(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000103 // Promote MVT::i1 to a legal type though, because it's common and easy.
104 if (VT == MVT::i1)
Owen Anderson23b9b192009-08-12 00:36:31 +0000105 VT = TLI.getTypeToTransformTo(V->getContext(), VT).getSimpleVT();
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000106 else
107 return 0;
108 }
109
Dan Gohman104e4ce2008-09-03 23:32:19 +0000110 // Look up the value to see if we already have a register for it. We
111 // cache values defined by Instructions across blocks, and other values
112 // only locally. This is because Instructions already have the SSA
Dan Gohman5c9cf192010-01-12 04:30:26 +0000113 // def-dominates-use requirement enforced.
Dan Gohmana4160c32010-07-07 16:29:44 +0000114 DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(V);
115 if (I != FuncInfo.ValueMap.end())
Dan Gohmaneddc1142010-05-25 21:59:42 +0000116 return I->second;
Dan Gohman104e4ce2008-09-03 23:32:19 +0000117 unsigned Reg = LocalValueMap[V];
118 if (Reg != 0)
119 return Reg;
Dan Gohmanad368ac2008-08-27 18:10:19 +0000120
Dan Gohman97c94b82010-05-06 00:02:14 +0000121 // In bottom-up mode, just create the virtual register which will be used
122 // to hold the value. It will be materialized later.
Dan Gohman49dcb0f2010-07-07 23:52:58 +0000123 if (isa<Instruction>(V) &&
124 (!isa<AllocaInst>(V) ||
125 !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V)))) {
Dan Gohman97c94b82010-05-06 00:02:14 +0000126 Reg = createResultReg(TLI.getRegClassFor(VT));
Dan Gohman4df83ed2010-07-07 19:20:32 +0000127 FuncInfo.ValueMap[V] = Reg;
Dan Gohman97c94b82010-05-06 00:02:14 +0000128 return Reg;
129 }
130
Dan Gohman1fdc6142010-05-03 23:36:34 +0000131 return materializeRegForValue(V, VT);
132}
133
134/// materializeRegForValue - Helper for getRegForVale. This function is
135/// called when the value isn't already available in a register and must
136/// be materialized with new instructions.
137unsigned FastISel::materializeRegForValue(const Value *V, MVT VT) {
138 unsigned Reg = 0;
139
Dan Gohman46510a72010-04-15 01:51:59 +0000140 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000141 if (CI->getValue().getActiveBits() <= 64)
142 Reg = FastEmit_i(VT, VT, ISD::Constant, CI->getZExtValue());
Dan Gohman0586d912008-09-10 20:11:02 +0000143 } else if (isa<AllocaInst>(V)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000144 Reg = TargetMaterializeAlloca(cast<AllocaInst>(V));
Dan Gohman205d9252008-08-28 21:19:07 +0000145 } else if (isa<ConstantPointerNull>(V)) {
Dan Gohman1e9e8c32008-10-07 22:03:27 +0000146 // Translate this as an integer zero so that it can be
147 // local-CSE'd with actual integer zeros.
Owen Anderson1d0be152009-08-13 21:58:54 +0000148 Reg =
149 getRegForValue(Constant::getNullValue(TD.getIntPtrType(V->getContext())));
Dan Gohman46510a72010-04-15 01:51:59 +0000150 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Dan Gohman4183e312010-04-13 17:07:06 +0000151 // Try to emit the constant directly.
Dan Gohman104e4ce2008-09-03 23:32:19 +0000152 Reg = FastEmit_f(VT, VT, ISD::ConstantFP, CF);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000153
154 if (!Reg) {
Dan Gohman4183e312010-04-13 17:07:06 +0000155 // Try to emit the constant by using an integer constant with a cast.
Dan Gohmanad368ac2008-08-27 18:10:19 +0000156 const APFloat &Flt = CF->getValueAPF();
Owen Andersone50ed302009-08-10 22:56:29 +0000157 EVT IntVT = TLI.getPointerTy();
Dan Gohmanad368ac2008-08-27 18:10:19 +0000158
159 uint64_t x[2];
160 uint32_t IntBitWidth = IntVT.getSizeInBits();
Dale Johannesen23a98552008-10-09 23:00:39 +0000161 bool isExact;
162 (void) Flt.convertToInteger(x, IntBitWidth, /*isSigned=*/true,
163 APFloat::rmTowardZero, &isExact);
164 if (isExact) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000165 APInt IntVal(IntBitWidth, 2, x);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000166
Owen Andersone922c022009-07-22 00:24:57 +0000167 unsigned IntegerReg =
Owen Andersoneed707b2009-07-24 23:12:02 +0000168 getRegForValue(ConstantInt::get(V->getContext(), IntVal));
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000169 if (IntegerReg != 0)
Dan Gohmana6cb6412010-05-11 23:54:07 +0000170 Reg = FastEmit_r(IntVT.getSimpleVT(), VT, ISD::SINT_TO_FP,
171 IntegerReg, /*Kill=*/false);
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000172 }
Dan Gohmanad368ac2008-08-27 18:10:19 +0000173 }
Dan Gohman46510a72010-04-15 01:51:59 +0000174 } else if (const Operator *Op = dyn_cast<Operator>(V)) {
Dan Gohman20d4be12010-07-01 02:58:57 +0000175 if (!SelectOperator(Op, Op->getOpcode()))
176 if (!isa<Instruction>(Op) ||
177 !TargetSelectInstruction(cast<Instruction>(Op)))
178 return 0;
Dan Gohman37db6cd2010-06-21 14:17:46 +0000179 Reg = lookUpRegForValue(Op);
Dan Gohman205d9252008-08-28 21:19:07 +0000180 } else if (isa<UndefValue>(V)) {
Dan Gohman104e4ce2008-09-03 23:32:19 +0000181 Reg = createResultReg(TLI.getRegClassFor(VT));
Dan Gohmaneabaed22010-07-07 16:47:08 +0000182 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
183 TII.get(TargetOpcode::IMPLICIT_DEF), Reg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000184 }
Owen Andersond5d81a42008-09-03 17:51:57 +0000185
Dan Gohmandceffe62008-09-25 01:28:51 +0000186 // If target-independent code couldn't handle the value, give target-specific
187 // code a try.
Owen Anderson6e607452008-09-05 23:36:01 +0000188 if (!Reg && isa<Constant>(V))
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000189 Reg = TargetMaterializeConstant(cast<Constant>(V));
Owen Anderson6e607452008-09-05 23:36:01 +0000190
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000191 // Don't cache constant materializations in the general ValueMap.
192 // To do so would require tracking what uses they dominate.
Dan Gohman4df83ed2010-07-07 19:20:32 +0000193 if (Reg != 0) {
Dan Gohmandceffe62008-09-25 01:28:51 +0000194 LocalValueMap[V] = Reg;
Dan Gohman4df83ed2010-07-07 19:20:32 +0000195 LastLocalValue = MRI.getVRegDef(Reg);
196 }
Dan Gohman104e4ce2008-09-03 23:32:19 +0000197 return Reg;
Dan Gohmanad368ac2008-08-27 18:10:19 +0000198}
199
Dan Gohman46510a72010-04-15 01:51:59 +0000200unsigned FastISel::lookUpRegForValue(const Value *V) {
Evan Cheng59fbc802008-09-09 01:26:59 +0000201 // Look up the value to see if we already have a register for it. We
202 // cache values defined by Instructions across blocks, and other values
203 // only locally. This is because Instructions already have the SSA
Dan Gohman1fdc6142010-05-03 23:36:34 +0000204 // def-dominates-use requirement enforced.
Dan Gohmana4160c32010-07-07 16:29:44 +0000205 DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(V);
206 if (I != FuncInfo.ValueMap.end())
Dan Gohman3193a682010-06-21 14:21:47 +0000207 return I->second;
Evan Cheng59fbc802008-09-09 01:26:59 +0000208 return LocalValueMap[V];
209}
210
Owen Andersoncc54e762008-08-30 00:38:46 +0000211/// UpdateValueMap - Update the value map to include the new mapping for this
212/// instruction, or insert an extra copy to get the result in a previous
213/// determined register.
214/// NOTE: This is only necessary because we might select a block that uses
215/// a value before we select the block that defines the value. It might be
216/// possible to fix this by selecting blocks in reverse postorder.
Dan Gohman46510a72010-04-15 01:51:59 +0000217unsigned FastISel::UpdateValueMap(const Value *I, unsigned Reg) {
Dan Gohman40b189e2008-09-05 18:18:20 +0000218 if (!isa<Instruction>(I)) {
219 LocalValueMap[I] = Reg;
Chris Lattnerc5040ab2009-04-12 07:45:01 +0000220 return Reg;
Dan Gohman40b189e2008-09-05 18:18:20 +0000221 }
Chris Lattnerc5040ab2009-04-12 07:45:01 +0000222
Dan Gohmana4160c32010-07-07 16:29:44 +0000223 unsigned &AssignedReg = FuncInfo.ValueMap[I];
Chris Lattnerc5040ab2009-04-12 07:45:01 +0000224 if (AssignedReg == 0)
Dan Gohman4df83ed2010-07-07 19:20:32 +0000225 // Use the new register.
Chris Lattnerc5040ab2009-04-12 07:45:01 +0000226 AssignedReg = Reg;
Chris Lattner36e39462009-04-12 07:46:30 +0000227 else if (Reg != AssignedReg) {
Dan Gohman4df83ed2010-07-07 19:20:32 +0000228 // We already have a register for this value. Replace uses of
229 // the existing register with uses of the new one.
230 MRI.replaceRegWith(AssignedReg, Reg);
231 // Replace uses of the existing register in PHINodesToUpdate too.
232 for (unsigned i = 0, e = FuncInfo.PHINodesToUpdate.size(); i != e; ++i)
233 if (FuncInfo.PHINodesToUpdate[i].second == AssignedReg)
234 FuncInfo.PHINodesToUpdate[i].second = Reg;
235 // And update the ValueMap.
236 AssignedReg = Reg;
Chris Lattnerc5040ab2009-04-12 07:45:01 +0000237 }
Dan Gohman4df83ed2010-07-07 19:20:32 +0000238
Chris Lattnerc5040ab2009-04-12 07:45:01 +0000239 return AssignedReg;
Owen Andersoncc54e762008-08-30 00:38:46 +0000240}
241
Dan Gohmana6cb6412010-05-11 23:54:07 +0000242std::pair<unsigned, bool> FastISel::getRegForGEPIndex(const Value *Idx) {
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000243 unsigned IdxN = getRegForValue(Idx);
244 if (IdxN == 0)
245 // Unhandled operand. Halt "fast" selection and bail.
Dan Gohmana6cb6412010-05-11 23:54:07 +0000246 return std::pair<unsigned, bool>(0, false);
247
248 bool IdxNIsKill = hasTrivialKill(Idx);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000249
250 // If the index is smaller or larger than intptr_t, truncate or extend it.
Owen Anderson766b5ef2009-08-11 21:59:30 +0000251 MVT PtrVT = TLI.getPointerTy();
Owen Andersone50ed302009-08-10 22:56:29 +0000252 EVT IdxVT = EVT::getEVT(Idx->getType(), /*HandleUnknown=*/false);
Dan Gohmana6cb6412010-05-11 23:54:07 +0000253 if (IdxVT.bitsLT(PtrVT)) {
254 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::SIGN_EXTEND,
255 IdxN, IdxNIsKill);
256 IdxNIsKill = true;
257 }
258 else if (IdxVT.bitsGT(PtrVT)) {
259 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::TRUNCATE,
260 IdxN, IdxNIsKill);
261 IdxNIsKill = true;
262 }
263 return std::pair<unsigned, bool>(IdxN, IdxNIsKill);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000264}
265
Dan Gohmanbdedd442008-08-20 00:11:48 +0000266/// SelectBinaryOp - Select and emit code for a binary operator instruction,
267/// which has an opcode which directly corresponds to the given ISD opcode.
268///
Dan Gohman46510a72010-04-15 01:51:59 +0000269bool FastISel::SelectBinaryOp(const User *I, unsigned ISDOpcode) {
Owen Andersone50ed302009-08-10 22:56:29 +0000270 EVT VT = EVT::getEVT(I->getType(), /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +0000271 if (VT == MVT::Other || !VT.isSimple())
Dan Gohmanbdedd442008-08-20 00:11:48 +0000272 // Unhandled type. Halt "fast" selection and bail.
273 return false;
Dan Gohman638c6832008-09-05 18:44:22 +0000274
Dan Gohmanb71fea22008-08-26 20:52:40 +0000275 // We only handle legal types. For example, on x86-32 the instruction
276 // selector contains all of the 64-bit instructions from x86-64,
277 // under the assumption that i64 won't be used if the target doesn't
278 // support it.
Dan Gohman638c6832008-09-05 18:44:22 +0000279 if (!TLI.isTypeLegal(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000280 // MVT::i1 is special. Allow AND, OR, or XOR because they
Dan Gohman638c6832008-09-05 18:44:22 +0000281 // don't require additional zeroing, which makes them easy.
Owen Anderson825b72b2009-08-11 20:47:22 +0000282 if (VT == MVT::i1 &&
Dan Gohman5dd9c2e2008-09-25 17:22:52 +0000283 (ISDOpcode == ISD::AND || ISDOpcode == ISD::OR ||
284 ISDOpcode == ISD::XOR))
Owen Anderson23b9b192009-08-12 00:36:31 +0000285 VT = TLI.getTypeToTransformTo(I->getContext(), VT);
Dan Gohman638c6832008-09-05 18:44:22 +0000286 else
287 return false;
288 }
Dan Gohmanbdedd442008-08-20 00:11:48 +0000289
Dan Gohman3df24e62008-09-03 23:12:08 +0000290 unsigned Op0 = getRegForValue(I->getOperand(0));
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000291 if (Op0 == 0)
292 // Unhandled operand. Halt "fast" selection and bail.
293 return false;
294
Dan Gohmana6cb6412010-05-11 23:54:07 +0000295 bool Op0IsKill = hasTrivialKill(I->getOperand(0));
296
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000297 // Check if the second operand is a constant and handle it appropriately.
298 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
Dan Gohmanad368ac2008-08-27 18:10:19 +0000299 unsigned ResultReg = FastEmit_ri(VT.getSimpleVT(), VT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000300 ISDOpcode, Op0, Op0IsKill,
301 CI->getZExtValue());
Dan Gohmanad368ac2008-08-27 18:10:19 +0000302 if (ResultReg != 0) {
303 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000304 UpdateValueMap(I, ResultReg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000305 return true;
306 }
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000307 }
308
Dan Gohman10df0fa2008-08-27 01:09:54 +0000309 // Check if the second operand is a constant float.
310 if (ConstantFP *CF = dyn_cast<ConstantFP>(I->getOperand(1))) {
Dan Gohmanad368ac2008-08-27 18:10:19 +0000311 unsigned ResultReg = FastEmit_rf(VT.getSimpleVT(), VT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000312 ISDOpcode, Op0, Op0IsKill, CF);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000313 if (ResultReg != 0) {
314 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000315 UpdateValueMap(I, ResultReg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000316 return true;
317 }
Dan Gohman10df0fa2008-08-27 01:09:54 +0000318 }
319
Dan Gohman3df24e62008-09-03 23:12:08 +0000320 unsigned Op1 = getRegForValue(I->getOperand(1));
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000321 if (Op1 == 0)
322 // Unhandled operand. Halt "fast" selection and bail.
323 return false;
324
Dan Gohmana6cb6412010-05-11 23:54:07 +0000325 bool Op1IsKill = hasTrivialKill(I->getOperand(1));
326
Dan Gohmanad368ac2008-08-27 18:10:19 +0000327 // Now we have both operands in registers. Emit the instruction.
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000328 unsigned ResultReg = FastEmit_rr(VT.getSimpleVT(), VT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000329 ISDOpcode,
330 Op0, Op0IsKill,
331 Op1, Op1IsKill);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000332 if (ResultReg == 0)
333 // Target-specific code wasn't able to find a machine opcode for
334 // the given ISD opcode and type. Halt "fast" selection and bail.
335 return false;
336
Dan Gohman8014e862008-08-20 00:23:20 +0000337 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000338 UpdateValueMap(I, ResultReg);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000339 return true;
340}
341
Dan Gohman46510a72010-04-15 01:51:59 +0000342bool FastISel::SelectGetElementPtr(const User *I) {
Dan Gohman3df24e62008-09-03 23:12:08 +0000343 unsigned N = getRegForValue(I->getOperand(0));
Evan Cheng83785c82008-08-20 22:45:34 +0000344 if (N == 0)
345 // Unhandled operand. Halt "fast" selection and bail.
346 return false;
347
Dan Gohmana6cb6412010-05-11 23:54:07 +0000348 bool NIsKill = hasTrivialKill(I->getOperand(0));
349
Evan Cheng83785c82008-08-20 22:45:34 +0000350 const Type *Ty = I->getOperand(0)->getType();
Owen Anderson825b72b2009-08-11 20:47:22 +0000351 MVT VT = TLI.getPointerTy();
Dan Gohman46510a72010-04-15 01:51:59 +0000352 for (GetElementPtrInst::const_op_iterator OI = I->op_begin()+1,
353 E = I->op_end(); OI != E; ++OI) {
354 const Value *Idx = *OI;
Evan Cheng83785c82008-08-20 22:45:34 +0000355 if (const StructType *StTy = dyn_cast<StructType>(Ty)) {
356 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
357 if (Field) {
358 // N = N + Offset
359 uint64_t Offs = TD.getStructLayout(StTy)->getElementOffset(Field);
360 // FIXME: This can be optimized by combining the add with a
361 // subsequent one.
Dan Gohmana6cb6412010-05-11 23:54:07 +0000362 N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, Offs, VT);
Evan Cheng83785c82008-08-20 22:45:34 +0000363 if (N == 0)
364 // Unhandled operand. Halt "fast" selection and bail.
365 return false;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000366 NIsKill = true;
Evan Cheng83785c82008-08-20 22:45:34 +0000367 }
368 Ty = StTy->getElementType(Field);
369 } else {
370 Ty = cast<SequentialType>(Ty)->getElementType();
371
372 // If this is a constant subscript, handle it quickly.
Dan Gohman46510a72010-04-15 01:51:59 +0000373 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Dan Gohmane368b462010-06-18 14:22:04 +0000374 if (CI->isZero()) continue;
Evan Cheng83785c82008-08-20 22:45:34 +0000375 uint64_t Offs =
Duncan Sands777d2302009-05-09 07:06:46 +0000376 TD.getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Dan Gohmana6cb6412010-05-11 23:54:07 +0000377 N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, Offs, VT);
Evan Cheng83785c82008-08-20 22:45:34 +0000378 if (N == 0)
379 // Unhandled operand. Halt "fast" selection and bail.
380 return false;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000381 NIsKill = true;
Evan Cheng83785c82008-08-20 22:45:34 +0000382 continue;
383 }
384
385 // N = N + Idx * ElementSize;
Duncan Sands777d2302009-05-09 07:06:46 +0000386 uint64_t ElementSize = TD.getTypeAllocSize(Ty);
Dan Gohmana6cb6412010-05-11 23:54:07 +0000387 std::pair<unsigned, bool> Pair = getRegForGEPIndex(Idx);
388 unsigned IdxN = Pair.first;
389 bool IdxNIsKill = Pair.second;
Evan Cheng83785c82008-08-20 22:45:34 +0000390 if (IdxN == 0)
391 // Unhandled operand. Halt "fast" selection and bail.
392 return false;
393
Dan Gohman80bc6e22008-08-26 20:57:08 +0000394 if (ElementSize != 1) {
Dan Gohmana6cb6412010-05-11 23:54:07 +0000395 IdxN = FastEmit_ri_(VT, ISD::MUL, IdxN, IdxNIsKill, ElementSize, VT);
Dan Gohman80bc6e22008-08-26 20:57:08 +0000396 if (IdxN == 0)
397 // Unhandled operand. Halt "fast" selection and bail.
398 return false;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000399 IdxNIsKill = true;
Dan Gohman80bc6e22008-08-26 20:57:08 +0000400 }
Dan Gohmana6cb6412010-05-11 23:54:07 +0000401 N = FastEmit_rr(VT, VT, ISD::ADD, N, NIsKill, IdxN, IdxNIsKill);
Evan Cheng83785c82008-08-20 22:45:34 +0000402 if (N == 0)
403 // Unhandled operand. Halt "fast" selection and bail.
404 return false;
405 }
406 }
407
408 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000409 UpdateValueMap(I, N);
Evan Cheng83785c82008-08-20 22:45:34 +0000410 return true;
Dan Gohmanbdedd442008-08-20 00:11:48 +0000411}
412
Dan Gohman46510a72010-04-15 01:51:59 +0000413bool FastISel::SelectCall(const User *I) {
414 const Function *F = cast<CallInst>(I)->getCalledFunction();
Dan Gohman33134c42008-09-25 17:05:24 +0000415 if (!F) return false;
416
Dan Gohman4183e312010-04-13 17:07:06 +0000417 // Handle selected intrinsic function calls.
Dan Gohman33134c42008-09-25 17:05:24 +0000418 unsigned IID = F->getIntrinsicID();
419 switch (IID) {
420 default: break;
Bill Wendling92c1e122009-02-13 02:16:35 +0000421 case Intrinsic::dbg_declare: {
Dan Gohman46510a72010-04-15 01:51:59 +0000422 const DbgDeclareInst *DI = cast<DbgDeclareInst>(I);
Devang Patel02f0dbd2010-05-07 22:04:20 +0000423 if (!DIVariable(DI->getVariable()).Verify() ||
Dan Gohmana4160c32010-07-07 16:29:44 +0000424 !FuncInfo.MF->getMMI().hasDebugInfo())
Devang Patel7e1e31f2009-07-02 22:43:26 +0000425 return true;
426
Dan Gohman46510a72010-04-15 01:51:59 +0000427 const Value *Address = DI->getAddress();
Dale Johannesendc918562010-02-06 02:26:02 +0000428 if (!Address)
429 return true;
Dale Johannesen343b42e2010-04-07 01:15:14 +0000430 if (isa<UndefValue>(Address))
431 return true;
Dan Gohman46510a72010-04-15 01:51:59 +0000432 const AllocaInst *AI = dyn_cast<AllocaInst>(Address);
Devang Patel7e1e31f2009-07-02 22:43:26 +0000433 // Don't handle byval struct arguments or VLAs, for example.
Dale Johannesen7dc78402010-04-25 21:03:54 +0000434 // Note that if we have a byval struct argument, fast ISel is turned off;
435 // those are handled in SelectionDAGBuilder.
Devang Patel54fc4d62010-04-28 19:27:33 +0000436 if (AI) {
437 DenseMap<const AllocaInst*, int>::iterator SI =
Dan Gohmana4160c32010-07-07 16:29:44 +0000438 FuncInfo.StaticAllocaMap.find(AI);
439 if (SI == FuncInfo.StaticAllocaMap.end()) break; // VLAs.
Devang Patel54fc4d62010-04-28 19:27:33 +0000440 int FI = SI->second;
441 if (!DI->getDebugLoc().isUnknown())
Dan Gohmana4160c32010-07-07 16:29:44 +0000442 FuncInfo.MF->getMMI().setVariableDbgInfo(DI->getVariable(),
443 FI, DI->getDebugLoc());
Devang Patel54fc4d62010-04-28 19:27:33 +0000444 } else
445 // Building the map above is target independent. Generating DBG_VALUE
446 // inline is target dependent; do this now.
447 (void)TargetSelectInstruction(cast<Instruction>(I));
Dan Gohman33134c42008-09-25 17:05:24 +0000448 return true;
Bill Wendling92c1e122009-02-13 02:16:35 +0000449 }
Dale Johannesen45df7612010-02-26 20:01:55 +0000450 case Intrinsic::dbg_value: {
Dale Johannesen343b42e2010-04-07 01:15:14 +0000451 // This form of DBG_VALUE is target-independent.
Dan Gohman46510a72010-04-15 01:51:59 +0000452 const DbgValueInst *DI = cast<DbgValueInst>(I);
Dale Johannesen45df7612010-02-26 20:01:55 +0000453 const TargetInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE);
Dan Gohman46510a72010-04-15 01:51:59 +0000454 const Value *V = DI->getValue();
Dale Johannesen45df7612010-02-26 20:01:55 +0000455 if (!V) {
456 // Currently the optimizer can produce this; insert an undef to
457 // help debugging. Probably the optimizer should not do this.
Dan Gohmaneabaed22010-07-07 16:47:08 +0000458 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
459 .addReg(0U).addImm(DI->getOffset())
460 .addMetadata(DI->getVariable());
Dan Gohman46510a72010-04-15 01:51:59 +0000461 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Dan Gohmaneabaed22010-07-07 16:47:08 +0000462 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
463 .addImm(CI->getZExtValue()).addImm(DI->getOffset())
464 .addMetadata(DI->getVariable());
Dan Gohman46510a72010-04-15 01:51:59 +0000465 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Dan Gohmaneabaed22010-07-07 16:47:08 +0000466 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
467 .addFPImm(CF).addImm(DI->getOffset())
468 .addMetadata(DI->getVariable());
Dale Johannesen45df7612010-02-26 20:01:55 +0000469 } else if (unsigned Reg = lookUpRegForValue(V)) {
Dan Gohmaneabaed22010-07-07 16:47:08 +0000470 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
471 .addReg(Reg, RegState::Debug).addImm(DI->getOffset())
472 .addMetadata(DI->getVariable());
Dale Johannesen45df7612010-02-26 20:01:55 +0000473 } else {
474 // We can't yet handle anything else here because it would require
475 // generating code, thus altering codegen because of debug info.
476 // Insert an undef so we can see what we dropped.
Dan Gohmaneabaed22010-07-07 16:47:08 +0000477 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
478 .addReg(0U).addImm(DI->getOffset())
479 .addMetadata(DI->getVariable());
Dale Johannesen45df7612010-02-26 20:01:55 +0000480 }
481 return true;
482 }
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000483 case Intrinsic::eh_exception: {
Owen Andersone50ed302009-08-10 22:56:29 +0000484 EVT VT = TLI.getValueType(I->getType());
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000485 switch (TLI.getOperationAction(ISD::EXCEPTIONADDR, VT)) {
486 default: break;
487 case TargetLowering::Expand: {
Dan Gohmaneabaed22010-07-07 16:47:08 +0000488 assert(FuncInfo.MBB->isLandingPad() &&
489 "Call to eh.exception not in landing pad!");
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000490 unsigned Reg = TLI.getExceptionAddressRegister();
491 const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
492 unsigned ResultReg = createResultReg(RC);
Dan Gohmaneabaed22010-07-07 16:47:08 +0000493 bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt,
494 ResultReg, Reg, RC, RC, DL);
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000495 assert(InsertedCopy && "Can't copy address registers!");
Evan Cheng24ac4082008-11-24 07:09:49 +0000496 InsertedCopy = InsertedCopy;
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000497 UpdateValueMap(I, ResultReg);
498 return true;
499 }
500 }
501 break;
502 }
Duncan Sandsb01bbdc2009-10-14 16:11:37 +0000503 case Intrinsic::eh_selector: {
Owen Andersone50ed302009-08-10 22:56:29 +0000504 EVT VT = TLI.getValueType(I->getType());
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000505 switch (TLI.getOperationAction(ISD::EHSELECTION, VT)) {
506 default: break;
507 case TargetLowering::Expand: {
Dan Gohmaneabaed22010-07-07 16:47:08 +0000508 if (FuncInfo.MBB->isLandingPad())
509 AddCatchInfo(*cast<CallInst>(I), &FuncInfo.MF->getMMI(), FuncInfo.MBB);
Chris Lattnered3a8062010-04-05 06:05:26 +0000510 else {
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000511#ifndef NDEBUG
Dan Gohmana4160c32010-07-07 16:29:44 +0000512 FuncInfo.CatchInfoLost.insert(cast<CallInst>(I));
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000513#endif
Chris Lattnered3a8062010-04-05 06:05:26 +0000514 // FIXME: Mark exception selector register as live in. Hack for PR1508.
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000515 unsigned Reg = TLI.getExceptionSelectorRegister();
Dan Gohmaneabaed22010-07-07 16:47:08 +0000516 if (Reg) FuncInfo.MBB->addLiveIn(Reg);
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000517 }
Chris Lattnered3a8062010-04-05 06:05:26 +0000518
519 unsigned Reg = TLI.getExceptionSelectorRegister();
520 EVT SrcVT = TLI.getPointerTy();
521 const TargetRegisterClass *RC = TLI.getRegClassFor(SrcVT);
522 unsigned ResultReg = createResultReg(RC);
Dan Gohmaneabaed22010-07-07 16:47:08 +0000523 bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt,
524 ResultReg, Reg, RC, RC, DL);
Chris Lattnered3a8062010-04-05 06:05:26 +0000525 assert(InsertedCopy && "Can't copy address registers!");
526 InsertedCopy = InsertedCopy;
527
Dan Gohmana6cb6412010-05-11 23:54:07 +0000528 bool ResultRegIsKill = hasTrivialKill(I);
529
Chris Lattnered3a8062010-04-05 06:05:26 +0000530 // Cast the register to the type of the selector.
531 if (SrcVT.bitsGT(MVT::i32))
532 ResultReg = FastEmit_r(SrcVT.getSimpleVT(), MVT::i32, ISD::TRUNCATE,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000533 ResultReg, ResultRegIsKill);
Chris Lattnered3a8062010-04-05 06:05:26 +0000534 else if (SrcVT.bitsLT(MVT::i32))
535 ResultReg = FastEmit_r(SrcVT.getSimpleVT(), MVT::i32,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000536 ISD::SIGN_EXTEND, ResultReg, ResultRegIsKill);
Chris Lattnered3a8062010-04-05 06:05:26 +0000537 if (ResultReg == 0)
538 // Unhandled operand. Halt "fast" selection and bail.
539 return false;
540
541 UpdateValueMap(I, ResultReg);
542
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000543 return true;
544 }
545 }
546 break;
547 }
Dan Gohman33134c42008-09-25 17:05:24 +0000548 }
Dan Gohman4183e312010-04-13 17:07:06 +0000549
550 // An arbitrary call. Bail.
Dan Gohman33134c42008-09-25 17:05:24 +0000551 return false;
552}
553
Dan Gohman46510a72010-04-15 01:51:59 +0000554bool FastISel::SelectCast(const User *I, unsigned Opcode) {
Owen Andersone50ed302009-08-10 22:56:29 +0000555 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
556 EVT DstVT = TLI.getValueType(I->getType());
Owen Andersond0533c92008-08-26 23:46:32 +0000557
Owen Anderson825b72b2009-08-11 20:47:22 +0000558 if (SrcVT == MVT::Other || !SrcVT.isSimple() ||
559 DstVT == MVT::Other || !DstVT.isSimple())
Owen Andersond0533c92008-08-26 23:46:32 +0000560 // Unhandled type. Halt "fast" selection and bail.
561 return false;
562
Dan Gohman474d3b32009-03-13 23:53:06 +0000563 // Check if the destination type is legal. Or as a special case,
564 // it may be i1 if we're doing a truncate because that's
565 // easy and somewhat common.
566 if (!TLI.isTypeLegal(DstVT))
Owen Anderson825b72b2009-08-11 20:47:22 +0000567 if (DstVT != MVT::i1 || Opcode != ISD::TRUNCATE)
Dan Gohman91b6f972008-10-03 01:28:47 +0000568 // Unhandled type. Halt "fast" selection and bail.
569 return false;
Dan Gohman474d3b32009-03-13 23:53:06 +0000570
571 // Check if the source operand is legal. Or as a special case,
572 // it may be i1 if we're doing zero-extension because that's
573 // easy and somewhat common.
574 if (!TLI.isTypeLegal(SrcVT))
Owen Anderson825b72b2009-08-11 20:47:22 +0000575 if (SrcVT != MVT::i1 || Opcode != ISD::ZERO_EXTEND)
Dan Gohman474d3b32009-03-13 23:53:06 +0000576 // Unhandled type. Halt "fast" selection and bail.
577 return false;
578
Dan Gohman3df24e62008-09-03 23:12:08 +0000579 unsigned InputReg = getRegForValue(I->getOperand(0));
Owen Andersond0533c92008-08-26 23:46:32 +0000580 if (!InputReg)
581 // Unhandled operand. Halt "fast" selection and bail.
582 return false;
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000583
Dan Gohmana6cb6412010-05-11 23:54:07 +0000584 bool InputRegIsKill = hasTrivialKill(I->getOperand(0));
585
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000586 // If the operand is i1, arrange for the high bits in the register to be zero.
Owen Anderson825b72b2009-08-11 20:47:22 +0000587 if (SrcVT == MVT::i1) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000588 SrcVT = TLI.getTypeToTransformTo(I->getContext(), SrcVT);
Dan Gohmana6cb6412010-05-11 23:54:07 +0000589 InputReg = FastEmitZExtFromI1(SrcVT.getSimpleVT(), InputReg, InputRegIsKill);
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000590 if (!InputReg)
591 return false;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000592 InputRegIsKill = true;
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000593 }
Dan Gohman474d3b32009-03-13 23:53:06 +0000594 // If the result is i1, truncate to the target's type for i1 first.
Owen Anderson825b72b2009-08-11 20:47:22 +0000595 if (DstVT == MVT::i1)
Owen Anderson23b9b192009-08-12 00:36:31 +0000596 DstVT = TLI.getTypeToTransformTo(I->getContext(), DstVT);
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000597
Owen Andersond0533c92008-08-26 23:46:32 +0000598 unsigned ResultReg = FastEmit_r(SrcVT.getSimpleVT(),
599 DstVT.getSimpleVT(),
600 Opcode,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000601 InputReg, InputRegIsKill);
Owen Andersond0533c92008-08-26 23:46:32 +0000602 if (!ResultReg)
603 return false;
604
Dan Gohman3df24e62008-09-03 23:12:08 +0000605 UpdateValueMap(I, ResultReg);
Owen Andersond0533c92008-08-26 23:46:32 +0000606 return true;
607}
608
Dan Gohman46510a72010-04-15 01:51:59 +0000609bool FastISel::SelectBitCast(const User *I) {
Dan Gohmanad368ac2008-08-27 18:10:19 +0000610 // If the bitcast doesn't change the type, just use the operand value.
611 if (I->getType() == I->getOperand(0)->getType()) {
Dan Gohman3df24e62008-09-03 23:12:08 +0000612 unsigned Reg = getRegForValue(I->getOperand(0));
Dan Gohmana318dab2008-08-27 20:41:38 +0000613 if (Reg == 0)
614 return false;
Dan Gohman3df24e62008-09-03 23:12:08 +0000615 UpdateValueMap(I, Reg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000616 return true;
617 }
618
619 // Bitcasts of other values become reg-reg copies or BIT_CONVERT operators.
Owen Andersone50ed302009-08-10 22:56:29 +0000620 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
621 EVT DstVT = TLI.getValueType(I->getType());
Owen Andersond0533c92008-08-26 23:46:32 +0000622
Owen Anderson825b72b2009-08-11 20:47:22 +0000623 if (SrcVT == MVT::Other || !SrcVT.isSimple() ||
624 DstVT == MVT::Other || !DstVT.isSimple() ||
Owen Andersond0533c92008-08-26 23:46:32 +0000625 !TLI.isTypeLegal(SrcVT) || !TLI.isTypeLegal(DstVT))
626 // Unhandled type. Halt "fast" selection and bail.
627 return false;
628
Dan Gohman3df24e62008-09-03 23:12:08 +0000629 unsigned Op0 = getRegForValue(I->getOperand(0));
Dan Gohmanad368ac2008-08-27 18:10:19 +0000630 if (Op0 == 0)
631 // Unhandled operand. Halt "fast" selection and bail.
Owen Andersond0533c92008-08-26 23:46:32 +0000632 return false;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000633
634 bool Op0IsKill = hasTrivialKill(I->getOperand(0));
Owen Andersond0533c92008-08-26 23:46:32 +0000635
Dan Gohmanad368ac2008-08-27 18:10:19 +0000636 // First, try to perform the bitcast by inserting a reg-reg copy.
637 unsigned ResultReg = 0;
638 if (SrcVT.getSimpleVT() == DstVT.getSimpleVT()) {
639 TargetRegisterClass* SrcClass = TLI.getRegClassFor(SrcVT);
640 TargetRegisterClass* DstClass = TLI.getRegClassFor(DstVT);
641 ResultReg = createResultReg(DstClass);
642
Dan Gohmaneabaed22010-07-07 16:47:08 +0000643 bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt,
644 ResultReg, Op0,
645 DstClass, SrcClass, DL);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000646 if (!InsertedCopy)
647 ResultReg = 0;
648 }
649
650 // If the reg-reg copy failed, select a BIT_CONVERT opcode.
651 if (!ResultReg)
652 ResultReg = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000653 ISD::BIT_CONVERT, Op0, Op0IsKill);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000654
655 if (!ResultReg)
Owen Andersond0533c92008-08-26 23:46:32 +0000656 return false;
657
Dan Gohman3df24e62008-09-03 23:12:08 +0000658 UpdateValueMap(I, ResultReg);
Owen Andersond0533c92008-08-26 23:46:32 +0000659 return true;
660}
661
Dan Gohman3df24e62008-09-03 23:12:08 +0000662bool
Dan Gohman46510a72010-04-15 01:51:59 +0000663FastISel::SelectInstruction(const Instruction *I) {
Dan Gohmane8c92dd2010-04-23 15:29:50 +0000664 // Just before the terminator instruction, insert instructions to
665 // feed PHI nodes in successor blocks.
666 if (isa<TerminatorInst>(I))
667 if (!HandlePHINodesInSuccessorBlocks(I->getParent()))
668 return false;
669
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000670 DL = I->getDebugLoc();
671
Dan Gohman6e3ff372009-12-05 01:27:58 +0000672 // First, try doing target-independent selection.
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000673 if (SelectOperator(I, I->getOpcode())) {
674 DL = DebugLoc();
Dan Gohman6e3ff372009-12-05 01:27:58 +0000675 return true;
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000676 }
Dan Gohman6e3ff372009-12-05 01:27:58 +0000677
678 // Next, try calling the target to attempt to handle the instruction.
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000679 if (TargetSelectInstruction(I)) {
680 DL = DebugLoc();
Dan Gohman6e3ff372009-12-05 01:27:58 +0000681 return true;
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000682 }
Dan Gohman6e3ff372009-12-05 01:27:58 +0000683
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000684 DL = DebugLoc();
Dan Gohman6e3ff372009-12-05 01:27:58 +0000685 return false;
Dan Gohman40b189e2008-09-05 18:18:20 +0000686}
687
Dan Gohmand98d6202008-10-02 22:15:21 +0000688/// FastEmitBranch - Emit an unconditional branch to the given block,
689/// unless it is the immediate (fall-through) successor, and update
690/// the CFG.
691void
Stuart Hastings3bf91252010-06-17 22:43:56 +0000692FastISel::FastEmitBranch(MachineBasicBlock *MSucc, DebugLoc DL) {
Dan Gohmaneabaed22010-07-07 16:47:08 +0000693 if (FuncInfo.MBB->isLayoutSuccessor(MSucc)) {
Dan Gohmand98d6202008-10-02 22:15:21 +0000694 // The unconditional fall-through case, which needs no instructions.
695 } else {
696 // The unconditional branch case.
Dan Gohmaneabaed22010-07-07 16:47:08 +0000697 TII.InsertBranch(*FuncInfo.MBB, MSucc, NULL,
698 SmallVector<MachineOperand, 0>(), DL);
Dan Gohmand98d6202008-10-02 22:15:21 +0000699 }
Dan Gohmaneabaed22010-07-07 16:47:08 +0000700 FuncInfo.MBB->addSuccessor(MSucc);
Dan Gohmand98d6202008-10-02 22:15:21 +0000701}
702
Dan Gohman3d45a852009-09-03 22:53:57 +0000703/// SelectFNeg - Emit an FNeg operation.
704///
705bool
Dan Gohman46510a72010-04-15 01:51:59 +0000706FastISel::SelectFNeg(const User *I) {
Dan Gohman3d45a852009-09-03 22:53:57 +0000707 unsigned OpReg = getRegForValue(BinaryOperator::getFNegArgument(I));
708 if (OpReg == 0) return false;
709
Dan Gohmana6cb6412010-05-11 23:54:07 +0000710 bool OpRegIsKill = hasTrivialKill(I);
711
Dan Gohman4a215a12009-09-11 00:36:43 +0000712 // If the target has ISD::FNEG, use it.
713 EVT VT = TLI.getValueType(I->getType());
714 unsigned ResultReg = FastEmit_r(VT.getSimpleVT(), VT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000715 ISD::FNEG, OpReg, OpRegIsKill);
Dan Gohman4a215a12009-09-11 00:36:43 +0000716 if (ResultReg != 0) {
717 UpdateValueMap(I, ResultReg);
718 return true;
719 }
720
Dan Gohman5e5abb72009-09-11 00:34:46 +0000721 // Bitcast the value to integer, twiddle the sign bit with xor,
722 // and then bitcast it back to floating-point.
Dan Gohman3d45a852009-09-03 22:53:57 +0000723 if (VT.getSizeInBits() > 64) return false;
Dan Gohman5e5abb72009-09-11 00:34:46 +0000724 EVT IntVT = EVT::getIntegerVT(I->getContext(), VT.getSizeInBits());
725 if (!TLI.isTypeLegal(IntVT))
726 return false;
727
728 unsigned IntReg = FastEmit_r(VT.getSimpleVT(), IntVT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000729 ISD::BIT_CONVERT, OpReg, OpRegIsKill);
Dan Gohman5e5abb72009-09-11 00:34:46 +0000730 if (IntReg == 0)
731 return false;
732
Dan Gohmana6cb6412010-05-11 23:54:07 +0000733 unsigned IntResultReg = FastEmit_ri_(IntVT.getSimpleVT(), ISD::XOR,
734 IntReg, /*Kill=*/true,
Dan Gohman5e5abb72009-09-11 00:34:46 +0000735 UINT64_C(1) << (VT.getSizeInBits()-1),
736 IntVT.getSimpleVT());
737 if (IntResultReg == 0)
738 return false;
739
740 ResultReg = FastEmit_r(IntVT.getSimpleVT(), VT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000741 ISD::BIT_CONVERT, IntResultReg, /*Kill=*/true);
Dan Gohman3d45a852009-09-03 22:53:57 +0000742 if (ResultReg == 0)
743 return false;
744
745 UpdateValueMap(I, ResultReg);
746 return true;
747}
748
Dan Gohman40b189e2008-09-05 18:18:20 +0000749bool
Dan Gohman7fbcc982010-07-01 03:49:38 +0000750FastISel::SelectLoad(const User *I) {
751 LoadInst *LI = const_cast<LoadInst *>(cast<LoadInst>(I));
752
753 // For a load from an alloca, make a limited effort to find the value
754 // already available in a register, avoiding redundant loads.
755 if (!LI->isVolatile() && isa<AllocaInst>(LI->getPointerOperand())) {
756 BasicBlock::iterator ScanFrom = LI;
757 if (const Value *V = FindAvailableLoadedValue(LI->getPointerOperand(),
758 LI->getParent(), ScanFrom)) {
Dan Gohman4df83ed2010-07-07 19:20:32 +0000759 if (!isa<Instruction>(V) ||
760 cast<Instruction>(V)->getParent() == LI->getParent() ||
761 (isa<AllocaInst>(V) && FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V)))) {
Dan Gohman7fbcc982010-07-01 03:49:38 +0000762 unsigned ResultReg = getRegForValue(V);
763 if (ResultReg != 0) {
764 UpdateValueMap(I, ResultReg);
765 return true;
766 }
Dan Gohman4df83ed2010-07-07 19:20:32 +0000767 }
Dan Gohman7fbcc982010-07-01 03:49:38 +0000768 }
769 }
770
771 return false;
772}
773
774bool
Dan Gohman46510a72010-04-15 01:51:59 +0000775FastISel::SelectOperator(const User *I, unsigned Opcode) {
Dan Gohman40b189e2008-09-05 18:18:20 +0000776 switch (Opcode) {
Dan Gohman7fbcc982010-07-01 03:49:38 +0000777 case Instruction::Load:
778 return SelectLoad(I);
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000779 case Instruction::Add:
780 return SelectBinaryOp(I, ISD::ADD);
781 case Instruction::FAdd:
782 return SelectBinaryOp(I, ISD::FADD);
783 case Instruction::Sub:
784 return SelectBinaryOp(I, ISD::SUB);
785 case Instruction::FSub:
Dan Gohman3d45a852009-09-03 22:53:57 +0000786 // FNeg is currently represented in LLVM IR as a special case of FSub.
787 if (BinaryOperator::isFNeg(I))
788 return SelectFNeg(I);
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000789 return SelectBinaryOp(I, ISD::FSUB);
790 case Instruction::Mul:
791 return SelectBinaryOp(I, ISD::MUL);
792 case Instruction::FMul:
793 return SelectBinaryOp(I, ISD::FMUL);
Dan Gohman3df24e62008-09-03 23:12:08 +0000794 case Instruction::SDiv:
795 return SelectBinaryOp(I, ISD::SDIV);
796 case Instruction::UDiv:
797 return SelectBinaryOp(I, ISD::UDIV);
798 case Instruction::FDiv:
799 return SelectBinaryOp(I, ISD::FDIV);
800 case Instruction::SRem:
801 return SelectBinaryOp(I, ISD::SREM);
802 case Instruction::URem:
803 return SelectBinaryOp(I, ISD::UREM);
804 case Instruction::FRem:
805 return SelectBinaryOp(I, ISD::FREM);
806 case Instruction::Shl:
807 return SelectBinaryOp(I, ISD::SHL);
808 case Instruction::LShr:
809 return SelectBinaryOp(I, ISD::SRL);
810 case Instruction::AShr:
811 return SelectBinaryOp(I, ISD::SRA);
812 case Instruction::And:
813 return SelectBinaryOp(I, ISD::AND);
814 case Instruction::Or:
815 return SelectBinaryOp(I, ISD::OR);
816 case Instruction::Xor:
817 return SelectBinaryOp(I, ISD::XOR);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000818
Dan Gohman3df24e62008-09-03 23:12:08 +0000819 case Instruction::GetElementPtr:
820 return SelectGetElementPtr(I);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000821
Dan Gohman3df24e62008-09-03 23:12:08 +0000822 case Instruction::Br: {
Dan Gohman46510a72010-04-15 01:51:59 +0000823 const BranchInst *BI = cast<BranchInst>(I);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000824
Dan Gohman3df24e62008-09-03 23:12:08 +0000825 if (BI->isUnconditional()) {
Dan Gohman46510a72010-04-15 01:51:59 +0000826 const BasicBlock *LLVMSucc = BI->getSuccessor(0);
Dan Gohmana4160c32010-07-07 16:29:44 +0000827 MachineBasicBlock *MSucc = FuncInfo.MBBMap[LLVMSucc];
Stuart Hastings3bf91252010-06-17 22:43:56 +0000828 FastEmitBranch(MSucc, BI->getDebugLoc());
Dan Gohman3df24e62008-09-03 23:12:08 +0000829 return true;
Owen Anderson9d5b4162008-08-27 00:31:01 +0000830 }
Dan Gohman3df24e62008-09-03 23:12:08 +0000831
832 // Conditional branches are not handed yet.
833 // Halt "fast" selection and bail.
834 return false;
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000835 }
836
Dan Gohman087c8502008-09-05 01:08:41 +0000837 case Instruction::Unreachable:
838 // Nothing to emit.
839 return true;
840
Dan Gohman0586d912008-09-10 20:11:02 +0000841 case Instruction::Alloca:
842 // FunctionLowering has the static-sized case covered.
Dan Gohmana4160c32010-07-07 16:29:44 +0000843 if (FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(I)))
Dan Gohman0586d912008-09-10 20:11:02 +0000844 return true;
845
846 // Dynamic-sized alloca is not handled yet.
847 return false;
Dan Gohman3df24e62008-09-03 23:12:08 +0000848
Dan Gohman33134c42008-09-25 17:05:24 +0000849 case Instruction::Call:
850 return SelectCall(I);
851
Dan Gohman3df24e62008-09-03 23:12:08 +0000852 case Instruction::BitCast:
853 return SelectBitCast(I);
854
855 case Instruction::FPToSI:
856 return SelectCast(I, ISD::FP_TO_SINT);
857 case Instruction::ZExt:
858 return SelectCast(I, ISD::ZERO_EXTEND);
859 case Instruction::SExt:
860 return SelectCast(I, ISD::SIGN_EXTEND);
861 case Instruction::Trunc:
862 return SelectCast(I, ISD::TRUNCATE);
863 case Instruction::SIToFP:
864 return SelectCast(I, ISD::SINT_TO_FP);
865
866 case Instruction::IntToPtr: // Deliberate fall-through.
867 case Instruction::PtrToInt: {
Owen Andersone50ed302009-08-10 22:56:29 +0000868 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
869 EVT DstVT = TLI.getValueType(I->getType());
Dan Gohman3df24e62008-09-03 23:12:08 +0000870 if (DstVT.bitsGT(SrcVT))
871 return SelectCast(I, ISD::ZERO_EXTEND);
872 if (DstVT.bitsLT(SrcVT))
873 return SelectCast(I, ISD::TRUNCATE);
874 unsigned Reg = getRegForValue(I->getOperand(0));
875 if (Reg == 0) return false;
876 UpdateValueMap(I, Reg);
877 return true;
878 }
Dan Gohmand57dd5f2008-09-23 21:53:34 +0000879
Dan Gohmanba5be5c2010-04-20 15:00:41 +0000880 case Instruction::PHI:
881 llvm_unreachable("FastISel shouldn't visit PHI nodes!");
882
Dan Gohman3df24e62008-09-03 23:12:08 +0000883 default:
884 // Unhandled instruction. Halt "fast" selection and bail.
885 return false;
886 }
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000887}
888
Dan Gohmana4160c32010-07-07 16:29:44 +0000889FastISel::FastISel(FunctionLoweringInfo &funcInfo)
Dan Gohmaneabaed22010-07-07 16:47:08 +0000890 : FuncInfo(funcInfo),
Dan Gohmana4160c32010-07-07 16:29:44 +0000891 MRI(FuncInfo.MF->getRegInfo()),
892 MFI(*FuncInfo.MF->getFrameInfo()),
893 MCP(*FuncInfo.MF->getConstantPool()),
894 TM(FuncInfo.MF->getTarget()),
Dan Gohman22bb3112008-08-22 00:20:26 +0000895 TD(*TM.getTargetData()),
896 TII(*TM.getInstrInfo()),
Dan Gohmana7a0ed72010-05-05 23:58:35 +0000897 TLI(*TM.getTargetLowering()),
Dan Gohman4df83ed2010-07-07 19:20:32 +0000898 TRI(*TM.getRegisterInfo()) {
Dan Gohmanbb466332008-08-20 21:05:57 +0000899}
900
Dan Gohmane285a742008-08-14 21:51:29 +0000901FastISel::~FastISel() {}
902
Owen Anderson825b72b2009-08-11 20:47:22 +0000903unsigned FastISel::FastEmit_(MVT, MVT,
Dan Gohman7c3ecb62010-01-05 22:26:32 +0000904 unsigned) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000905 return 0;
906}
907
Owen Anderson825b72b2009-08-11 20:47:22 +0000908unsigned FastISel::FastEmit_r(MVT, MVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000909 unsigned,
910 unsigned /*Op0*/, bool /*Op0IsKill*/) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000911 return 0;
912}
913
Owen Anderson825b72b2009-08-11 20:47:22 +0000914unsigned FastISel::FastEmit_rr(MVT, MVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000915 unsigned,
916 unsigned /*Op0*/, bool /*Op0IsKill*/,
917 unsigned /*Op1*/, bool /*Op1IsKill*/) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000918 return 0;
919}
920
Dan Gohman7c3ecb62010-01-05 22:26:32 +0000921unsigned FastISel::FastEmit_i(MVT, MVT, unsigned, uint64_t /*Imm*/) {
Evan Cheng83785c82008-08-20 22:45:34 +0000922 return 0;
923}
924
Owen Anderson825b72b2009-08-11 20:47:22 +0000925unsigned FastISel::FastEmit_f(MVT, MVT,
Dan Gohman46510a72010-04-15 01:51:59 +0000926 unsigned, const ConstantFP * /*FPImm*/) {
Dan Gohman10df0fa2008-08-27 01:09:54 +0000927 return 0;
928}
929
Owen Anderson825b72b2009-08-11 20:47:22 +0000930unsigned FastISel::FastEmit_ri(MVT, MVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000931 unsigned,
932 unsigned /*Op0*/, bool /*Op0IsKill*/,
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000933 uint64_t /*Imm*/) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000934 return 0;
935}
936
Owen Anderson825b72b2009-08-11 20:47:22 +0000937unsigned FastISel::FastEmit_rf(MVT, MVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000938 unsigned,
939 unsigned /*Op0*/, bool /*Op0IsKill*/,
Dan Gohman46510a72010-04-15 01:51:59 +0000940 const ConstantFP * /*FPImm*/) {
Dan Gohman10df0fa2008-08-27 01:09:54 +0000941 return 0;
942}
943
Owen Anderson825b72b2009-08-11 20:47:22 +0000944unsigned FastISel::FastEmit_rri(MVT, MVT,
Dan Gohman7c3ecb62010-01-05 22:26:32 +0000945 unsigned,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000946 unsigned /*Op0*/, bool /*Op0IsKill*/,
947 unsigned /*Op1*/, bool /*Op1IsKill*/,
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000948 uint64_t /*Imm*/) {
Evan Cheng83785c82008-08-20 22:45:34 +0000949 return 0;
950}
951
952/// FastEmit_ri_ - This method is a wrapper of FastEmit_ri. It first tries
953/// to emit an instruction with an immediate operand using FastEmit_ri.
954/// If that fails, it materializes the immediate into a register and try
955/// FastEmit_rr instead.
Dan Gohman7c3ecb62010-01-05 22:26:32 +0000956unsigned FastISel::FastEmit_ri_(MVT VT, unsigned Opcode,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000957 unsigned Op0, bool Op0IsKill,
958 uint64_t Imm, MVT ImmType) {
Evan Cheng83785c82008-08-20 22:45:34 +0000959 // First check if immediate type is legal. If not, we can't use the ri form.
Dan Gohmana6cb6412010-05-11 23:54:07 +0000960 unsigned ResultReg = FastEmit_ri(VT, VT, Opcode, Op0, Op0IsKill, Imm);
Evan Cheng83785c82008-08-20 22:45:34 +0000961 if (ResultReg != 0)
962 return ResultReg;
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000963 unsigned MaterialReg = FastEmit_i(ImmType, ImmType, ISD::Constant, Imm);
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000964 if (MaterialReg == 0)
965 return 0;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000966 return FastEmit_rr(VT, VT, Opcode,
967 Op0, Op0IsKill,
968 MaterialReg, /*Kill=*/true);
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000969}
970
Dan Gohman10df0fa2008-08-27 01:09:54 +0000971/// FastEmit_rf_ - This method is a wrapper of FastEmit_ri. It first tries
972/// to emit an instruction with a floating-point immediate operand using
973/// FastEmit_rf. If that fails, it materializes the immediate into a register
974/// and try FastEmit_rr instead.
Dan Gohman7c3ecb62010-01-05 22:26:32 +0000975unsigned FastISel::FastEmit_rf_(MVT VT, unsigned Opcode,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000976 unsigned Op0, bool Op0IsKill,
977 const ConstantFP *FPImm, MVT ImmType) {
Dan Gohman10df0fa2008-08-27 01:09:54 +0000978 // First check if immediate type is legal. If not, we can't use the rf form.
Dan Gohmana6cb6412010-05-11 23:54:07 +0000979 unsigned ResultReg = FastEmit_rf(VT, VT, Opcode, Op0, Op0IsKill, FPImm);
Dan Gohman10df0fa2008-08-27 01:09:54 +0000980 if (ResultReg != 0)
981 return ResultReg;
982
983 // Materialize the constant in a register.
984 unsigned MaterialReg = FastEmit_f(ImmType, ImmType, ISD::ConstantFP, FPImm);
985 if (MaterialReg == 0) {
Dan Gohman96a99992008-08-27 18:01:42 +0000986 // If the target doesn't have a way to directly enter a floating-point
987 // value into a register, use an alternate approach.
988 // TODO: The current approach only supports floating-point constants
989 // that can be constructed by conversion from integer values. This should
990 // be replaced by code that creates a load from a constant-pool entry,
991 // which will require some target-specific work.
Dan Gohman10df0fa2008-08-27 01:09:54 +0000992 const APFloat &Flt = FPImm->getValueAPF();
Owen Andersone50ed302009-08-10 22:56:29 +0000993 EVT IntVT = TLI.getPointerTy();
Dan Gohman10df0fa2008-08-27 01:09:54 +0000994
995 uint64_t x[2];
996 uint32_t IntBitWidth = IntVT.getSizeInBits();
Dale Johannesen23a98552008-10-09 23:00:39 +0000997 bool isExact;
998 (void) Flt.convertToInteger(x, IntBitWidth, /*isSigned=*/true,
999 APFloat::rmTowardZero, &isExact);
1000 if (!isExact)
Dan Gohman10df0fa2008-08-27 01:09:54 +00001001 return 0;
1002 APInt IntVal(IntBitWidth, 2, x);
1003
1004 unsigned IntegerReg = FastEmit_i(IntVT.getSimpleVT(), IntVT.getSimpleVT(),
1005 ISD::Constant, IntVal.getZExtValue());
1006 if (IntegerReg == 0)
1007 return 0;
1008 MaterialReg = FastEmit_r(IntVT.getSimpleVT(), VT,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001009 ISD::SINT_TO_FP, IntegerReg, /*Kill=*/true);
Dan Gohman10df0fa2008-08-27 01:09:54 +00001010 if (MaterialReg == 0)
1011 return 0;
1012 }
Dan Gohmana6cb6412010-05-11 23:54:07 +00001013 return FastEmit_rr(VT, VT, Opcode,
1014 Op0, Op0IsKill,
1015 MaterialReg, /*Kill=*/true);
Dan Gohman10df0fa2008-08-27 01:09:54 +00001016}
1017
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001018unsigned FastISel::createResultReg(const TargetRegisterClass* RC) {
1019 return MRI.createVirtualRegister(RC);
Evan Cheng83785c82008-08-20 22:45:34 +00001020}
1021
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001022unsigned FastISel::FastEmitInst_(unsigned MachineInstOpcode,
Dan Gohman77ad7962008-08-20 18:09:38 +00001023 const TargetRegisterClass* RC) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001024 unsigned ResultReg = createResultReg(RC);
Dan Gohmanbb466332008-08-20 21:05:57 +00001025 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001026
Dan Gohmaneabaed22010-07-07 16:47:08 +00001027 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001028 return ResultReg;
1029}
1030
1031unsigned FastISel::FastEmitInst_r(unsigned MachineInstOpcode,
1032 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001033 unsigned Op0, bool Op0IsKill) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001034 unsigned ResultReg = createResultReg(RC);
Dan Gohmanbb466332008-08-20 21:05:57 +00001035 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001036
Evan Cheng5960e4e2008-09-08 08:38:20 +00001037 if (II.getNumDefs() >= 1)
Dan Gohmaneabaed22010-07-07 16:47:08 +00001038 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
1039 .addReg(Op0, Op0IsKill * RegState::Kill);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001040 else {
Dan Gohmaneabaed22010-07-07 16:47:08 +00001041 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
1042 .addReg(Op0, Op0IsKill * RegState::Kill);
1043 bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt,
1044 ResultReg, II.ImplicitDefs[0],
1045 RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001046 if (!InsertedCopy)
1047 ResultReg = 0;
1048 }
1049
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001050 return ResultReg;
1051}
1052
1053unsigned FastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
1054 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001055 unsigned Op0, bool Op0IsKill,
1056 unsigned Op1, bool Op1IsKill) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001057 unsigned ResultReg = createResultReg(RC);
Dan Gohmanbb466332008-08-20 21:05:57 +00001058 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001059
Evan Cheng5960e4e2008-09-08 08:38:20 +00001060 if (II.getNumDefs() >= 1)
Dan Gohmaneabaed22010-07-07 16:47:08 +00001061 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001062 .addReg(Op0, Op0IsKill * RegState::Kill)
1063 .addReg(Op1, Op1IsKill * RegState::Kill);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001064 else {
Dan Gohmaneabaed22010-07-07 16:47:08 +00001065 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001066 .addReg(Op0, Op0IsKill * RegState::Kill)
1067 .addReg(Op1, Op1IsKill * RegState::Kill);
Dan Gohmaneabaed22010-07-07 16:47:08 +00001068 bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt,
1069 ResultReg, II.ImplicitDefs[0],
1070 RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001071 if (!InsertedCopy)
1072 ResultReg = 0;
1073 }
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001074 return ResultReg;
1075}
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001076
1077unsigned FastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
1078 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001079 unsigned Op0, bool Op0IsKill,
1080 uint64_t Imm) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001081 unsigned ResultReg = createResultReg(RC);
1082 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
1083
Evan Cheng5960e4e2008-09-08 08:38:20 +00001084 if (II.getNumDefs() >= 1)
Dan Gohmaneabaed22010-07-07 16:47:08 +00001085 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001086 .addReg(Op0, Op0IsKill * RegState::Kill)
1087 .addImm(Imm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001088 else {
Dan Gohmaneabaed22010-07-07 16:47:08 +00001089 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001090 .addReg(Op0, Op0IsKill * RegState::Kill)
1091 .addImm(Imm);
Dan Gohmaneabaed22010-07-07 16:47:08 +00001092 bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt,
1093 ResultReg, II.ImplicitDefs[0],
1094 RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001095 if (!InsertedCopy)
1096 ResultReg = 0;
1097 }
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001098 return ResultReg;
1099}
1100
Dan Gohman10df0fa2008-08-27 01:09:54 +00001101unsigned FastISel::FastEmitInst_rf(unsigned MachineInstOpcode,
1102 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001103 unsigned Op0, bool Op0IsKill,
1104 const ConstantFP *FPImm) {
Dan Gohman10df0fa2008-08-27 01:09:54 +00001105 unsigned ResultReg = createResultReg(RC);
1106 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
1107
Evan Cheng5960e4e2008-09-08 08:38:20 +00001108 if (II.getNumDefs() >= 1)
Dan Gohmaneabaed22010-07-07 16:47:08 +00001109 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001110 .addReg(Op0, Op0IsKill * RegState::Kill)
1111 .addFPImm(FPImm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001112 else {
Dan Gohmaneabaed22010-07-07 16:47:08 +00001113 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001114 .addReg(Op0, Op0IsKill * RegState::Kill)
1115 .addFPImm(FPImm);
Dan Gohmaneabaed22010-07-07 16:47:08 +00001116 bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt,
1117 ResultReg, II.ImplicitDefs[0],
1118 RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001119 if (!InsertedCopy)
1120 ResultReg = 0;
1121 }
Dan Gohman10df0fa2008-08-27 01:09:54 +00001122 return ResultReg;
1123}
1124
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001125unsigned FastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
1126 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001127 unsigned Op0, bool Op0IsKill,
1128 unsigned Op1, bool Op1IsKill,
1129 uint64_t Imm) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001130 unsigned ResultReg = createResultReg(RC);
1131 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
1132
Evan Cheng5960e4e2008-09-08 08:38:20 +00001133 if (II.getNumDefs() >= 1)
Dan Gohmaneabaed22010-07-07 16:47:08 +00001134 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001135 .addReg(Op0, Op0IsKill * RegState::Kill)
1136 .addReg(Op1, Op1IsKill * RegState::Kill)
1137 .addImm(Imm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001138 else {
Dan Gohmaneabaed22010-07-07 16:47:08 +00001139 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001140 .addReg(Op0, Op0IsKill * RegState::Kill)
1141 .addReg(Op1, Op1IsKill * RegState::Kill)
1142 .addImm(Imm);
Dan Gohmaneabaed22010-07-07 16:47:08 +00001143 bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt,
1144 ResultReg, II.ImplicitDefs[0],
1145 RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001146 if (!InsertedCopy)
1147 ResultReg = 0;
1148 }
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001149 return ResultReg;
1150}
Owen Anderson6d0c25e2008-08-25 20:20:32 +00001151
1152unsigned FastISel::FastEmitInst_i(unsigned MachineInstOpcode,
1153 const TargetRegisterClass *RC,
1154 uint64_t Imm) {
1155 unsigned ResultReg = createResultReg(RC);
1156 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
1157
Evan Cheng5960e4e2008-09-08 08:38:20 +00001158 if (II.getNumDefs() >= 1)
Dan Gohmaneabaed22010-07-07 16:47:08 +00001159 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg).addImm(Imm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001160 else {
Dan Gohmaneabaed22010-07-07 16:47:08 +00001161 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II).addImm(Imm);
1162 bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt,
1163 ResultReg, II.ImplicitDefs[0],
1164 RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001165 if (!InsertedCopy)
1166 ResultReg = 0;
1167 }
Owen Anderson6d0c25e2008-08-25 20:20:32 +00001168 return ResultReg;
Evan Chengb41aec52008-08-25 22:20:39 +00001169}
Owen Anderson8970f002008-08-27 22:30:02 +00001170
Owen Anderson825b72b2009-08-11 20:47:22 +00001171unsigned FastISel::FastEmitInst_extractsubreg(MVT RetVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001172 unsigned Op0, bool Op0IsKill,
1173 uint32_t Idx) {
Owen Anderson40a468f2008-08-28 17:47:37 +00001174 const TargetRegisterClass* RC = MRI.getRegClass(Op0);
Owen Anderson8970f002008-08-27 22:30:02 +00001175
Evan Cheng536ab132009-01-22 09:10:11 +00001176 unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT));
Chris Lattner518bb532010-02-09 19:54:29 +00001177 const TargetInstrDesc &II = TII.get(TargetOpcode::EXTRACT_SUBREG);
Owen Anderson8970f002008-08-27 22:30:02 +00001178
Evan Cheng5960e4e2008-09-08 08:38:20 +00001179 if (II.getNumDefs() >= 1)
Dan Gohmaneabaed22010-07-07 16:47:08 +00001180 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001181 .addReg(Op0, Op0IsKill * RegState::Kill)
1182 .addImm(Idx);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001183 else {
Dan Gohmaneabaed22010-07-07 16:47:08 +00001184 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001185 .addReg(Op0, Op0IsKill * RegState::Kill)
1186 .addImm(Idx);
Dan Gohmaneabaed22010-07-07 16:47:08 +00001187 bool InsertedCopy = TII.copyRegToReg(*FuncInfo.MBB, FuncInfo.InsertPt,
1188 ResultReg, II.ImplicitDefs[0],
1189 RC, RC, DL);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001190 if (!InsertedCopy)
1191 ResultReg = 0;
1192 }
Owen Anderson8970f002008-08-27 22:30:02 +00001193 return ResultReg;
1194}
Dan Gohman14ea1ec2009-03-13 20:42:20 +00001195
1196/// FastEmitZExtFromI1 - Emit MachineInstrs to compute the value of Op
1197/// with all but the least significant bit set to zero.
Dan Gohmana6cb6412010-05-11 23:54:07 +00001198unsigned FastISel::FastEmitZExtFromI1(MVT VT, unsigned Op0, bool Op0IsKill) {
1199 return FastEmit_ri(VT, VT, ISD::AND, Op0, Op0IsKill, 1);
Dan Gohman14ea1ec2009-03-13 20:42:20 +00001200}
Dan Gohmanf81eca02010-04-22 20:46:50 +00001201
1202/// HandlePHINodesInSuccessorBlocks - Handle PHI nodes in successor blocks.
1203/// Emit code to ensure constants are copied into registers when needed.
1204/// Remember the virtual registers that need to be added to the Machine PHI
1205/// nodes as input. We cannot just directly add them, because expansion
1206/// might result in multiple MBB's for one BB. As such, the start of the
1207/// BB might correspond to a different MBB than the end.
1208bool FastISel::HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB) {
1209 const TerminatorInst *TI = LLVMBB->getTerminator();
1210
1211 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
Dan Gohmana4160c32010-07-07 16:29:44 +00001212 unsigned OrigNumPHINodesToUpdate = FuncInfo.PHINodesToUpdate.size();
Dan Gohmanf81eca02010-04-22 20:46:50 +00001213
1214 // Check successor nodes' PHI nodes that expect a constant to be available
1215 // from this block.
1216 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
1217 const BasicBlock *SuccBB = TI->getSuccessor(succ);
1218 if (!isa<PHINode>(SuccBB->begin())) continue;
Dan Gohmana4160c32010-07-07 16:29:44 +00001219 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
Dan Gohmanf81eca02010-04-22 20:46:50 +00001220
1221 // If this terminator has multiple identical successors (common for
1222 // switches), only handle each succ once.
1223 if (!SuccsHandled.insert(SuccMBB)) continue;
1224
1225 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
1226
1227 // At this point we know that there is a 1-1 correspondence between LLVM PHI
1228 // nodes and Machine PHI nodes, but the incoming operands have not been
1229 // emitted yet.
1230 for (BasicBlock::const_iterator I = SuccBB->begin();
1231 const PHINode *PN = dyn_cast<PHINode>(I); ++I) {
Dan Gohmanfb95f892010-05-07 01:10:20 +00001232
Dan Gohmanf81eca02010-04-22 20:46:50 +00001233 // Ignore dead phi's.
1234 if (PN->use_empty()) continue;
1235
1236 // Only handle legal types. Two interesting things to note here. First,
1237 // by bailing out early, we may leave behind some dead instructions,
1238 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
1239 // own moves. Second, this check is necessary becuase FastISel doesn't
Dan Gohman89496d02010-07-02 00:10:16 +00001240 // use CreateRegs to create registers, so it always creates
Dan Gohmanf81eca02010-04-22 20:46:50 +00001241 // exactly one register for each non-void instruction.
1242 EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
1243 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
1244 // Promote MVT::i1.
1245 if (VT == MVT::i1)
1246 VT = TLI.getTypeToTransformTo(LLVMBB->getContext(), VT);
1247 else {
Dan Gohmana4160c32010-07-07 16:29:44 +00001248 FuncInfo.PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
Dan Gohmanf81eca02010-04-22 20:46:50 +00001249 return false;
1250 }
1251 }
1252
1253 const Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
1254
Dan Gohmanfb95f892010-05-07 01:10:20 +00001255 // Set the DebugLoc for the copy. Prefer the location of the operand
1256 // if there is one; use the location of the PHI otherwise.
1257 DL = PN->getDebugLoc();
1258 if (const Instruction *Inst = dyn_cast<Instruction>(PHIOp))
1259 DL = Inst->getDebugLoc();
1260
Dan Gohmanf81eca02010-04-22 20:46:50 +00001261 unsigned Reg = getRegForValue(PHIOp);
1262 if (Reg == 0) {
Dan Gohmana4160c32010-07-07 16:29:44 +00001263 FuncInfo.PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
Dan Gohmanf81eca02010-04-22 20:46:50 +00001264 return false;
1265 }
Dan Gohmana4160c32010-07-07 16:29:44 +00001266 FuncInfo.PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
Dan Gohmanfb95f892010-05-07 01:10:20 +00001267 DL = DebugLoc();
Dan Gohmanf81eca02010-04-22 20:46:50 +00001268 }
1269 }
1270
1271 return true;
1272}