blob: 98e3f4efe588706b6a708c0943378d0847ed6fe3 [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: {
Chris Lattnerbfcc8e02010-03-04 19:54:45 +0000391 X86AddressMode SavedAM = AM;
392
Dan Gohman35893082008-09-18 23:23:44 +0000393 // Pattern-match simple GEPs.
Dan Gohman09aae462008-09-26 20:04:15 +0000394 uint64_t Disp = (int32_t)AM.Disp;
Dan Gohman35893082008-09-18 23:23:44 +0000395 unsigned IndexReg = AM.IndexReg;
396 unsigned Scale = AM.Scale;
397 gep_type_iterator GTI = gep_type_begin(U);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000398 // Iterate through the indices, folding what we can. Constants can be
399 // folded, and one dynamic index can be handled, if the scale is supported.
Dan Gohman35893082008-09-18 23:23:44 +0000400 for (User::op_iterator i = U->op_begin() + 1, e = U->op_end();
401 i != e; ++i, ++GTI) {
402 Value *Op = *i;
403 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
404 const StructLayout *SL = TD.getStructLayout(STy);
405 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
406 Disp += SL->getElementOffset(Idx);
407 } else {
Duncan Sands777d2302009-05-09 07:06:46 +0000408 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
Dan Gohman35893082008-09-18 23:23:44 +0000409 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
410 // Constant-offset addressing.
Dan Gohman09aae462008-09-26 20:04:15 +0000411 Disp += CI->getSExtValue() * S;
Dan Gohman35893082008-09-18 23:23:44 +0000412 } else if (IndexReg == 0 &&
Chris Lattner4c1b6062009-06-27 05:24:12 +0000413 (!AM.GV || !Subtarget->isPICStyleRIPRel()) &&
Dan Gohman35893082008-09-18 23:23:44 +0000414 (S == 1 || S == 2 || S == 4 || S == 8)) {
415 // Scaled-index addressing.
416 Scale = S;
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000417 IndexReg = getRegForGEPIndex(Op);
Dan Gohman35893082008-09-18 23:23:44 +0000418 if (IndexReg == 0)
419 return false;
420 } else
421 // Unsupported.
422 goto unsupported_gep;
423 }
424 }
Dan Gohman09aae462008-09-26 20:04:15 +0000425 // Check for displacement overflow.
426 if (!isInt32(Disp))
427 break;
Dan Gohman35893082008-09-18 23:23:44 +0000428 // Ok, the GEP indices were covered by constant-offset and scaled-index
429 // addressing. Update the address state and move on to examining the base.
430 AM.IndexReg = IndexReg;
431 AM.Scale = Scale;
Dan Gohman09aae462008-09-26 20:04:15 +0000432 AM.Disp = (uint32_t)Disp;
Chris Lattner225d4ca2010-03-04 19:48:19 +0000433 if (X86SelectAddress(U->getOperand(0), AM))
434 return true;
435
436 // If we couldn't merge the sub value into this addr mode, revert back to
437 // our address and just match the value instead of completely failing.
438 AM = SavedAM;
439 break;
Dan Gohman35893082008-09-18 23:23:44 +0000440 unsupported_gep:
441 // Ok, the GEP indices weren't all covered.
442 break;
443 }
444 }
445
446 // Handle constant address.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000447 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000448 // Can't handle alternate code models yet.
Chris Lattnerf1d6bd52009-07-10 21:03:06 +0000449 if (TM.getCodeModel() != CodeModel::Small)
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000450 return false;
451
Dan Gohman97135e12008-09-26 19:15:30 +0000452 // RIP-relative addresses can't have additional register operands.
Chris Lattner4c1b6062009-06-27 05:24:12 +0000453 if (Subtarget->isPICStyleRIPRel() &&
Dan Gohman97135e12008-09-26 19:15:30 +0000454 (AM.Base.Reg != 0 || AM.IndexReg != 0))
455 return false;
456
Dan Gohmane9865942009-02-23 22:03:08 +0000457 // Can't handle TLS yet.
458 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
459 if (GVar->isThreadLocal())
460 return false;
461
Chris Lattnerff7727f2009-07-09 06:41:35 +0000462 // Okay, we've committed to selecting this global. Set up the basic address.
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000463 AM.GV = GV;
Chris Lattner18c59872009-06-27 04:16:01 +0000464
Chris Lattner0d786dd2009-07-10 07:48:51 +0000465 // Allow the subtarget to classify the global.
466 unsigned char GVFlags = Subtarget->ClassifyGlobalReference(GV, TM);
467
468 // If this reference is relative to the pic base, set it now.
469 if (isGlobalRelativeToPICBase(GVFlags)) {
Chris Lattner75cdf272009-07-09 06:59:17 +0000470 // FIXME: How do we know Base.Reg is free??
Dan Gohman57c3dac2008-09-30 00:58:23 +0000471 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(&MF);
Chris Lattner75cdf272009-07-09 06:59:17 +0000472 }
Chris Lattner0d786dd2009-07-10 07:48:51 +0000473
474 // Unless the ABI requires an extra load, return a direct reference to
Chris Lattnerff7727f2009-07-09 06:41:35 +0000475 // the global.
Chris Lattner0d786dd2009-07-10 07:48:51 +0000476 if (!isGlobalStubReference(GVFlags)) {
Chris Lattnerff7727f2009-07-09 06:41:35 +0000477 if (Subtarget->isPICStyleRIPRel()) {
478 // Use rip-relative addressing if we can. Above we verified that the
479 // base and index registers are unused.
480 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
481 AM.Base.Reg = X86::RIP;
Dan Gohman7e8ef602008-09-19 23:42:04 +0000482 }
Chris Lattner0d786dd2009-07-10 07:48:51 +0000483 AM.GVOpFlags = GVFlags;
Chris Lattnerff7727f2009-07-09 06:41:35 +0000484 return true;
485 }
486
Chris Lattner0d786dd2009-07-10 07:48:51 +0000487 // Ok, we need to do a load from a stub. If we've already loaded from this
488 // stub, reuse the loaded pointer, otherwise emit the load now.
Chris Lattnerff7727f2009-07-09 06:41:35 +0000489 DenseMap<const Value*, unsigned>::iterator I = LocalValueMap.find(V);
490 unsigned LoadReg;
491 if (I != LocalValueMap.end() && I->second != 0) {
492 LoadReg = I->second;
493 } else {
Chris Lattner35c28ec2009-07-01 03:27:19 +0000494 // Issue load from stub.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000495 unsigned Opc = 0;
496 const TargetRegisterClass *RC = NULL;
Dan Gohman789ce772008-09-25 23:34:02 +0000497 X86AddressMode StubAM;
498 StubAM.Base.Reg = AM.Base.Reg;
Chris Lattner75cdf272009-07-09 06:59:17 +0000499 StubAM.GV = GV;
Chris Lattner0d786dd2009-07-10 07:48:51 +0000500 StubAM.GVOpFlags = GVFlags;
501
Owen Anderson825b72b2009-08-11 20:47:22 +0000502 if (TLI.getPointerTy() == MVT::i64) {
Chris Lattner75cdf272009-07-09 06:59:17 +0000503 Opc = X86::MOV64rm;
504 RC = X86::GR64RegisterClass;
505
Chris Lattner0d786dd2009-07-10 07:48:51 +0000506 if (Subtarget->isPICStyleRIPRel())
Chris Lattner75cdf272009-07-09 06:59:17 +0000507 StubAM.Base.Reg = X86::RIP;
Chris Lattner75cdf272009-07-09 06:59:17 +0000508 } else {
Chris Lattner35c28ec2009-07-01 03:27:19 +0000509 Opc = X86::MOV32rm;
510 RC = X86::GR32RegisterClass;
Chris Lattner35c28ec2009-07-01 03:27:19 +0000511 }
Chris Lattnerff7727f2009-07-09 06:41:35 +0000512
513 LoadReg = createResultReg(RC);
514 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), LoadReg), StubAM);
515
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000516 // Prevent loading GV stub multiple times in same MBB.
Chris Lattnerff7727f2009-07-09 06:41:35 +0000517 LocalValueMap[V] = LoadReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000518 }
Chris Lattner18c59872009-06-27 04:16:01 +0000519
Chris Lattnerff7727f2009-07-09 06:41:35 +0000520 // Now construct the final address. Note that the Disp, Scale,
521 // and Index values may already be set here.
522 AM.Base.Reg = LoadReg;
523 AM.GV = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000524 return true;
Dan Gohman0586d912008-09-10 20:11:02 +0000525 }
526
Dan Gohman97135e12008-09-26 19:15:30 +0000527 // If all else fails, try to materialize the value in a register.
Chris Lattner4c1b6062009-06-27 05:24:12 +0000528 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
Dan Gohman97135e12008-09-26 19:15:30 +0000529 if (AM.Base.Reg == 0) {
530 AM.Base.Reg = getRegForValue(V);
531 return AM.Base.Reg != 0;
532 }
533 if (AM.IndexReg == 0) {
534 assert(AM.Scale == 1 && "Scale with no index!");
535 AM.IndexReg = getRegForValue(V);
536 return AM.IndexReg != 0;
537 }
538 }
539
540 return false;
Dan Gohman0586d912008-09-10 20:11:02 +0000541}
542
Chris Lattner0aa43de2009-07-10 05:33:42 +0000543/// X86SelectCallAddress - Attempt to fill in an address from the given value.
544///
545bool X86FastISel::X86SelectCallAddress(Value *V, X86AddressMode &AM) {
546 User *U = NULL;
547 unsigned Opcode = Instruction::UserOp1;
548 if (Instruction *I = dyn_cast<Instruction>(V)) {
549 Opcode = I->getOpcode();
550 U = I;
551 } else if (ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
552 Opcode = C->getOpcode();
553 U = C;
554 }
555
556 switch (Opcode) {
557 default: break;
558 case Instruction::BitCast:
559 // Look past bitcasts.
560 return X86SelectCallAddress(U->getOperand(0), AM);
561
562 case Instruction::IntToPtr:
563 // Look past no-op inttoptrs.
564 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
565 return X86SelectCallAddress(U->getOperand(0), AM);
566 break;
567
568 case Instruction::PtrToInt:
569 // Look past no-op ptrtoints.
570 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
571 return X86SelectCallAddress(U->getOperand(0), AM);
572 break;
573 }
574
575 // Handle constant address.
576 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
577 // Can't handle alternate code models yet.
Chris Lattnerf1d6bd52009-07-10 21:03:06 +0000578 if (TM.getCodeModel() != CodeModel::Small)
Chris Lattner0aa43de2009-07-10 05:33:42 +0000579 return false;
580
581 // RIP-relative addresses can't have additional register operands.
582 if (Subtarget->isPICStyleRIPRel() &&
583 (AM.Base.Reg != 0 || AM.IndexReg != 0))
584 return false;
585
Chris Lattner754b7652009-07-10 05:48:03 +0000586 // Can't handle TLS or DLLImport.
Chris Lattner0aa43de2009-07-10 05:33:42 +0000587 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
Chris Lattnere6c07b52009-07-10 05:45:15 +0000588 if (GVar->isThreadLocal() || GVar->hasDLLImportLinkage())
Chris Lattner0aa43de2009-07-10 05:33:42 +0000589 return false;
590
591 // Okay, we've committed to selecting this global. Set up the basic address.
592 AM.GV = GV;
593
Chris Lattnere6c07b52009-07-10 05:45:15 +0000594 // No ABI requires an extra load for anything other than DLLImport, which
595 // we rejected above. Return a direct reference to the global.
Chris Lattnere6c07b52009-07-10 05:45:15 +0000596 if (Subtarget->isPICStyleRIPRel()) {
597 // Use rip-relative addressing if we can. Above we verified that the
598 // base and index registers are unused.
599 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
600 AM.Base.Reg = X86::RIP;
Chris Lattnere2c92082009-07-10 21:00:45 +0000601 } else if (Subtarget->isPICStyleStubPIC()) {
Chris Lattnere6c07b52009-07-10 05:45:15 +0000602 AM.GVOpFlags = X86II::MO_PIC_BASE_OFFSET;
603 } else if (Subtarget->isPICStyleGOT()) {
604 AM.GVOpFlags = X86II::MO_GOTOFF;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000605 }
606
Chris Lattner0aa43de2009-07-10 05:33:42 +0000607 return true;
608 }
609
610 // If all else fails, try to materialize the value in a register.
611 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
612 if (AM.Base.Reg == 0) {
613 AM.Base.Reg = getRegForValue(V);
614 return AM.Base.Reg != 0;
615 }
616 if (AM.IndexReg == 0) {
617 assert(AM.Scale == 1 && "Scale with no index!");
618 AM.IndexReg = getRegForValue(V);
619 return AM.IndexReg != 0;
620 }
621 }
622
623 return false;
624}
625
626
Owen Andersona3971df2008-09-04 07:08:58 +0000627/// X86SelectStore - Select and emit code to implement store instructions.
628bool X86FastISel::X86SelectStore(Instruction* I) {
Owen Andersone50ed302009-08-10 22:56:29 +0000629 EVT VT;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000630 if (!isTypeLegal(I->getOperand(0)->getType(), VT, /*AllowI1=*/true))
Owen Andersona3971df2008-09-04 07:08:58 +0000631 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000632
Dan Gohman0586d912008-09-10 20:11:02 +0000633 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000634 if (!X86SelectAddress(I->getOperand(1), AM))
Dan Gohman0586d912008-09-10 20:11:02 +0000635 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000636
Chris Lattner438949a2008-10-15 05:30:52 +0000637 return X86FastEmitStore(VT, I->getOperand(0), AM);
Owen Andersona3971df2008-09-04 07:08:58 +0000638}
639
Evan Cheng8b19e562008-09-03 06:44:39 +0000640/// X86SelectLoad - Select and emit code to implement load instructions.
641///
Dan Gohman3df24e62008-09-03 23:12:08 +0000642bool X86FastISel::X86SelectLoad(Instruction *I) {
Owen Andersone50ed302009-08-10 22:56:29 +0000643 EVT VT;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000644 if (!isTypeLegal(I->getType(), VT, /*AllowI1=*/true))
Evan Cheng8b19e562008-09-03 06:44:39 +0000645 return false;
646
Dan Gohman0586d912008-09-10 20:11:02 +0000647 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000648 if (!X86SelectAddress(I->getOperand(0), AM))
Dan Gohman0586d912008-09-10 20:11:02 +0000649 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000650
Evan Cheng0de588f2008-09-05 21:00:03 +0000651 unsigned ResultReg = 0;
Dan Gohman0586d912008-09-10 20:11:02 +0000652 if (X86FastEmitLoad(VT, AM, ResultReg)) {
Evan Cheng0de588f2008-09-05 21:00:03 +0000653 UpdateValueMap(I, ResultReg);
654 return true;
Evan Cheng8b19e562008-09-03 06:44:39 +0000655 }
Evan Cheng0de588f2008-09-05 21:00:03 +0000656 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000657}
658
Owen Andersone50ed302009-08-10 22:56:29 +0000659static unsigned X86ChooseCmpOpcode(EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000660 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000661 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +0000662 case MVT::i8: return X86::CMP8rr;
663 case MVT::i16: return X86::CMP16rr;
664 case MVT::i32: return X86::CMP32rr;
665 case MVT::i64: return X86::CMP64rr;
666 case MVT::f32: return X86::UCOMISSrr;
667 case MVT::f64: return X86::UCOMISDrr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000668 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000669}
670
Chris Lattner0e13c782008-10-15 04:13:29 +0000671/// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS
672/// of the comparison, return an opcode that works for the compare (e.g.
673/// CMP32ri) otherwise return 0.
Owen Andersone50ed302009-08-10 22:56:29 +0000674static unsigned X86ChooseCmpImmediateOpcode(EVT VT, ConstantInt *RHSC) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000675 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0e13c782008-10-15 04:13:29 +0000676 // Otherwise, we can't fold the immediate into this comparison.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000677 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +0000678 case MVT::i8: return X86::CMP8ri;
679 case MVT::i16: return X86::CMP16ri;
680 case MVT::i32: return X86::CMP32ri;
681 case MVT::i64:
Chris Lattner45ac17f2008-10-15 04:32:45 +0000682 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
683 // field.
Chris Lattner438949a2008-10-15 05:30:52 +0000684 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
Chris Lattner45ac17f2008-10-15 04:32:45 +0000685 return X86::CMP64ri32;
686 return 0;
687 }
Chris Lattner0e13c782008-10-15 04:13:29 +0000688}
689
Owen Andersone50ed302009-08-10 22:56:29 +0000690bool X86FastISel::X86FastEmitCompare(Value *Op0, Value *Op1, EVT VT) {
Chris Lattner9a08a612008-10-15 04:26:38 +0000691 unsigned Op0Reg = getRegForValue(Op0);
692 if (Op0Reg == 0) return false;
693
Chris Lattnerd53886b2008-10-15 05:18:04 +0000694 // Handle 'null' like i32/i64 0.
695 if (isa<ConstantPointerNull>(Op1))
Owen Anderson1d0be152009-08-13 21:58:54 +0000696 Op1 = Constant::getNullValue(TD.getIntPtrType(Op0->getContext()));
Chris Lattnerd53886b2008-10-15 05:18:04 +0000697
Chris Lattner9a08a612008-10-15 04:26:38 +0000698 // We have two options: compare with register or immediate. If the RHS of
699 // the compare is an immediate that we can fold into this compare, use
700 // CMPri, otherwise use CMPrr.
701 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000702 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000703 BuildMI(MBB, DL, TII.get(CompareImmOpc)).addReg(Op0Reg)
Chris Lattner9a08a612008-10-15 04:26:38 +0000704 .addImm(Op1C->getSExtValue());
705 return true;
706 }
707 }
708
709 unsigned CompareOpc = X86ChooseCmpOpcode(VT);
710 if (CompareOpc == 0) return false;
711
712 unsigned Op1Reg = getRegForValue(Op1);
713 if (Op1Reg == 0) return false;
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000714 BuildMI(MBB, DL, TII.get(CompareOpc)).addReg(Op0Reg).addReg(Op1Reg);
Chris Lattner9a08a612008-10-15 04:26:38 +0000715
716 return true;
717}
718
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000719bool X86FastISel::X86SelectCmp(Instruction *I) {
720 CmpInst *CI = cast<CmpInst>(I);
721
Owen Andersone50ed302009-08-10 22:56:29 +0000722 EVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000723 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Dan Gohman4f22bb02008-09-05 01:33:56 +0000724 return false;
725
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000726 unsigned ResultReg = createResultReg(&X86::GR8RegClass);
Chris Lattner54aebde2008-10-15 03:47:17 +0000727 unsigned SetCCOpc;
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000728 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000729 switch (CI->getPredicate()) {
730 case CmpInst::FCMP_OEQ: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000731 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
732 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000733
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000734 unsigned EReg = createResultReg(&X86::GR8RegClass);
735 unsigned NPReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000736 BuildMI(MBB, DL, TII.get(X86::SETEr), EReg);
737 BuildMI(MBB, DL, TII.get(X86::SETNPr), NPReg);
738 BuildMI(MBB, DL,
739 TII.get(X86::AND8rr), ResultReg).addReg(NPReg).addReg(EReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000740 UpdateValueMap(I, ResultReg);
741 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000742 }
743 case CmpInst::FCMP_UNE: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000744 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
745 return false;
746
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000747 unsigned NEReg = createResultReg(&X86::GR8RegClass);
748 unsigned PReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000749 BuildMI(MBB, DL, TII.get(X86::SETNEr), NEReg);
750 BuildMI(MBB, DL, TII.get(X86::SETPr), PReg);
751 BuildMI(MBB, DL, TII.get(X86::OR8rr), ResultReg).addReg(PReg).addReg(NEReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000752 UpdateValueMap(I, ResultReg);
753 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000754 }
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000755 case CmpInst::FCMP_OGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
756 case CmpInst::FCMP_OGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
757 case CmpInst::FCMP_OLT: SwapArgs = true; SetCCOpc = X86::SETAr; break;
758 case CmpInst::FCMP_OLE: SwapArgs = true; SetCCOpc = X86::SETAEr; break;
759 case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
760 case CmpInst::FCMP_ORD: SwapArgs = false; SetCCOpc = X86::SETNPr; break;
761 case CmpInst::FCMP_UNO: SwapArgs = false; SetCCOpc = X86::SETPr; break;
762 case CmpInst::FCMP_UEQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
763 case CmpInst::FCMP_UGT: SwapArgs = true; SetCCOpc = X86::SETBr; break;
764 case CmpInst::FCMP_UGE: SwapArgs = true; SetCCOpc = X86::SETBEr; break;
765 case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
766 case CmpInst::FCMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
767
768 case CmpInst::ICMP_EQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
769 case CmpInst::ICMP_NE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
770 case CmpInst::ICMP_UGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
771 case CmpInst::ICMP_UGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
772 case CmpInst::ICMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
773 case CmpInst::ICMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
774 case CmpInst::ICMP_SGT: SwapArgs = false; SetCCOpc = X86::SETGr; break;
775 case CmpInst::ICMP_SGE: SwapArgs = false; SetCCOpc = X86::SETGEr; break;
776 case CmpInst::ICMP_SLT: SwapArgs = false; SetCCOpc = X86::SETLr; break;
777 case CmpInst::ICMP_SLE: SwapArgs = false; SetCCOpc = X86::SETLEr; break;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000778 default:
779 return false;
780 }
781
Chris Lattner9a08a612008-10-15 04:26:38 +0000782 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000783 if (SwapArgs)
Chris Lattner9a08a612008-10-15 04:26:38 +0000784 std::swap(Op0, Op1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000785
Chris Lattner9a08a612008-10-15 04:26:38 +0000786 // Emit a compare of Op0/Op1.
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000787 if (!X86FastEmitCompare(Op0, Op1, VT))
788 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000789
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000790 BuildMI(MBB, DL, TII.get(SetCCOpc), ResultReg);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000791 UpdateValueMap(I, ResultReg);
792 return true;
793}
Evan Cheng8b19e562008-09-03 06:44:39 +0000794
Dan Gohmand89ae992008-09-05 01:06:14 +0000795bool X86FastISel::X86SelectZExt(Instruction *I) {
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000796 // Handle zero-extension from i1 to i8, which is common.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000797 if (I->getType()->isIntegerTy(8) &&
798 I->getOperand(0)->getType()->isIntegerTy(1)) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000799 unsigned ResultReg = getRegForValue(I->getOperand(0));
Dan Gohmanf52550b2008-09-05 01:15:35 +0000800 if (ResultReg == 0) return false;
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000801 // Set the high bits to zero.
Owen Anderson825b72b2009-08-11 20:47:22 +0000802 ResultReg = FastEmitZExtFromI1(MVT::i8, ResultReg);
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000803 if (ResultReg == 0) return false;
Dan Gohmand89ae992008-09-05 01:06:14 +0000804 UpdateValueMap(I, ResultReg);
805 return true;
806 }
807
808 return false;
809}
810
Chris Lattner9a08a612008-10-15 04:26:38 +0000811
Dan Gohmand89ae992008-09-05 01:06:14 +0000812bool X86FastISel::X86SelectBranch(Instruction *I) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000813 // Unconditional branches are selected by tablegen-generated code.
Dan Gohmand98d6202008-10-02 22:15:21 +0000814 // Handle a conditional branch.
815 BranchInst *BI = cast<BranchInst>(I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000816 MachineBasicBlock *TrueMBB = MBBMap[BI->getSuccessor(0)];
817 MachineBasicBlock *FalseMBB = MBBMap[BI->getSuccessor(1)];
818
Dan Gohmand98d6202008-10-02 22:15:21 +0000819 // Fold the common case of a conditional branch with a comparison.
820 if (CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
821 if (CI->hasOneUse()) {
Owen Andersone50ed302009-08-10 22:56:29 +0000822 EVT VT = TLI.getValueType(CI->getOperand(0)->getType());
Dan Gohmand89ae992008-09-05 01:06:14 +0000823
Dan Gohmand98d6202008-10-02 22:15:21 +0000824 // Try to take advantage of fallthrough opportunities.
825 CmpInst::Predicate Predicate = CI->getPredicate();
826 if (MBB->isLayoutSuccessor(TrueMBB)) {
827 std::swap(TrueMBB, FalseMBB);
828 Predicate = CmpInst::getInversePredicate(Predicate);
829 }
830
Chris Lattner871d2462008-10-15 03:58:05 +0000831 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
832 unsigned BranchOpc; // Opcode to jump on, e.g. "X86::JA"
833
Dan Gohmand98d6202008-10-02 22:15:21 +0000834 switch (Predicate) {
Dan Gohman7b66e042008-10-21 18:24:51 +0000835 case CmpInst::FCMP_OEQ:
836 std::swap(TrueMBB, FalseMBB);
837 Predicate = CmpInst::FCMP_UNE;
838 // FALL THROUGH
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000839 case CmpInst::FCMP_UNE: SwapArgs = false; BranchOpc = X86::JNE_4; break;
840 case CmpInst::FCMP_OGT: SwapArgs = false; BranchOpc = X86::JA_4; break;
841 case CmpInst::FCMP_OGE: SwapArgs = false; BranchOpc = X86::JAE_4; break;
842 case CmpInst::FCMP_OLT: SwapArgs = true; BranchOpc = X86::JA_4; break;
843 case CmpInst::FCMP_OLE: SwapArgs = true; BranchOpc = X86::JAE_4; break;
844 case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE_4; break;
845 case CmpInst::FCMP_ORD: SwapArgs = false; BranchOpc = X86::JNP_4; break;
846 case CmpInst::FCMP_UNO: SwapArgs = false; BranchOpc = X86::JP_4; break;
847 case CmpInst::FCMP_UEQ: SwapArgs = false; BranchOpc = X86::JE_4; break;
848 case CmpInst::FCMP_UGT: SwapArgs = true; BranchOpc = X86::JB_4; break;
849 case CmpInst::FCMP_UGE: SwapArgs = true; BranchOpc = X86::JBE_4; break;
850 case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB_4; break;
851 case CmpInst::FCMP_ULE: SwapArgs = false; BranchOpc = X86::JBE_4; break;
Chris Lattner9a08a612008-10-15 04:26:38 +0000852
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000853 case CmpInst::ICMP_EQ: SwapArgs = false; BranchOpc = X86::JE_4; break;
854 case CmpInst::ICMP_NE: SwapArgs = false; BranchOpc = X86::JNE_4; break;
855 case CmpInst::ICMP_UGT: SwapArgs = false; BranchOpc = X86::JA_4; break;
856 case CmpInst::ICMP_UGE: SwapArgs = false; BranchOpc = X86::JAE_4; break;
857 case CmpInst::ICMP_ULT: SwapArgs = false; BranchOpc = X86::JB_4; break;
858 case CmpInst::ICMP_ULE: SwapArgs = false; BranchOpc = X86::JBE_4; break;
859 case CmpInst::ICMP_SGT: SwapArgs = false; BranchOpc = X86::JG_4; break;
860 case CmpInst::ICMP_SGE: SwapArgs = false; BranchOpc = X86::JGE_4; break;
861 case CmpInst::ICMP_SLT: SwapArgs = false; BranchOpc = X86::JL_4; break;
862 case CmpInst::ICMP_SLE: SwapArgs = false; BranchOpc = X86::JLE_4; break;
Dan Gohmand98d6202008-10-02 22:15:21 +0000863 default:
864 return false;
865 }
Chris Lattner54aebde2008-10-15 03:47:17 +0000866
Chris Lattner709d8292008-10-15 04:02:26 +0000867 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
868 if (SwapArgs)
869 std::swap(Op0, Op1);
870
Chris Lattner9a08a612008-10-15 04:26:38 +0000871 // Emit a compare of the LHS and RHS, setting the flags.
872 if (!X86FastEmitCompare(Op0, Op1, VT))
873 return false;
Chris Lattner0e13c782008-10-15 04:13:29 +0000874
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000875 BuildMI(MBB, DL, TII.get(BranchOpc)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000876
877 if (Predicate == CmpInst::FCMP_UNE) {
878 // X86 requires a second branch to handle UNE (and OEQ,
879 // which is mapped to UNE above).
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000880 BuildMI(MBB, DL, TII.get(X86::JP_4)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000881 }
882
Dan Gohmand98d6202008-10-02 22:15:21 +0000883 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000884 MBB->addSuccessor(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000885 return true;
886 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000887 } else if (ExtractValueInst *EI =
888 dyn_cast<ExtractValueInst>(BI->getCondition())) {
889 // Check to see if the branch instruction is from an "arithmetic with
890 // overflow" intrinsic. The main way these intrinsics are used is:
891 //
892 // %t = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2)
893 // %sum = extractvalue { i32, i1 } %t, 0
894 // %obit = extractvalue { i32, i1 } %t, 1
895 // br i1 %obit, label %overflow, label %normal
896 //
Dan Gohman653456c2009-01-07 00:15:08 +0000897 // The %sum and %obit are converted in an ADD and a SETO/SETB before
Bill Wendling30a64a72008-12-09 23:19:12 +0000898 // reaching the branch. Therefore, we search backwards through the MBB
Dan Gohman653456c2009-01-07 00:15:08 +0000899 // looking for the SETO/SETB instruction. If an instruction modifies the
900 // EFLAGS register before we reach the SETO/SETB instruction, then we can't
901 // convert the branch into a JO/JB instruction.
Chris Lattnera9a42252009-04-12 07:36:01 +0000902 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(EI->getAggregateOperand())){
903 if (CI->getIntrinsicID() == Intrinsic::sadd_with_overflow ||
904 CI->getIntrinsicID() == Intrinsic::uadd_with_overflow) {
905 const MachineInstr *SetMI = 0;
906 unsigned Reg = lookUpRegForValue(EI);
Bill Wendling30a64a72008-12-09 23:19:12 +0000907
Chris Lattnera9a42252009-04-12 07:36:01 +0000908 for (MachineBasicBlock::const_reverse_iterator
909 RI = MBB->rbegin(), RE = MBB->rend(); RI != RE; ++RI) {
910 const MachineInstr &MI = *RI;
Bill Wendling30a64a72008-12-09 23:19:12 +0000911
Chris Lattnera9a42252009-04-12 07:36:01 +0000912 if (MI.modifiesRegister(Reg)) {
913 unsigned Src, Dst, SrcSR, DstSR;
Bill Wendling30a64a72008-12-09 23:19:12 +0000914
Chris Lattnera9a42252009-04-12 07:36:01 +0000915 if (getInstrInfo()->isMoveInstr(MI, Src, Dst, SrcSR, DstSR)) {
916 Reg = Src;
917 continue;
Bill Wendling9a901322008-12-10 19:44:24 +0000918 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000919
Chris Lattnera9a42252009-04-12 07:36:01 +0000920 SetMI = &MI;
921 break;
Bill Wendling30a64a72008-12-09 23:19:12 +0000922 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000923
Chris Lattnera9a42252009-04-12 07:36:01 +0000924 const TargetInstrDesc &TID = MI.getDesc();
925 if (TID.hasUnmodeledSideEffects() ||
926 TID.hasImplicitDefOfPhysReg(X86::EFLAGS))
927 break;
Bill Wendling9a901322008-12-10 19:44:24 +0000928 }
Chris Lattnera9a42252009-04-12 07:36:01 +0000929
930 if (SetMI) {
931 unsigned OpCode = SetMI->getOpcode();
932
933 if (OpCode == X86::SETOr || OpCode == X86::SETBr) {
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000934 BuildMI(MBB, DL, TII.get(OpCode == X86::SETOr ?
935 X86::JO_4 : X86::JB_4))
Chris Lattner8d57b772009-04-12 07:51:14 +0000936 .addMBB(TrueMBB);
Chris Lattnera9a42252009-04-12 07:36:01 +0000937 FastEmitBranch(FalseMBB);
938 MBB->addSuccessor(TrueMBB);
939 return true;
940 }
Bill Wendling9a901322008-12-10 19:44:24 +0000941 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000942 }
943 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000944 }
945
946 // Otherwise do a clumsy setcc and re-test it.
947 unsigned OpReg = getRegForValue(BI->getCondition());
948 if (OpReg == 0) return false;
949
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000950 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(OpReg).addReg(OpReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000951 BuildMI(MBB, DL, TII.get(X86::JNE_4)).addMBB(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000952 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000953 MBB->addSuccessor(TrueMBB);
Dan Gohmand89ae992008-09-05 01:06:14 +0000954 return true;
955}
956
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000957bool X86FastISel::X86SelectShift(Instruction *I) {
Chris Lattner743922e2008-09-21 21:44:29 +0000958 unsigned CReg = 0, OpReg = 0, OpImm = 0;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000959 const TargetRegisterClass *RC = NULL;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000960 if (I->getType()->isIntegerTy(8)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000961 CReg = X86::CL;
962 RC = &X86::GR8RegClass;
963 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000964 case Instruction::LShr: OpReg = X86::SHR8rCL; OpImm = X86::SHR8ri; break;
965 case Instruction::AShr: OpReg = X86::SAR8rCL; OpImm = X86::SAR8ri; break;
966 case Instruction::Shl: OpReg = X86::SHL8rCL; OpImm = X86::SHL8ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000967 default: return false;
968 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000969 } else if (I->getType()->isIntegerTy(16)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000970 CReg = X86::CX;
971 RC = &X86::GR16RegClass;
972 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000973 case Instruction::LShr: OpReg = X86::SHR16rCL; OpImm = X86::SHR16ri; break;
974 case Instruction::AShr: OpReg = X86::SAR16rCL; OpImm = X86::SAR16ri; break;
975 case Instruction::Shl: OpReg = X86::SHL16rCL; OpImm = X86::SHL16ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000976 default: return false;
977 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000978 } else if (I->getType()->isIntegerTy(32)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000979 CReg = X86::ECX;
980 RC = &X86::GR32RegClass;
981 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000982 case Instruction::LShr: OpReg = X86::SHR32rCL; OpImm = X86::SHR32ri; break;
983 case Instruction::AShr: OpReg = X86::SAR32rCL; OpImm = X86::SAR32ri; break;
984 case Instruction::Shl: OpReg = X86::SHL32rCL; OpImm = X86::SHL32ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000985 default: return false;
986 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000987 } else if (I->getType()->isIntegerTy(64)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000988 CReg = X86::RCX;
989 RC = &X86::GR64RegClass;
990 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000991 case Instruction::LShr: OpReg = X86::SHR64rCL; OpImm = X86::SHR64ri; break;
992 case Instruction::AShr: OpReg = X86::SAR64rCL; OpImm = X86::SAR64ri; break;
993 case Instruction::Shl: OpReg = X86::SHL64rCL; OpImm = X86::SHL64ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000994 default: return false;
995 }
996 } else {
997 return false;
998 }
999
Owen Andersone50ed302009-08-10 22:56:29 +00001000 EVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00001001 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Dan Gohmanf58cb6d2008-09-05 21:27:34 +00001002 return false;
1003
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001004 unsigned Op0Reg = getRegForValue(I->getOperand(0));
1005 if (Op0Reg == 0) return false;
Chris Lattner743922e2008-09-21 21:44:29 +00001006
1007 // Fold immediate in shl(x,3).
1008 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
1009 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001010 BuildMI(MBB, DL, TII.get(OpImm),
Dan Gohmanb12b1a22008-12-20 17:19:40 +00001011 ResultReg).addReg(Op0Reg).addImm(CI->getZExtValue() & 0xff);
Chris Lattner743922e2008-09-21 21:44:29 +00001012 UpdateValueMap(I, ResultReg);
1013 return true;
1014 }
1015
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001016 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1017 if (Op1Reg == 0) return false;
1018 TII.copyRegToReg(*MBB, MBB->end(), CReg, Op1Reg, RC, RC);
Dan Gohman145b8282008-10-07 21:50:36 +00001019
1020 // The shift instruction uses X86::CL. If we defined a super-register
1021 // of X86::CL, emit an EXTRACT_SUBREG to precisely describe what
1022 // we're doing here.
1023 if (CReg != X86::CL)
Chris Lattner518bb532010-02-09 19:54:29 +00001024 BuildMI(MBB, DL, TII.get(TargetOpcode::EXTRACT_SUBREG), X86::CL)
Dan Gohman145b8282008-10-07 21:50:36 +00001025 .addReg(CReg).addImm(X86::SUBREG_8BIT);
1026
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001027 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001028 BuildMI(MBB, DL, TII.get(OpReg), ResultReg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001029 UpdateValueMap(I, ResultReg);
1030 return true;
1031}
1032
1033bool X86FastISel::X86SelectSelect(Instruction *I) {
Owen Andersone50ed302009-08-10 22:56:29 +00001034 EVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00001035 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Chris Lattner160f6cc2008-10-15 05:07:36 +00001036 return false;
1037
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001038 unsigned Opc = 0;
1039 const TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001040 if (VT.getSimpleVT() == MVT::i16) {
Dan Gohman31d26912008-09-05 21:13:04 +00001041 Opc = X86::CMOVE16rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001042 RC = &X86::GR16RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001043 } else if (VT.getSimpleVT() == MVT::i32) {
Dan Gohman31d26912008-09-05 21:13:04 +00001044 Opc = X86::CMOVE32rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001045 RC = &X86::GR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001046 } else if (VT.getSimpleVT() == MVT::i64) {
Dan Gohman31d26912008-09-05 21:13:04 +00001047 Opc = X86::CMOVE64rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001048 RC = &X86::GR64RegClass;
1049 } else {
1050 return false;
1051 }
1052
1053 unsigned Op0Reg = getRegForValue(I->getOperand(0));
1054 if (Op0Reg == 0) return false;
1055 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1056 if (Op1Reg == 0) return false;
1057 unsigned Op2Reg = getRegForValue(I->getOperand(2));
1058 if (Op2Reg == 0) return false;
1059
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001060 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(Op0Reg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001061 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001062 BuildMI(MBB, DL, TII.get(Opc), ResultReg).addReg(Op1Reg).addReg(Op2Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001063 UpdateValueMap(I, ResultReg);
1064 return true;
1065}
1066
Dan Gohman78efce62008-09-10 21:02:08 +00001067bool X86FastISel::X86SelectFPExt(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +00001068 // fpext from float to double.
Owen Anderson1d0be152009-08-13 21:58:54 +00001069 if (Subtarget->hasSSE2() &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001070 I->getType()->isDoubleTy()) {
Chris Lattner160f6cc2008-10-15 05:07:36 +00001071 Value *V = I->getOperand(0);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001072 if (V->getType()->isFloatTy()) {
Chris Lattner160f6cc2008-10-15 05:07:36 +00001073 unsigned OpReg = getRegForValue(V);
1074 if (OpReg == 0) return false;
1075 unsigned ResultReg = createResultReg(X86::FR64RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001076 BuildMI(MBB, DL, TII.get(X86::CVTSS2SDrr), ResultReg).addReg(OpReg);
Chris Lattner160f6cc2008-10-15 05:07:36 +00001077 UpdateValueMap(I, ResultReg);
1078 return true;
Dan Gohman78efce62008-09-10 21:02:08 +00001079 }
1080 }
1081
1082 return false;
1083}
1084
1085bool X86FastISel::X86SelectFPTrunc(Instruction *I) {
1086 if (Subtarget->hasSSE2()) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001087 if (I->getType()->isFloatTy()) {
Dan Gohman78efce62008-09-10 21:02:08 +00001088 Value *V = I->getOperand(0);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001089 if (V->getType()->isDoubleTy()) {
Dan Gohman78efce62008-09-10 21:02:08 +00001090 unsigned OpReg = getRegForValue(V);
1091 if (OpReg == 0) return false;
1092 unsigned ResultReg = createResultReg(X86::FR32RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001093 BuildMI(MBB, DL, TII.get(X86::CVTSD2SSrr), ResultReg).addReg(OpReg);
Dan Gohman78efce62008-09-10 21:02:08 +00001094 UpdateValueMap(I, ResultReg);
1095 return true;
1096 }
1097 }
1098 }
1099
1100 return false;
1101}
1102
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001103bool X86FastISel::X86SelectTrunc(Instruction *I) {
1104 if (Subtarget->is64Bit())
1105 // All other cases should be handled by the tblgen generated code.
1106 return false;
Owen Andersone50ed302009-08-10 22:56:29 +00001107 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1108 EVT DstVT = TLI.getValueType(I->getType());
Chris Lattner44ceb8a2009-03-13 16:36:42 +00001109
1110 // This code only handles truncation to byte right now.
Owen Anderson825b72b2009-08-11 20:47:22 +00001111 if (DstVT != MVT::i8 && DstVT != MVT::i1)
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001112 // All other cases should be handled by the tblgen generated code.
1113 return false;
Owen Anderson825b72b2009-08-11 20:47:22 +00001114 if (SrcVT != MVT::i16 && SrcVT != MVT::i32)
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001115 // All other cases should be handled by the tblgen generated code.
1116 return false;
1117
1118 unsigned InputReg = getRegForValue(I->getOperand(0));
1119 if (!InputReg)
1120 // Unhandled operand. Halt "fast" selection and bail.
1121 return false;
1122
Dan Gohman62417622009-04-27 16:33:14 +00001123 // First issue a copy to GR16_ABCD or GR32_ABCD.
Owen Anderson825b72b2009-08-11 20:47:22 +00001124 unsigned CopyOpc = (SrcVT == MVT::i16) ? X86::MOV16rr : X86::MOV32rr;
1125 const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16)
Dan Gohman62417622009-04-27 16:33:14 +00001126 ? X86::GR16_ABCDRegisterClass : X86::GR32_ABCDRegisterClass;
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001127 unsigned CopyReg = createResultReg(CopyRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001128 BuildMI(MBB, DL, TII.get(CopyOpc), CopyReg).addReg(InputReg);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001129
1130 // Then issue an extract_subreg.
Owen Anderson825b72b2009-08-11 20:47:22 +00001131 unsigned ResultReg = FastEmitInst_extractsubreg(MVT::i8,
Evan Cheng536ab132009-01-22 09:10:11 +00001132 CopyReg, X86::SUBREG_8BIT);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001133 if (!ResultReg)
1134 return false;
1135
1136 UpdateValueMap(I, ResultReg);
1137 return true;
1138}
1139
Bill Wendling52370a12008-12-09 02:42:50 +00001140bool X86FastISel::X86SelectExtractValue(Instruction *I) {
1141 ExtractValueInst *EI = cast<ExtractValueInst>(I);
1142 Value *Agg = EI->getAggregateOperand();
1143
Chris Lattnera9a42252009-04-12 07:36:01 +00001144 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Agg)) {
1145 switch (CI->getIntrinsicID()) {
1146 default: break;
1147 case Intrinsic::sadd_with_overflow:
1148 case Intrinsic::uadd_with_overflow:
1149 // Cheat a little. We know that the registers for "add" and "seto" are
1150 // allocated sequentially. However, we only keep track of the register
1151 // for "add" in the value map. Use extractvalue's index to get the
1152 // correct register for "seto".
1153 UpdateValueMap(I, lookUpRegForValue(Agg) + *EI->idx_begin());
1154 return true;
Bill Wendling52370a12008-12-09 02:42:50 +00001155 }
1156 }
1157
1158 return false;
1159}
1160
Chris Lattnera9a42252009-04-12 07:36:01 +00001161bool X86FastISel::X86VisitIntrinsicCall(IntrinsicInst &I) {
Bill Wendling52370a12008-12-09 02:42:50 +00001162 // FIXME: Handle more intrinsics.
Chris Lattnera9a42252009-04-12 07:36:01 +00001163 switch (I.getIntrinsicID()) {
Bill Wendling52370a12008-12-09 02:42:50 +00001164 default: return false;
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001165 case Intrinsic::dbg_declare: {
1166 DbgDeclareInst *DI = cast<DbgDeclareInst>(&I);
1167 X86AddressMode AM;
Dale Johannesen973f4672010-01-29 21:21:28 +00001168 assert(DI->getAddress() && "Null address should be checked earlier!");
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001169 if (!X86SelectAddress(DI->getAddress(), AM))
1170 return false;
Chris Lattner518bb532010-02-09 19:54:29 +00001171 const TargetInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE);
Dale Johannesen116b7992010-02-18 18:51:15 +00001172 // FIXME may need to add RegState::Debug to any registers produced,
1173 // although ESP/EBP should be the only ones at the moment.
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001174 addFullAddress(BuildMI(MBB, DL, II), AM).addImm(0).
1175 addMetadata(DI->getVariable());
1176 return true;
1177 }
Eric Christopher77f79892010-01-18 22:11:29 +00001178 case Intrinsic::trap: {
1179 BuildMI(MBB, DL, TII.get(X86::TRAP));
1180 return true;
1181 }
Bill Wendling52370a12008-12-09 02:42:50 +00001182 case Intrinsic::sadd_with_overflow:
1183 case Intrinsic::uadd_with_overflow: {
Bill Wendlingc065b3f2008-12-09 07:55:31 +00001184 // Replace "add with overflow" intrinsics with an "add" instruction followed
1185 // by a seto/setc instruction. Later on, when the "extractvalue"
1186 // instructions are encountered, we use the fact that two registers were
1187 // created sequentially to get the correct registers for the "sum" and the
1188 // "overflow bit".
Bill Wendling52370a12008-12-09 02:42:50 +00001189 const Function *Callee = I.getCalledFunction();
1190 const Type *RetTy =
1191 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(unsigned(0));
1192
Owen Andersone50ed302009-08-10 22:56:29 +00001193 EVT VT;
Bill Wendling52370a12008-12-09 02:42:50 +00001194 if (!isTypeLegal(RetTy, VT))
1195 return false;
1196
1197 Value *Op1 = I.getOperand(1);
1198 Value *Op2 = I.getOperand(2);
1199 unsigned Reg1 = getRegForValue(Op1);
1200 unsigned Reg2 = getRegForValue(Op2);
1201
1202 if (Reg1 == 0 || Reg2 == 0)
1203 // FIXME: Handle values *not* in registers.
1204 return false;
1205
1206 unsigned OpC = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001207 if (VT == MVT::i32)
Bill Wendling52370a12008-12-09 02:42:50 +00001208 OpC = X86::ADD32rr;
Owen Anderson825b72b2009-08-11 20:47:22 +00001209 else if (VT == MVT::i64)
Bill Wendling52370a12008-12-09 02:42:50 +00001210 OpC = X86::ADD64rr;
1211 else
1212 return false;
1213
1214 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001215 BuildMI(MBB, DL, TII.get(OpC), ResultReg).addReg(Reg1).addReg(Reg2);
Chris Lattner8d57b772009-04-12 07:51:14 +00001216 unsigned DestReg1 = UpdateValueMap(&I, ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001217
Chris Lattner8d57b772009-04-12 07:51:14 +00001218 // If the add with overflow is an intra-block value then we just want to
1219 // create temporaries for it like normal. If it is a cross-block value then
1220 // UpdateValueMap will return the cross-block register used. Since we
1221 // *really* want the value to be live in the register pair known by
1222 // UpdateValueMap, we have to use DestReg1+1 as the destination register in
1223 // the cross block case. In the non-cross-block case, we should just make
1224 // another register for the value.
1225 if (DestReg1 != ResultReg)
1226 ResultReg = DestReg1+1;
1227 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001228 ResultReg = createResultReg(TLI.getRegClassFor(MVT::i8));
Chris Lattner8d57b772009-04-12 07:51:14 +00001229
Chris Lattnera9a42252009-04-12 07:36:01 +00001230 unsigned Opc = X86::SETBr;
1231 if (I.getIntrinsicID() == Intrinsic::sadd_with_overflow)
1232 Opc = X86::SETOr;
1233 BuildMI(MBB, DL, TII.get(Opc), ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001234 return true;
1235 }
1236 }
1237}
1238
Evan Chengf3d4efe2008-09-07 09:09:33 +00001239bool X86FastISel::X86SelectCall(Instruction *I) {
1240 CallInst *CI = cast<CallInst>(I);
1241 Value *Callee = I->getOperand(0);
1242
1243 // Can't handle inline asm yet.
1244 if (isa<InlineAsm>(Callee))
1245 return false;
1246
Bill Wendling52370a12008-12-09 02:42:50 +00001247 // Handle intrinsic calls.
Chris Lattnera9a42252009-04-12 07:36:01 +00001248 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI))
1249 return X86VisitIntrinsicCall(*II);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001250
Evan Chengf3d4efe2008-09-07 09:09:33 +00001251 // Handle only C and fastcc calling conventions for now.
1252 CallSite CS(CI);
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001253 CallingConv::ID CC = CS.getCallingConv();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001254 if (CC != CallingConv::C &&
1255 CC != CallingConv::Fast &&
1256 CC != CallingConv::X86_FastCall)
1257 return false;
1258
Evan Cheng381993f2010-01-27 00:00:57 +00001259 // fastcc with -tailcallopt is intended to provide a guaranteed
1260 // tail call optimization. Fastisel doesn't know how to do that.
Dan Gohman1797ed52010-02-08 20:27:50 +00001261 if (CC == CallingConv::Fast && GuaranteedTailCallOpt)
Evan Cheng381993f2010-01-27 00:00:57 +00001262 return false;
1263
Evan Chengf3d4efe2008-09-07 09:09:33 +00001264 // Let SDISel handle vararg functions.
1265 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1266 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
1267 if (FTy->isVarArg())
1268 return false;
1269
1270 // Handle *simple* calls for now.
1271 const Type *RetTy = CS.getType();
Owen Andersone50ed302009-08-10 22:56:29 +00001272 EVT RetVT;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001273 if (RetTy->isVoidTy())
Owen Anderson825b72b2009-08-11 20:47:22 +00001274 RetVT = MVT::isVoid;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001275 else if (!isTypeLegal(RetTy, RetVT, true))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001276 return false;
1277
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001278 // Materialize callee address in a register. FIXME: GV address can be
1279 // handled with a CALLpcrel32 instead.
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001280 X86AddressMode CalleeAM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001281 if (!X86SelectCallAddress(Callee, CalleeAM))
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001282 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001283 unsigned CalleeOp = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001284 GlobalValue *GV = 0;
Chris Lattner553e5712009-06-27 04:50:14 +00001285 if (CalleeAM.GV != 0) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001286 GV = CalleeAM.GV;
Chris Lattner553e5712009-06-27 04:50:14 +00001287 } else if (CalleeAM.Base.Reg != 0) {
1288 CalleeOp = CalleeAM.Base.Reg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001289 } else
1290 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001291
Evan Chengdebdea02008-09-08 17:15:42 +00001292 // Allow calls which produce i1 results.
1293 bool AndToI1 = false;
Owen Anderson825b72b2009-08-11 20:47:22 +00001294 if (RetVT == MVT::i1) {
1295 RetVT = MVT::i8;
Evan Chengdebdea02008-09-08 17:15:42 +00001296 AndToI1 = true;
1297 }
1298
Evan Chengf3d4efe2008-09-07 09:09:33 +00001299 // Deal with call operands first.
Chris Lattner241ab472008-10-15 05:38:32 +00001300 SmallVector<Value*, 8> ArgVals;
1301 SmallVector<unsigned, 8> Args;
Owen Andersone50ed302009-08-10 22:56:29 +00001302 SmallVector<EVT, 8> ArgVTs;
Chris Lattner241ab472008-10-15 05:38:32 +00001303 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001304 Args.reserve(CS.arg_size());
Chris Lattner241ab472008-10-15 05:38:32 +00001305 ArgVals.reserve(CS.arg_size());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001306 ArgVTs.reserve(CS.arg_size());
1307 ArgFlags.reserve(CS.arg_size());
1308 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1309 i != e; ++i) {
1310 unsigned Arg = getRegForValue(*i);
1311 if (Arg == 0)
1312 return false;
1313 ISD::ArgFlagsTy Flags;
1314 unsigned AttrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00001315 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001316 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00001317 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001318 Flags.setZExt();
1319
1320 // FIXME: Only handle *easy* calls for now.
Devang Patel05988662008-09-25 21:00:45 +00001321 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1322 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1323 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1324 CS.paramHasAttr(AttrInd, Attribute::ByVal))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001325 return false;
1326
1327 const Type *ArgTy = (*i)->getType();
Owen Andersone50ed302009-08-10 22:56:29 +00001328 EVT ArgVT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001329 if (!isTypeLegal(ArgTy, ArgVT))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001330 return false;
1331 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1332 Flags.setOrigAlign(OriginalAlignment);
1333
1334 Args.push_back(Arg);
Chris Lattner241ab472008-10-15 05:38:32 +00001335 ArgVals.push_back(*i);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001336 ArgVTs.push_back(ArgVT);
1337 ArgFlags.push_back(Flags);
1338 }
1339
1340 // Analyze operands of the call, assigning locations to each operand.
1341 SmallVector<CCValAssign, 16> ArgLocs;
Owen Andersond1474d02009-07-09 17:57:24 +00001342 CCState CCInfo(CC, false, TM, ArgLocs, I->getParent()->getContext());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001343 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC));
1344
1345 // Get a count of how many bytes are to be pushed on the stack.
1346 unsigned NumBytes = CCInfo.getNextStackOffset();
1347
1348 // Issue CALLSEQ_START
Dan Gohman6d4b0522008-10-01 18:28:06 +00001349 unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001350 BuildMI(MBB, DL, TII.get(AdjStackDown)).addImm(NumBytes);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001351
Chris Lattner438949a2008-10-15 05:30:52 +00001352 // Process argument: walk the register/memloc assignments, inserting
Evan Chengf3d4efe2008-09-07 09:09:33 +00001353 // copies / loads.
1354 SmallVector<unsigned, 4> RegArgs;
1355 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1356 CCValAssign &VA = ArgLocs[i];
1357 unsigned Arg = Args[VA.getValNo()];
Owen Andersone50ed302009-08-10 22:56:29 +00001358 EVT ArgVT = ArgVTs[VA.getValNo()];
Evan Chengf3d4efe2008-09-07 09:09:33 +00001359
1360 // Promote the value if needed.
1361 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001362 default: llvm_unreachable("Unknown loc info!");
Evan Chengf3d4efe2008-09-07 09:09:33 +00001363 case CCValAssign::Full: break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001364 case CCValAssign::SExt: {
1365 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1366 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001367 assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001368 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001369 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001370 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001371 }
1372 case CCValAssign::ZExt: {
1373 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1374 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001375 assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001376 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001377 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001378 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001379 }
1380 case CCValAssign::AExt: {
1381 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1382 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001383 if (!Emitted)
1384 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
Chris Lattner160f6cc2008-10-15 05:07:36 +00001385 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001386 if (!Emitted)
1387 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1388 Arg, ArgVT, Arg);
1389
Chris Lattnera33649e2008-12-19 17:03:38 +00001390 assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted;
Evan Cheng24e3a902008-09-08 06:35:17 +00001391 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001392 break;
1393 }
Dan Gohmanc3c9c482009-08-05 05:33:42 +00001394 case CCValAssign::BCvt: {
1395 unsigned BC = FastEmit_r(ArgVT.getSimpleVT(), VA.getLocVT().getSimpleVT(),
1396 ISD::BIT_CONVERT, Arg);
1397 assert(BC != 0 && "Failed to emit a bitcast!");
1398 Arg = BC;
1399 ArgVT = VA.getLocVT();
1400 break;
1401 }
Evan Cheng24e3a902008-09-08 06:35:17 +00001402 }
Evan Chengf3d4efe2008-09-07 09:09:33 +00001403
1404 if (VA.isRegLoc()) {
1405 TargetRegisterClass* RC = TLI.getRegClassFor(ArgVT);
1406 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), VA.getLocReg(),
1407 Arg, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001408 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001409 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001410 RegArgs.push_back(VA.getLocReg());
1411 } else {
1412 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman0586d912008-09-10 20:11:02 +00001413 X86AddressMode AM;
1414 AM.Base.Reg = StackPtr;
1415 AM.Disp = LocMemOffset;
Chris Lattner241ab472008-10-15 05:38:32 +00001416 Value *ArgVal = ArgVals[VA.getValNo()];
1417
1418 // If this is a really simple value, emit this with the Value* version of
1419 // X86FastEmitStore. If it isn't simple, we don't want to do this, as it
1420 // can cause us to reevaluate the argument.
1421 if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal))
1422 X86FastEmitStore(ArgVT, ArgVal, AM);
1423 else
1424 X86FastEmitStore(ArgVT, Arg, AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001425 }
1426 }
1427
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001428 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1429 // GOT pointer.
Chris Lattner15a380a2009-07-09 04:39:06 +00001430 if (Subtarget->isPICStyleGOT()) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001431 TargetRegisterClass *RC = X86::GR32RegisterClass;
Dan Gohman57c3dac2008-09-30 00:58:23 +00001432 unsigned Base = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001433 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), X86::EBX, Base, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001434 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001435 Emitted = true;
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001436 }
Chris Lattner51e8eab2009-07-09 06:34:26 +00001437
Evan Chengf3d4efe2008-09-07 09:09:33 +00001438 // Issue the call.
Chris Lattner51e8eab2009-07-09 06:34:26 +00001439 MachineInstrBuilder MIB;
1440 if (CalleeOp) {
1441 // Register-indirect call.
1442 unsigned CallOpc = Subtarget->is64Bit() ? X86::CALL64r : X86::CALL32r;
1443 MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addReg(CalleeOp);
1444
1445 } else {
1446 // Direct call.
1447 assert(GV && "Not a direct call");
1448 unsigned CallOpc =
1449 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
1450
1451 // See if we need any target-specific flags on the GV operand.
1452 unsigned char OpFlags = 0;
1453
1454 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
1455 // external symbols most go through the PLT in PIC mode. If the symbol
1456 // has hidden or protected visibility, or if it is static or local, then
1457 // we don't need to use the PLT - we can directly call it.
1458 if (Subtarget->isTargetELF() &&
1459 TM.getRelocationModel() == Reloc::PIC_ &&
1460 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
1461 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00001462 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner51e8eab2009-07-09 06:34:26 +00001463 (GV->isDeclaration() || GV->isWeakForLinker()) &&
1464 Subtarget->getDarwinVers() < 9) {
1465 // PC-relative references to external symbols should go through $stub,
1466 // unless we're building with the leopard linker or later, which
1467 // automatically synthesizes these stubs.
1468 OpFlags = X86II::MO_DARWIN_STUB;
1469 }
1470
1471
1472 MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addGlobalAddress(GV, 0, OpFlags);
1473 }
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001474
1475 // Add an implicit use GOT pointer in EBX.
Chris Lattner15a380a2009-07-09 04:39:06 +00001476 if (Subtarget->isPICStyleGOT())
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001477 MIB.addReg(X86::EBX);
1478
Evan Chengf3d4efe2008-09-07 09:09:33 +00001479 // Add implicit physical register uses to the call.
Dan Gohman8c3f8b62008-10-07 22:10:33 +00001480 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1481 MIB.addReg(RegArgs[i]);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001482
1483 // Issue CALLSEQ_END
Dan Gohman6d4b0522008-10-01 18:28:06 +00001484 unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001485 BuildMI(MBB, DL, TII.get(AdjStackUp)).addImm(NumBytes).addImm(0);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001486
1487 // Now handle call return value (if any).
Owen Anderson825b72b2009-08-11 20:47:22 +00001488 if (RetVT.getSimpleVT().SimpleTy != MVT::isVoid) {
Evan Chengf3d4efe2008-09-07 09:09:33 +00001489 SmallVector<CCValAssign, 16> RVLocs;
Owen Andersond1474d02009-07-09 17:57:24 +00001490 CCState CCInfo(CC, false, TM, RVLocs, I->getParent()->getContext());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001491 CCInfo.AnalyzeCallResult(RetVT, RetCC_X86);
1492
1493 // Copy all of the result registers out of their specified physreg.
1494 assert(RVLocs.size() == 1 && "Can't handle multi-value calls!");
Owen Andersone50ed302009-08-10 22:56:29 +00001495 EVT CopyVT = RVLocs[0].getValVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001496 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
1497 TargetRegisterClass *SrcRC = DstRC;
1498
1499 // If this is a call to a function that returns an fp value on the x87 fp
1500 // stack, but where we prefer to use the value in xmm registers, copy it
1501 // out as F80 and use a truncate to move it from fp stack reg to xmm reg.
1502 if ((RVLocs[0].getLocReg() == X86::ST0 ||
1503 RVLocs[0].getLocReg() == X86::ST1) &&
1504 isScalarFPTypeInSSEReg(RVLocs[0].getValVT())) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001505 CopyVT = MVT::f80;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001506 SrcRC = X86::RSTRegisterClass;
1507 DstRC = X86::RFP80RegisterClass;
1508 }
1509
1510 unsigned ResultReg = createResultReg(DstRC);
1511 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
1512 RVLocs[0].getLocReg(), DstRC, SrcRC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001513 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001514 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001515 if (CopyVT != RVLocs[0].getValVT()) {
1516 // Round the F80 the right size, which also moves to the appropriate xmm
1517 // register. This is accomplished by storing the F80 value in memory and
1518 // then loading it back. Ewww...
Owen Andersone50ed302009-08-10 22:56:29 +00001519 EVT ResVT = RVLocs[0].getValVT();
Owen Anderson825b72b2009-08-11 20:47:22 +00001520 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001521 unsigned MemSize = ResVT.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00001522 int FI = MFI.CreateStackObject(MemSize, MemSize, false);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001523 addFrameReference(BuildMI(MBB, DL, TII.get(Opc)), FI).addReg(ResultReg);
Owen Anderson825b72b2009-08-11 20:47:22 +00001524 DstRC = ResVT == MVT::f32
Evan Chengf3d4efe2008-09-07 09:09:33 +00001525 ? X86::FR32RegisterClass : X86::FR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001526 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001527 ResultReg = createResultReg(DstRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001528 addFrameReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), FI);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001529 }
1530
Evan Chengdebdea02008-09-08 17:15:42 +00001531 if (AndToI1) {
1532 // Mask out all but lowest bit for some call which produces an i1.
1533 unsigned AndResult = createResultReg(X86::GR8RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001534 BuildMI(MBB, DL,
1535 TII.get(X86::AND8ri), AndResult).addReg(ResultReg).addImm(1);
Evan Chengdebdea02008-09-08 17:15:42 +00001536 ResultReg = AndResult;
1537 }
1538
Evan Chengf3d4efe2008-09-07 09:09:33 +00001539 UpdateValueMap(I, ResultReg);
1540 }
1541
1542 return true;
1543}
1544
1545
Dan Gohman99b21822008-08-28 23:21:34 +00001546bool
Dan Gohman3df24e62008-09-03 23:12:08 +00001547X86FastISel::TargetSelectInstruction(Instruction *I) {
Dan Gohman99b21822008-08-28 23:21:34 +00001548 switch (I->getOpcode()) {
1549 default: break;
Evan Cheng8b19e562008-09-03 06:44:39 +00001550 case Instruction::Load:
Dan Gohman3df24e62008-09-03 23:12:08 +00001551 return X86SelectLoad(I);
Owen Anderson79924eb2008-09-04 16:48:33 +00001552 case Instruction::Store:
1553 return X86SelectStore(I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +00001554 case Instruction::ICmp:
1555 case Instruction::FCmp:
1556 return X86SelectCmp(I);
Dan Gohmand89ae992008-09-05 01:06:14 +00001557 case Instruction::ZExt:
1558 return X86SelectZExt(I);
1559 case Instruction::Br:
1560 return X86SelectBranch(I);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001561 case Instruction::Call:
1562 return X86SelectCall(I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001563 case Instruction::LShr:
1564 case Instruction::AShr:
1565 case Instruction::Shl:
1566 return X86SelectShift(I);
1567 case Instruction::Select:
1568 return X86SelectSelect(I);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001569 case Instruction::Trunc:
1570 return X86SelectTrunc(I);
Dan Gohman78efce62008-09-10 21:02:08 +00001571 case Instruction::FPExt:
1572 return X86SelectFPExt(I);
1573 case Instruction::FPTrunc:
1574 return X86SelectFPTrunc(I);
Bill Wendling52370a12008-12-09 02:42:50 +00001575 case Instruction::ExtractValue:
1576 return X86SelectExtractValue(I);
Dan Gohman474d3b32009-03-13 23:53:06 +00001577 case Instruction::IntToPtr: // Deliberate fall-through.
1578 case Instruction::PtrToInt: {
Owen Andersone50ed302009-08-10 22:56:29 +00001579 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1580 EVT DstVT = TLI.getValueType(I->getType());
Dan Gohman474d3b32009-03-13 23:53:06 +00001581 if (DstVT.bitsGT(SrcVT))
1582 return X86SelectZExt(I);
1583 if (DstVT.bitsLT(SrcVT))
1584 return X86SelectTrunc(I);
1585 unsigned Reg = getRegForValue(I->getOperand(0));
1586 if (Reg == 0) return false;
1587 UpdateValueMap(I, Reg);
1588 return true;
1589 }
Dan Gohman99b21822008-08-28 23:21:34 +00001590 }
1591
1592 return false;
1593}
1594
Dan Gohman0586d912008-09-10 20:11:02 +00001595unsigned X86FastISel::TargetMaterializeConstant(Constant *C) {
Owen Andersone50ed302009-08-10 22:56:29 +00001596 EVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001597 if (!isTypeLegal(C->getType(), VT))
Owen Anderson95267a12008-09-05 00:06:23 +00001598 return false;
1599
1600 // Get opcode and regclass of the output for the given load instruction.
1601 unsigned Opc = 0;
1602 const TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001603 switch (VT.getSimpleVT().SimpleTy) {
Owen Anderson95267a12008-09-05 00:06:23 +00001604 default: return false;
Owen Anderson825b72b2009-08-11 20:47:22 +00001605 case MVT::i8:
Owen Anderson95267a12008-09-05 00:06:23 +00001606 Opc = X86::MOV8rm;
1607 RC = X86::GR8RegisterClass;
1608 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001609 case MVT::i16:
Owen Anderson95267a12008-09-05 00:06:23 +00001610 Opc = X86::MOV16rm;
1611 RC = X86::GR16RegisterClass;
1612 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001613 case MVT::i32:
Owen Anderson95267a12008-09-05 00:06:23 +00001614 Opc = X86::MOV32rm;
1615 RC = X86::GR32RegisterClass;
1616 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001617 case MVT::i64:
Owen Anderson95267a12008-09-05 00:06:23 +00001618 // Must be in x86-64 mode.
1619 Opc = X86::MOV64rm;
1620 RC = X86::GR64RegisterClass;
1621 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001622 case MVT::f32:
Owen Anderson95267a12008-09-05 00:06:23 +00001623 if (Subtarget->hasSSE1()) {
1624 Opc = X86::MOVSSrm;
1625 RC = X86::FR32RegisterClass;
1626 } else {
1627 Opc = X86::LD_Fp32m;
1628 RC = X86::RFP32RegisterClass;
1629 }
1630 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001631 case MVT::f64:
Owen Anderson95267a12008-09-05 00:06:23 +00001632 if (Subtarget->hasSSE2()) {
1633 Opc = X86::MOVSDrm;
1634 RC = X86::FR64RegisterClass;
1635 } else {
1636 Opc = X86::LD_Fp64m;
1637 RC = X86::RFP64RegisterClass;
1638 }
1639 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001640 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +00001641 // No f80 support yet.
1642 return false;
Owen Anderson95267a12008-09-05 00:06:23 +00001643 }
1644
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001645 // Materialize addresses with LEA instructions.
Owen Anderson95267a12008-09-05 00:06:23 +00001646 if (isa<GlobalValue>(C)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001647 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001648 if (X86SelectAddress(C, AM)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001649 if (TLI.getPointerTy() == MVT::i32)
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001650 Opc = X86::LEA32r;
1651 else
1652 Opc = X86::LEA64r;
1653 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001654 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Owen Anderson95267a12008-09-05 00:06:23 +00001655 return ResultReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001656 }
Evan Cheng0de588f2008-09-05 21:00:03 +00001657 return 0;
Owen Anderson95267a12008-09-05 00:06:23 +00001658 }
1659
Owen Anderson3b217c62008-09-06 01:11:01 +00001660 // MachineConstantPool wants an explicit alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +00001661 unsigned Align = TD.getPrefTypeAlignment(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001662 if (Align == 0) {
1663 // Alignment of vector types. FIXME!
Duncan Sands777d2302009-05-09 07:06:46 +00001664 Align = TD.getTypeAllocSize(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001665 }
Owen Anderson95267a12008-09-05 00:06:23 +00001666
Dan Gohman5396c992008-09-30 01:21:32 +00001667 // x86-32 PIC requires a PIC base register for constant pools.
1668 unsigned PICBase = 0;
Chris Lattner89da6992009-06-27 01:31:51 +00001669 unsigned char OpFlag = 0;
Chris Lattnere2c92082009-07-10 21:00:45 +00001670 if (Subtarget->isPICStyleStubPIC()) { // Not dynamic-no-pic
Chris Lattner15a380a2009-07-09 04:39:06 +00001671 OpFlag = X86II::MO_PIC_BASE_OFFSET;
1672 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1673 } else if (Subtarget->isPICStyleGOT()) {
1674 OpFlag = X86II::MO_GOTOFF;
1675 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1676 } else if (Subtarget->isPICStyleRIPRel() &&
1677 TM.getCodeModel() == CodeModel::Small) {
1678 PICBase = X86::RIP;
Chris Lattner89da6992009-06-27 01:31:51 +00001679 }
Dan Gohman5396c992008-09-30 01:21:32 +00001680
1681 // Create the load from the constant pool.
Dan Gohman0586d912008-09-10 20:11:02 +00001682 unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align);
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001683 unsigned ResultReg = createResultReg(RC);
Chris Lattner89da6992009-06-27 01:31:51 +00001684 addConstantPoolReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg),
1685 MCPOffset, PICBase, OpFlag);
Dan Gohman5396c992008-09-30 01:21:32 +00001686
Owen Anderson95267a12008-09-05 00:06:23 +00001687 return ResultReg;
1688}
1689
Dan Gohman0586d912008-09-10 20:11:02 +00001690unsigned X86FastISel::TargetMaterializeAlloca(AllocaInst *C) {
Dan Gohman4e6ed5e2008-10-03 01:27:49 +00001691 // Fail on dynamic allocas. At this point, getRegForValue has already
1692 // checked its CSE maps, so if we're here trying to handle a dynamic
1693 // alloca, we're not going to succeed. X86SelectAddress has a
1694 // check for dynamic allocas, because it's called directly from
1695 // various places, but TargetMaterializeAlloca also needs a check
1696 // in order to avoid recursion between getRegForValue,
1697 // X86SelectAddrss, and TargetMaterializeAlloca.
1698 if (!StaticAllocaMap.count(C))
1699 return 0;
1700
Dan Gohman0586d912008-09-10 20:11:02 +00001701 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001702 if (!X86SelectAddress(C, AM))
Dan Gohman0586d912008-09-10 20:11:02 +00001703 return 0;
1704 unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
1705 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
1706 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001707 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Dan Gohman0586d912008-09-10 20:11:02 +00001708 return ResultReg;
1709}
1710
Evan Chengc3f44b02008-09-03 00:03:49 +00001711namespace llvm {
Dan Gohman3df24e62008-09-03 23:12:08 +00001712 llvm::FastISel *X86::createFastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +00001713 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +00001714 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +00001715 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +00001716 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001717 DenseMap<const AllocaInst *, int> &am
1718#ifndef NDEBUG
1719 , SmallSet<Instruction*, 8> &cil
1720#endif
1721 ) {
Devang Patel83489bb2009-01-13 00:35:13 +00001722 return new X86FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001723#ifndef NDEBUG
1724 , cil
1725#endif
1726 );
Evan Chengc3f44b02008-09-03 00:03:49 +00001727 }
Dan Gohman99b21822008-08-28 23:21:34 +00001728}