blob: 2087a1ba403e1722cab4560bd6293866eabb144d [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
Chad Rosier053e69a2011-11-16 21:05:28 +000042#define DEBUG_TYPE "isel"
Dan Gohman33134c42008-09-25 17:05:24 +000043#include "llvm/Function.h"
44#include "llvm/GlobalVariable.h"
Dan Gohman6f2766d2008-08-19 22:31:46 +000045#include "llvm/Instructions.h"
Dan Gohman33134c42008-09-25 17:05:24 +000046#include "llvm/IntrinsicInst.h"
Jay Foad562b84b2011-04-11 09:35:34 +000047#include "llvm/Operator.h"
Eli Friedman2586b8f2011-05-16 20:27:46 +000048#include "llvm/CodeGen/Analysis.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000049#include "llvm/CodeGen/FastISel.h"
Dan Gohman4c3fd9f2010-07-07 16:01:37 +000050#include "llvm/CodeGen/FunctionLoweringInfo.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000051#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohman33134c42008-09-25 17:05:24 +000052#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000053#include "llvm/CodeGen/MachineRegisterInfo.h"
Devang Patel83489bb2009-01-13 00:35:13 +000054#include "llvm/Analysis/DebugInfo.h"
Dan Gohman7fbcc982010-07-01 03:49:38 +000055#include "llvm/Analysis/Loads.h"
Evan Cheng83785c82008-08-20 22:45:34 +000056#include "llvm/Target/TargetData.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000057#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng83785c82008-08-20 22:45:34 +000058#include "llvm/Target/TargetLowering.h"
Dan Gohmanbb466332008-08-20 21:05:57 +000059#include "llvm/Target/TargetMachine.h"
Dan Gohmanba5be5c2010-04-20 15:00:41 +000060#include "llvm/Support/ErrorHandling.h"
Devang Patelafeaae72010-12-06 22:39:26 +000061#include "llvm/Support/Debug.h"
Chad Rosier053e69a2011-11-16 21:05:28 +000062#include "llvm/ADT/Statistic.h"
Dan Gohmanb0cf29c2008-08-13 20:19:35 +000063using namespace llvm;
64
Chad Rosieraa5656c2011-11-28 19:59:09 +000065STATISTIC(NumFastIselSuccessIndependent, "Number of insts selected by "
66 "target-independent selector");
67STATISTIC(NumFastIselSuccessTarget, "Number of insts selected by "
68 "target-specific selector");
Chad Rosier053e69a2011-11-16 21:05:28 +000069
Dan Gohman84023e02010-07-10 09:00:22 +000070/// startNewBlock - Set the current block to which generated machine
71/// instructions will be appended, and clear the local CSE map.
72///
73void FastISel::startNewBlock() {
74 LocalValueMap.clear();
75
Ivan Krasin74af88a2011-08-18 22:06:10 +000076 EmitStartPt = 0;
Dan Gohman84023e02010-07-10 09:00:22 +000077
Ivan Krasin74af88a2011-08-18 22:06:10 +000078 // Advance the emit start point past any EH_LABEL instructions.
Dan Gohman84023e02010-07-10 09:00:22 +000079 MachineBasicBlock::iterator
80 I = FuncInfo.MBB->begin(), E = FuncInfo.MBB->end();
81 while (I != E && I->getOpcode() == TargetOpcode::EH_LABEL) {
Ivan Krasin74af88a2011-08-18 22:06:10 +000082 EmitStartPt = I;
Dan Gohman84023e02010-07-10 09:00:22 +000083 ++I;
84 }
Ivan Krasin74af88a2011-08-18 22:06:10 +000085 LastLocalValue = EmitStartPt;
86}
87
88void FastISel::flushLocalValueMap() {
89 LocalValueMap.clear();
90 LastLocalValue = EmitStartPt;
91 recomputeInsertPt();
Dan Gohman84023e02010-07-10 09:00:22 +000092}
93
Dan Gohmana6cb6412010-05-11 23:54:07 +000094bool FastISel::hasTrivialKill(const Value *V) const {
Dan Gohman7f0d6952010-05-14 22:53:18 +000095 // Don't consider constants or arguments to have trivial kills.
Dan Gohmana6cb6412010-05-11 23:54:07 +000096 const Instruction *I = dyn_cast<Instruction>(V);
Dan Gohman7f0d6952010-05-14 22:53:18 +000097 if (!I)
98 return false;
99
100 // No-op casts are trivially coalesced by fast-isel.
101 if (const CastInst *Cast = dyn_cast<CastInst>(I))
102 if (Cast->isNoopCast(TD.getIntPtrType(Cast->getContext())) &&
103 !hasTrivialKill(Cast->getOperand(0)))
104 return false;
105
Chad Rosier22b34cc2011-11-15 23:34:05 +0000106 // GEPs with all zero indices are trivially coalesced by fast-isel.
107 if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I))
108 if (GEP->hasAllZeroIndices() && !hasTrivialKill(GEP->getOperand(0)))
109 return false;
110
Dan Gohman7f0d6952010-05-14 22:53:18 +0000111 // Only instructions with a single use in the same basic block are considered
112 // to have trivial kills.
113 return I->hasOneUse() &&
114 !(I->getOpcode() == Instruction::BitCast ||
115 I->getOpcode() == Instruction::PtrToInt ||
116 I->getOpcode() == Instruction::IntToPtr) &&
Gabor Greif96f1d8e2010-07-22 13:36:47 +0000117 cast<Instruction>(*I->use_begin())->getParent() == I->getParent();
Dan Gohmana6cb6412010-05-11 23:54:07 +0000118}
119
Dan Gohman46510a72010-04-15 01:51:59 +0000120unsigned FastISel::getRegForValue(const Value *V) {
Owen Andersone50ed302009-08-10 22:56:29 +0000121 EVT RealVT = TLI.getValueType(V->getType(), /*AllowUnknown=*/true);
Dan Gohman4fd55282009-04-07 20:40:11 +0000122 // Don't handle non-simple values in FastISel.
123 if (!RealVT.isSimple())
124 return 0;
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000125
126 // Ignore illegal types. We must do this before looking up the value
127 // in ValueMap because Arguments are given virtual registers regardless
128 // of whether FastISel can handle them.
Owen Anderson825b72b2009-08-11 20:47:22 +0000129 MVT VT = RealVT.getSimpleVT();
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000130 if (!TLI.isTypeLegal(VT)) {
Eli Friedman76927d732011-05-25 23:49:02 +0000131 // Handle integer promotions, though, because they're common and easy.
132 if (VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16)
Owen Anderson23b9b192009-08-12 00:36:31 +0000133 VT = TLI.getTypeToTransformTo(V->getContext(), VT).getSimpleVT();
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000134 else
135 return 0;
136 }
137
Dan Gohman104e4ce2008-09-03 23:32:19 +0000138 // Look up the value to see if we already have a register for it. We
139 // cache values defined by Instructions across blocks, and other values
140 // only locally. This is because Instructions already have the SSA
Dan Gohman5c9cf192010-01-12 04:30:26 +0000141 // def-dominates-use requirement enforced.
Dan Gohmana4160c32010-07-07 16:29:44 +0000142 DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(V);
Chris Lattnerfff65b32011-04-17 01:16:47 +0000143 if (I != FuncInfo.ValueMap.end())
144 return I->second;
145
Dan Gohman104e4ce2008-09-03 23:32:19 +0000146 unsigned Reg = LocalValueMap[V];
147 if (Reg != 0)
148 return Reg;
Dan Gohmanad368ac2008-08-27 18:10:19 +0000149
Dan Gohman97c94b82010-05-06 00:02:14 +0000150 // In bottom-up mode, just create the virtual register which will be used
151 // to hold the value. It will be materialized later.
Dan Gohman84023e02010-07-10 09:00:22 +0000152 if (isa<Instruction>(V) &&
153 (!isa<AllocaInst>(V) ||
154 !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V))))
155 return FuncInfo.InitializeRegForValue(V);
Dan Gohman97c94b82010-05-06 00:02:14 +0000156
Dan Gohmana10b8492010-07-14 01:07:44 +0000157 SavePoint SaveInsertPt = enterLocalValueArea();
Dan Gohman84023e02010-07-10 09:00:22 +0000158
159 // Materialize the value in a register. Emit any instructions in the
160 // local value area.
161 Reg = materializeRegForValue(V, VT);
162
163 leaveLocalValueArea(SaveInsertPt);
164
165 return Reg;
Dan Gohman1fdc6142010-05-03 23:36:34 +0000166}
167
Eric Christopher44a2c342010-08-17 01:30:33 +0000168/// materializeRegForValue - Helper for getRegForValue. This function is
Dan Gohman1fdc6142010-05-03 23:36:34 +0000169/// called when the value isn't already available in a register and must
170/// be materialized with new instructions.
171unsigned FastISel::materializeRegForValue(const Value *V, MVT VT) {
172 unsigned Reg = 0;
173
Dan Gohman46510a72010-04-15 01:51:59 +0000174 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000175 if (CI->getValue().getActiveBits() <= 64)
176 Reg = FastEmit_i(VT, VT, ISD::Constant, CI->getZExtValue());
Dan Gohman0586d912008-09-10 20:11:02 +0000177 } else if (isa<AllocaInst>(V)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000178 Reg = TargetMaterializeAlloca(cast<AllocaInst>(V));
Dan Gohman205d9252008-08-28 21:19:07 +0000179 } else if (isa<ConstantPointerNull>(V)) {
Dan Gohman1e9e8c32008-10-07 22:03:27 +0000180 // Translate this as an integer zero so that it can be
181 // local-CSE'd with actual integer zeros.
Owen Anderson1d0be152009-08-13 21:58:54 +0000182 Reg =
183 getRegForValue(Constant::getNullValue(TD.getIntPtrType(V->getContext())));
Dan Gohman46510a72010-04-15 01:51:59 +0000184 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Eli Friedmanbd125382011-04-28 00:42:03 +0000185 if (CF->isNullValue()) {
Eli Friedman2790ba82011-04-27 22:41:55 +0000186 Reg = TargetMaterializeFloatZero(CF);
187 } else {
188 // Try to emit the constant directly.
189 Reg = FastEmit_f(VT, VT, ISD::ConstantFP, CF);
190 }
Dan Gohmanad368ac2008-08-27 18:10:19 +0000191
192 if (!Reg) {
Dan Gohman4183e312010-04-13 17:07:06 +0000193 // Try to emit the constant by using an integer constant with a cast.
Dan Gohmanad368ac2008-08-27 18:10:19 +0000194 const APFloat &Flt = CF->getValueAPF();
Owen Andersone50ed302009-08-10 22:56:29 +0000195 EVT IntVT = TLI.getPointerTy();
Dan Gohmanad368ac2008-08-27 18:10:19 +0000196
197 uint64_t x[2];
198 uint32_t IntBitWidth = IntVT.getSizeInBits();
Dale Johannesen23a98552008-10-09 23:00:39 +0000199 bool isExact;
200 (void) Flt.convertToInteger(x, IntBitWidth, /*isSigned=*/true,
201 APFloat::rmTowardZero, &isExact);
202 if (isExact) {
Jeffrey Yasskin3ba292d2011-07-18 21:45:40 +0000203 APInt IntVal(IntBitWidth, x);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000204
Owen Andersone922c022009-07-22 00:24:57 +0000205 unsigned IntegerReg =
Owen Andersoneed707b2009-07-24 23:12:02 +0000206 getRegForValue(ConstantInt::get(V->getContext(), IntVal));
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000207 if (IntegerReg != 0)
Dan Gohmana6cb6412010-05-11 23:54:07 +0000208 Reg = FastEmit_r(IntVT.getSimpleVT(), VT, ISD::SINT_TO_FP,
209 IntegerReg, /*Kill=*/false);
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000210 }
Dan Gohmanad368ac2008-08-27 18:10:19 +0000211 }
Dan Gohman46510a72010-04-15 01:51:59 +0000212 } else if (const Operator *Op = dyn_cast<Operator>(V)) {
Dan Gohman20d4be12010-07-01 02:58:57 +0000213 if (!SelectOperator(Op, Op->getOpcode()))
214 if (!isa<Instruction>(Op) ||
215 !TargetSelectInstruction(cast<Instruction>(Op)))
216 return 0;
Dan Gohman37db6cd2010-06-21 14:17:46 +0000217 Reg = lookUpRegForValue(Op);
Dan Gohman205d9252008-08-28 21:19:07 +0000218 } else if (isa<UndefValue>(V)) {
Dan Gohman104e4ce2008-09-03 23:32:19 +0000219 Reg = createResultReg(TLI.getRegClassFor(VT));
Dan Gohman84023e02010-07-10 09:00:22 +0000220 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
221 TII.get(TargetOpcode::IMPLICIT_DEF), Reg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000222 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000223
Dan Gohmandceffe62008-09-25 01:28:51 +0000224 // If target-independent code couldn't handle the value, give target-specific
225 // code a try.
Owen Anderson6e607452008-09-05 23:36:01 +0000226 if (!Reg && isa<Constant>(V))
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000227 Reg = TargetMaterializeConstant(cast<Constant>(V));
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000228
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000229 // Don't cache constant materializations in the general ValueMap.
230 // To do so would require tracking what uses they dominate.
Dan Gohman84023e02010-07-10 09:00:22 +0000231 if (Reg != 0) {
Dan Gohmandceffe62008-09-25 01:28:51 +0000232 LocalValueMap[V] = Reg;
Dan Gohman84023e02010-07-10 09:00:22 +0000233 LastLocalValue = MRI.getVRegDef(Reg);
234 }
Dan Gohman104e4ce2008-09-03 23:32:19 +0000235 return Reg;
Dan Gohmanad368ac2008-08-27 18:10:19 +0000236}
237
Dan Gohman46510a72010-04-15 01:51:59 +0000238unsigned FastISel::lookUpRegForValue(const Value *V) {
Evan Cheng59fbc802008-09-09 01:26:59 +0000239 // Look up the value to see if we already have a register for it. We
240 // cache values defined by Instructions across blocks, and other values
241 // only locally. This is because Instructions already have the SSA
Dan Gohman1fdc6142010-05-03 23:36:34 +0000242 // def-dominates-use requirement enforced.
Dan Gohmana4160c32010-07-07 16:29:44 +0000243 DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(V);
244 if (I != FuncInfo.ValueMap.end())
Dan Gohman3193a682010-06-21 14:21:47 +0000245 return I->second;
Evan Cheng59fbc802008-09-09 01:26:59 +0000246 return LocalValueMap[V];
247}
248
Owen Andersoncc54e762008-08-30 00:38:46 +0000249/// UpdateValueMap - Update the value map to include the new mapping for this
250/// instruction, or insert an extra copy to get the result in a previous
251/// determined register.
252/// NOTE: This is only necessary because we might select a block that uses
253/// a value before we select the block that defines the value. It might be
254/// possible to fix this by selecting blocks in reverse postorder.
Eli Friedman482feb32011-05-16 21:06:17 +0000255void FastISel::UpdateValueMap(const Value *I, unsigned Reg, unsigned NumRegs) {
Dan Gohman40b189e2008-09-05 18:18:20 +0000256 if (!isa<Instruction>(I)) {
257 LocalValueMap[I] = Reg;
Eli Friedman482feb32011-05-16 21:06:17 +0000258 return;
Dan Gohman40b189e2008-09-05 18:18:20 +0000259 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000260
Dan Gohmana4160c32010-07-07 16:29:44 +0000261 unsigned &AssignedReg = FuncInfo.ValueMap[I];
Chris Lattnerc5040ab2009-04-12 07:45:01 +0000262 if (AssignedReg == 0)
Dan Gohman84023e02010-07-10 09:00:22 +0000263 // Use the new register.
Chris Lattnerc5040ab2009-04-12 07:45:01 +0000264 AssignedReg = Reg;
Chris Lattner36e39462009-04-12 07:46:30 +0000265 else if (Reg != AssignedReg) {
Dan Gohman84023e02010-07-10 09:00:22 +0000266 // Arrange for uses of AssignedReg to be replaced by uses of Reg.
Eli Friedman482feb32011-05-16 21:06:17 +0000267 for (unsigned i = 0; i < NumRegs; i++)
268 FuncInfo.RegFixups[AssignedReg+i] = Reg+i;
Dan Gohman84023e02010-07-10 09:00:22 +0000269
270 AssignedReg = Reg;
Chris Lattnerc5040ab2009-04-12 07:45:01 +0000271 }
Owen Andersoncc54e762008-08-30 00:38:46 +0000272}
273
Dan Gohmana6cb6412010-05-11 23:54:07 +0000274std::pair<unsigned, bool> FastISel::getRegForGEPIndex(const Value *Idx) {
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000275 unsigned IdxN = getRegForValue(Idx);
276 if (IdxN == 0)
277 // Unhandled operand. Halt "fast" selection and bail.
Dan Gohmana6cb6412010-05-11 23:54:07 +0000278 return std::pair<unsigned, bool>(0, false);
279
280 bool IdxNIsKill = hasTrivialKill(Idx);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000281
282 // If the index is smaller or larger than intptr_t, truncate or extend it.
Owen Anderson766b5ef2009-08-11 21:59:30 +0000283 MVT PtrVT = TLI.getPointerTy();
Owen Andersone50ed302009-08-10 22:56:29 +0000284 EVT IdxVT = EVT::getEVT(Idx->getType(), /*HandleUnknown=*/false);
Dan Gohmana6cb6412010-05-11 23:54:07 +0000285 if (IdxVT.bitsLT(PtrVT)) {
286 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::SIGN_EXTEND,
287 IdxN, IdxNIsKill);
288 IdxNIsKill = true;
289 }
290 else if (IdxVT.bitsGT(PtrVT)) {
291 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::TRUNCATE,
292 IdxN, IdxNIsKill);
293 IdxNIsKill = true;
294 }
295 return std::pair<unsigned, bool>(IdxN, IdxNIsKill);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000296}
297
Dan Gohman84023e02010-07-10 09:00:22 +0000298void FastISel::recomputeInsertPt() {
299 if (getLastLocalValue()) {
300 FuncInfo.InsertPt = getLastLocalValue();
Dan Gohmanc6e59b72010-07-19 22:48:56 +0000301 FuncInfo.MBB = FuncInfo.InsertPt->getParent();
Dan Gohman84023e02010-07-10 09:00:22 +0000302 ++FuncInfo.InsertPt;
303 } else
304 FuncInfo.InsertPt = FuncInfo.MBB->getFirstNonPHI();
305
306 // Now skip past any EH_LABELs, which must remain at the beginning.
307 while (FuncInfo.InsertPt != FuncInfo.MBB->end() &&
308 FuncInfo.InsertPt->getOpcode() == TargetOpcode::EH_LABEL)
309 ++FuncInfo.InsertPt;
310}
311
Dan Gohmana10b8492010-07-14 01:07:44 +0000312FastISel::SavePoint FastISel::enterLocalValueArea() {
Dan Gohman84023e02010-07-10 09:00:22 +0000313 MachineBasicBlock::iterator OldInsertPt = FuncInfo.InsertPt;
Dan Gohman163f78e2010-07-14 22:01:31 +0000314 DebugLoc OldDL = DL;
Dan Gohman84023e02010-07-10 09:00:22 +0000315 recomputeInsertPt();
Dan Gohmana10b8492010-07-14 01:07:44 +0000316 DL = DebugLoc();
Dan Gohman163f78e2010-07-14 22:01:31 +0000317 SavePoint SP = { OldInsertPt, OldDL };
Dan Gohmana10b8492010-07-14 01:07:44 +0000318 return SP;
Dan Gohman84023e02010-07-10 09:00:22 +0000319}
320
Dan Gohmana10b8492010-07-14 01:07:44 +0000321void FastISel::leaveLocalValueArea(SavePoint OldInsertPt) {
Dan Gohman84023e02010-07-10 09:00:22 +0000322 if (FuncInfo.InsertPt != FuncInfo.MBB->begin())
323 LastLocalValue = llvm::prior(FuncInfo.InsertPt);
324
325 // Restore the previous insert position.
Dan Gohmana10b8492010-07-14 01:07:44 +0000326 FuncInfo.InsertPt = OldInsertPt.InsertPt;
327 DL = OldInsertPt.DL;
Dan Gohman84023e02010-07-10 09:00:22 +0000328}
329
Dan Gohmanbdedd442008-08-20 00:11:48 +0000330/// SelectBinaryOp - Select and emit code for a binary operator instruction,
331/// which has an opcode which directly corresponds to the given ISD opcode.
332///
Dan Gohman46510a72010-04-15 01:51:59 +0000333bool FastISel::SelectBinaryOp(const User *I, unsigned ISDOpcode) {
Owen Andersone50ed302009-08-10 22:56:29 +0000334 EVT VT = EVT::getEVT(I->getType(), /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +0000335 if (VT == MVT::Other || !VT.isSimple())
Dan Gohmanbdedd442008-08-20 00:11:48 +0000336 // Unhandled type. Halt "fast" selection and bail.
337 return false;
Dan Gohman638c6832008-09-05 18:44:22 +0000338
Dan Gohmanb71fea22008-08-26 20:52:40 +0000339 // We only handle legal types. For example, on x86-32 the instruction
340 // selector contains all of the 64-bit instructions from x86-64,
341 // under the assumption that i64 won't be used if the target doesn't
342 // support it.
Dan Gohman638c6832008-09-05 18:44:22 +0000343 if (!TLI.isTypeLegal(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000344 // MVT::i1 is special. Allow AND, OR, or XOR because they
Dan Gohman638c6832008-09-05 18:44:22 +0000345 // don't require additional zeroing, which makes them easy.
Owen Anderson825b72b2009-08-11 20:47:22 +0000346 if (VT == MVT::i1 &&
Dan Gohman5dd9c2e2008-09-25 17:22:52 +0000347 (ISDOpcode == ISD::AND || ISDOpcode == ISD::OR ||
348 ISDOpcode == ISD::XOR))
Owen Anderson23b9b192009-08-12 00:36:31 +0000349 VT = TLI.getTypeToTransformTo(I->getContext(), VT);
Dan Gohman638c6832008-09-05 18:44:22 +0000350 else
351 return false;
352 }
Dan Gohmanbdedd442008-08-20 00:11:48 +0000353
Chris Lattnerfff65b32011-04-17 01:16:47 +0000354 // Check if the first operand is a constant, and handle it as "ri". At -O0,
355 // we don't have anything that canonicalizes operand order.
356 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(0)))
357 if (isa<Instruction>(I) && cast<Instruction>(I)->isCommutative()) {
358 unsigned Op1 = getRegForValue(I->getOperand(1));
359 if (Op1 == 0) return false;
360
361 bool Op1IsKill = hasTrivialKill(I->getOperand(1));
Owen Andersond74ea772011-04-22 23:38:06 +0000362
Chris Lattner602fc062011-04-17 20:23:29 +0000363 unsigned ResultReg = FastEmit_ri_(VT.getSimpleVT(), ISDOpcode, Op1,
364 Op1IsKill, CI->getZExtValue(),
365 VT.getSimpleVT());
366 if (ResultReg == 0) return false;
Owen Andersond74ea772011-04-22 23:38:06 +0000367
Chris Lattner602fc062011-04-17 20:23:29 +0000368 // We successfully emitted code for the given LLVM Instruction.
369 UpdateValueMap(I, ResultReg);
370 return true;
Chris Lattnerfff65b32011-04-17 01:16:47 +0000371 }
Owen Andersond74ea772011-04-22 23:38:06 +0000372
373
Dan Gohman3df24e62008-09-03 23:12:08 +0000374 unsigned Op0 = getRegForValue(I->getOperand(0));
Chris Lattner602fc062011-04-17 20:23:29 +0000375 if (Op0 == 0) // Unhandled operand. Halt "fast" selection and bail.
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000376 return false;
377
Dan Gohmana6cb6412010-05-11 23:54:07 +0000378 bool Op0IsKill = hasTrivialKill(I->getOperand(0));
379
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000380 // Check if the second operand is a constant and handle it appropriately.
381 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
Chris Lattner602fc062011-04-17 20:23:29 +0000382 uint64_t Imm = CI->getZExtValue();
Owen Andersond74ea772011-04-22 23:38:06 +0000383
Chris Lattnerf051c1a2011-04-18 07:00:40 +0000384 // Transform "sdiv exact X, 8" -> "sra X, 3".
385 if (ISDOpcode == ISD::SDIV && isa<BinaryOperator>(I) &&
386 cast<BinaryOperator>(I)->isExact() &&
387 isPowerOf2_64(Imm)) {
388 Imm = Log2_64(Imm);
389 ISDOpcode = ISD::SRA;
390 }
Owen Andersond74ea772011-04-22 23:38:06 +0000391
Chris Lattner602fc062011-04-17 20:23:29 +0000392 unsigned ResultReg = FastEmit_ri_(VT.getSimpleVT(), ISDOpcode, Op0,
393 Op0IsKill, Imm, VT.getSimpleVT());
394 if (ResultReg == 0) return false;
Owen Andersond74ea772011-04-22 23:38:06 +0000395
Chris Lattner602fc062011-04-17 20:23:29 +0000396 // We successfully emitted code for the given LLVM Instruction.
397 UpdateValueMap(I, ResultReg);
398 return true;
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000399 }
400
Dan Gohman10df0fa2008-08-27 01:09:54 +0000401 // Check if the second operand is a constant float.
402 if (ConstantFP *CF = dyn_cast<ConstantFP>(I->getOperand(1))) {
Dan Gohmanad368ac2008-08-27 18:10:19 +0000403 unsigned ResultReg = FastEmit_rf(VT.getSimpleVT(), VT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000404 ISDOpcode, Op0, Op0IsKill, CF);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000405 if (ResultReg != 0) {
406 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000407 UpdateValueMap(I, ResultReg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000408 return true;
409 }
Dan Gohman10df0fa2008-08-27 01:09:54 +0000410 }
411
Dan Gohman3df24e62008-09-03 23:12:08 +0000412 unsigned Op1 = getRegForValue(I->getOperand(1));
Dan Gohmand5fe57d2008-08-21 01:41:07 +0000413 if (Op1 == 0)
414 // Unhandled operand. Halt "fast" selection and bail.
415 return false;
416
Dan Gohmana6cb6412010-05-11 23:54:07 +0000417 bool Op1IsKill = hasTrivialKill(I->getOperand(1));
418
Dan Gohmanad368ac2008-08-27 18:10:19 +0000419 // Now we have both operands in registers. Emit the instruction.
Owen Anderson0f84e4e2008-08-25 23:58:18 +0000420 unsigned ResultReg = FastEmit_rr(VT.getSimpleVT(), VT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000421 ISDOpcode,
422 Op0, Op0IsKill,
423 Op1, Op1IsKill);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000424 if (ResultReg == 0)
425 // Target-specific code wasn't able to find a machine opcode for
426 // the given ISD opcode and type. Halt "fast" selection and bail.
427 return false;
428
Dan Gohman8014e862008-08-20 00:23:20 +0000429 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000430 UpdateValueMap(I, ResultReg);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000431 return true;
432}
433
Dan Gohman46510a72010-04-15 01:51:59 +0000434bool FastISel::SelectGetElementPtr(const User *I) {
Dan Gohman3df24e62008-09-03 23:12:08 +0000435 unsigned N = getRegForValue(I->getOperand(0));
Evan Cheng83785c82008-08-20 22:45:34 +0000436 if (N == 0)
437 // Unhandled operand. Halt "fast" selection and bail.
438 return false;
439
Dan Gohmana6cb6412010-05-11 23:54:07 +0000440 bool NIsKill = hasTrivialKill(I->getOperand(0));
441
Chad Rosier478b06c2011-11-17 07:15:58 +0000442 // Keep a running tab of the total offset to coalesce multiple N = N + Offset
443 // into a single N = N + TotalOffset.
444 uint64_t TotalOffs = 0;
445 // FIXME: What's a good SWAG number for MaxOffs?
446 uint64_t MaxOffs = 2048;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000447 Type *Ty = I->getOperand(0)->getType();
Owen Anderson825b72b2009-08-11 20:47:22 +0000448 MVT VT = TLI.getPointerTy();
Dan Gohman46510a72010-04-15 01:51:59 +0000449 for (GetElementPtrInst::const_op_iterator OI = I->op_begin()+1,
450 E = I->op_end(); OI != E; ++OI) {
451 const Value *Idx = *OI;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000452 if (StructType *StTy = dyn_cast<StructType>(Ty)) {
Evan Cheng83785c82008-08-20 22:45:34 +0000453 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
454 if (Field) {
455 // N = N + Offset
Chad Rosier478b06c2011-11-17 07:15:58 +0000456 TotalOffs += TD.getStructLayout(StTy)->getElementOffset(Field);
457 if (TotalOffs >= MaxOffs) {
458 N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT);
459 if (N == 0)
460 // Unhandled operand. Halt "fast" selection and bail.
461 return false;
462 NIsKill = true;
463 TotalOffs = 0;
464 }
Evan Cheng83785c82008-08-20 22:45:34 +0000465 }
466 Ty = StTy->getElementType(Field);
467 } else {
468 Ty = cast<SequentialType>(Ty)->getElementType();
469
470 // If this is a constant subscript, handle it quickly.
Dan Gohman46510a72010-04-15 01:51:59 +0000471 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
Dan Gohmane368b462010-06-18 14:22:04 +0000472 if (CI->isZero()) continue;
Chad Rosier478b06c2011-11-17 07:15:58 +0000473 // N = N + Offset
474 TotalOffs +=
Duncan Sands777d2302009-05-09 07:06:46 +0000475 TD.getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
Chad Rosier478b06c2011-11-17 07:15:58 +0000476 if (TotalOffs >= MaxOffs) {
477 N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT);
478 if (N == 0)
479 // Unhandled operand. Halt "fast" selection and bail.
480 return false;
481 NIsKill = true;
482 TotalOffs = 0;
483 }
484 continue;
485 }
486 if (TotalOffs) {
487 N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT);
Evan Cheng83785c82008-08-20 22:45:34 +0000488 if (N == 0)
489 // Unhandled operand. Halt "fast" selection and bail.
490 return false;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000491 NIsKill = true;
Chad Rosier478b06c2011-11-17 07:15:58 +0000492 TotalOffs = 0;
Evan Cheng83785c82008-08-20 22:45:34 +0000493 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000494
Evan Cheng83785c82008-08-20 22:45:34 +0000495 // N = N + Idx * ElementSize;
Duncan Sands777d2302009-05-09 07:06:46 +0000496 uint64_t ElementSize = TD.getTypeAllocSize(Ty);
Dan Gohmana6cb6412010-05-11 23:54:07 +0000497 std::pair<unsigned, bool> Pair = getRegForGEPIndex(Idx);
498 unsigned IdxN = Pair.first;
499 bool IdxNIsKill = Pair.second;
Evan Cheng83785c82008-08-20 22:45:34 +0000500 if (IdxN == 0)
501 // Unhandled operand. Halt "fast" selection and bail.
502 return false;
503
Dan Gohman80bc6e22008-08-26 20:57:08 +0000504 if (ElementSize != 1) {
Dan Gohmana6cb6412010-05-11 23:54:07 +0000505 IdxN = FastEmit_ri_(VT, ISD::MUL, IdxN, IdxNIsKill, ElementSize, VT);
Dan Gohman80bc6e22008-08-26 20:57:08 +0000506 if (IdxN == 0)
507 // Unhandled operand. Halt "fast" selection and bail.
508 return false;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000509 IdxNIsKill = true;
Dan Gohman80bc6e22008-08-26 20:57:08 +0000510 }
Dan Gohmana6cb6412010-05-11 23:54:07 +0000511 N = FastEmit_rr(VT, VT, ISD::ADD, N, NIsKill, IdxN, IdxNIsKill);
Evan Cheng83785c82008-08-20 22:45:34 +0000512 if (N == 0)
513 // Unhandled operand. Halt "fast" selection and bail.
514 return false;
515 }
516 }
Chad Rosier478b06c2011-11-17 07:15:58 +0000517 if (TotalOffs) {
518 N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT);
519 if (N == 0)
520 // Unhandled operand. Halt "fast" selection and bail.
521 return false;
522 }
Evan Cheng83785c82008-08-20 22:45:34 +0000523
524 // We successfully emitted code for the given LLVM Instruction.
Dan Gohman3df24e62008-09-03 23:12:08 +0000525 UpdateValueMap(I, N);
Evan Cheng83785c82008-08-20 22:45:34 +0000526 return true;
Dan Gohmanbdedd442008-08-20 00:11:48 +0000527}
528
Dan Gohman46510a72010-04-15 01:51:59 +0000529bool FastISel::SelectCall(const User *I) {
Dan Gohmana61e73b2011-04-26 17:18:34 +0000530 const CallInst *Call = cast<CallInst>(I);
531
532 // Handle simple inline asms.
Dan Gohman9e15d652011-10-12 15:56:56 +0000533 if (const InlineAsm *IA = dyn_cast<InlineAsm>(Call->getCalledValue())) {
Dan Gohmana61e73b2011-04-26 17:18:34 +0000534 // Don't attempt to handle constraints.
535 if (!IA->getConstraintString().empty())
536 return false;
537
538 unsigned ExtraInfo = 0;
539 if (IA->hasSideEffects())
540 ExtraInfo |= InlineAsm::Extra_HasSideEffects;
541 if (IA->isAlignStack())
542 ExtraInfo |= InlineAsm::Extra_IsAlignStack;
543
544 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
545 TII.get(TargetOpcode::INLINEASM))
546 .addExternalSymbol(IA->getAsmString().c_str())
547 .addImm(ExtraInfo);
548 return true;
549 }
550
551 const Function *F = Call->getCalledFunction();
Dan Gohman33134c42008-09-25 17:05:24 +0000552 if (!F) return false;
553
Dan Gohman4183e312010-04-13 17:07:06 +0000554 // Handle selected intrinsic function calls.
Chris Lattner832e4942011-04-19 05:52:03 +0000555 switch (F->getIntrinsicID()) {
Dan Gohman33134c42008-09-25 17:05:24 +0000556 default: break;
Bill Wendling92c1e122009-02-13 02:16:35 +0000557 case Intrinsic::dbg_declare: {
Dan Gohmana61e73b2011-04-26 17:18:34 +0000558 const DbgDeclareInst *DI = cast<DbgDeclareInst>(Call);
Devang Patel02f0dbd2010-05-07 22:04:20 +0000559 if (!DIVariable(DI->getVariable()).Verify() ||
Dan Gohmana4160c32010-07-07 16:29:44 +0000560 !FuncInfo.MF->getMMI().hasDebugInfo())
Devang Patel7e1e31f2009-07-02 22:43:26 +0000561 return true;
562
Dan Gohman46510a72010-04-15 01:51:59 +0000563 const Value *Address = DI->getAddress();
Devang Patel6fe75aa2010-09-14 20:29:31 +0000564 if (!Address || isa<UndefValue>(Address) || isa<AllocaInst>(Address))
Dale Johannesendc918562010-02-06 02:26:02 +0000565 return true;
Devang Patel6fe75aa2010-09-14 20:29:31 +0000566
567 unsigned Reg = 0;
568 unsigned Offset = 0;
569 if (const Argument *Arg = dyn_cast<Argument>(Address)) {
Devang Patel9aee3352011-09-08 22:59:09 +0000570 // Some arguments' frame index is recorded during argument lowering.
571 Offset = FuncInfo.getArgumentFrameIndex(Arg);
572 if (Offset)
573 Reg = TRI.getFrameRegister(*FuncInfo.MF);
Devang Patel4bafda92010-09-10 20:32:09 +0000574 }
Devang Patel6fe75aa2010-09-14 20:29:31 +0000575 if (!Reg)
576 Reg = getRegForValue(Address);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000577
Devang Patel6fe75aa2010-09-14 20:29:31 +0000578 if (Reg)
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000579 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Devang Patel6fe75aa2010-09-14 20:29:31 +0000580 TII.get(TargetOpcode::DBG_VALUE))
581 .addReg(Reg, RegState::Debug).addImm(Offset)
582 .addMetadata(DI->getVariable());
Dan Gohman33134c42008-09-25 17:05:24 +0000583 return true;
Bill Wendling92c1e122009-02-13 02:16:35 +0000584 }
Dale Johannesen45df7612010-02-26 20:01:55 +0000585 case Intrinsic::dbg_value: {
Dale Johannesen343b42e2010-04-07 01:15:14 +0000586 // This form of DBG_VALUE is target-independent.
Dan Gohmana61e73b2011-04-26 17:18:34 +0000587 const DbgValueInst *DI = cast<DbgValueInst>(Call);
Evan Chenge837dea2011-06-28 19:10:37 +0000588 const MCInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE);
Dan Gohman46510a72010-04-15 01:51:59 +0000589 const Value *V = DI->getValue();
Dale Johannesen45df7612010-02-26 20:01:55 +0000590 if (!V) {
591 // Currently the optimizer can produce this; insert an undef to
592 // help debugging. Probably the optimizer should not do this.
Dan Gohman84023e02010-07-10 09:00:22 +0000593 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
594 .addReg(0U).addImm(DI->getOffset())
595 .addMetadata(DI->getVariable());
Dan Gohman46510a72010-04-15 01:51:59 +0000596 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Devang Patel8594d422011-06-24 20:46:11 +0000597 if (CI->getBitWidth() > 64)
598 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
599 .addCImm(CI).addImm(DI->getOffset())
600 .addMetadata(DI->getVariable());
601 else
602 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
603 .addImm(CI->getZExtValue()).addImm(DI->getOffset())
604 .addMetadata(DI->getVariable());
Dan Gohman46510a72010-04-15 01:51:59 +0000605 } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
Dan Gohman84023e02010-07-10 09:00:22 +0000606 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
607 .addFPImm(CF).addImm(DI->getOffset())
608 .addMetadata(DI->getVariable());
Dale Johannesen45df7612010-02-26 20:01:55 +0000609 } else if (unsigned Reg = lookUpRegForValue(V)) {
Dan Gohman84023e02010-07-10 09:00:22 +0000610 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
611 .addReg(Reg, RegState::Debug).addImm(DI->getOffset())
612 .addMetadata(DI->getVariable());
Dale Johannesen45df7612010-02-26 20:01:55 +0000613 } else {
614 // We can't yet handle anything else here because it would require
615 // generating code, thus altering codegen because of debug info.
Devang Patelafeaae72010-12-06 22:39:26 +0000616 DEBUG(dbgs() << "Dropping debug info for " << DI);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000617 }
Dale Johannesen45df7612010-02-26 20:01:55 +0000618 return true;
619 }
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000620 case Intrinsic::eh_exception: {
Dan Gohmana61e73b2011-04-26 17:18:34 +0000621 EVT VT = TLI.getValueType(Call->getType());
Chris Lattner832e4942011-04-19 05:52:03 +0000622 if (TLI.getOperationAction(ISD::EXCEPTIONADDR, VT)!=TargetLowering::Expand)
623 break;
Owen Andersond74ea772011-04-22 23:38:06 +0000624
Chris Lattner832e4942011-04-19 05:52:03 +0000625 assert(FuncInfo.MBB->isLandingPad() &&
626 "Call to eh.exception not in landing pad!");
627 unsigned Reg = TLI.getExceptionAddressRegister();
628 const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
629 unsigned ResultReg = createResultReg(RC);
630 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
631 ResultReg).addReg(Reg);
Dan Gohmana61e73b2011-04-26 17:18:34 +0000632 UpdateValueMap(Call, ResultReg);
Chris Lattner832e4942011-04-19 05:52:03 +0000633 return true;
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000634 }
Duncan Sandsb01bbdc2009-10-14 16:11:37 +0000635 case Intrinsic::eh_selector: {
Dan Gohmana61e73b2011-04-26 17:18:34 +0000636 EVT VT = TLI.getValueType(Call->getType());
Chris Lattner832e4942011-04-19 05:52:03 +0000637 if (TLI.getOperationAction(ISD::EHSELECTION, VT) != TargetLowering::Expand)
638 break;
639 if (FuncInfo.MBB->isLandingPad())
Dan Gohmana61e73b2011-04-26 17:18:34 +0000640 AddCatchInfo(*Call, &FuncInfo.MF->getMMI(), FuncInfo.MBB);
Chris Lattner832e4942011-04-19 05:52:03 +0000641 else {
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000642#ifndef NDEBUG
Dan Gohmana61e73b2011-04-26 17:18:34 +0000643 FuncInfo.CatchInfoLost.insert(Call);
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000644#endif
Chris Lattner832e4942011-04-19 05:52:03 +0000645 // FIXME: Mark exception selector register as live in. Hack for PR1508.
Chris Lattnered3a8062010-04-05 06:05:26 +0000646 unsigned Reg = TLI.getExceptionSelectorRegister();
Chris Lattner832e4942011-04-19 05:52:03 +0000647 if (Reg) FuncInfo.MBB->addLiveIn(Reg);
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000648 }
Chris Lattner832e4942011-04-19 05:52:03 +0000649
650 unsigned Reg = TLI.getExceptionSelectorRegister();
651 EVT SrcVT = TLI.getPointerTy();
652 const TargetRegisterClass *RC = TLI.getRegClassFor(SrcVT);
653 unsigned ResultReg = createResultReg(RC);
654 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
655 ResultReg).addReg(Reg);
656
Dan Gohmana61e73b2011-04-26 17:18:34 +0000657 bool ResultRegIsKill = hasTrivialKill(Call);
Chris Lattner832e4942011-04-19 05:52:03 +0000658
659 // Cast the register to the type of the selector.
660 if (SrcVT.bitsGT(MVT::i32))
661 ResultReg = FastEmit_r(SrcVT.getSimpleVT(), MVT::i32, ISD::TRUNCATE,
662 ResultReg, ResultRegIsKill);
663 else if (SrcVT.bitsLT(MVT::i32))
664 ResultReg = FastEmit_r(SrcVT.getSimpleVT(), MVT::i32,
665 ISD::SIGN_EXTEND, ResultReg, ResultRegIsKill);
666 if (ResultReg == 0)
667 // Unhandled operand. Halt "fast" selection and bail.
668 return false;
669
Dan Gohmana61e73b2011-04-26 17:18:34 +0000670 UpdateValueMap(Call, ResultReg);
Chris Lattner832e4942011-04-19 05:52:03 +0000671
672 return true;
Dan Gohmandd5b58a2008-10-14 23:54:11 +0000673 }
Eli Friedmand0118a22011-05-14 00:47:51 +0000674 case Intrinsic::objectsize: {
675 ConstantInt *CI = cast<ConstantInt>(Call->getArgOperand(1));
676 unsigned long long Res = CI->isZero() ? -1ULL : 0;
677 Constant *ResCI = ConstantInt::get(Call->getType(), Res);
678 unsigned ResultReg = getRegForValue(ResCI);
679 if (ResultReg == 0)
680 return false;
681 UpdateValueMap(Call, ResultReg);
682 return true;
683 }
Dan Gohman33134c42008-09-25 17:05:24 +0000684 }
Dan Gohman4183e312010-04-13 17:07:06 +0000685
Ivan Krasin74af88a2011-08-18 22:06:10 +0000686 // Usually, it does not make sense to initialize a value,
687 // make an unrelated function call and use the value, because
688 // it tends to be spilled on the stack. So, we move the pointer
689 // to the last local value to the beginning of the block, so that
690 // all the values which have already been materialized,
691 // appear after the call. It also makes sense to skip intrinsics
692 // since they tend to be inlined.
693 if (!isa<IntrinsicInst>(F))
694 flushLocalValueMap();
695
Dan Gohman4183e312010-04-13 17:07:06 +0000696 // An arbitrary call. Bail.
Dan Gohman33134c42008-09-25 17:05:24 +0000697 return false;
698}
699
Dan Gohman46510a72010-04-15 01:51:59 +0000700bool FastISel::SelectCast(const User *I, unsigned Opcode) {
Owen Andersone50ed302009-08-10 22:56:29 +0000701 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
702 EVT DstVT = TLI.getValueType(I->getType());
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000703
Owen Anderson825b72b2009-08-11 20:47:22 +0000704 if (SrcVT == MVT::Other || !SrcVT.isSimple() ||
705 DstVT == MVT::Other || !DstVT.isSimple())
Owen Andersond0533c92008-08-26 23:46:32 +0000706 // Unhandled type. Halt "fast" selection and bail.
707 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000708
Eli Friedman76927d732011-05-25 23:49:02 +0000709 // Check if the destination type is legal.
Dan Gohman474d3b32009-03-13 23:53:06 +0000710 if (!TLI.isTypeLegal(DstVT))
Eli Friedman76927d732011-05-25 23:49:02 +0000711 return false;
Dan Gohman474d3b32009-03-13 23:53:06 +0000712
Eli Friedman76927d732011-05-25 23:49:02 +0000713 // Check if the source operand is legal.
Dan Gohman474d3b32009-03-13 23:53:06 +0000714 if (!TLI.isTypeLegal(SrcVT))
Eli Friedman76927d732011-05-25 23:49:02 +0000715 return false;
Dan Gohman474d3b32009-03-13 23:53:06 +0000716
Dan Gohman3df24e62008-09-03 23:12:08 +0000717 unsigned InputReg = getRegForValue(I->getOperand(0));
Owen Andersond0533c92008-08-26 23:46:32 +0000718 if (!InputReg)
719 // Unhandled operand. Halt "fast" selection and bail.
720 return false;
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000721
Dan Gohmana6cb6412010-05-11 23:54:07 +0000722 bool InputRegIsKill = hasTrivialKill(I->getOperand(0));
723
Owen Andersond0533c92008-08-26 23:46:32 +0000724 unsigned ResultReg = FastEmit_r(SrcVT.getSimpleVT(),
725 DstVT.getSimpleVT(),
726 Opcode,
Dan Gohmana6cb6412010-05-11 23:54:07 +0000727 InputReg, InputRegIsKill);
Owen Andersond0533c92008-08-26 23:46:32 +0000728 if (!ResultReg)
729 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000730
Dan Gohman3df24e62008-09-03 23:12:08 +0000731 UpdateValueMap(I, ResultReg);
Owen Andersond0533c92008-08-26 23:46:32 +0000732 return true;
733}
734
Dan Gohman46510a72010-04-15 01:51:59 +0000735bool FastISel::SelectBitCast(const User *I) {
Dan Gohmanad368ac2008-08-27 18:10:19 +0000736 // If the bitcast doesn't change the type, just use the operand value.
737 if (I->getType() == I->getOperand(0)->getType()) {
Dan Gohman3df24e62008-09-03 23:12:08 +0000738 unsigned Reg = getRegForValue(I->getOperand(0));
Dan Gohmana318dab2008-08-27 20:41:38 +0000739 if (Reg == 0)
740 return false;
Dan Gohman3df24e62008-09-03 23:12:08 +0000741 UpdateValueMap(I, Reg);
Dan Gohmanad368ac2008-08-27 18:10:19 +0000742 return true;
743 }
744
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000745 // Bitcasts of other values become reg-reg copies or BITCAST operators.
Owen Andersone50ed302009-08-10 22:56:29 +0000746 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
747 EVT DstVT = TLI.getValueType(I->getType());
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000748
Owen Anderson825b72b2009-08-11 20:47:22 +0000749 if (SrcVT == MVT::Other || !SrcVT.isSimple() ||
750 DstVT == MVT::Other || !DstVT.isSimple() ||
Owen Andersond0533c92008-08-26 23:46:32 +0000751 !TLI.isTypeLegal(SrcVT) || !TLI.isTypeLegal(DstVT))
752 // Unhandled type. Halt "fast" selection and bail.
753 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000754
Dan Gohman3df24e62008-09-03 23:12:08 +0000755 unsigned Op0 = getRegForValue(I->getOperand(0));
Dan Gohmanad368ac2008-08-27 18:10:19 +0000756 if (Op0 == 0)
757 // Unhandled operand. Halt "fast" selection and bail.
Owen Andersond0533c92008-08-26 23:46:32 +0000758 return false;
Dan Gohmana6cb6412010-05-11 23:54:07 +0000759
760 bool Op0IsKill = hasTrivialKill(I->getOperand(0));
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000761
Dan Gohmanad368ac2008-08-27 18:10:19 +0000762 // First, try to perform the bitcast by inserting a reg-reg copy.
763 unsigned ResultReg = 0;
764 if (SrcVT.getSimpleVT() == DstVT.getSimpleVT()) {
765 TargetRegisterClass* SrcClass = TLI.getRegClassFor(SrcVT);
766 TargetRegisterClass* DstClass = TLI.getRegClassFor(DstVT);
Jakob Stoklund Olesene7917bb2010-07-11 05:16:54 +0000767 // Don't attempt a cross-class copy. It will likely fail.
768 if (SrcClass == DstClass) {
769 ResultReg = createResultReg(DstClass);
770 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
771 ResultReg).addReg(Op0);
772 }
Dan Gohmanad368ac2008-08-27 18:10:19 +0000773 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000774
775 // If the reg-reg copy failed, select a BITCAST opcode.
Dan Gohmanad368ac2008-08-27 18:10:19 +0000776 if (!ResultReg)
777 ResultReg = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000778 ISD::BITCAST, Op0, Op0IsKill);
779
Dan Gohmanad368ac2008-08-27 18:10:19 +0000780 if (!ResultReg)
Owen Andersond0533c92008-08-26 23:46:32 +0000781 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000782
Dan Gohman3df24e62008-09-03 23:12:08 +0000783 UpdateValueMap(I, ResultReg);
Owen Andersond0533c92008-08-26 23:46:32 +0000784 return true;
785}
786
Dan Gohman3df24e62008-09-03 23:12:08 +0000787bool
Dan Gohman46510a72010-04-15 01:51:59 +0000788FastISel::SelectInstruction(const Instruction *I) {
Dan Gohmane8c92dd2010-04-23 15:29:50 +0000789 // Just before the terminator instruction, insert instructions to
790 // feed PHI nodes in successor blocks.
791 if (isa<TerminatorInst>(I))
792 if (!HandlePHINodesInSuccessorBlocks(I->getParent()))
793 return false;
794
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000795 DL = I->getDebugLoc();
796
Dan Gohman6e3ff372009-12-05 01:27:58 +0000797 // First, try doing target-independent selection.
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000798 if (SelectOperator(I, I->getOpcode())) {
Chad Rosier053e69a2011-11-16 21:05:28 +0000799 ++NumFastIselSuccessIndependent;
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000800 DL = DebugLoc();
Dan Gohman6e3ff372009-12-05 01:27:58 +0000801 return true;
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000802 }
Dan Gohman6e3ff372009-12-05 01:27:58 +0000803
804 // Next, try calling the target to attempt to handle the instruction.
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000805 if (TargetSelectInstruction(I)) {
Chad Rosier053e69a2011-11-16 21:05:28 +0000806 ++NumFastIselSuccessTarget;
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000807 DL = DebugLoc();
Dan Gohman6e3ff372009-12-05 01:27:58 +0000808 return true;
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000809 }
Dan Gohman6e3ff372009-12-05 01:27:58 +0000810
Dan Gohman8ba3aa72010-04-20 00:48:35 +0000811 DL = DebugLoc();
Dan Gohman6e3ff372009-12-05 01:27:58 +0000812 return false;
Dan Gohman40b189e2008-09-05 18:18:20 +0000813}
814
Dan Gohmand98d6202008-10-02 22:15:21 +0000815/// FastEmitBranch - Emit an unconditional branch to the given block,
816/// unless it is the immediate (fall-through) successor, and update
817/// the CFG.
818void
Stuart Hastings3bf91252010-06-17 22:43:56 +0000819FastISel::FastEmitBranch(MachineBasicBlock *MSucc, DebugLoc DL) {
Dan Gohman84023e02010-07-10 09:00:22 +0000820 if (FuncInfo.MBB->isLayoutSuccessor(MSucc)) {
Dan Gohmand98d6202008-10-02 22:15:21 +0000821 // The unconditional fall-through case, which needs no instructions.
822 } else {
823 // The unconditional branch case.
Dan Gohman84023e02010-07-10 09:00:22 +0000824 TII.InsertBranch(*FuncInfo.MBB, MSucc, NULL,
825 SmallVector<MachineOperand, 0>(), DL);
Dan Gohmand98d6202008-10-02 22:15:21 +0000826 }
Dan Gohman84023e02010-07-10 09:00:22 +0000827 FuncInfo.MBB->addSuccessor(MSucc);
Dan Gohmand98d6202008-10-02 22:15:21 +0000828}
829
Dan Gohman3d45a852009-09-03 22:53:57 +0000830/// SelectFNeg - Emit an FNeg operation.
831///
832bool
Dan Gohman46510a72010-04-15 01:51:59 +0000833FastISel::SelectFNeg(const User *I) {
Dan Gohman3d45a852009-09-03 22:53:57 +0000834 unsigned OpReg = getRegForValue(BinaryOperator::getFNegArgument(I));
835 if (OpReg == 0) return false;
836
Dan Gohmana6cb6412010-05-11 23:54:07 +0000837 bool OpRegIsKill = hasTrivialKill(I);
838
Dan Gohman4a215a12009-09-11 00:36:43 +0000839 // If the target has ISD::FNEG, use it.
840 EVT VT = TLI.getValueType(I->getType());
841 unsigned ResultReg = FastEmit_r(VT.getSimpleVT(), VT.getSimpleVT(),
Dan Gohmana6cb6412010-05-11 23:54:07 +0000842 ISD::FNEG, OpReg, OpRegIsKill);
Dan Gohman4a215a12009-09-11 00:36:43 +0000843 if (ResultReg != 0) {
844 UpdateValueMap(I, ResultReg);
845 return true;
846 }
847
Dan Gohman5e5abb72009-09-11 00:34:46 +0000848 // Bitcast the value to integer, twiddle the sign bit with xor,
849 // and then bitcast it back to floating-point.
Dan Gohman3d45a852009-09-03 22:53:57 +0000850 if (VT.getSizeInBits() > 64) return false;
Dan Gohman5e5abb72009-09-11 00:34:46 +0000851 EVT IntVT = EVT::getIntegerVT(I->getContext(), VT.getSizeInBits());
852 if (!TLI.isTypeLegal(IntVT))
853 return false;
854
855 unsigned IntReg = FastEmit_r(VT.getSimpleVT(), IntVT.getSimpleVT(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000856 ISD::BITCAST, OpReg, OpRegIsKill);
Dan Gohman5e5abb72009-09-11 00:34:46 +0000857 if (IntReg == 0)
858 return false;
859
Dan Gohmana6cb6412010-05-11 23:54:07 +0000860 unsigned IntResultReg = FastEmit_ri_(IntVT.getSimpleVT(), ISD::XOR,
861 IntReg, /*Kill=*/true,
Dan Gohman5e5abb72009-09-11 00:34:46 +0000862 UINT64_C(1) << (VT.getSizeInBits()-1),
863 IntVT.getSimpleVT());
864 if (IntResultReg == 0)
865 return false;
866
867 ResultReg = FastEmit_r(IntVT.getSimpleVT(), VT.getSimpleVT(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000868 ISD::BITCAST, IntResultReg, /*Kill=*/true);
Dan Gohman3d45a852009-09-03 22:53:57 +0000869 if (ResultReg == 0)
870 return false;
871
872 UpdateValueMap(I, ResultReg);
873 return true;
874}
875
Dan Gohman40b189e2008-09-05 18:18:20 +0000876bool
Eli Friedman2586b8f2011-05-16 20:27:46 +0000877FastISel::SelectExtractValue(const User *U) {
878 const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(U);
Eli Friedmana4c920d2011-05-16 20:34:53 +0000879 if (!EVI)
Eli Friedman2586b8f2011-05-16 20:27:46 +0000880 return false;
881
Eli Friedman482feb32011-05-16 21:06:17 +0000882 // Make sure we only try to handle extracts with a legal result. But also
883 // allow i1 because it's easy.
Eli Friedman2586b8f2011-05-16 20:27:46 +0000884 EVT RealVT = TLI.getValueType(EVI->getType(), /*AllowUnknown=*/true);
885 if (!RealVT.isSimple())
886 return false;
887 MVT VT = RealVT.getSimpleVT();
Eli Friedman482feb32011-05-16 21:06:17 +0000888 if (!TLI.isTypeLegal(VT) && VT != MVT::i1)
Eli Friedman2586b8f2011-05-16 20:27:46 +0000889 return false;
890
891 const Value *Op0 = EVI->getOperand(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000892 Type *AggTy = Op0->getType();
Eli Friedman2586b8f2011-05-16 20:27:46 +0000893
894 // Get the base result register.
895 unsigned ResultReg;
896 DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(Op0);
897 if (I != FuncInfo.ValueMap.end())
898 ResultReg = I->second;
Eli Friedman0b4d96b2011-06-06 05:46:34 +0000899 else if (isa<Instruction>(Op0))
Eli Friedman2586b8f2011-05-16 20:27:46 +0000900 ResultReg = FuncInfo.InitializeRegForValue(Op0);
Eli Friedman0b4d96b2011-06-06 05:46:34 +0000901 else
902 return false; // fast-isel can't handle aggregate constants at the moment
Eli Friedman2586b8f2011-05-16 20:27:46 +0000903
904 // Get the actual result register, which is an offset from the base register.
Jay Foadfc6d3a42011-07-13 10:26:04 +0000905 unsigned VTIndex = ComputeLinearIndex(AggTy, EVI->getIndices());
Eli Friedman2586b8f2011-05-16 20:27:46 +0000906
907 SmallVector<EVT, 4> AggValueVTs;
908 ComputeValueVTs(TLI, AggTy, AggValueVTs);
909
910 for (unsigned i = 0; i < VTIndex; i++)
911 ResultReg += TLI.getNumRegisters(FuncInfo.Fn->getContext(), AggValueVTs[i]);
912
913 UpdateValueMap(EVI, ResultReg);
914 return true;
915}
916
917bool
Dan Gohman46510a72010-04-15 01:51:59 +0000918FastISel::SelectOperator(const User *I, unsigned Opcode) {
Dan Gohman40b189e2008-09-05 18:18:20 +0000919 switch (Opcode) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000920 case Instruction::Add:
921 return SelectBinaryOp(I, ISD::ADD);
922 case Instruction::FAdd:
923 return SelectBinaryOp(I, ISD::FADD);
924 case Instruction::Sub:
925 return SelectBinaryOp(I, ISD::SUB);
926 case Instruction::FSub:
Dan Gohman3d45a852009-09-03 22:53:57 +0000927 // FNeg is currently represented in LLVM IR as a special case of FSub.
928 if (BinaryOperator::isFNeg(I))
929 return SelectFNeg(I);
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000930 return SelectBinaryOp(I, ISD::FSUB);
931 case Instruction::Mul:
932 return SelectBinaryOp(I, ISD::MUL);
933 case Instruction::FMul:
934 return SelectBinaryOp(I, ISD::FMUL);
Dan Gohman3df24e62008-09-03 23:12:08 +0000935 case Instruction::SDiv:
936 return SelectBinaryOp(I, ISD::SDIV);
937 case Instruction::UDiv:
938 return SelectBinaryOp(I, ISD::UDIV);
939 case Instruction::FDiv:
940 return SelectBinaryOp(I, ISD::FDIV);
941 case Instruction::SRem:
942 return SelectBinaryOp(I, ISD::SREM);
943 case Instruction::URem:
944 return SelectBinaryOp(I, ISD::UREM);
945 case Instruction::FRem:
946 return SelectBinaryOp(I, ISD::FREM);
947 case Instruction::Shl:
948 return SelectBinaryOp(I, ISD::SHL);
949 case Instruction::LShr:
950 return SelectBinaryOp(I, ISD::SRL);
951 case Instruction::AShr:
952 return SelectBinaryOp(I, ISD::SRA);
953 case Instruction::And:
954 return SelectBinaryOp(I, ISD::AND);
955 case Instruction::Or:
956 return SelectBinaryOp(I, ISD::OR);
957 case Instruction::Xor:
958 return SelectBinaryOp(I, ISD::XOR);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000959
Dan Gohman3df24e62008-09-03 23:12:08 +0000960 case Instruction::GetElementPtr:
961 return SelectGetElementPtr(I);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000962
Dan Gohman3df24e62008-09-03 23:12:08 +0000963 case Instruction::Br: {
Dan Gohman46510a72010-04-15 01:51:59 +0000964 const BranchInst *BI = cast<BranchInst>(I);
Dan Gohmanbdedd442008-08-20 00:11:48 +0000965
Dan Gohman3df24e62008-09-03 23:12:08 +0000966 if (BI->isUnconditional()) {
Dan Gohman46510a72010-04-15 01:51:59 +0000967 const BasicBlock *LLVMSucc = BI->getSuccessor(0);
Dan Gohmana4160c32010-07-07 16:29:44 +0000968 MachineBasicBlock *MSucc = FuncInfo.MBBMap[LLVMSucc];
Stuart Hastings3bf91252010-06-17 22:43:56 +0000969 FastEmitBranch(MSucc, BI->getDebugLoc());
Dan Gohman3df24e62008-09-03 23:12:08 +0000970 return true;
Owen Anderson9d5b4162008-08-27 00:31:01 +0000971 }
Dan Gohman3df24e62008-09-03 23:12:08 +0000972
973 // Conditional branches are not handed yet.
974 // Halt "fast" selection and bail.
975 return false;
Dan Gohmanb0cf29c2008-08-13 20:19:35 +0000976 }
977
Dan Gohman087c8502008-09-05 01:08:41 +0000978 case Instruction::Unreachable:
979 // Nothing to emit.
980 return true;
981
Dan Gohman0586d912008-09-10 20:11:02 +0000982 case Instruction::Alloca:
983 // FunctionLowering has the static-sized case covered.
Dan Gohmana4160c32010-07-07 16:29:44 +0000984 if (FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(I)))
Dan Gohman0586d912008-09-10 20:11:02 +0000985 return true;
986
987 // Dynamic-sized alloca is not handled yet.
988 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000989
Dan Gohman33134c42008-09-25 17:05:24 +0000990 case Instruction::Call:
991 return SelectCall(I);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000992
Dan Gohman3df24e62008-09-03 23:12:08 +0000993 case Instruction::BitCast:
994 return SelectBitCast(I);
995
996 case Instruction::FPToSI:
997 return SelectCast(I, ISD::FP_TO_SINT);
998 case Instruction::ZExt:
999 return SelectCast(I, ISD::ZERO_EXTEND);
1000 case Instruction::SExt:
1001 return SelectCast(I, ISD::SIGN_EXTEND);
1002 case Instruction::Trunc:
1003 return SelectCast(I, ISD::TRUNCATE);
1004 case Instruction::SIToFP:
1005 return SelectCast(I, ISD::SINT_TO_FP);
1006
1007 case Instruction::IntToPtr: // Deliberate fall-through.
1008 case Instruction::PtrToInt: {
Owen Andersone50ed302009-08-10 22:56:29 +00001009 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1010 EVT DstVT = TLI.getValueType(I->getType());
Dan Gohman3df24e62008-09-03 23:12:08 +00001011 if (DstVT.bitsGT(SrcVT))
1012 return SelectCast(I, ISD::ZERO_EXTEND);
1013 if (DstVT.bitsLT(SrcVT))
1014 return SelectCast(I, ISD::TRUNCATE);
1015 unsigned Reg = getRegForValue(I->getOperand(0));
1016 if (Reg == 0) return false;
1017 UpdateValueMap(I, Reg);
1018 return true;
1019 }
Dan Gohmand57dd5f2008-09-23 21:53:34 +00001020
Eli Friedman2586b8f2011-05-16 20:27:46 +00001021 case Instruction::ExtractValue:
1022 return SelectExtractValue(I);
1023
Dan Gohmanba5be5c2010-04-20 15:00:41 +00001024 case Instruction::PHI:
1025 llvm_unreachable("FastISel shouldn't visit PHI nodes!");
1026
Dan Gohman3df24e62008-09-03 23:12:08 +00001027 default:
1028 // Unhandled instruction. Halt "fast" selection and bail.
1029 return false;
1030 }
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001031}
1032
Dan Gohmana4160c32010-07-07 16:29:44 +00001033FastISel::FastISel(FunctionLoweringInfo &funcInfo)
Dan Gohman84023e02010-07-10 09:00:22 +00001034 : FuncInfo(funcInfo),
Dan Gohmana4160c32010-07-07 16:29:44 +00001035 MRI(FuncInfo.MF->getRegInfo()),
1036 MFI(*FuncInfo.MF->getFrameInfo()),
1037 MCP(*FuncInfo.MF->getConstantPool()),
1038 TM(FuncInfo.MF->getTarget()),
Dan Gohman22bb3112008-08-22 00:20:26 +00001039 TD(*TM.getTargetData()),
1040 TII(*TM.getInstrInfo()),
Dan Gohmana7a0ed72010-05-05 23:58:35 +00001041 TLI(*TM.getTargetLowering()),
Dan Gohman84023e02010-07-10 09:00:22 +00001042 TRI(*TM.getRegisterInfo()) {
Dan Gohmanbb466332008-08-20 21:05:57 +00001043}
1044
Dan Gohmane285a742008-08-14 21:51:29 +00001045FastISel::~FastISel() {}
1046
Owen Anderson825b72b2009-08-11 20:47:22 +00001047unsigned FastISel::FastEmit_(MVT, MVT,
Dan Gohman7c3ecb62010-01-05 22:26:32 +00001048 unsigned) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001049 return 0;
1050}
1051
Owen Anderson825b72b2009-08-11 20:47:22 +00001052unsigned FastISel::FastEmit_r(MVT, MVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001053 unsigned,
1054 unsigned /*Op0*/, bool /*Op0IsKill*/) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001055 return 0;
1056}
1057
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001058unsigned FastISel::FastEmit_rr(MVT, MVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001059 unsigned,
1060 unsigned /*Op0*/, bool /*Op0IsKill*/,
1061 unsigned /*Op1*/, bool /*Op1IsKill*/) {
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001062 return 0;
1063}
1064
Dan Gohman7c3ecb62010-01-05 22:26:32 +00001065unsigned FastISel::FastEmit_i(MVT, MVT, unsigned, uint64_t /*Imm*/) {
Evan Cheng83785c82008-08-20 22:45:34 +00001066 return 0;
1067}
1068
Owen Anderson825b72b2009-08-11 20:47:22 +00001069unsigned FastISel::FastEmit_f(MVT, MVT,
Dan Gohman46510a72010-04-15 01:51:59 +00001070 unsigned, const ConstantFP * /*FPImm*/) {
Dan Gohman10df0fa2008-08-27 01:09:54 +00001071 return 0;
1072}
1073
Owen Anderson825b72b2009-08-11 20:47:22 +00001074unsigned FastISel::FastEmit_ri(MVT, MVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001075 unsigned,
1076 unsigned /*Op0*/, bool /*Op0IsKill*/,
Owen Anderson0f84e4e2008-08-25 23:58:18 +00001077 uint64_t /*Imm*/) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001078 return 0;
1079}
1080
Owen Anderson825b72b2009-08-11 20:47:22 +00001081unsigned FastISel::FastEmit_rf(MVT, MVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001082 unsigned,
1083 unsigned /*Op0*/, bool /*Op0IsKill*/,
Dan Gohman46510a72010-04-15 01:51:59 +00001084 const ConstantFP * /*FPImm*/) {
Dan Gohman10df0fa2008-08-27 01:09:54 +00001085 return 0;
1086}
1087
Owen Anderson825b72b2009-08-11 20:47:22 +00001088unsigned FastISel::FastEmit_rri(MVT, MVT,
Dan Gohman7c3ecb62010-01-05 22:26:32 +00001089 unsigned,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001090 unsigned /*Op0*/, bool /*Op0IsKill*/,
1091 unsigned /*Op1*/, bool /*Op1IsKill*/,
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001092 uint64_t /*Imm*/) {
Evan Cheng83785c82008-08-20 22:45:34 +00001093 return 0;
1094}
1095
1096/// FastEmit_ri_ - This method is a wrapper of FastEmit_ri. It first tries
1097/// to emit an instruction with an immediate operand using FastEmit_ri.
1098/// If that fails, it materializes the immediate into a register and try
1099/// FastEmit_rr instead.
Dan Gohman7c3ecb62010-01-05 22:26:32 +00001100unsigned FastISel::FastEmit_ri_(MVT VT, unsigned Opcode,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001101 unsigned Op0, bool Op0IsKill,
1102 uint64_t Imm, MVT ImmType) {
Chris Lattner602fc062011-04-17 20:23:29 +00001103 // If this is a multiply by a power of two, emit this as a shift left.
1104 if (Opcode == ISD::MUL && isPowerOf2_64(Imm)) {
1105 Opcode = ISD::SHL;
1106 Imm = Log2_64(Imm);
Chris Lattner090ca912011-04-18 06:55:51 +00001107 } else if (Opcode == ISD::UDIV && isPowerOf2_64(Imm)) {
1108 // div x, 8 -> srl x, 3
1109 Opcode = ISD::SRL;
1110 Imm = Log2_64(Imm);
Chris Lattner602fc062011-04-17 20:23:29 +00001111 }
Owen Andersond74ea772011-04-22 23:38:06 +00001112
Chris Lattner602fc062011-04-17 20:23:29 +00001113 // Horrible hack (to be removed), check to make sure shift amounts are
1114 // in-range.
1115 if ((Opcode == ISD::SHL || Opcode == ISD::SRA || Opcode == ISD::SRL) &&
1116 Imm >= VT.getSizeInBits())
1117 return 0;
Owen Andersond74ea772011-04-22 23:38:06 +00001118
Evan Cheng83785c82008-08-20 22:45:34 +00001119 // First check if immediate type is legal. If not, we can't use the ri form.
Dan Gohmana6cb6412010-05-11 23:54:07 +00001120 unsigned ResultReg = FastEmit_ri(VT, VT, Opcode, Op0, Op0IsKill, Imm);
Evan Cheng83785c82008-08-20 22:45:34 +00001121 if (ResultReg != 0)
1122 return ResultReg;
Owen Anderson0f84e4e2008-08-25 23:58:18 +00001123 unsigned MaterialReg = FastEmit_i(ImmType, ImmType, ISD::Constant, Imm);
Eli Friedmanb2b03fc2011-04-29 23:34:52 +00001124 if (MaterialReg == 0) {
1125 // This is a bit ugly/slow, but failing here means falling out of
1126 // fast-isel, which would be very slow.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001127 IntegerType *ITy = IntegerType::get(FuncInfo.Fn->getContext(),
Eli Friedmanb2b03fc2011-04-29 23:34:52 +00001128 VT.getSizeInBits());
1129 MaterialReg = getRegForValue(ConstantInt::get(ITy, Imm));
1130 }
Dan Gohmana6cb6412010-05-11 23:54:07 +00001131 return FastEmit_rr(VT, VT, Opcode,
1132 Op0, Op0IsKill,
1133 MaterialReg, /*Kill=*/true);
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001134}
1135
1136unsigned FastISel::createResultReg(const TargetRegisterClass* RC) {
1137 return MRI.createVirtualRegister(RC);
Evan Cheng83785c82008-08-20 22:45:34 +00001138}
1139
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001140unsigned FastISel::FastEmitInst_(unsigned MachineInstOpcode,
Dan Gohman77ad7962008-08-20 18:09:38 +00001141 const TargetRegisterClass* RC) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001142 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +00001143 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001144
Dan Gohman84023e02010-07-10 09:00:22 +00001145 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001146 return ResultReg;
1147}
1148
1149unsigned FastISel::FastEmitInst_r(unsigned MachineInstOpcode,
1150 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001151 unsigned Op0, bool Op0IsKill) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001152 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +00001153 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001154
Evan Cheng5960e4e2008-09-08 08:38:20 +00001155 if (II.getNumDefs() >= 1)
Dan Gohman84023e02010-07-10 09:00:22 +00001156 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
1157 .addReg(Op0, Op0IsKill * RegState::Kill);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001158 else {
Dan Gohman84023e02010-07-10 09:00:22 +00001159 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
1160 .addReg(Op0, Op0IsKill * RegState::Kill);
Jakob Stoklund Olesene797e0c2010-07-11 03:31:05 +00001161 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1162 ResultReg).addReg(II.ImplicitDefs[0]);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001163 }
1164
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001165 return ResultReg;
1166}
1167
1168unsigned FastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
1169 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001170 unsigned Op0, bool Op0IsKill,
1171 unsigned Op1, bool Op1IsKill) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001172 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +00001173 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001174
Evan Cheng5960e4e2008-09-08 08:38:20 +00001175 if (II.getNumDefs() >= 1)
Dan Gohman84023e02010-07-10 09:00:22 +00001176 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001177 .addReg(Op0, Op0IsKill * RegState::Kill)
1178 .addReg(Op1, Op1IsKill * RegState::Kill);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001179 else {
Dan Gohman84023e02010-07-10 09:00:22 +00001180 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001181 .addReg(Op0, Op0IsKill * RegState::Kill)
1182 .addReg(Op1, Op1IsKill * RegState::Kill);
Jakob Stoklund Olesene797e0c2010-07-11 03:31:05 +00001183 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1184 ResultReg).addReg(II.ImplicitDefs[0]);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001185 }
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001186 return ResultReg;
1187}
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001188
Owen Andersond71867a2011-05-05 17:59:04 +00001189unsigned FastISel::FastEmitInst_rrr(unsigned MachineInstOpcode,
1190 const TargetRegisterClass *RC,
1191 unsigned Op0, bool Op0IsKill,
1192 unsigned Op1, bool Op1IsKill,
1193 unsigned Op2, bool Op2IsKill) {
1194 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +00001195 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Owen Andersond71867a2011-05-05 17:59:04 +00001196
1197 if (II.getNumDefs() >= 1)
1198 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
1199 .addReg(Op0, Op0IsKill * RegState::Kill)
1200 .addReg(Op1, Op1IsKill * RegState::Kill)
1201 .addReg(Op2, Op2IsKill * RegState::Kill);
1202 else {
1203 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
1204 .addReg(Op0, Op0IsKill * RegState::Kill)
1205 .addReg(Op1, Op1IsKill * RegState::Kill)
1206 .addReg(Op2, Op2IsKill * RegState::Kill);
1207 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1208 ResultReg).addReg(II.ImplicitDefs[0]);
1209 }
1210 return ResultReg;
1211}
1212
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001213unsigned FastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
1214 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001215 unsigned Op0, bool Op0IsKill,
1216 uint64_t Imm) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001217 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +00001218 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001219
Evan Cheng5960e4e2008-09-08 08:38:20 +00001220 if (II.getNumDefs() >= 1)
Dan Gohman84023e02010-07-10 09:00:22 +00001221 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001222 .addReg(Op0, Op0IsKill * RegState::Kill)
1223 .addImm(Imm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001224 else {
Dan Gohman84023e02010-07-10 09:00:22 +00001225 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001226 .addReg(Op0, Op0IsKill * RegState::Kill)
1227 .addImm(Imm);
Jakob Stoklund Olesene797e0c2010-07-11 03:31:05 +00001228 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1229 ResultReg).addReg(II.ImplicitDefs[0]);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001230 }
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001231 return ResultReg;
1232}
1233
Owen Anderson2ce5bf12011-03-11 21:33:55 +00001234unsigned FastISel::FastEmitInst_rii(unsigned MachineInstOpcode,
1235 const TargetRegisterClass *RC,
1236 unsigned Op0, bool Op0IsKill,
1237 uint64_t Imm1, uint64_t Imm2) {
1238 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +00001239 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Owen Anderson2ce5bf12011-03-11 21:33:55 +00001240
1241 if (II.getNumDefs() >= 1)
1242 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
1243 .addReg(Op0, Op0IsKill * RegState::Kill)
1244 .addImm(Imm1)
1245 .addImm(Imm2);
1246 else {
1247 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
1248 .addReg(Op0, Op0IsKill * RegState::Kill)
1249 .addImm(Imm1)
1250 .addImm(Imm2);
1251 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1252 ResultReg).addReg(II.ImplicitDefs[0]);
1253 }
1254 return ResultReg;
1255}
1256
Dan Gohman10df0fa2008-08-27 01:09:54 +00001257unsigned FastISel::FastEmitInst_rf(unsigned MachineInstOpcode,
1258 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001259 unsigned Op0, bool Op0IsKill,
1260 const ConstantFP *FPImm) {
Dan Gohman10df0fa2008-08-27 01:09:54 +00001261 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +00001262 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohman10df0fa2008-08-27 01:09:54 +00001263
Evan Cheng5960e4e2008-09-08 08:38:20 +00001264 if (II.getNumDefs() >= 1)
Dan Gohman84023e02010-07-10 09:00:22 +00001265 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001266 .addReg(Op0, Op0IsKill * RegState::Kill)
1267 .addFPImm(FPImm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001268 else {
Dan Gohman84023e02010-07-10 09:00:22 +00001269 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001270 .addReg(Op0, Op0IsKill * RegState::Kill)
1271 .addFPImm(FPImm);
Jakob Stoklund Olesene797e0c2010-07-11 03:31:05 +00001272 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1273 ResultReg).addReg(II.ImplicitDefs[0]);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001274 }
Dan Gohman10df0fa2008-08-27 01:09:54 +00001275 return ResultReg;
1276}
1277
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001278unsigned FastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
1279 const TargetRegisterClass *RC,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001280 unsigned Op0, bool Op0IsKill,
1281 unsigned Op1, bool Op1IsKill,
1282 uint64_t Imm) {
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001283 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +00001284 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001285
Evan Cheng5960e4e2008-09-08 08:38:20 +00001286 if (II.getNumDefs() >= 1)
Dan Gohman84023e02010-07-10 09:00:22 +00001287 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001288 .addReg(Op0, Op0IsKill * RegState::Kill)
1289 .addReg(Op1, Op1IsKill * RegState::Kill)
1290 .addImm(Imm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001291 else {
Dan Gohman84023e02010-07-10 09:00:22 +00001292 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Dan Gohmana6cb6412010-05-11 23:54:07 +00001293 .addReg(Op0, Op0IsKill * RegState::Kill)
1294 .addReg(Op1, Op1IsKill * RegState::Kill)
1295 .addImm(Imm);
Jakob Stoklund Olesene797e0c2010-07-11 03:31:05 +00001296 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1297 ResultReg).addReg(II.ImplicitDefs[0]);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001298 }
Dan Gohmand5fe57d2008-08-21 01:41:07 +00001299 return ResultReg;
1300}
Owen Anderson6d0c25e2008-08-25 20:20:32 +00001301
1302unsigned FastISel::FastEmitInst_i(unsigned MachineInstOpcode,
1303 const TargetRegisterClass *RC,
1304 uint64_t Imm) {
1305 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +00001306 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001307
Evan Cheng5960e4e2008-09-08 08:38:20 +00001308 if (II.getNumDefs() >= 1)
Dan Gohman84023e02010-07-10 09:00:22 +00001309 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg).addImm(Imm);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001310 else {
Dan Gohman84023e02010-07-10 09:00:22 +00001311 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II).addImm(Imm);
Jakob Stoklund Olesene797e0c2010-07-11 03:31:05 +00001312 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1313 ResultReg).addReg(II.ImplicitDefs[0]);
Evan Cheng5960e4e2008-09-08 08:38:20 +00001314 }
Owen Anderson6d0c25e2008-08-25 20:20:32 +00001315 return ResultReg;
Evan Chengb41aec52008-08-25 22:20:39 +00001316}
Owen Anderson8970f002008-08-27 22:30:02 +00001317
Owen Andersond74ea772011-04-22 23:38:06 +00001318unsigned FastISel::FastEmitInst_ii(unsigned MachineInstOpcode,
1319 const TargetRegisterClass *RC,
1320 uint64_t Imm1, uint64_t Imm2) {
1321 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +00001322 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Owen Andersond74ea772011-04-22 23:38:06 +00001323
1324 if (II.getNumDefs() >= 1)
1325 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
1326 .addImm(Imm1).addImm(Imm2);
1327 else {
1328 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II).addImm(Imm1).addImm(Imm2);
1329 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1330 ResultReg).addReg(II.ImplicitDefs[0]);
1331 }
1332 return ResultReg;
1333}
1334
Owen Anderson825b72b2009-08-11 20:47:22 +00001335unsigned FastISel::FastEmitInst_extractsubreg(MVT RetVT,
Dan Gohmana6cb6412010-05-11 23:54:07 +00001336 unsigned Op0, bool Op0IsKill,
1337 uint32_t Idx) {
Evan Cheng536ab132009-01-22 09:10:11 +00001338 unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT));
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +00001339 assert(TargetRegisterInfo::isVirtualRegister(Op0) &&
1340 "Cannot yet extract from physregs");
Dan Gohman84023e02010-07-10 09:00:22 +00001341 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
1342 DL, TII.get(TargetOpcode::COPY), ResultReg)
Jakob Stoklund Olesen0bc25f42010-07-08 16:40:22 +00001343 .addReg(Op0, getKillRegState(Op0IsKill), Idx);
Owen Anderson8970f002008-08-27 22:30:02 +00001344 return ResultReg;
1345}
Dan Gohman14ea1ec2009-03-13 20:42:20 +00001346
1347/// FastEmitZExtFromI1 - Emit MachineInstrs to compute the value of Op
1348/// with all but the least significant bit set to zero.
Dan Gohmana6cb6412010-05-11 23:54:07 +00001349unsigned FastISel::FastEmitZExtFromI1(MVT VT, unsigned Op0, bool Op0IsKill) {
1350 return FastEmit_ri(VT, VT, ISD::AND, Op0, Op0IsKill, 1);
Dan Gohman14ea1ec2009-03-13 20:42:20 +00001351}
Dan Gohmanf81eca02010-04-22 20:46:50 +00001352
1353/// HandlePHINodesInSuccessorBlocks - Handle PHI nodes in successor blocks.
1354/// Emit code to ensure constants are copied into registers when needed.
1355/// Remember the virtual registers that need to be added to the Machine PHI
1356/// nodes as input. We cannot just directly add them, because expansion
1357/// might result in multiple MBB's for one BB. As such, the start of the
1358/// BB might correspond to a different MBB than the end.
1359bool FastISel::HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB) {
1360 const TerminatorInst *TI = LLVMBB->getTerminator();
1361
1362 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
Dan Gohmana4160c32010-07-07 16:29:44 +00001363 unsigned OrigNumPHINodesToUpdate = FuncInfo.PHINodesToUpdate.size();
Dan Gohmanf81eca02010-04-22 20:46:50 +00001364
1365 // Check successor nodes' PHI nodes that expect a constant to be available
1366 // from this block.
1367 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
1368 const BasicBlock *SuccBB = TI->getSuccessor(succ);
1369 if (!isa<PHINode>(SuccBB->begin())) continue;
Dan Gohmana4160c32010-07-07 16:29:44 +00001370 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
Dan Gohmanf81eca02010-04-22 20:46:50 +00001371
1372 // If this terminator has multiple identical successors (common for
1373 // switches), only handle each succ once.
1374 if (!SuccsHandled.insert(SuccMBB)) continue;
1375
1376 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
1377
1378 // At this point we know that there is a 1-1 correspondence between LLVM PHI
1379 // nodes and Machine PHI nodes, but the incoming operands have not been
1380 // emitted yet.
1381 for (BasicBlock::const_iterator I = SuccBB->begin();
1382 const PHINode *PN = dyn_cast<PHINode>(I); ++I) {
Dan Gohmanfb95f892010-05-07 01:10:20 +00001383
Dan Gohmanf81eca02010-04-22 20:46:50 +00001384 // Ignore dead phi's.
1385 if (PN->use_empty()) continue;
1386
1387 // Only handle legal types. Two interesting things to note here. First,
1388 // by bailing out early, we may leave behind some dead instructions,
1389 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001390 // own moves. Second, this check is necessary because FastISel doesn't
Dan Gohman89496d02010-07-02 00:10:16 +00001391 // use CreateRegs to create registers, so it always creates
Dan Gohmanf81eca02010-04-22 20:46:50 +00001392 // exactly one register for each non-void instruction.
1393 EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
1394 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
1395 // Promote MVT::i1.
1396 if (VT == MVT::i1)
1397 VT = TLI.getTypeToTransformTo(LLVMBB->getContext(), VT);
1398 else {
Dan Gohmana4160c32010-07-07 16:29:44 +00001399 FuncInfo.PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
Dan Gohmanf81eca02010-04-22 20:46:50 +00001400 return false;
1401 }
1402 }
1403
1404 const Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
1405
Dan Gohmanfb95f892010-05-07 01:10:20 +00001406 // Set the DebugLoc for the copy. Prefer the location of the operand
1407 // if there is one; use the location of the PHI otherwise.
1408 DL = PN->getDebugLoc();
1409 if (const Instruction *Inst = dyn_cast<Instruction>(PHIOp))
1410 DL = Inst->getDebugLoc();
1411
Dan Gohmanf81eca02010-04-22 20:46:50 +00001412 unsigned Reg = getRegForValue(PHIOp);
1413 if (Reg == 0) {
Dan Gohmana4160c32010-07-07 16:29:44 +00001414 FuncInfo.PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
Dan Gohmanf81eca02010-04-22 20:46:50 +00001415 return false;
1416 }
Dan Gohmana4160c32010-07-07 16:29:44 +00001417 FuncInfo.PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
Dan Gohmanfb95f892010-05-07 01:10:20 +00001418 DL = DebugLoc();
Dan Gohmanf81eca02010-04-22 20:46:50 +00001419 }
1420 }
1421
1422 return true;
1423}