blob: c6da5cc437dbec15fd0938b394499ad09345a630 [file] [log] [blame]
Dan Gohman1adf1b02008-08-19 21:45:35 +00001//===-- X86FastISel.cpp - X86 FastISel implementation ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the X86-specific support for the FastISel class. Much
11// of the target-specific code is generated by tablegen in the file
12// X86GenFastISel.inc, which is #included here.
13//
14//===----------------------------------------------------------------------===//
15
16#include "X86.h"
Evan Cheng8b19e562008-09-03 06:44:39 +000017#include "X86InstrBuilder.h"
Dan Gohman1adf1b02008-08-19 21:45:35 +000018#include "X86ISelLowering.h"
Evan Cheng88e30412008-09-03 01:04:47 +000019#include "X86RegisterInfo.h"
20#include "X86Subtarget.h"
Dan Gohman22bb3112008-08-22 00:20:26 +000021#include "X86TargetMachine.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000022#include "llvm/CallingConv.h"
Dan Gohman6e3f05f2008-09-04 23:26:51 +000023#include "llvm/DerivedTypes.h"
Dan Gohmane9865942009-02-23 22:03:08 +000024#include "llvm/GlobalVariable.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000025#include "llvm/Instructions.h"
Chris Lattnera9a42252009-04-12 07:36:01 +000026#include "llvm/IntrinsicInst.h"
Evan Chengc3f44b02008-09-03 00:03:49 +000027#include "llvm/CodeGen/FastISel.h"
Owen Anderson95267a12008-09-05 00:06:23 +000028#include "llvm/CodeGen/MachineConstantPool.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000029#include "llvm/CodeGen/MachineFrameInfo.h"
Owen Anderson667d8f72008-08-29 17:45:56 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000031#include "llvm/Support/CallSite.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000032#include "llvm/Support/ErrorHandling.h"
Dan Gohman35893082008-09-18 23:23:44 +000033#include "llvm/Support/GetElementPtrTypeIterator.h"
Evan Cheng381993f2010-01-27 00:00:57 +000034#include "llvm/Target/TargetOptions.h"
Evan Chengc3f44b02008-09-03 00:03:49 +000035using namespace llvm;
36
Chris Lattner087fcf32009-03-08 18:44:31 +000037namespace {
38
Evan Chengc3f44b02008-09-03 00:03:49 +000039class X86FastISel : public FastISel {
40 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
41 /// make the right decision when generating code for different targets.
42 const X86Subtarget *Subtarget;
Evan Chengf3d4efe2008-09-07 09:09:33 +000043
44 /// StackPtr - Register used as the stack pointer.
45 ///
46 unsigned StackPtr;
47
48 /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87
49 /// floating point ops.
50 /// When SSE is available, use it for f32 operations.
51 /// When SSE2 is available, use it for f64 operations.
52 bool X86ScalarSSEf64;
53 bool X86ScalarSSEf32;
54
Evan Cheng8b19e562008-09-03 06:44:39 +000055public:
Dan Gohman3df24e62008-09-03 23:12:08 +000056 explicit X86FastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +000057 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +000058 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +000059 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +000060 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +000061 DenseMap<const AllocaInst *, int> &am
62#ifndef NDEBUG
63 , SmallSet<Instruction*, 8> &cil
64#endif
65 )
Devang Patel83489bb2009-01-13 00:35:13 +000066 : FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +000067#ifndef NDEBUG
68 , cil
69#endif
70 ) {
Evan Cheng88e30412008-09-03 01:04:47 +000071 Subtarget = &TM.getSubtarget<X86Subtarget>();
Evan Chengf3d4efe2008-09-07 09:09:33 +000072 StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
73 X86ScalarSSEf64 = Subtarget->hasSSE2();
74 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng88e30412008-09-03 01:04:47 +000075 }
Evan Chengc3f44b02008-09-03 00:03:49 +000076
Dan Gohman3df24e62008-09-03 23:12:08 +000077 virtual bool TargetSelectInstruction(Instruction *I);
Evan Chengc3f44b02008-09-03 00:03:49 +000078
Dan Gohman1adf1b02008-08-19 21:45:35 +000079#include "X86GenFastISel.inc"
Evan Cheng8b19e562008-09-03 06:44:39 +000080
81private:
Owen Andersone50ed302009-08-10 22:56:29 +000082 bool X86FastEmitCompare(Value *LHS, Value *RHS, EVT VT);
Chris Lattner9a08a612008-10-15 04:26:38 +000083
Owen Andersone50ed302009-08-10 22:56:29 +000084 bool X86FastEmitLoad(EVT VT, const X86AddressMode &AM, unsigned &RR);
Evan Cheng0de588f2008-09-05 21:00:03 +000085
Owen Andersone50ed302009-08-10 22:56:29 +000086 bool X86FastEmitStore(EVT VT, Value *Val,
Chris Lattner438949a2008-10-15 05:30:52 +000087 const X86AddressMode &AM);
Owen Andersone50ed302009-08-10 22:56:29 +000088 bool X86FastEmitStore(EVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +000089 const X86AddressMode &AM);
Evan Cheng24e3a902008-09-08 06:35:17 +000090
Owen Andersone50ed302009-08-10 22:56:29 +000091 bool X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
Evan Cheng24e3a902008-09-08 06:35:17 +000092 unsigned &ResultReg);
Evan Cheng0de588f2008-09-05 21:00:03 +000093
Chris Lattner0aa43de2009-07-10 05:33:42 +000094 bool X86SelectAddress(Value *V, X86AddressMode &AM);
95 bool X86SelectCallAddress(Value *V, X86AddressMode &AM);
Dan Gohman0586d912008-09-10 20:11:02 +000096
Dan Gohman3df24e62008-09-03 23:12:08 +000097 bool X86SelectLoad(Instruction *I);
Owen Andersona3971df2008-09-04 07:08:58 +000098
99 bool X86SelectStore(Instruction *I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000100
101 bool X86SelectCmp(Instruction *I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000102
103 bool X86SelectZExt(Instruction *I);
104
105 bool X86SelectBranch(Instruction *I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000106
107 bool X86SelectShift(Instruction *I);
108
109 bool X86SelectSelect(Instruction *I);
Evan Cheng0de588f2008-09-05 21:00:03 +0000110
Evan Cheng10a8d9c2008-09-07 08:47:42 +0000111 bool X86SelectTrunc(Instruction *I);
Dan Gohmand98d6202008-10-02 22:15:21 +0000112
Dan Gohman78efce62008-09-10 21:02:08 +0000113 bool X86SelectFPExt(Instruction *I);
114 bool X86SelectFPTrunc(Instruction *I);
115
Bill Wendling52370a12008-12-09 02:42:50 +0000116 bool X86SelectExtractValue(Instruction *I);
117
Chris Lattnera9a42252009-04-12 07:36:01 +0000118 bool X86VisitIntrinsicCall(IntrinsicInst &I);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000119 bool X86SelectCall(Instruction *I);
120
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000121 CCAssignFn *CCAssignFnForCall(CallingConv::ID CC, bool isTailCall = false);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000122
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000123 const X86InstrInfo *getInstrInfo() const {
Dan Gohman97135e12008-09-26 19:15:30 +0000124 return getTargetMachine()->getInstrInfo();
125 }
126 const X86TargetMachine *getTargetMachine() const {
127 return static_cast<const X86TargetMachine *>(&TM);
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000128 }
129
Dan Gohman0586d912008-09-10 20:11:02 +0000130 unsigned TargetMaterializeConstant(Constant *C);
131
132 unsigned TargetMaterializeAlloca(AllocaInst *C);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000133
134 /// isScalarFPTypeInSSEReg - Return true if the specified scalar FP type is
135 /// computed in an SSE register, not on the X87 floating point stack.
Owen Andersone50ed302009-08-10 22:56:29 +0000136 bool isScalarFPTypeInSSEReg(EVT VT) const {
Owen Anderson825b72b2009-08-11 20:47:22 +0000137 return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2
138 (VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1
Evan Chengf3d4efe2008-09-07 09:09:33 +0000139 }
140
Owen Andersone50ed302009-08-10 22:56:29 +0000141 bool isTypeLegal(const Type *Ty, EVT &VT, bool AllowI1 = false);
Evan Chengc3f44b02008-09-03 00:03:49 +0000142};
Chris Lattner087fcf32009-03-08 18:44:31 +0000143
144} // end anonymous namespace.
Dan Gohman99b21822008-08-28 23:21:34 +0000145
Owen Andersone50ed302009-08-10 22:56:29 +0000146bool X86FastISel::isTypeLegal(const Type *Ty, EVT &VT, bool AllowI1) {
Chris Lattner160f6cc2008-10-15 05:07:36 +0000147 VT = TLI.getValueType(Ty, /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +0000148 if (VT == MVT::Other || !VT.isSimple())
Evan Chengf3d4efe2008-09-07 09:09:33 +0000149 // Unhandled type. Halt "fast" selection and bail.
150 return false;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000151
Dan Gohman9b66d732008-09-30 00:48:39 +0000152 // For now, require SSE/SSE2 for performing floating-point operations,
153 // since x87 requires additional work.
Owen Anderson825b72b2009-08-11 20:47:22 +0000154 if (VT == MVT::f64 && !X86ScalarSSEf64)
Dan Gohman9b66d732008-09-30 00:48:39 +0000155 return false;
Owen Anderson825b72b2009-08-11 20:47:22 +0000156 if (VT == MVT::f32 && !X86ScalarSSEf32)
Dan Gohman9b66d732008-09-30 00:48:39 +0000157 return false;
158 // Similarly, no f80 support yet.
Owen Anderson825b72b2009-08-11 20:47:22 +0000159 if (VT == MVT::f80)
Dan Gohman9b66d732008-09-30 00:48:39 +0000160 return false;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000161 // We only handle legal types. For example, on x86-32 the instruction
162 // selector contains all of the 64-bit instructions from x86-64,
163 // under the assumption that i64 won't be used if the target doesn't
164 // support it.
Owen Anderson825b72b2009-08-11 20:47:22 +0000165 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000166}
167
168#include "X86GenCallingConv.inc"
169
170/// CCAssignFnForCall - Selects the correct CCAssignFn for a given calling
171/// convention.
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000172CCAssignFn *X86FastISel::CCAssignFnForCall(CallingConv::ID CC,
173 bool isTaillCall) {
Evan Chengf3d4efe2008-09-07 09:09:33 +0000174 if (Subtarget->is64Bit()) {
175 if (Subtarget->isTargetWin64())
176 return CC_X86_Win64_C;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000177 else
178 return CC_X86_64_C;
179 }
180
181 if (CC == CallingConv::X86_FastCall)
182 return CC_X86_32_FastCall;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000183 else if (CC == CallingConv::Fast)
184 return CC_X86_32_FastCC;
185 else
186 return CC_X86_32_C;
187}
188
Evan Cheng0de588f2008-09-05 21:00:03 +0000189/// X86FastEmitLoad - Emit a machine instruction to load a value of type VT.
Evan Chengf3d4efe2008-09-07 09:09:33 +0000190/// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
Evan Cheng0de588f2008-09-05 21:00:03 +0000191/// Return true and the result register by reference if it is possible.
Owen Andersone50ed302009-08-10 22:56:29 +0000192bool X86FastISel::X86FastEmitLoad(EVT VT, const X86AddressMode &AM,
Evan Cheng0de588f2008-09-05 21:00:03 +0000193 unsigned &ResultReg) {
194 // Get opcode and regclass of the output for the given load instruction.
195 unsigned Opc = 0;
196 const TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +0000197 switch (VT.getSimpleVT().SimpleTy) {
Evan Cheng0de588f2008-09-05 21:00:03 +0000198 default: return false;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000199 case MVT::i1:
Owen Anderson825b72b2009-08-11 20:47:22 +0000200 case MVT::i8:
Evan Cheng0de588f2008-09-05 21:00:03 +0000201 Opc = X86::MOV8rm;
202 RC = X86::GR8RegisterClass;
203 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000204 case MVT::i16:
Evan Cheng0de588f2008-09-05 21:00:03 +0000205 Opc = X86::MOV16rm;
206 RC = X86::GR16RegisterClass;
207 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000208 case MVT::i32:
Evan Cheng0de588f2008-09-05 21:00:03 +0000209 Opc = X86::MOV32rm;
210 RC = X86::GR32RegisterClass;
211 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000212 case MVT::i64:
Evan Cheng0de588f2008-09-05 21:00:03 +0000213 // Must be in x86-64 mode.
214 Opc = X86::MOV64rm;
215 RC = X86::GR64RegisterClass;
216 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000217 case MVT::f32:
Evan Cheng0de588f2008-09-05 21:00:03 +0000218 if (Subtarget->hasSSE1()) {
219 Opc = X86::MOVSSrm;
220 RC = X86::FR32RegisterClass;
221 } else {
222 Opc = X86::LD_Fp32m;
223 RC = X86::RFP32RegisterClass;
224 }
225 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000226 case MVT::f64:
Evan Cheng0de588f2008-09-05 21:00:03 +0000227 if (Subtarget->hasSSE2()) {
228 Opc = X86::MOVSDrm;
229 RC = X86::FR64RegisterClass;
230 } else {
231 Opc = X86::LD_Fp64m;
232 RC = X86::RFP64RegisterClass;
233 }
234 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000235 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +0000236 // No f80 support yet.
237 return false;
Evan Cheng0de588f2008-09-05 21:00:03 +0000238 }
239
240 ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000241 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Evan Cheng0de588f2008-09-05 21:00:03 +0000242 return true;
243}
244
Evan Chengf3d4efe2008-09-07 09:09:33 +0000245/// X86FastEmitStore - Emit a machine instruction to store a value Val of
246/// type VT. The address is either pre-computed, consisted of a base ptr, Ptr
247/// and a displacement offset, or a GlobalAddress,
Evan Cheng0de588f2008-09-05 21:00:03 +0000248/// i.e. V. Return true if it is possible.
249bool
Owen Andersone50ed302009-08-10 22:56:29 +0000250X86FastISel::X86FastEmitStore(EVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +0000251 const X86AddressMode &AM) {
Dan Gohman863890e2008-09-08 16:31:35 +0000252 // Get opcode and regclass of the output for the given store instruction.
Evan Cheng0de588f2008-09-05 21:00:03 +0000253 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +0000254 switch (VT.getSimpleVT().SimpleTy) {
255 case MVT::f80: // No f80 support yet.
Evan Cheng0de588f2008-09-05 21:00:03 +0000256 default: return false;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000257 case MVT::i1: {
258 // Mask out all but lowest bit.
259 unsigned AndResult = createResultReg(X86::GR8RegisterClass);
260 BuildMI(MBB, DL,
261 TII.get(X86::AND8ri), AndResult).addReg(Val).addImm(1);
262 Val = AndResult;
263 }
264 // FALLTHROUGH, handling i1 as i8.
Owen Anderson825b72b2009-08-11 20:47:22 +0000265 case MVT::i8: Opc = X86::MOV8mr; break;
266 case MVT::i16: Opc = X86::MOV16mr; break;
267 case MVT::i32: Opc = X86::MOV32mr; break;
268 case MVT::i64: Opc = X86::MOV64mr; break; // Must be in x86-64 mode.
269 case MVT::f32:
Chris Lattner438949a2008-10-15 05:30:52 +0000270 Opc = Subtarget->hasSSE1() ? X86::MOVSSmr : X86::ST_Fp32m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000271 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000272 case MVT::f64:
Chris Lattner438949a2008-10-15 05:30:52 +0000273 Opc = Subtarget->hasSSE2() ? X86::MOVSDmr : X86::ST_Fp64m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000274 break;
Evan Cheng0de588f2008-09-05 21:00:03 +0000275 }
Chris Lattner438949a2008-10-15 05:30:52 +0000276
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000277 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM).addReg(Val);
Evan Cheng0de588f2008-09-05 21:00:03 +0000278 return true;
279}
280
Owen Andersone50ed302009-08-10 22:56:29 +0000281bool X86FastISel::X86FastEmitStore(EVT VT, Value *Val,
Chris Lattner438949a2008-10-15 05:30:52 +0000282 const X86AddressMode &AM) {
283 // Handle 'null' like i32/i64 0.
284 if (isa<ConstantPointerNull>(Val))
Owen Anderson1d0be152009-08-13 21:58:54 +0000285 Val = Constant::getNullValue(TD.getIntPtrType(Val->getContext()));
Chris Lattner438949a2008-10-15 05:30:52 +0000286
287 // If this is a store of a simple constant, fold the constant into the store.
288 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
289 unsigned Opc = 0;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000290 bool Signed = true;
Owen Anderson825b72b2009-08-11 20:47:22 +0000291 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner438949a2008-10-15 05:30:52 +0000292 default: break;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000293 case MVT::i1: Signed = false; // FALLTHROUGH to handle as i8.
Owen Anderson825b72b2009-08-11 20:47:22 +0000294 case MVT::i8: Opc = X86::MOV8mi; break;
295 case MVT::i16: Opc = X86::MOV16mi; break;
296 case MVT::i32: Opc = X86::MOV32mi; break;
297 case MVT::i64:
Chris Lattner438949a2008-10-15 05:30:52 +0000298 // Must be a 32-bit sign extended value.
299 if ((int)CI->getSExtValue() == CI->getSExtValue())
300 Opc = X86::MOV64mi32;
301 break;
302 }
303
304 if (Opc) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000305 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM)
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000306 .addImm(Signed ? CI->getSExtValue() :
307 CI->getZExtValue());
Chris Lattner438949a2008-10-15 05:30:52 +0000308 return true;
309 }
310 }
311
312 unsigned ValReg = getRegForValue(Val);
313 if (ValReg == 0)
Chris Lattner438949a2008-10-15 05:30:52 +0000314 return false;
315
316 return X86FastEmitStore(VT, ValReg, AM);
317}
318
Evan Cheng24e3a902008-09-08 06:35:17 +0000319/// X86FastEmitExtend - Emit a machine instruction to extend a value Src of
320/// type SrcVT to type DstVT using the specified extension opcode Opc (e.g.
321/// ISD::SIGN_EXTEND).
Owen Andersone50ed302009-08-10 22:56:29 +0000322bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT,
323 unsigned Src, EVT SrcVT,
Evan Cheng24e3a902008-09-08 06:35:17 +0000324 unsigned &ResultReg) {
Owen Andersonac34a002008-09-11 19:44:55 +0000325 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, Src);
326
327 if (RR != 0) {
328 ResultReg = RR;
329 return true;
330 } else
331 return false;
Evan Cheng24e3a902008-09-08 06:35:17 +0000332}
333
Dan Gohman0586d912008-09-10 20:11:02 +0000334/// X86SelectAddress - Attempt to fill in an address from the given value.
335///
Chris Lattner0aa43de2009-07-10 05:33:42 +0000336bool X86FastISel::X86SelectAddress(Value *V, X86AddressMode &AM) {
Duncan Sands12513882009-06-03 12:05:18 +0000337 User *U = NULL;
Dan Gohman35893082008-09-18 23:23:44 +0000338 unsigned Opcode = Instruction::UserOp1;
339 if (Instruction *I = dyn_cast<Instruction>(V)) {
340 Opcode = I->getOpcode();
341 U = I;
342 } else if (ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
343 Opcode = C->getOpcode();
344 U = C;
345 }
Dan Gohman0586d912008-09-10 20:11:02 +0000346
Dan Gohman35893082008-09-18 23:23:44 +0000347 switch (Opcode) {
348 default: break;
349 case Instruction::BitCast:
350 // Look past bitcasts.
Chris Lattner0aa43de2009-07-10 05:33:42 +0000351 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman35893082008-09-18 23:23:44 +0000352
353 case Instruction::IntToPtr:
354 // Look past no-op inttoptrs.
355 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Chris Lattner0aa43de2009-07-10 05:33:42 +0000356 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000357 break;
Dan Gohman35893082008-09-18 23:23:44 +0000358
359 case Instruction::PtrToInt:
360 // Look past no-op ptrtoints.
361 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Chris Lattner0aa43de2009-07-10 05:33:42 +0000362 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000363 break;
Dan Gohman35893082008-09-18 23:23:44 +0000364
365 case Instruction::Alloca: {
366 // Do static allocas.
367 const AllocaInst *A = cast<AllocaInst>(V);
Dan Gohman0586d912008-09-10 20:11:02 +0000368 DenseMap<const AllocaInst*, int>::iterator SI = StaticAllocaMap.find(A);
Dan Gohman97135e12008-09-26 19:15:30 +0000369 if (SI != StaticAllocaMap.end()) {
370 AM.BaseType = X86AddressMode::FrameIndexBase;
371 AM.Base.FrameIndex = SI->second;
372 return true;
373 }
374 break;
Dan Gohman35893082008-09-18 23:23:44 +0000375 }
376
377 case Instruction::Add: {
378 // Adds of constants are common and easy enough.
379 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman09aae462008-09-26 20:04:15 +0000380 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
381 // They have to fit in the 32-bit signed displacement field though.
382 if (isInt32(Disp)) {
383 AM.Disp = (uint32_t)Disp;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000384 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman09aae462008-09-26 20:04:15 +0000385 }
Dan Gohman0586d912008-09-10 20:11:02 +0000386 }
Dan Gohman35893082008-09-18 23:23:44 +0000387 break;
388 }
389
390 case Instruction::GetElementPtr: {
391 // Pattern-match simple GEPs.
Dan Gohman09aae462008-09-26 20:04:15 +0000392 uint64_t Disp = (int32_t)AM.Disp;
Dan Gohman35893082008-09-18 23:23:44 +0000393 unsigned IndexReg = AM.IndexReg;
394 unsigned Scale = AM.Scale;
395 gep_type_iterator GTI = gep_type_begin(U);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000396 // Iterate through the indices, folding what we can. Constants can be
397 // folded, and one dynamic index can be handled, if the scale is supported.
Dan Gohman35893082008-09-18 23:23:44 +0000398 for (User::op_iterator i = U->op_begin() + 1, e = U->op_end();
399 i != e; ++i, ++GTI) {
400 Value *Op = *i;
401 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
402 const StructLayout *SL = TD.getStructLayout(STy);
403 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
404 Disp += SL->getElementOffset(Idx);
405 } else {
Duncan Sands777d2302009-05-09 07:06:46 +0000406 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
Dan Gohman35893082008-09-18 23:23:44 +0000407 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
408 // Constant-offset addressing.
Dan Gohman09aae462008-09-26 20:04:15 +0000409 Disp += CI->getSExtValue() * S;
Dan Gohman35893082008-09-18 23:23:44 +0000410 } else if (IndexReg == 0 &&
Chris Lattner4c1b6062009-06-27 05:24:12 +0000411 (!AM.GV || !Subtarget->isPICStyleRIPRel()) &&
Dan Gohman35893082008-09-18 23:23:44 +0000412 (S == 1 || S == 2 || S == 4 || S == 8)) {
413 // Scaled-index addressing.
414 Scale = S;
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000415 IndexReg = getRegForGEPIndex(Op);
Dan Gohman35893082008-09-18 23:23:44 +0000416 if (IndexReg == 0)
417 return false;
418 } else
419 // Unsupported.
420 goto unsupported_gep;
421 }
422 }
Dan Gohman09aae462008-09-26 20:04:15 +0000423 // Check for displacement overflow.
424 if (!isInt32(Disp))
425 break;
Dan Gohman35893082008-09-18 23:23:44 +0000426 // Ok, the GEP indices were covered by constant-offset and scaled-index
427 // addressing. Update the address state and move on to examining the base.
Chris Lattner225d4ca2010-03-04 19:48:19 +0000428 X86AddressMode SavedAM = AM;
Dan Gohman35893082008-09-18 23:23:44 +0000429 AM.IndexReg = IndexReg;
430 AM.Scale = Scale;
Dan Gohman09aae462008-09-26 20:04:15 +0000431 AM.Disp = (uint32_t)Disp;
Chris Lattner225d4ca2010-03-04 19:48:19 +0000432 if (X86SelectAddress(U->getOperand(0), AM))
433 return true;
434
435 // If we couldn't merge the sub value into this addr mode, revert back to
436 // our address and just match the value instead of completely failing.
437 AM = SavedAM;
438 break;
Dan Gohman35893082008-09-18 23:23:44 +0000439 unsupported_gep:
440 // Ok, the GEP indices weren't all covered.
441 break;
442 }
443 }
444
445 // Handle constant address.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000446 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000447 // Can't handle alternate code models yet.
Chris Lattnerf1d6bd52009-07-10 21:03:06 +0000448 if (TM.getCodeModel() != CodeModel::Small)
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000449 return false;
450
Dan Gohman97135e12008-09-26 19:15:30 +0000451 // RIP-relative addresses can't have additional register operands.
Chris Lattner4c1b6062009-06-27 05:24:12 +0000452 if (Subtarget->isPICStyleRIPRel() &&
Dan Gohman97135e12008-09-26 19:15:30 +0000453 (AM.Base.Reg != 0 || AM.IndexReg != 0))
454 return false;
455
Dan Gohmane9865942009-02-23 22:03:08 +0000456 // Can't handle TLS yet.
457 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
458 if (GVar->isThreadLocal())
459 return false;
460
Chris Lattnerff7727f2009-07-09 06:41:35 +0000461 // Okay, we've committed to selecting this global. Set up the basic address.
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000462 AM.GV = GV;
Chris Lattner18c59872009-06-27 04:16:01 +0000463
Chris Lattner0d786dd2009-07-10 07:48:51 +0000464 // Allow the subtarget to classify the global.
465 unsigned char GVFlags = Subtarget->ClassifyGlobalReference(GV, TM);
466
467 // If this reference is relative to the pic base, set it now.
468 if (isGlobalRelativeToPICBase(GVFlags)) {
Chris Lattner75cdf272009-07-09 06:59:17 +0000469 // FIXME: How do we know Base.Reg is free??
Dan Gohman57c3dac2008-09-30 00:58:23 +0000470 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(&MF);
Chris Lattner75cdf272009-07-09 06:59:17 +0000471 }
Chris Lattner0d786dd2009-07-10 07:48:51 +0000472
473 // Unless the ABI requires an extra load, return a direct reference to
Chris Lattnerff7727f2009-07-09 06:41:35 +0000474 // the global.
Chris Lattner0d786dd2009-07-10 07:48:51 +0000475 if (!isGlobalStubReference(GVFlags)) {
Chris Lattnerff7727f2009-07-09 06:41:35 +0000476 if (Subtarget->isPICStyleRIPRel()) {
477 // Use rip-relative addressing if we can. Above we verified that the
478 // base and index registers are unused.
479 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
480 AM.Base.Reg = X86::RIP;
Dan Gohman7e8ef602008-09-19 23:42:04 +0000481 }
Chris Lattner0d786dd2009-07-10 07:48:51 +0000482 AM.GVOpFlags = GVFlags;
Chris Lattnerff7727f2009-07-09 06:41:35 +0000483 return true;
484 }
485
Chris Lattner0d786dd2009-07-10 07:48:51 +0000486 // Ok, we need to do a load from a stub. If we've already loaded from this
487 // stub, reuse the loaded pointer, otherwise emit the load now.
Chris Lattnerff7727f2009-07-09 06:41:35 +0000488 DenseMap<const Value*, unsigned>::iterator I = LocalValueMap.find(V);
489 unsigned LoadReg;
490 if (I != LocalValueMap.end() && I->second != 0) {
491 LoadReg = I->second;
492 } else {
Chris Lattner35c28ec2009-07-01 03:27:19 +0000493 // Issue load from stub.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000494 unsigned Opc = 0;
495 const TargetRegisterClass *RC = NULL;
Dan Gohman789ce772008-09-25 23:34:02 +0000496 X86AddressMode StubAM;
497 StubAM.Base.Reg = AM.Base.Reg;
Chris Lattner75cdf272009-07-09 06:59:17 +0000498 StubAM.GV = GV;
Chris Lattner0d786dd2009-07-10 07:48:51 +0000499 StubAM.GVOpFlags = GVFlags;
500
Owen Anderson825b72b2009-08-11 20:47:22 +0000501 if (TLI.getPointerTy() == MVT::i64) {
Chris Lattner75cdf272009-07-09 06:59:17 +0000502 Opc = X86::MOV64rm;
503 RC = X86::GR64RegisterClass;
504
Chris Lattner0d786dd2009-07-10 07:48:51 +0000505 if (Subtarget->isPICStyleRIPRel())
Chris Lattner75cdf272009-07-09 06:59:17 +0000506 StubAM.Base.Reg = X86::RIP;
Chris Lattner75cdf272009-07-09 06:59:17 +0000507 } else {
Chris Lattner35c28ec2009-07-01 03:27:19 +0000508 Opc = X86::MOV32rm;
509 RC = X86::GR32RegisterClass;
Chris Lattner35c28ec2009-07-01 03:27:19 +0000510 }
Chris Lattnerff7727f2009-07-09 06:41:35 +0000511
512 LoadReg = createResultReg(RC);
513 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), LoadReg), StubAM);
514
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000515 // Prevent loading GV stub multiple times in same MBB.
Chris Lattnerff7727f2009-07-09 06:41:35 +0000516 LocalValueMap[V] = LoadReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000517 }
Chris Lattner18c59872009-06-27 04:16:01 +0000518
Chris Lattnerff7727f2009-07-09 06:41:35 +0000519 // Now construct the final address. Note that the Disp, Scale,
520 // and Index values may already be set here.
521 AM.Base.Reg = LoadReg;
522 AM.GV = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000523 return true;
Dan Gohman0586d912008-09-10 20:11:02 +0000524 }
525
Dan Gohman97135e12008-09-26 19:15:30 +0000526 // If all else fails, try to materialize the value in a register.
Chris Lattner4c1b6062009-06-27 05:24:12 +0000527 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
Dan Gohman97135e12008-09-26 19:15:30 +0000528 if (AM.Base.Reg == 0) {
529 AM.Base.Reg = getRegForValue(V);
530 return AM.Base.Reg != 0;
531 }
532 if (AM.IndexReg == 0) {
533 assert(AM.Scale == 1 && "Scale with no index!");
534 AM.IndexReg = getRegForValue(V);
535 return AM.IndexReg != 0;
536 }
537 }
538
539 return false;
Dan Gohman0586d912008-09-10 20:11:02 +0000540}
541
Chris Lattner0aa43de2009-07-10 05:33:42 +0000542/// X86SelectCallAddress - Attempt to fill in an address from the given value.
543///
544bool X86FastISel::X86SelectCallAddress(Value *V, X86AddressMode &AM) {
545 User *U = NULL;
546 unsigned Opcode = Instruction::UserOp1;
547 if (Instruction *I = dyn_cast<Instruction>(V)) {
548 Opcode = I->getOpcode();
549 U = I;
550 } else if (ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
551 Opcode = C->getOpcode();
552 U = C;
553 }
554
555 switch (Opcode) {
556 default: break;
557 case Instruction::BitCast:
558 // Look past bitcasts.
559 return X86SelectCallAddress(U->getOperand(0), AM);
560
561 case Instruction::IntToPtr:
562 // Look past no-op inttoptrs.
563 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
564 return X86SelectCallAddress(U->getOperand(0), AM);
565 break;
566
567 case Instruction::PtrToInt:
568 // Look past no-op ptrtoints.
569 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
570 return X86SelectCallAddress(U->getOperand(0), AM);
571 break;
572 }
573
574 // Handle constant address.
575 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
576 // Can't handle alternate code models yet.
Chris Lattnerf1d6bd52009-07-10 21:03:06 +0000577 if (TM.getCodeModel() != CodeModel::Small)
Chris Lattner0aa43de2009-07-10 05:33:42 +0000578 return false;
579
580 // RIP-relative addresses can't have additional register operands.
581 if (Subtarget->isPICStyleRIPRel() &&
582 (AM.Base.Reg != 0 || AM.IndexReg != 0))
583 return false;
584
Chris Lattner754b7652009-07-10 05:48:03 +0000585 // Can't handle TLS or DLLImport.
Chris Lattner0aa43de2009-07-10 05:33:42 +0000586 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
Chris Lattnere6c07b52009-07-10 05:45:15 +0000587 if (GVar->isThreadLocal() || GVar->hasDLLImportLinkage())
Chris Lattner0aa43de2009-07-10 05:33:42 +0000588 return false;
589
590 // Okay, we've committed to selecting this global. Set up the basic address.
591 AM.GV = GV;
592
Chris Lattnere6c07b52009-07-10 05:45:15 +0000593 // No ABI requires an extra load for anything other than DLLImport, which
594 // we rejected above. Return a direct reference to the global.
Chris Lattnere6c07b52009-07-10 05:45:15 +0000595 if (Subtarget->isPICStyleRIPRel()) {
596 // Use rip-relative addressing if we can. Above we verified that the
597 // base and index registers are unused.
598 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
599 AM.Base.Reg = X86::RIP;
Chris Lattnere2c92082009-07-10 21:00:45 +0000600 } else if (Subtarget->isPICStyleStubPIC()) {
Chris Lattnere6c07b52009-07-10 05:45:15 +0000601 AM.GVOpFlags = X86II::MO_PIC_BASE_OFFSET;
602 } else if (Subtarget->isPICStyleGOT()) {
603 AM.GVOpFlags = X86II::MO_GOTOFF;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000604 }
605
Chris Lattner0aa43de2009-07-10 05:33:42 +0000606 return true;
607 }
608
609 // If all else fails, try to materialize the value in a register.
610 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
611 if (AM.Base.Reg == 0) {
612 AM.Base.Reg = getRegForValue(V);
613 return AM.Base.Reg != 0;
614 }
615 if (AM.IndexReg == 0) {
616 assert(AM.Scale == 1 && "Scale with no index!");
617 AM.IndexReg = getRegForValue(V);
618 return AM.IndexReg != 0;
619 }
620 }
621
622 return false;
623}
624
625
Owen Andersona3971df2008-09-04 07:08:58 +0000626/// X86SelectStore - Select and emit code to implement store instructions.
627bool X86FastISel::X86SelectStore(Instruction* I) {
Owen Andersone50ed302009-08-10 22:56:29 +0000628 EVT VT;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000629 if (!isTypeLegal(I->getOperand(0)->getType(), VT, /*AllowI1=*/true))
Owen Andersona3971df2008-09-04 07:08:58 +0000630 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000631
Dan Gohman0586d912008-09-10 20:11:02 +0000632 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000633 if (!X86SelectAddress(I->getOperand(1), AM))
Dan Gohman0586d912008-09-10 20:11:02 +0000634 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000635
Chris Lattner438949a2008-10-15 05:30:52 +0000636 return X86FastEmitStore(VT, I->getOperand(0), AM);
Owen Andersona3971df2008-09-04 07:08:58 +0000637}
638
Evan Cheng8b19e562008-09-03 06:44:39 +0000639/// X86SelectLoad - Select and emit code to implement load instructions.
640///
Dan Gohman3df24e62008-09-03 23:12:08 +0000641bool X86FastISel::X86SelectLoad(Instruction *I) {
Owen Andersone50ed302009-08-10 22:56:29 +0000642 EVT VT;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000643 if (!isTypeLegal(I->getType(), VT, /*AllowI1=*/true))
Evan Cheng8b19e562008-09-03 06:44:39 +0000644 return false;
645
Dan Gohman0586d912008-09-10 20:11:02 +0000646 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000647 if (!X86SelectAddress(I->getOperand(0), AM))
Dan Gohman0586d912008-09-10 20:11:02 +0000648 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000649
Evan Cheng0de588f2008-09-05 21:00:03 +0000650 unsigned ResultReg = 0;
Dan Gohman0586d912008-09-10 20:11:02 +0000651 if (X86FastEmitLoad(VT, AM, ResultReg)) {
Evan Cheng0de588f2008-09-05 21:00:03 +0000652 UpdateValueMap(I, ResultReg);
653 return true;
Evan Cheng8b19e562008-09-03 06:44:39 +0000654 }
Evan Cheng0de588f2008-09-05 21:00:03 +0000655 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000656}
657
Owen Andersone50ed302009-08-10 22:56:29 +0000658static unsigned X86ChooseCmpOpcode(EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000659 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000660 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +0000661 case MVT::i8: return X86::CMP8rr;
662 case MVT::i16: return X86::CMP16rr;
663 case MVT::i32: return X86::CMP32rr;
664 case MVT::i64: return X86::CMP64rr;
665 case MVT::f32: return X86::UCOMISSrr;
666 case MVT::f64: return X86::UCOMISDrr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000667 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000668}
669
Chris Lattner0e13c782008-10-15 04:13:29 +0000670/// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS
671/// of the comparison, return an opcode that works for the compare (e.g.
672/// CMP32ri) otherwise return 0.
Owen Andersone50ed302009-08-10 22:56:29 +0000673static unsigned X86ChooseCmpImmediateOpcode(EVT VT, ConstantInt *RHSC) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000674 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0e13c782008-10-15 04:13:29 +0000675 // Otherwise, we can't fold the immediate into this comparison.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000676 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +0000677 case MVT::i8: return X86::CMP8ri;
678 case MVT::i16: return X86::CMP16ri;
679 case MVT::i32: return X86::CMP32ri;
680 case MVT::i64:
Chris Lattner45ac17f2008-10-15 04:32:45 +0000681 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
682 // field.
Chris Lattner438949a2008-10-15 05:30:52 +0000683 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
Chris Lattner45ac17f2008-10-15 04:32:45 +0000684 return X86::CMP64ri32;
685 return 0;
686 }
Chris Lattner0e13c782008-10-15 04:13:29 +0000687}
688
Owen Andersone50ed302009-08-10 22:56:29 +0000689bool X86FastISel::X86FastEmitCompare(Value *Op0, Value *Op1, EVT VT) {
Chris Lattner9a08a612008-10-15 04:26:38 +0000690 unsigned Op0Reg = getRegForValue(Op0);
691 if (Op0Reg == 0) return false;
692
Chris Lattnerd53886b2008-10-15 05:18:04 +0000693 // Handle 'null' like i32/i64 0.
694 if (isa<ConstantPointerNull>(Op1))
Owen Anderson1d0be152009-08-13 21:58:54 +0000695 Op1 = Constant::getNullValue(TD.getIntPtrType(Op0->getContext()));
Chris Lattnerd53886b2008-10-15 05:18:04 +0000696
Chris Lattner9a08a612008-10-15 04:26:38 +0000697 // We have two options: compare with register or immediate. If the RHS of
698 // the compare is an immediate that we can fold into this compare, use
699 // CMPri, otherwise use CMPrr.
700 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000701 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000702 BuildMI(MBB, DL, TII.get(CompareImmOpc)).addReg(Op0Reg)
Chris Lattner9a08a612008-10-15 04:26:38 +0000703 .addImm(Op1C->getSExtValue());
704 return true;
705 }
706 }
707
708 unsigned CompareOpc = X86ChooseCmpOpcode(VT);
709 if (CompareOpc == 0) return false;
710
711 unsigned Op1Reg = getRegForValue(Op1);
712 if (Op1Reg == 0) return false;
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000713 BuildMI(MBB, DL, TII.get(CompareOpc)).addReg(Op0Reg).addReg(Op1Reg);
Chris Lattner9a08a612008-10-15 04:26:38 +0000714
715 return true;
716}
717
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000718bool X86FastISel::X86SelectCmp(Instruction *I) {
719 CmpInst *CI = cast<CmpInst>(I);
720
Owen Andersone50ed302009-08-10 22:56:29 +0000721 EVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000722 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Dan Gohman4f22bb02008-09-05 01:33:56 +0000723 return false;
724
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000725 unsigned ResultReg = createResultReg(&X86::GR8RegClass);
Chris Lattner54aebde2008-10-15 03:47:17 +0000726 unsigned SetCCOpc;
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000727 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000728 switch (CI->getPredicate()) {
729 case CmpInst::FCMP_OEQ: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000730 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
731 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000732
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000733 unsigned EReg = createResultReg(&X86::GR8RegClass);
734 unsigned NPReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000735 BuildMI(MBB, DL, TII.get(X86::SETEr), EReg);
736 BuildMI(MBB, DL, TII.get(X86::SETNPr), NPReg);
737 BuildMI(MBB, DL,
738 TII.get(X86::AND8rr), ResultReg).addReg(NPReg).addReg(EReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000739 UpdateValueMap(I, ResultReg);
740 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000741 }
742 case CmpInst::FCMP_UNE: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000743 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
744 return false;
745
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000746 unsigned NEReg = createResultReg(&X86::GR8RegClass);
747 unsigned PReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000748 BuildMI(MBB, DL, TII.get(X86::SETNEr), NEReg);
749 BuildMI(MBB, DL, TII.get(X86::SETPr), PReg);
750 BuildMI(MBB, DL, TII.get(X86::OR8rr), ResultReg).addReg(PReg).addReg(NEReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000751 UpdateValueMap(I, ResultReg);
752 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000753 }
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000754 case CmpInst::FCMP_OGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
755 case CmpInst::FCMP_OGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
756 case CmpInst::FCMP_OLT: SwapArgs = true; SetCCOpc = X86::SETAr; break;
757 case CmpInst::FCMP_OLE: SwapArgs = true; SetCCOpc = X86::SETAEr; break;
758 case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
759 case CmpInst::FCMP_ORD: SwapArgs = false; SetCCOpc = X86::SETNPr; break;
760 case CmpInst::FCMP_UNO: SwapArgs = false; SetCCOpc = X86::SETPr; break;
761 case CmpInst::FCMP_UEQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
762 case CmpInst::FCMP_UGT: SwapArgs = true; SetCCOpc = X86::SETBr; break;
763 case CmpInst::FCMP_UGE: SwapArgs = true; SetCCOpc = X86::SETBEr; break;
764 case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
765 case CmpInst::FCMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
766
767 case CmpInst::ICMP_EQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
768 case CmpInst::ICMP_NE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
769 case CmpInst::ICMP_UGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
770 case CmpInst::ICMP_UGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
771 case CmpInst::ICMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
772 case CmpInst::ICMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
773 case CmpInst::ICMP_SGT: SwapArgs = false; SetCCOpc = X86::SETGr; break;
774 case CmpInst::ICMP_SGE: SwapArgs = false; SetCCOpc = X86::SETGEr; break;
775 case CmpInst::ICMP_SLT: SwapArgs = false; SetCCOpc = X86::SETLr; break;
776 case CmpInst::ICMP_SLE: SwapArgs = false; SetCCOpc = X86::SETLEr; break;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000777 default:
778 return false;
779 }
780
Chris Lattner9a08a612008-10-15 04:26:38 +0000781 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000782 if (SwapArgs)
Chris Lattner9a08a612008-10-15 04:26:38 +0000783 std::swap(Op0, Op1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000784
Chris Lattner9a08a612008-10-15 04:26:38 +0000785 // Emit a compare of Op0/Op1.
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000786 if (!X86FastEmitCompare(Op0, Op1, VT))
787 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000788
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000789 BuildMI(MBB, DL, TII.get(SetCCOpc), ResultReg);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000790 UpdateValueMap(I, ResultReg);
791 return true;
792}
Evan Cheng8b19e562008-09-03 06:44:39 +0000793
Dan Gohmand89ae992008-09-05 01:06:14 +0000794bool X86FastISel::X86SelectZExt(Instruction *I) {
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000795 // Handle zero-extension from i1 to i8, which is common.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000796 if (I->getType()->isIntegerTy(8) &&
797 I->getOperand(0)->getType()->isIntegerTy(1)) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000798 unsigned ResultReg = getRegForValue(I->getOperand(0));
Dan Gohmanf52550b2008-09-05 01:15:35 +0000799 if (ResultReg == 0) return false;
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000800 // Set the high bits to zero.
Owen Anderson825b72b2009-08-11 20:47:22 +0000801 ResultReg = FastEmitZExtFromI1(MVT::i8, ResultReg);
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000802 if (ResultReg == 0) return false;
Dan Gohmand89ae992008-09-05 01:06:14 +0000803 UpdateValueMap(I, ResultReg);
804 return true;
805 }
806
807 return false;
808}
809
Chris Lattner9a08a612008-10-15 04:26:38 +0000810
Dan Gohmand89ae992008-09-05 01:06:14 +0000811bool X86FastISel::X86SelectBranch(Instruction *I) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000812 // Unconditional branches are selected by tablegen-generated code.
Dan Gohmand98d6202008-10-02 22:15:21 +0000813 // Handle a conditional branch.
814 BranchInst *BI = cast<BranchInst>(I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000815 MachineBasicBlock *TrueMBB = MBBMap[BI->getSuccessor(0)];
816 MachineBasicBlock *FalseMBB = MBBMap[BI->getSuccessor(1)];
817
Dan Gohmand98d6202008-10-02 22:15:21 +0000818 // Fold the common case of a conditional branch with a comparison.
819 if (CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
820 if (CI->hasOneUse()) {
Owen Andersone50ed302009-08-10 22:56:29 +0000821 EVT VT = TLI.getValueType(CI->getOperand(0)->getType());
Dan Gohmand89ae992008-09-05 01:06:14 +0000822
Dan Gohmand98d6202008-10-02 22:15:21 +0000823 // Try to take advantage of fallthrough opportunities.
824 CmpInst::Predicate Predicate = CI->getPredicate();
825 if (MBB->isLayoutSuccessor(TrueMBB)) {
826 std::swap(TrueMBB, FalseMBB);
827 Predicate = CmpInst::getInversePredicate(Predicate);
828 }
829
Chris Lattner871d2462008-10-15 03:58:05 +0000830 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
831 unsigned BranchOpc; // Opcode to jump on, e.g. "X86::JA"
832
Dan Gohmand98d6202008-10-02 22:15:21 +0000833 switch (Predicate) {
Dan Gohman7b66e042008-10-21 18:24:51 +0000834 case CmpInst::FCMP_OEQ:
835 std::swap(TrueMBB, FalseMBB);
836 Predicate = CmpInst::FCMP_UNE;
837 // FALL THROUGH
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000838 case CmpInst::FCMP_UNE: SwapArgs = false; BranchOpc = X86::JNE_4; break;
839 case CmpInst::FCMP_OGT: SwapArgs = false; BranchOpc = X86::JA_4; break;
840 case CmpInst::FCMP_OGE: SwapArgs = false; BranchOpc = X86::JAE_4; break;
841 case CmpInst::FCMP_OLT: SwapArgs = true; BranchOpc = X86::JA_4; break;
842 case CmpInst::FCMP_OLE: SwapArgs = true; BranchOpc = X86::JAE_4; break;
843 case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE_4; break;
844 case CmpInst::FCMP_ORD: SwapArgs = false; BranchOpc = X86::JNP_4; break;
845 case CmpInst::FCMP_UNO: SwapArgs = false; BranchOpc = X86::JP_4; break;
846 case CmpInst::FCMP_UEQ: SwapArgs = false; BranchOpc = X86::JE_4; break;
847 case CmpInst::FCMP_UGT: SwapArgs = true; BranchOpc = X86::JB_4; break;
848 case CmpInst::FCMP_UGE: SwapArgs = true; BranchOpc = X86::JBE_4; break;
849 case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB_4; break;
850 case CmpInst::FCMP_ULE: SwapArgs = false; BranchOpc = X86::JBE_4; break;
Chris Lattner9a08a612008-10-15 04:26:38 +0000851
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000852 case CmpInst::ICMP_EQ: SwapArgs = false; BranchOpc = X86::JE_4; break;
853 case CmpInst::ICMP_NE: SwapArgs = false; BranchOpc = X86::JNE_4; break;
854 case CmpInst::ICMP_UGT: SwapArgs = false; BranchOpc = X86::JA_4; break;
855 case CmpInst::ICMP_UGE: SwapArgs = false; BranchOpc = X86::JAE_4; break;
856 case CmpInst::ICMP_ULT: SwapArgs = false; BranchOpc = X86::JB_4; break;
857 case CmpInst::ICMP_ULE: SwapArgs = false; BranchOpc = X86::JBE_4; break;
858 case CmpInst::ICMP_SGT: SwapArgs = false; BranchOpc = X86::JG_4; break;
859 case CmpInst::ICMP_SGE: SwapArgs = false; BranchOpc = X86::JGE_4; break;
860 case CmpInst::ICMP_SLT: SwapArgs = false; BranchOpc = X86::JL_4; break;
861 case CmpInst::ICMP_SLE: SwapArgs = false; BranchOpc = X86::JLE_4; break;
Dan Gohmand98d6202008-10-02 22:15:21 +0000862 default:
863 return false;
864 }
Chris Lattner54aebde2008-10-15 03:47:17 +0000865
Chris Lattner709d8292008-10-15 04:02:26 +0000866 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
867 if (SwapArgs)
868 std::swap(Op0, Op1);
869
Chris Lattner9a08a612008-10-15 04:26:38 +0000870 // Emit a compare of the LHS and RHS, setting the flags.
871 if (!X86FastEmitCompare(Op0, Op1, VT))
872 return false;
Chris Lattner0e13c782008-10-15 04:13:29 +0000873
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000874 BuildMI(MBB, DL, TII.get(BranchOpc)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000875
876 if (Predicate == CmpInst::FCMP_UNE) {
877 // X86 requires a second branch to handle UNE (and OEQ,
878 // which is mapped to UNE above).
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000879 BuildMI(MBB, DL, TII.get(X86::JP_4)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000880 }
881
Dan Gohmand98d6202008-10-02 22:15:21 +0000882 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000883 MBB->addSuccessor(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000884 return true;
885 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000886 } else if (ExtractValueInst *EI =
887 dyn_cast<ExtractValueInst>(BI->getCondition())) {
888 // Check to see if the branch instruction is from an "arithmetic with
889 // overflow" intrinsic. The main way these intrinsics are used is:
890 //
891 // %t = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2)
892 // %sum = extractvalue { i32, i1 } %t, 0
893 // %obit = extractvalue { i32, i1 } %t, 1
894 // br i1 %obit, label %overflow, label %normal
895 //
Dan Gohman653456c2009-01-07 00:15:08 +0000896 // The %sum and %obit are converted in an ADD and a SETO/SETB before
Bill Wendling30a64a72008-12-09 23:19:12 +0000897 // reaching the branch. Therefore, we search backwards through the MBB
Dan Gohman653456c2009-01-07 00:15:08 +0000898 // looking for the SETO/SETB instruction. If an instruction modifies the
899 // EFLAGS register before we reach the SETO/SETB instruction, then we can't
900 // convert the branch into a JO/JB instruction.
Chris Lattnera9a42252009-04-12 07:36:01 +0000901 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(EI->getAggregateOperand())){
902 if (CI->getIntrinsicID() == Intrinsic::sadd_with_overflow ||
903 CI->getIntrinsicID() == Intrinsic::uadd_with_overflow) {
904 const MachineInstr *SetMI = 0;
905 unsigned Reg = lookUpRegForValue(EI);
Bill Wendling30a64a72008-12-09 23:19:12 +0000906
Chris Lattnera9a42252009-04-12 07:36:01 +0000907 for (MachineBasicBlock::const_reverse_iterator
908 RI = MBB->rbegin(), RE = MBB->rend(); RI != RE; ++RI) {
909 const MachineInstr &MI = *RI;
Bill Wendling30a64a72008-12-09 23:19:12 +0000910
Chris Lattnera9a42252009-04-12 07:36:01 +0000911 if (MI.modifiesRegister(Reg)) {
912 unsigned Src, Dst, SrcSR, DstSR;
Bill Wendling30a64a72008-12-09 23:19:12 +0000913
Chris Lattnera9a42252009-04-12 07:36:01 +0000914 if (getInstrInfo()->isMoveInstr(MI, Src, Dst, SrcSR, DstSR)) {
915 Reg = Src;
916 continue;
Bill Wendling9a901322008-12-10 19:44:24 +0000917 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000918
Chris Lattnera9a42252009-04-12 07:36:01 +0000919 SetMI = &MI;
920 break;
Bill Wendling30a64a72008-12-09 23:19:12 +0000921 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000922
Chris Lattnera9a42252009-04-12 07:36:01 +0000923 const TargetInstrDesc &TID = MI.getDesc();
924 if (TID.hasUnmodeledSideEffects() ||
925 TID.hasImplicitDefOfPhysReg(X86::EFLAGS))
926 break;
Bill Wendling9a901322008-12-10 19:44:24 +0000927 }
Chris Lattnera9a42252009-04-12 07:36:01 +0000928
929 if (SetMI) {
930 unsigned OpCode = SetMI->getOpcode();
931
932 if (OpCode == X86::SETOr || OpCode == X86::SETBr) {
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000933 BuildMI(MBB, DL, TII.get(OpCode == X86::SETOr ?
934 X86::JO_4 : X86::JB_4))
Chris Lattner8d57b772009-04-12 07:51:14 +0000935 .addMBB(TrueMBB);
Chris Lattnera9a42252009-04-12 07:36:01 +0000936 FastEmitBranch(FalseMBB);
937 MBB->addSuccessor(TrueMBB);
938 return true;
939 }
Bill Wendling9a901322008-12-10 19:44:24 +0000940 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000941 }
942 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000943 }
944
945 // Otherwise do a clumsy setcc and re-test it.
946 unsigned OpReg = getRegForValue(BI->getCondition());
947 if (OpReg == 0) return false;
948
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000949 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(OpReg).addReg(OpReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000950 BuildMI(MBB, DL, TII.get(X86::JNE_4)).addMBB(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000951 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000952 MBB->addSuccessor(TrueMBB);
Dan Gohmand89ae992008-09-05 01:06:14 +0000953 return true;
954}
955
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000956bool X86FastISel::X86SelectShift(Instruction *I) {
Chris Lattner743922e2008-09-21 21:44:29 +0000957 unsigned CReg = 0, OpReg = 0, OpImm = 0;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000958 const TargetRegisterClass *RC = NULL;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000959 if (I->getType()->isIntegerTy(8)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000960 CReg = X86::CL;
961 RC = &X86::GR8RegClass;
962 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000963 case Instruction::LShr: OpReg = X86::SHR8rCL; OpImm = X86::SHR8ri; break;
964 case Instruction::AShr: OpReg = X86::SAR8rCL; OpImm = X86::SAR8ri; break;
965 case Instruction::Shl: OpReg = X86::SHL8rCL; OpImm = X86::SHL8ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000966 default: return false;
967 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000968 } else if (I->getType()->isIntegerTy(16)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000969 CReg = X86::CX;
970 RC = &X86::GR16RegClass;
971 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000972 case Instruction::LShr: OpReg = X86::SHR16rCL; OpImm = X86::SHR16ri; break;
973 case Instruction::AShr: OpReg = X86::SAR16rCL; OpImm = X86::SAR16ri; break;
974 case Instruction::Shl: OpReg = X86::SHL16rCL; OpImm = X86::SHL16ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000975 default: return false;
976 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000977 } else if (I->getType()->isIntegerTy(32)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000978 CReg = X86::ECX;
979 RC = &X86::GR32RegClass;
980 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000981 case Instruction::LShr: OpReg = X86::SHR32rCL; OpImm = X86::SHR32ri; break;
982 case Instruction::AShr: OpReg = X86::SAR32rCL; OpImm = X86::SAR32ri; break;
983 case Instruction::Shl: OpReg = X86::SHL32rCL; OpImm = X86::SHL32ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000984 default: return false;
985 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000986 } else if (I->getType()->isIntegerTy(64)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000987 CReg = X86::RCX;
988 RC = &X86::GR64RegClass;
989 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000990 case Instruction::LShr: OpReg = X86::SHR64rCL; OpImm = X86::SHR64ri; break;
991 case Instruction::AShr: OpReg = X86::SAR64rCL; OpImm = X86::SAR64ri; break;
992 case Instruction::Shl: OpReg = X86::SHL64rCL; OpImm = X86::SHL64ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000993 default: return false;
994 }
995 } else {
996 return false;
997 }
998
Owen Andersone50ed302009-08-10 22:56:29 +0000999 EVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00001000 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Dan Gohmanf58cb6d2008-09-05 21:27:34 +00001001 return false;
1002
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001003 unsigned Op0Reg = getRegForValue(I->getOperand(0));
1004 if (Op0Reg == 0) return false;
Chris Lattner743922e2008-09-21 21:44:29 +00001005
1006 // Fold immediate in shl(x,3).
1007 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
1008 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001009 BuildMI(MBB, DL, TII.get(OpImm),
Dan Gohmanb12b1a22008-12-20 17:19:40 +00001010 ResultReg).addReg(Op0Reg).addImm(CI->getZExtValue() & 0xff);
Chris Lattner743922e2008-09-21 21:44:29 +00001011 UpdateValueMap(I, ResultReg);
1012 return true;
1013 }
1014
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001015 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1016 if (Op1Reg == 0) return false;
1017 TII.copyRegToReg(*MBB, MBB->end(), CReg, Op1Reg, RC, RC);
Dan Gohman145b8282008-10-07 21:50:36 +00001018
1019 // The shift instruction uses X86::CL. If we defined a super-register
1020 // of X86::CL, emit an EXTRACT_SUBREG to precisely describe what
1021 // we're doing here.
1022 if (CReg != X86::CL)
Chris Lattner518bb532010-02-09 19:54:29 +00001023 BuildMI(MBB, DL, TII.get(TargetOpcode::EXTRACT_SUBREG), X86::CL)
Dan Gohman145b8282008-10-07 21:50:36 +00001024 .addReg(CReg).addImm(X86::SUBREG_8BIT);
1025
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001026 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001027 BuildMI(MBB, DL, TII.get(OpReg), ResultReg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001028 UpdateValueMap(I, ResultReg);
1029 return true;
1030}
1031
1032bool X86FastISel::X86SelectSelect(Instruction *I) {
Owen Andersone50ed302009-08-10 22:56:29 +00001033 EVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00001034 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Chris Lattner160f6cc2008-10-15 05:07:36 +00001035 return false;
1036
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001037 unsigned Opc = 0;
1038 const TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001039 if (VT.getSimpleVT() == MVT::i16) {
Dan Gohman31d26912008-09-05 21:13:04 +00001040 Opc = X86::CMOVE16rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001041 RC = &X86::GR16RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001042 } else if (VT.getSimpleVT() == MVT::i32) {
Dan Gohman31d26912008-09-05 21:13:04 +00001043 Opc = X86::CMOVE32rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001044 RC = &X86::GR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001045 } else if (VT.getSimpleVT() == MVT::i64) {
Dan Gohman31d26912008-09-05 21:13:04 +00001046 Opc = X86::CMOVE64rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001047 RC = &X86::GR64RegClass;
1048 } else {
1049 return false;
1050 }
1051
1052 unsigned Op0Reg = getRegForValue(I->getOperand(0));
1053 if (Op0Reg == 0) return false;
1054 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1055 if (Op1Reg == 0) return false;
1056 unsigned Op2Reg = getRegForValue(I->getOperand(2));
1057 if (Op2Reg == 0) return false;
1058
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001059 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(Op0Reg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001060 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001061 BuildMI(MBB, DL, TII.get(Opc), ResultReg).addReg(Op1Reg).addReg(Op2Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001062 UpdateValueMap(I, ResultReg);
1063 return true;
1064}
1065
Dan Gohman78efce62008-09-10 21:02:08 +00001066bool X86FastISel::X86SelectFPExt(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +00001067 // fpext from float to double.
Owen Anderson1d0be152009-08-13 21:58:54 +00001068 if (Subtarget->hasSSE2() &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001069 I->getType()->isDoubleTy()) {
Chris Lattner160f6cc2008-10-15 05:07:36 +00001070 Value *V = I->getOperand(0);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001071 if (V->getType()->isFloatTy()) {
Chris Lattner160f6cc2008-10-15 05:07:36 +00001072 unsigned OpReg = getRegForValue(V);
1073 if (OpReg == 0) return false;
1074 unsigned ResultReg = createResultReg(X86::FR64RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001075 BuildMI(MBB, DL, TII.get(X86::CVTSS2SDrr), ResultReg).addReg(OpReg);
Chris Lattner160f6cc2008-10-15 05:07:36 +00001076 UpdateValueMap(I, ResultReg);
1077 return true;
Dan Gohman78efce62008-09-10 21:02:08 +00001078 }
1079 }
1080
1081 return false;
1082}
1083
1084bool X86FastISel::X86SelectFPTrunc(Instruction *I) {
1085 if (Subtarget->hasSSE2()) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001086 if (I->getType()->isFloatTy()) {
Dan Gohman78efce62008-09-10 21:02:08 +00001087 Value *V = I->getOperand(0);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001088 if (V->getType()->isDoubleTy()) {
Dan Gohman78efce62008-09-10 21:02:08 +00001089 unsigned OpReg = getRegForValue(V);
1090 if (OpReg == 0) return false;
1091 unsigned ResultReg = createResultReg(X86::FR32RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001092 BuildMI(MBB, DL, TII.get(X86::CVTSD2SSrr), ResultReg).addReg(OpReg);
Dan Gohman78efce62008-09-10 21:02:08 +00001093 UpdateValueMap(I, ResultReg);
1094 return true;
1095 }
1096 }
1097 }
1098
1099 return false;
1100}
1101
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001102bool X86FastISel::X86SelectTrunc(Instruction *I) {
1103 if (Subtarget->is64Bit())
1104 // All other cases should be handled by the tblgen generated code.
1105 return false;
Owen Andersone50ed302009-08-10 22:56:29 +00001106 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1107 EVT DstVT = TLI.getValueType(I->getType());
Chris Lattner44ceb8a2009-03-13 16:36:42 +00001108
1109 // This code only handles truncation to byte right now.
Owen Anderson825b72b2009-08-11 20:47:22 +00001110 if (DstVT != MVT::i8 && DstVT != MVT::i1)
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001111 // All other cases should be handled by the tblgen generated code.
1112 return false;
Owen Anderson825b72b2009-08-11 20:47:22 +00001113 if (SrcVT != MVT::i16 && SrcVT != MVT::i32)
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001114 // All other cases should be handled by the tblgen generated code.
1115 return false;
1116
1117 unsigned InputReg = getRegForValue(I->getOperand(0));
1118 if (!InputReg)
1119 // Unhandled operand. Halt "fast" selection and bail.
1120 return false;
1121
Dan Gohman62417622009-04-27 16:33:14 +00001122 // First issue a copy to GR16_ABCD or GR32_ABCD.
Owen Anderson825b72b2009-08-11 20:47:22 +00001123 unsigned CopyOpc = (SrcVT == MVT::i16) ? X86::MOV16rr : X86::MOV32rr;
1124 const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16)
Dan Gohman62417622009-04-27 16:33:14 +00001125 ? X86::GR16_ABCDRegisterClass : X86::GR32_ABCDRegisterClass;
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001126 unsigned CopyReg = createResultReg(CopyRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001127 BuildMI(MBB, DL, TII.get(CopyOpc), CopyReg).addReg(InputReg);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001128
1129 // Then issue an extract_subreg.
Owen Anderson825b72b2009-08-11 20:47:22 +00001130 unsigned ResultReg = FastEmitInst_extractsubreg(MVT::i8,
Evan Cheng536ab132009-01-22 09:10:11 +00001131 CopyReg, X86::SUBREG_8BIT);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001132 if (!ResultReg)
1133 return false;
1134
1135 UpdateValueMap(I, ResultReg);
1136 return true;
1137}
1138
Bill Wendling52370a12008-12-09 02:42:50 +00001139bool X86FastISel::X86SelectExtractValue(Instruction *I) {
1140 ExtractValueInst *EI = cast<ExtractValueInst>(I);
1141 Value *Agg = EI->getAggregateOperand();
1142
Chris Lattnera9a42252009-04-12 07:36:01 +00001143 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Agg)) {
1144 switch (CI->getIntrinsicID()) {
1145 default: break;
1146 case Intrinsic::sadd_with_overflow:
1147 case Intrinsic::uadd_with_overflow:
1148 // Cheat a little. We know that the registers for "add" and "seto" are
1149 // allocated sequentially. However, we only keep track of the register
1150 // for "add" in the value map. Use extractvalue's index to get the
1151 // correct register for "seto".
1152 UpdateValueMap(I, lookUpRegForValue(Agg) + *EI->idx_begin());
1153 return true;
Bill Wendling52370a12008-12-09 02:42:50 +00001154 }
1155 }
1156
1157 return false;
1158}
1159
Chris Lattnera9a42252009-04-12 07:36:01 +00001160bool X86FastISel::X86VisitIntrinsicCall(IntrinsicInst &I) {
Bill Wendling52370a12008-12-09 02:42:50 +00001161 // FIXME: Handle more intrinsics.
Chris Lattnera9a42252009-04-12 07:36:01 +00001162 switch (I.getIntrinsicID()) {
Bill Wendling52370a12008-12-09 02:42:50 +00001163 default: return false;
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001164 case Intrinsic::dbg_declare: {
1165 DbgDeclareInst *DI = cast<DbgDeclareInst>(&I);
1166 X86AddressMode AM;
Dale Johannesen973f4672010-01-29 21:21:28 +00001167 assert(DI->getAddress() && "Null address should be checked earlier!");
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001168 if (!X86SelectAddress(DI->getAddress(), AM))
1169 return false;
Chris Lattner518bb532010-02-09 19:54:29 +00001170 const TargetInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE);
Dale Johannesen116b7992010-02-18 18:51:15 +00001171 // FIXME may need to add RegState::Debug to any registers produced,
1172 // although ESP/EBP should be the only ones at the moment.
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001173 addFullAddress(BuildMI(MBB, DL, II), AM).addImm(0).
1174 addMetadata(DI->getVariable());
1175 return true;
1176 }
Eric Christopher77f79892010-01-18 22:11:29 +00001177 case Intrinsic::trap: {
1178 BuildMI(MBB, DL, TII.get(X86::TRAP));
1179 return true;
1180 }
Bill Wendling52370a12008-12-09 02:42:50 +00001181 case Intrinsic::sadd_with_overflow:
1182 case Intrinsic::uadd_with_overflow: {
Bill Wendlingc065b3f2008-12-09 07:55:31 +00001183 // Replace "add with overflow" intrinsics with an "add" instruction followed
1184 // by a seto/setc instruction. Later on, when the "extractvalue"
1185 // instructions are encountered, we use the fact that two registers were
1186 // created sequentially to get the correct registers for the "sum" and the
1187 // "overflow bit".
Bill Wendling52370a12008-12-09 02:42:50 +00001188 const Function *Callee = I.getCalledFunction();
1189 const Type *RetTy =
1190 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(unsigned(0));
1191
Owen Andersone50ed302009-08-10 22:56:29 +00001192 EVT VT;
Bill Wendling52370a12008-12-09 02:42:50 +00001193 if (!isTypeLegal(RetTy, VT))
1194 return false;
1195
1196 Value *Op1 = I.getOperand(1);
1197 Value *Op2 = I.getOperand(2);
1198 unsigned Reg1 = getRegForValue(Op1);
1199 unsigned Reg2 = getRegForValue(Op2);
1200
1201 if (Reg1 == 0 || Reg2 == 0)
1202 // FIXME: Handle values *not* in registers.
1203 return false;
1204
1205 unsigned OpC = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001206 if (VT == MVT::i32)
Bill Wendling52370a12008-12-09 02:42:50 +00001207 OpC = X86::ADD32rr;
Owen Anderson825b72b2009-08-11 20:47:22 +00001208 else if (VT == MVT::i64)
Bill Wendling52370a12008-12-09 02:42:50 +00001209 OpC = X86::ADD64rr;
1210 else
1211 return false;
1212
1213 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001214 BuildMI(MBB, DL, TII.get(OpC), ResultReg).addReg(Reg1).addReg(Reg2);
Chris Lattner8d57b772009-04-12 07:51:14 +00001215 unsigned DestReg1 = UpdateValueMap(&I, ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001216
Chris Lattner8d57b772009-04-12 07:51:14 +00001217 // If the add with overflow is an intra-block value then we just want to
1218 // create temporaries for it like normal. If it is a cross-block value then
1219 // UpdateValueMap will return the cross-block register used. Since we
1220 // *really* want the value to be live in the register pair known by
1221 // UpdateValueMap, we have to use DestReg1+1 as the destination register in
1222 // the cross block case. In the non-cross-block case, we should just make
1223 // another register for the value.
1224 if (DestReg1 != ResultReg)
1225 ResultReg = DestReg1+1;
1226 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001227 ResultReg = createResultReg(TLI.getRegClassFor(MVT::i8));
Chris Lattner8d57b772009-04-12 07:51:14 +00001228
Chris Lattnera9a42252009-04-12 07:36:01 +00001229 unsigned Opc = X86::SETBr;
1230 if (I.getIntrinsicID() == Intrinsic::sadd_with_overflow)
1231 Opc = X86::SETOr;
1232 BuildMI(MBB, DL, TII.get(Opc), ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001233 return true;
1234 }
1235 }
1236}
1237
Evan Chengf3d4efe2008-09-07 09:09:33 +00001238bool X86FastISel::X86SelectCall(Instruction *I) {
1239 CallInst *CI = cast<CallInst>(I);
1240 Value *Callee = I->getOperand(0);
1241
1242 // Can't handle inline asm yet.
1243 if (isa<InlineAsm>(Callee))
1244 return false;
1245
Bill Wendling52370a12008-12-09 02:42:50 +00001246 // Handle intrinsic calls.
Chris Lattnera9a42252009-04-12 07:36:01 +00001247 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI))
1248 return X86VisitIntrinsicCall(*II);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001249
Evan Chengf3d4efe2008-09-07 09:09:33 +00001250 // Handle only C and fastcc calling conventions for now.
1251 CallSite CS(CI);
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001252 CallingConv::ID CC = CS.getCallingConv();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001253 if (CC != CallingConv::C &&
1254 CC != CallingConv::Fast &&
1255 CC != CallingConv::X86_FastCall)
1256 return false;
1257
Evan Cheng381993f2010-01-27 00:00:57 +00001258 // fastcc with -tailcallopt is intended to provide a guaranteed
1259 // tail call optimization. Fastisel doesn't know how to do that.
Dan Gohman1797ed52010-02-08 20:27:50 +00001260 if (CC == CallingConv::Fast && GuaranteedTailCallOpt)
Evan Cheng381993f2010-01-27 00:00:57 +00001261 return false;
1262
Evan Chengf3d4efe2008-09-07 09:09:33 +00001263 // Let SDISel handle vararg functions.
1264 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1265 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
1266 if (FTy->isVarArg())
1267 return false;
1268
1269 // Handle *simple* calls for now.
1270 const Type *RetTy = CS.getType();
Owen Andersone50ed302009-08-10 22:56:29 +00001271 EVT RetVT;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001272 if (RetTy->isVoidTy())
Owen Anderson825b72b2009-08-11 20:47:22 +00001273 RetVT = MVT::isVoid;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001274 else if (!isTypeLegal(RetTy, RetVT, true))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001275 return false;
1276
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001277 // Materialize callee address in a register. FIXME: GV address can be
1278 // handled with a CALLpcrel32 instead.
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001279 X86AddressMode CalleeAM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001280 if (!X86SelectCallAddress(Callee, CalleeAM))
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001281 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001282 unsigned CalleeOp = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001283 GlobalValue *GV = 0;
Chris Lattner553e5712009-06-27 04:50:14 +00001284 if (CalleeAM.GV != 0) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001285 GV = CalleeAM.GV;
Chris Lattner553e5712009-06-27 04:50:14 +00001286 } else if (CalleeAM.Base.Reg != 0) {
1287 CalleeOp = CalleeAM.Base.Reg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001288 } else
1289 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001290
Evan Chengdebdea02008-09-08 17:15:42 +00001291 // Allow calls which produce i1 results.
1292 bool AndToI1 = false;
Owen Anderson825b72b2009-08-11 20:47:22 +00001293 if (RetVT == MVT::i1) {
1294 RetVT = MVT::i8;
Evan Chengdebdea02008-09-08 17:15:42 +00001295 AndToI1 = true;
1296 }
1297
Evan Chengf3d4efe2008-09-07 09:09:33 +00001298 // Deal with call operands first.
Chris Lattner241ab472008-10-15 05:38:32 +00001299 SmallVector<Value*, 8> ArgVals;
1300 SmallVector<unsigned, 8> Args;
Owen Andersone50ed302009-08-10 22:56:29 +00001301 SmallVector<EVT, 8> ArgVTs;
Chris Lattner241ab472008-10-15 05:38:32 +00001302 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001303 Args.reserve(CS.arg_size());
Chris Lattner241ab472008-10-15 05:38:32 +00001304 ArgVals.reserve(CS.arg_size());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001305 ArgVTs.reserve(CS.arg_size());
1306 ArgFlags.reserve(CS.arg_size());
1307 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1308 i != e; ++i) {
1309 unsigned Arg = getRegForValue(*i);
1310 if (Arg == 0)
1311 return false;
1312 ISD::ArgFlagsTy Flags;
1313 unsigned AttrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00001314 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001315 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00001316 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001317 Flags.setZExt();
1318
1319 // FIXME: Only handle *easy* calls for now.
Devang Patel05988662008-09-25 21:00:45 +00001320 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1321 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1322 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1323 CS.paramHasAttr(AttrInd, Attribute::ByVal))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001324 return false;
1325
1326 const Type *ArgTy = (*i)->getType();
Owen Andersone50ed302009-08-10 22:56:29 +00001327 EVT ArgVT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001328 if (!isTypeLegal(ArgTy, ArgVT))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001329 return false;
1330 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1331 Flags.setOrigAlign(OriginalAlignment);
1332
1333 Args.push_back(Arg);
Chris Lattner241ab472008-10-15 05:38:32 +00001334 ArgVals.push_back(*i);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001335 ArgVTs.push_back(ArgVT);
1336 ArgFlags.push_back(Flags);
1337 }
1338
1339 // Analyze operands of the call, assigning locations to each operand.
1340 SmallVector<CCValAssign, 16> ArgLocs;
Owen Andersond1474d02009-07-09 17:57:24 +00001341 CCState CCInfo(CC, false, TM, ArgLocs, I->getParent()->getContext());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001342 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC));
1343
1344 // Get a count of how many bytes are to be pushed on the stack.
1345 unsigned NumBytes = CCInfo.getNextStackOffset();
1346
1347 // Issue CALLSEQ_START
Dan Gohman6d4b0522008-10-01 18:28:06 +00001348 unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001349 BuildMI(MBB, DL, TII.get(AdjStackDown)).addImm(NumBytes);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001350
Chris Lattner438949a2008-10-15 05:30:52 +00001351 // Process argument: walk the register/memloc assignments, inserting
Evan Chengf3d4efe2008-09-07 09:09:33 +00001352 // copies / loads.
1353 SmallVector<unsigned, 4> RegArgs;
1354 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1355 CCValAssign &VA = ArgLocs[i];
1356 unsigned Arg = Args[VA.getValNo()];
Owen Andersone50ed302009-08-10 22:56:29 +00001357 EVT ArgVT = ArgVTs[VA.getValNo()];
Evan Chengf3d4efe2008-09-07 09:09:33 +00001358
1359 // Promote the value if needed.
1360 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001361 default: llvm_unreachable("Unknown loc info!");
Evan Chengf3d4efe2008-09-07 09:09:33 +00001362 case CCValAssign::Full: break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001363 case CCValAssign::SExt: {
1364 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1365 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001366 assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001367 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001368 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001369 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001370 }
1371 case CCValAssign::ZExt: {
1372 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1373 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001374 assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001375 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001376 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001377 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001378 }
1379 case CCValAssign::AExt: {
1380 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1381 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001382 if (!Emitted)
1383 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
Chris Lattner160f6cc2008-10-15 05:07:36 +00001384 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001385 if (!Emitted)
1386 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1387 Arg, ArgVT, Arg);
1388
Chris Lattnera33649e2008-12-19 17:03:38 +00001389 assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted;
Evan Cheng24e3a902008-09-08 06:35:17 +00001390 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001391 break;
1392 }
Dan Gohmanc3c9c482009-08-05 05:33:42 +00001393 case CCValAssign::BCvt: {
1394 unsigned BC = FastEmit_r(ArgVT.getSimpleVT(), VA.getLocVT().getSimpleVT(),
1395 ISD::BIT_CONVERT, Arg);
1396 assert(BC != 0 && "Failed to emit a bitcast!");
1397 Arg = BC;
1398 ArgVT = VA.getLocVT();
1399 break;
1400 }
Evan Cheng24e3a902008-09-08 06:35:17 +00001401 }
Evan Chengf3d4efe2008-09-07 09:09:33 +00001402
1403 if (VA.isRegLoc()) {
1404 TargetRegisterClass* RC = TLI.getRegClassFor(ArgVT);
1405 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), VA.getLocReg(),
1406 Arg, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001407 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001408 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001409 RegArgs.push_back(VA.getLocReg());
1410 } else {
1411 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman0586d912008-09-10 20:11:02 +00001412 X86AddressMode AM;
1413 AM.Base.Reg = StackPtr;
1414 AM.Disp = LocMemOffset;
Chris Lattner241ab472008-10-15 05:38:32 +00001415 Value *ArgVal = ArgVals[VA.getValNo()];
1416
1417 // If this is a really simple value, emit this with the Value* version of
1418 // X86FastEmitStore. If it isn't simple, we don't want to do this, as it
1419 // can cause us to reevaluate the argument.
1420 if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal))
1421 X86FastEmitStore(ArgVT, ArgVal, AM);
1422 else
1423 X86FastEmitStore(ArgVT, Arg, AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001424 }
1425 }
1426
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001427 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1428 // GOT pointer.
Chris Lattner15a380a2009-07-09 04:39:06 +00001429 if (Subtarget->isPICStyleGOT()) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001430 TargetRegisterClass *RC = X86::GR32RegisterClass;
Dan Gohman57c3dac2008-09-30 00:58:23 +00001431 unsigned Base = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001432 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), X86::EBX, Base, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001433 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001434 Emitted = true;
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001435 }
Chris Lattner51e8eab2009-07-09 06:34:26 +00001436
Evan Chengf3d4efe2008-09-07 09:09:33 +00001437 // Issue the call.
Chris Lattner51e8eab2009-07-09 06:34:26 +00001438 MachineInstrBuilder MIB;
1439 if (CalleeOp) {
1440 // Register-indirect call.
1441 unsigned CallOpc = Subtarget->is64Bit() ? X86::CALL64r : X86::CALL32r;
1442 MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addReg(CalleeOp);
1443
1444 } else {
1445 // Direct call.
1446 assert(GV && "Not a direct call");
1447 unsigned CallOpc =
1448 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
1449
1450 // See if we need any target-specific flags on the GV operand.
1451 unsigned char OpFlags = 0;
1452
1453 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
1454 // external symbols most go through the PLT in PIC mode. If the symbol
1455 // has hidden or protected visibility, or if it is static or local, then
1456 // we don't need to use the PLT - we can directly call it.
1457 if (Subtarget->isTargetELF() &&
1458 TM.getRelocationModel() == Reloc::PIC_ &&
1459 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
1460 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00001461 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner51e8eab2009-07-09 06:34:26 +00001462 (GV->isDeclaration() || GV->isWeakForLinker()) &&
1463 Subtarget->getDarwinVers() < 9) {
1464 // PC-relative references to external symbols should go through $stub,
1465 // unless we're building with the leopard linker or later, which
1466 // automatically synthesizes these stubs.
1467 OpFlags = X86II::MO_DARWIN_STUB;
1468 }
1469
1470
1471 MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addGlobalAddress(GV, 0, OpFlags);
1472 }
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001473
1474 // Add an implicit use GOT pointer in EBX.
Chris Lattner15a380a2009-07-09 04:39:06 +00001475 if (Subtarget->isPICStyleGOT())
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001476 MIB.addReg(X86::EBX);
1477
Evan Chengf3d4efe2008-09-07 09:09:33 +00001478 // Add implicit physical register uses to the call.
Dan Gohman8c3f8b62008-10-07 22:10:33 +00001479 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1480 MIB.addReg(RegArgs[i]);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001481
1482 // Issue CALLSEQ_END
Dan Gohman6d4b0522008-10-01 18:28:06 +00001483 unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001484 BuildMI(MBB, DL, TII.get(AdjStackUp)).addImm(NumBytes).addImm(0);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001485
1486 // Now handle call return value (if any).
Owen Anderson825b72b2009-08-11 20:47:22 +00001487 if (RetVT.getSimpleVT().SimpleTy != MVT::isVoid) {
Evan Chengf3d4efe2008-09-07 09:09:33 +00001488 SmallVector<CCValAssign, 16> RVLocs;
Owen Andersond1474d02009-07-09 17:57:24 +00001489 CCState CCInfo(CC, false, TM, RVLocs, I->getParent()->getContext());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001490 CCInfo.AnalyzeCallResult(RetVT, RetCC_X86);
1491
1492 // Copy all of the result registers out of their specified physreg.
1493 assert(RVLocs.size() == 1 && "Can't handle multi-value calls!");
Owen Andersone50ed302009-08-10 22:56:29 +00001494 EVT CopyVT = RVLocs[0].getValVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001495 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
1496 TargetRegisterClass *SrcRC = DstRC;
1497
1498 // If this is a call to a function that returns an fp value on the x87 fp
1499 // stack, but where we prefer to use the value in xmm registers, copy it
1500 // out as F80 and use a truncate to move it from fp stack reg to xmm reg.
1501 if ((RVLocs[0].getLocReg() == X86::ST0 ||
1502 RVLocs[0].getLocReg() == X86::ST1) &&
1503 isScalarFPTypeInSSEReg(RVLocs[0].getValVT())) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001504 CopyVT = MVT::f80;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001505 SrcRC = X86::RSTRegisterClass;
1506 DstRC = X86::RFP80RegisterClass;
1507 }
1508
1509 unsigned ResultReg = createResultReg(DstRC);
1510 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
1511 RVLocs[0].getLocReg(), DstRC, SrcRC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001512 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001513 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001514 if (CopyVT != RVLocs[0].getValVT()) {
1515 // Round the F80 the right size, which also moves to the appropriate xmm
1516 // register. This is accomplished by storing the F80 value in memory and
1517 // then loading it back. Ewww...
Owen Andersone50ed302009-08-10 22:56:29 +00001518 EVT ResVT = RVLocs[0].getValVT();
Owen Anderson825b72b2009-08-11 20:47:22 +00001519 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001520 unsigned MemSize = ResVT.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00001521 int FI = MFI.CreateStackObject(MemSize, MemSize, false);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001522 addFrameReference(BuildMI(MBB, DL, TII.get(Opc)), FI).addReg(ResultReg);
Owen Anderson825b72b2009-08-11 20:47:22 +00001523 DstRC = ResVT == MVT::f32
Evan Chengf3d4efe2008-09-07 09:09:33 +00001524 ? X86::FR32RegisterClass : X86::FR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001525 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001526 ResultReg = createResultReg(DstRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001527 addFrameReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), FI);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001528 }
1529
Evan Chengdebdea02008-09-08 17:15:42 +00001530 if (AndToI1) {
1531 // Mask out all but lowest bit for some call which produces an i1.
1532 unsigned AndResult = createResultReg(X86::GR8RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001533 BuildMI(MBB, DL,
1534 TII.get(X86::AND8ri), AndResult).addReg(ResultReg).addImm(1);
Evan Chengdebdea02008-09-08 17:15:42 +00001535 ResultReg = AndResult;
1536 }
1537
Evan Chengf3d4efe2008-09-07 09:09:33 +00001538 UpdateValueMap(I, ResultReg);
1539 }
1540
1541 return true;
1542}
1543
1544
Dan Gohman99b21822008-08-28 23:21:34 +00001545bool
Dan Gohman3df24e62008-09-03 23:12:08 +00001546X86FastISel::TargetSelectInstruction(Instruction *I) {
Dan Gohman99b21822008-08-28 23:21:34 +00001547 switch (I->getOpcode()) {
1548 default: break;
Evan Cheng8b19e562008-09-03 06:44:39 +00001549 case Instruction::Load:
Dan Gohman3df24e62008-09-03 23:12:08 +00001550 return X86SelectLoad(I);
Owen Anderson79924eb2008-09-04 16:48:33 +00001551 case Instruction::Store:
1552 return X86SelectStore(I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +00001553 case Instruction::ICmp:
1554 case Instruction::FCmp:
1555 return X86SelectCmp(I);
Dan Gohmand89ae992008-09-05 01:06:14 +00001556 case Instruction::ZExt:
1557 return X86SelectZExt(I);
1558 case Instruction::Br:
1559 return X86SelectBranch(I);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001560 case Instruction::Call:
1561 return X86SelectCall(I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001562 case Instruction::LShr:
1563 case Instruction::AShr:
1564 case Instruction::Shl:
1565 return X86SelectShift(I);
1566 case Instruction::Select:
1567 return X86SelectSelect(I);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001568 case Instruction::Trunc:
1569 return X86SelectTrunc(I);
Dan Gohman78efce62008-09-10 21:02:08 +00001570 case Instruction::FPExt:
1571 return X86SelectFPExt(I);
1572 case Instruction::FPTrunc:
1573 return X86SelectFPTrunc(I);
Bill Wendling52370a12008-12-09 02:42:50 +00001574 case Instruction::ExtractValue:
1575 return X86SelectExtractValue(I);
Dan Gohman474d3b32009-03-13 23:53:06 +00001576 case Instruction::IntToPtr: // Deliberate fall-through.
1577 case Instruction::PtrToInt: {
Owen Andersone50ed302009-08-10 22:56:29 +00001578 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1579 EVT DstVT = TLI.getValueType(I->getType());
Dan Gohman474d3b32009-03-13 23:53:06 +00001580 if (DstVT.bitsGT(SrcVT))
1581 return X86SelectZExt(I);
1582 if (DstVT.bitsLT(SrcVT))
1583 return X86SelectTrunc(I);
1584 unsigned Reg = getRegForValue(I->getOperand(0));
1585 if (Reg == 0) return false;
1586 UpdateValueMap(I, Reg);
1587 return true;
1588 }
Dan Gohman99b21822008-08-28 23:21:34 +00001589 }
1590
1591 return false;
1592}
1593
Dan Gohman0586d912008-09-10 20:11:02 +00001594unsigned X86FastISel::TargetMaterializeConstant(Constant *C) {
Owen Andersone50ed302009-08-10 22:56:29 +00001595 EVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001596 if (!isTypeLegal(C->getType(), VT))
Owen Anderson95267a12008-09-05 00:06:23 +00001597 return false;
1598
1599 // Get opcode and regclass of the output for the given load instruction.
1600 unsigned Opc = 0;
1601 const TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001602 switch (VT.getSimpleVT().SimpleTy) {
Owen Anderson95267a12008-09-05 00:06:23 +00001603 default: return false;
Owen Anderson825b72b2009-08-11 20:47:22 +00001604 case MVT::i8:
Owen Anderson95267a12008-09-05 00:06:23 +00001605 Opc = X86::MOV8rm;
1606 RC = X86::GR8RegisterClass;
1607 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001608 case MVT::i16:
Owen Anderson95267a12008-09-05 00:06:23 +00001609 Opc = X86::MOV16rm;
1610 RC = X86::GR16RegisterClass;
1611 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001612 case MVT::i32:
Owen Anderson95267a12008-09-05 00:06:23 +00001613 Opc = X86::MOV32rm;
1614 RC = X86::GR32RegisterClass;
1615 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001616 case MVT::i64:
Owen Anderson95267a12008-09-05 00:06:23 +00001617 // Must be in x86-64 mode.
1618 Opc = X86::MOV64rm;
1619 RC = X86::GR64RegisterClass;
1620 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001621 case MVT::f32:
Owen Anderson95267a12008-09-05 00:06:23 +00001622 if (Subtarget->hasSSE1()) {
1623 Opc = X86::MOVSSrm;
1624 RC = X86::FR32RegisterClass;
1625 } else {
1626 Opc = X86::LD_Fp32m;
1627 RC = X86::RFP32RegisterClass;
1628 }
1629 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001630 case MVT::f64:
Owen Anderson95267a12008-09-05 00:06:23 +00001631 if (Subtarget->hasSSE2()) {
1632 Opc = X86::MOVSDrm;
1633 RC = X86::FR64RegisterClass;
1634 } else {
1635 Opc = X86::LD_Fp64m;
1636 RC = X86::RFP64RegisterClass;
1637 }
1638 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001639 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +00001640 // No f80 support yet.
1641 return false;
Owen Anderson95267a12008-09-05 00:06:23 +00001642 }
1643
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001644 // Materialize addresses with LEA instructions.
Owen Anderson95267a12008-09-05 00:06:23 +00001645 if (isa<GlobalValue>(C)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001646 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001647 if (X86SelectAddress(C, AM)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001648 if (TLI.getPointerTy() == MVT::i32)
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001649 Opc = X86::LEA32r;
1650 else
1651 Opc = X86::LEA64r;
1652 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001653 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Owen Anderson95267a12008-09-05 00:06:23 +00001654 return ResultReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001655 }
Evan Cheng0de588f2008-09-05 21:00:03 +00001656 return 0;
Owen Anderson95267a12008-09-05 00:06:23 +00001657 }
1658
Owen Anderson3b217c62008-09-06 01:11:01 +00001659 // MachineConstantPool wants an explicit alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +00001660 unsigned Align = TD.getPrefTypeAlignment(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001661 if (Align == 0) {
1662 // Alignment of vector types. FIXME!
Duncan Sands777d2302009-05-09 07:06:46 +00001663 Align = TD.getTypeAllocSize(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001664 }
Owen Anderson95267a12008-09-05 00:06:23 +00001665
Dan Gohman5396c992008-09-30 01:21:32 +00001666 // x86-32 PIC requires a PIC base register for constant pools.
1667 unsigned PICBase = 0;
Chris Lattner89da6992009-06-27 01:31:51 +00001668 unsigned char OpFlag = 0;
Chris Lattnere2c92082009-07-10 21:00:45 +00001669 if (Subtarget->isPICStyleStubPIC()) { // Not dynamic-no-pic
Chris Lattner15a380a2009-07-09 04:39:06 +00001670 OpFlag = X86II::MO_PIC_BASE_OFFSET;
1671 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1672 } else if (Subtarget->isPICStyleGOT()) {
1673 OpFlag = X86II::MO_GOTOFF;
1674 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1675 } else if (Subtarget->isPICStyleRIPRel() &&
1676 TM.getCodeModel() == CodeModel::Small) {
1677 PICBase = X86::RIP;
Chris Lattner89da6992009-06-27 01:31:51 +00001678 }
Dan Gohman5396c992008-09-30 01:21:32 +00001679
1680 // Create the load from the constant pool.
Dan Gohman0586d912008-09-10 20:11:02 +00001681 unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align);
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001682 unsigned ResultReg = createResultReg(RC);
Chris Lattner89da6992009-06-27 01:31:51 +00001683 addConstantPoolReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg),
1684 MCPOffset, PICBase, OpFlag);
Dan Gohman5396c992008-09-30 01:21:32 +00001685
Owen Anderson95267a12008-09-05 00:06:23 +00001686 return ResultReg;
1687}
1688
Dan Gohman0586d912008-09-10 20:11:02 +00001689unsigned X86FastISel::TargetMaterializeAlloca(AllocaInst *C) {
Dan Gohman4e6ed5e2008-10-03 01:27:49 +00001690 // Fail on dynamic allocas. At this point, getRegForValue has already
1691 // checked its CSE maps, so if we're here trying to handle a dynamic
1692 // alloca, we're not going to succeed. X86SelectAddress has a
1693 // check for dynamic allocas, because it's called directly from
1694 // various places, but TargetMaterializeAlloca also needs a check
1695 // in order to avoid recursion between getRegForValue,
1696 // X86SelectAddrss, and TargetMaterializeAlloca.
1697 if (!StaticAllocaMap.count(C))
1698 return 0;
1699
Dan Gohman0586d912008-09-10 20:11:02 +00001700 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001701 if (!X86SelectAddress(C, AM))
Dan Gohman0586d912008-09-10 20:11:02 +00001702 return 0;
1703 unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
1704 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
1705 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001706 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Dan Gohman0586d912008-09-10 20:11:02 +00001707 return ResultReg;
1708}
1709
Evan Chengc3f44b02008-09-03 00:03:49 +00001710namespace llvm {
Dan Gohman3df24e62008-09-03 23:12:08 +00001711 llvm::FastISel *X86::createFastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +00001712 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +00001713 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +00001714 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +00001715 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001716 DenseMap<const AllocaInst *, int> &am
1717#ifndef NDEBUG
1718 , SmallSet<Instruction*, 8> &cil
1719#endif
1720 ) {
Devang Patel83489bb2009-01-13 00:35:13 +00001721 return new X86FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001722#ifndef NDEBUG
1723 , cil
1724#endif
1725 );
Evan Chengc3f44b02008-09-03 00:03:49 +00001726 }
Dan Gohman99b21822008-08-28 23:21:34 +00001727}