blob: e7b70b17ef84c2180a395b85d8be2d0e130f21f9 [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"
Bill Wendling52370a12008-12-09 02:42:50 +000026#include "llvm/Intrinsics.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"
Dan Gohman35893082008-09-18 23:23:44 +000032#include "llvm/Support/GetElementPtrTypeIterator.h"
Evan Chengc3f44b02008-09-03 00:03:49 +000033
34using namespace llvm;
35
36class X86FastISel : public FastISel {
37 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
38 /// make the right decision when generating code for different targets.
39 const X86Subtarget *Subtarget;
Evan Chengf3d4efe2008-09-07 09:09:33 +000040
41 /// StackPtr - Register used as the stack pointer.
42 ///
43 unsigned StackPtr;
44
45 /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87
46 /// floating point ops.
47 /// When SSE is available, use it for f32 operations.
48 /// When SSE2 is available, use it for f64 operations.
49 bool X86ScalarSSEf64;
50 bool X86ScalarSSEf32;
51
Evan Cheng8b19e562008-09-03 06:44:39 +000052public:
Dan Gohman3df24e62008-09-03 23:12:08 +000053 explicit X86FastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +000054 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +000055 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +000056 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +000057 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +000058 DenseMap<const AllocaInst *, int> &am
59#ifndef NDEBUG
60 , SmallSet<Instruction*, 8> &cil
61#endif
62 )
Devang Patel83489bb2009-01-13 00:35:13 +000063 : FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +000064#ifndef NDEBUG
65 , cil
66#endif
67 ) {
Evan Cheng88e30412008-09-03 01:04:47 +000068 Subtarget = &TM.getSubtarget<X86Subtarget>();
Evan Chengf3d4efe2008-09-07 09:09:33 +000069 StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
70 X86ScalarSSEf64 = Subtarget->hasSSE2();
71 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng88e30412008-09-03 01:04:47 +000072 }
Evan Chengc3f44b02008-09-03 00:03:49 +000073
Dan Gohman3df24e62008-09-03 23:12:08 +000074 virtual bool TargetSelectInstruction(Instruction *I);
Evan Chengc3f44b02008-09-03 00:03:49 +000075
Dan Gohman1adf1b02008-08-19 21:45:35 +000076#include "X86GenFastISel.inc"
Evan Cheng8b19e562008-09-03 06:44:39 +000077
78private:
Chris Lattner9a08a612008-10-15 04:26:38 +000079 bool X86FastEmitCompare(Value *LHS, Value *RHS, MVT VT);
80
Dan Gohman0586d912008-09-10 20:11:02 +000081 bool X86FastEmitLoad(MVT VT, const X86AddressMode &AM, unsigned &RR);
Evan Cheng0de588f2008-09-05 21:00:03 +000082
Chris Lattner438949a2008-10-15 05:30:52 +000083 bool X86FastEmitStore(MVT VT, Value *Val,
84 const X86AddressMode &AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +000085 bool X86FastEmitStore(MVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +000086 const X86AddressMode &AM);
Evan Cheng24e3a902008-09-08 06:35:17 +000087
88 bool X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT, unsigned Src, MVT SrcVT,
89 unsigned &ResultReg);
Evan Cheng0de588f2008-09-05 21:00:03 +000090
Dan Gohman2ff7fd12008-09-19 22:16:54 +000091 bool X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall);
Dan Gohman0586d912008-09-10 20:11:02 +000092
Dan Gohman3df24e62008-09-03 23:12:08 +000093 bool X86SelectLoad(Instruction *I);
Owen Andersona3971df2008-09-04 07:08:58 +000094
95 bool X86SelectStore(Instruction *I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +000096
97 bool X86SelectCmp(Instruction *I);
Dan Gohmand89ae992008-09-05 01:06:14 +000098
99 bool X86SelectZExt(Instruction *I);
100
101 bool X86SelectBranch(Instruction *I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000102
103 bool X86SelectShift(Instruction *I);
104
105 bool X86SelectSelect(Instruction *I);
Evan Cheng0de588f2008-09-05 21:00:03 +0000106
Evan Cheng10a8d9c2008-09-07 08:47:42 +0000107 bool X86SelectTrunc(Instruction *I);
Dan Gohmand98d6202008-10-02 22:15:21 +0000108
Dan Gohman78efce62008-09-10 21:02:08 +0000109 bool X86SelectFPExt(Instruction *I);
110 bool X86SelectFPTrunc(Instruction *I);
111
Bill Wendling52370a12008-12-09 02:42:50 +0000112 bool X86SelectExtractValue(Instruction *I);
113
114 bool X86VisitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000115 bool X86SelectCall(Instruction *I);
116
117 CCAssignFn *CCAssignFnForCall(unsigned CC, bool isTailCall = false);
118
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000119 const X86InstrInfo *getInstrInfo() const {
Dan Gohman97135e12008-09-26 19:15:30 +0000120 return getTargetMachine()->getInstrInfo();
121 }
122 const X86TargetMachine *getTargetMachine() const {
123 return static_cast<const X86TargetMachine *>(&TM);
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000124 }
125
Dan Gohman0586d912008-09-10 20:11:02 +0000126 unsigned TargetMaterializeConstant(Constant *C);
127
128 unsigned TargetMaterializeAlloca(AllocaInst *C);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000129
130 /// isScalarFPTypeInSSEReg - Return true if the specified scalar FP type is
131 /// computed in an SSE register, not on the X87 floating point stack.
132 bool isScalarFPTypeInSSEReg(MVT VT) const {
133 return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2
134 (VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1
135 }
136
Chris Lattner160f6cc2008-10-15 05:07:36 +0000137 bool isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1 = false);
Evan Chengc3f44b02008-09-03 00:03:49 +0000138};
Dan Gohman99b21822008-08-28 23:21:34 +0000139
Chris Lattner160f6cc2008-10-15 05:07:36 +0000140bool X86FastISel::isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1) {
141 VT = TLI.getValueType(Ty, /*HandleUnknown=*/true);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000142 if (VT == MVT::Other || !VT.isSimple())
143 // Unhandled type. Halt "fast" selection and bail.
144 return false;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000145
Dan Gohman9b66d732008-09-30 00:48:39 +0000146 // For now, require SSE/SSE2 for performing floating-point operations,
147 // since x87 requires additional work.
148 if (VT == MVT::f64 && !X86ScalarSSEf64)
149 return false;
150 if (VT == MVT::f32 && !X86ScalarSSEf32)
151 return false;
152 // Similarly, no f80 support yet.
153 if (VT == MVT::f80)
154 return false;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000155 // We only handle legal types. For example, on x86-32 the instruction
156 // selector contains all of the 64-bit instructions from x86-64,
157 // under the assumption that i64 won't be used if the target doesn't
158 // support it.
Evan Chengdebdea02008-09-08 17:15:42 +0000159 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000160}
161
162#include "X86GenCallingConv.inc"
163
164/// CCAssignFnForCall - Selects the correct CCAssignFn for a given calling
165/// convention.
166CCAssignFn *X86FastISel::CCAssignFnForCall(unsigned CC, bool isTaillCall) {
167 if (Subtarget->is64Bit()) {
168 if (Subtarget->isTargetWin64())
169 return CC_X86_Win64_C;
170 else if (CC == CallingConv::Fast && isTaillCall)
171 return CC_X86_64_TailCall;
172 else
173 return CC_X86_64_C;
174 }
175
176 if (CC == CallingConv::X86_FastCall)
177 return CC_X86_32_FastCall;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000178 else if (CC == CallingConv::Fast)
179 return CC_X86_32_FastCC;
180 else
181 return CC_X86_32_C;
182}
183
Evan Cheng0de588f2008-09-05 21:00:03 +0000184/// X86FastEmitLoad - Emit a machine instruction to load a value of type VT.
Evan Chengf3d4efe2008-09-07 09:09:33 +0000185/// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
Evan Cheng0de588f2008-09-05 21:00:03 +0000186/// Return true and the result register by reference if it is possible.
Dan Gohman0586d912008-09-10 20:11:02 +0000187bool X86FastISel::X86FastEmitLoad(MVT VT, const X86AddressMode &AM,
Evan Cheng0de588f2008-09-05 21:00:03 +0000188 unsigned &ResultReg) {
189 // Get opcode and regclass of the output for the given load instruction.
190 unsigned Opc = 0;
191 const TargetRegisterClass *RC = NULL;
192 switch (VT.getSimpleVT()) {
193 default: return false;
194 case MVT::i8:
195 Opc = X86::MOV8rm;
196 RC = X86::GR8RegisterClass;
197 break;
198 case MVT::i16:
199 Opc = X86::MOV16rm;
200 RC = X86::GR16RegisterClass;
201 break;
202 case MVT::i32:
203 Opc = X86::MOV32rm;
204 RC = X86::GR32RegisterClass;
205 break;
206 case MVT::i64:
207 // Must be in x86-64 mode.
208 Opc = X86::MOV64rm;
209 RC = X86::GR64RegisterClass;
210 break;
211 case MVT::f32:
212 if (Subtarget->hasSSE1()) {
213 Opc = X86::MOVSSrm;
214 RC = X86::FR32RegisterClass;
215 } else {
216 Opc = X86::LD_Fp32m;
217 RC = X86::RFP32RegisterClass;
218 }
219 break;
220 case MVT::f64:
221 if (Subtarget->hasSSE2()) {
222 Opc = X86::MOVSDrm;
223 RC = X86::FR64RegisterClass;
224 } else {
225 Opc = X86::LD_Fp64m;
226 RC = X86::RFP64RegisterClass;
227 }
228 break;
229 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +0000230 // No f80 support yet.
231 return false;
Evan Cheng0de588f2008-09-05 21:00:03 +0000232 }
233
234 ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000235 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Evan Cheng0de588f2008-09-05 21:00:03 +0000236 return true;
237}
238
Evan Chengf3d4efe2008-09-07 09:09:33 +0000239/// X86FastEmitStore - Emit a machine instruction to store a value Val of
240/// type VT. The address is either pre-computed, consisted of a base ptr, Ptr
241/// and a displacement offset, or a GlobalAddress,
Evan Cheng0de588f2008-09-05 21:00:03 +0000242/// i.e. V. Return true if it is possible.
243bool
Evan Chengf3d4efe2008-09-07 09:09:33 +0000244X86FastISel::X86FastEmitStore(MVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +0000245 const X86AddressMode &AM) {
Dan Gohman863890e2008-09-08 16:31:35 +0000246 // Get opcode and regclass of the output for the given store instruction.
Evan Cheng0de588f2008-09-05 21:00:03 +0000247 unsigned Opc = 0;
Evan Cheng0de588f2008-09-05 21:00:03 +0000248 switch (VT.getSimpleVT()) {
Chris Lattner241ab472008-10-15 05:38:32 +0000249 case MVT::f80: // No f80 support yet.
Evan Cheng0de588f2008-09-05 21:00:03 +0000250 default: return false;
Chris Lattner241ab472008-10-15 05:38:32 +0000251 case MVT::i8: Opc = X86::MOV8mr; break;
252 case MVT::i16: Opc = X86::MOV16mr; break;
253 case MVT::i32: Opc = X86::MOV32mr; break;
254 case MVT::i64: Opc = X86::MOV64mr; break; // Must be in x86-64 mode.
Evan Cheng0de588f2008-09-05 21:00:03 +0000255 case MVT::f32:
Chris Lattner438949a2008-10-15 05:30:52 +0000256 Opc = Subtarget->hasSSE1() ? X86::MOVSSmr : X86::ST_Fp32m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000257 break;
258 case MVT::f64:
Chris Lattner438949a2008-10-15 05:30:52 +0000259 Opc = Subtarget->hasSSE2() ? X86::MOVSDmr : X86::ST_Fp64m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000260 break;
Evan Cheng0de588f2008-09-05 21:00:03 +0000261 }
Chris Lattner438949a2008-10-15 05:30:52 +0000262
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000263 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM).addReg(Val);
Evan Cheng0de588f2008-09-05 21:00:03 +0000264 return true;
265}
266
Chris Lattner438949a2008-10-15 05:30:52 +0000267bool X86FastISel::X86FastEmitStore(MVT VT, Value *Val,
268 const X86AddressMode &AM) {
269 // Handle 'null' like i32/i64 0.
270 if (isa<ConstantPointerNull>(Val))
271 Val = Constant::getNullValue(TD.getIntPtrType());
272
273 // If this is a store of a simple constant, fold the constant into the store.
274 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
275 unsigned Opc = 0;
276 switch (VT.getSimpleVT()) {
277 default: break;
278 case MVT::i8: Opc = X86::MOV8mi; break;
279 case MVT::i16: Opc = X86::MOV16mi; break;
280 case MVT::i32: Opc = X86::MOV32mi; break;
281 case MVT::i64:
282 // Must be a 32-bit sign extended value.
283 if ((int)CI->getSExtValue() == CI->getSExtValue())
284 Opc = X86::MOV64mi32;
285 break;
286 }
287
288 if (Opc) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000289 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM)
290 .addImm(CI->getSExtValue());
Chris Lattner438949a2008-10-15 05:30:52 +0000291 return true;
292 }
293 }
294
295 unsigned ValReg = getRegForValue(Val);
296 if (ValReg == 0)
Chris Lattner438949a2008-10-15 05:30:52 +0000297 return false;
298
299 return X86FastEmitStore(VT, ValReg, AM);
300}
301
Evan Cheng24e3a902008-09-08 06:35:17 +0000302/// X86FastEmitExtend - Emit a machine instruction to extend a value Src of
303/// type SrcVT to type DstVT using the specified extension opcode Opc (e.g.
304/// ISD::SIGN_EXTEND).
305bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT,
306 unsigned Src, MVT SrcVT,
307 unsigned &ResultReg) {
Owen Andersonac34a002008-09-11 19:44:55 +0000308 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, Src);
309
310 if (RR != 0) {
311 ResultReg = RR;
312 return true;
313 } else
314 return false;
Evan Cheng24e3a902008-09-08 06:35:17 +0000315}
316
Dan Gohman0586d912008-09-10 20:11:02 +0000317/// X86SelectAddress - Attempt to fill in an address from the given value.
318///
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000319bool X86FastISel::X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall) {
Dan Gohman35893082008-09-18 23:23:44 +0000320 User *U;
321 unsigned Opcode = Instruction::UserOp1;
322 if (Instruction *I = dyn_cast<Instruction>(V)) {
323 Opcode = I->getOpcode();
324 U = I;
325 } else if (ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
326 Opcode = C->getOpcode();
327 U = C;
328 }
Dan Gohman0586d912008-09-10 20:11:02 +0000329
Dan Gohman35893082008-09-18 23:23:44 +0000330 switch (Opcode) {
331 default: break;
332 case Instruction::BitCast:
333 // Look past bitcasts.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000334 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman35893082008-09-18 23:23:44 +0000335
336 case Instruction::IntToPtr:
337 // Look past no-op inttoptrs.
338 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000339 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000340 break;
Dan Gohman35893082008-09-18 23:23:44 +0000341
342 case Instruction::PtrToInt:
343 // Look past no-op ptrtoints.
344 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000345 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000346 break;
Dan Gohman35893082008-09-18 23:23:44 +0000347
348 case Instruction::Alloca: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000349 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000350 // Do static allocas.
351 const AllocaInst *A = cast<AllocaInst>(V);
Dan Gohman0586d912008-09-10 20:11:02 +0000352 DenseMap<const AllocaInst*, int>::iterator SI = StaticAllocaMap.find(A);
Dan Gohman97135e12008-09-26 19:15:30 +0000353 if (SI != StaticAllocaMap.end()) {
354 AM.BaseType = X86AddressMode::FrameIndexBase;
355 AM.Base.FrameIndex = SI->second;
356 return true;
357 }
358 break;
Dan Gohman35893082008-09-18 23:23:44 +0000359 }
360
361 case Instruction::Add: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000362 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000363 // Adds of constants are common and easy enough.
364 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman09aae462008-09-26 20:04:15 +0000365 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
366 // They have to fit in the 32-bit signed displacement field though.
367 if (isInt32(Disp)) {
368 AM.Disp = (uint32_t)Disp;
369 return X86SelectAddress(U->getOperand(0), AM, isCall);
370 }
Dan Gohman0586d912008-09-10 20:11:02 +0000371 }
Dan Gohman35893082008-09-18 23:23:44 +0000372 break;
373 }
374
375 case Instruction::GetElementPtr: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000376 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000377 // Pattern-match simple GEPs.
Dan Gohman09aae462008-09-26 20:04:15 +0000378 uint64_t Disp = (int32_t)AM.Disp;
Dan Gohman35893082008-09-18 23:23:44 +0000379 unsigned IndexReg = AM.IndexReg;
380 unsigned Scale = AM.Scale;
381 gep_type_iterator GTI = gep_type_begin(U);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000382 // Iterate through the indices, folding what we can. Constants can be
383 // folded, and one dynamic index can be handled, if the scale is supported.
Dan Gohman35893082008-09-18 23:23:44 +0000384 for (User::op_iterator i = U->op_begin() + 1, e = U->op_end();
385 i != e; ++i, ++GTI) {
386 Value *Op = *i;
387 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
388 const StructLayout *SL = TD.getStructLayout(STy);
389 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
390 Disp += SL->getElementOffset(Idx);
391 } else {
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000392 uint64_t S = TD.getTypePaddedSize(GTI.getIndexedType());
Dan Gohman35893082008-09-18 23:23:44 +0000393 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
394 // Constant-offset addressing.
Dan Gohman09aae462008-09-26 20:04:15 +0000395 Disp += CI->getSExtValue() * S;
Dan Gohman35893082008-09-18 23:23:44 +0000396 } else if (IndexReg == 0 &&
Dan Gohman97135e12008-09-26 19:15:30 +0000397 (!AM.GV ||
398 !getTargetMachine()->symbolicAddressesAreRIPRel()) &&
Dan Gohman35893082008-09-18 23:23:44 +0000399 (S == 1 || S == 2 || S == 4 || S == 8)) {
400 // Scaled-index addressing.
401 Scale = S;
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000402 IndexReg = getRegForGEPIndex(Op);
Dan Gohman35893082008-09-18 23:23:44 +0000403 if (IndexReg == 0)
404 return false;
405 } else
406 // Unsupported.
407 goto unsupported_gep;
408 }
409 }
Dan Gohman09aae462008-09-26 20:04:15 +0000410 // Check for displacement overflow.
411 if (!isInt32(Disp))
412 break;
Dan Gohman35893082008-09-18 23:23:44 +0000413 // Ok, the GEP indices were covered by constant-offset and scaled-index
414 // addressing. Update the address state and move on to examining the base.
415 AM.IndexReg = IndexReg;
416 AM.Scale = Scale;
Dan Gohman09aae462008-09-26 20:04:15 +0000417 AM.Disp = (uint32_t)Disp;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000418 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman35893082008-09-18 23:23:44 +0000419 unsupported_gep:
420 // Ok, the GEP indices weren't all covered.
421 break;
422 }
423 }
424
425 // Handle constant address.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000426 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000427 // Can't handle alternate code models yet.
428 if (TM.getCodeModel() != CodeModel::Default &&
429 TM.getCodeModel() != CodeModel::Small)
430 return false;
431
Dan Gohman97135e12008-09-26 19:15:30 +0000432 // RIP-relative addresses can't have additional register operands.
433 if (getTargetMachine()->symbolicAddressesAreRIPRel() &&
434 (AM.Base.Reg != 0 || AM.IndexReg != 0))
435 return false;
436
Dan Gohmane9865942009-02-23 22:03:08 +0000437 // Can't handle TLS yet.
438 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
439 if (GVar->isThreadLocal())
440 return false;
441
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000442 // Set up the basic address.
443 AM.GV = GV;
444 if (!isCall &&
445 TM.getRelocationModel() == Reloc::PIC_ &&
446 !Subtarget->is64Bit())
Dan Gohman57c3dac2008-09-30 00:58:23 +0000447 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000448
449 // Emit an extra load if the ABI requires it.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000450 if (Subtarget->GVRequiresExtraLoad(GV, TM, isCall)) {
451 // Check to see if we've already materialized this
452 // value in a register in this block.
Dan Gohman7e8ef602008-09-19 23:42:04 +0000453 if (unsigned Reg = LocalValueMap[V]) {
454 AM.Base.Reg = Reg;
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000455 AM.GV = 0;
Dan Gohman7e8ef602008-09-19 23:42:04 +0000456 return true;
457 }
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000458 // Issue load from stub if necessary.
459 unsigned Opc = 0;
460 const TargetRegisterClass *RC = NULL;
461 if (TLI.getPointerTy() == MVT::i32) {
462 Opc = X86::MOV32rm;
463 RC = X86::GR32RegisterClass;
464 } else {
465 Opc = X86::MOV64rm;
466 RC = X86::GR64RegisterClass;
467 }
Dan Gohman789ce772008-09-25 23:34:02 +0000468
469 X86AddressMode StubAM;
470 StubAM.Base.Reg = AM.Base.Reg;
471 StubAM.GV = AM.GV;
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000472 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000473 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), StubAM);
Dan Gohman789ce772008-09-25 23:34:02 +0000474
475 // Now construct the final address. Note that the Disp, Scale,
476 // and Index values may already be set here.
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000477 AM.Base.Reg = ResultReg;
478 AM.GV = 0;
Dan Gohman789ce772008-09-25 23:34:02 +0000479
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000480 // Prevent loading GV stub multiple times in same MBB.
481 LocalValueMap[V] = AM.Base.Reg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000482 }
483 return true;
Dan Gohman0586d912008-09-10 20:11:02 +0000484 }
485
Dan Gohman97135e12008-09-26 19:15:30 +0000486 // If all else fails, try to materialize the value in a register.
Dan Gohman7962e852008-09-29 21:13:15 +0000487 if (!AM.GV || !getTargetMachine()->symbolicAddressesAreRIPRel()) {
Dan Gohman97135e12008-09-26 19:15:30 +0000488 if (AM.Base.Reg == 0) {
489 AM.Base.Reg = getRegForValue(V);
490 return AM.Base.Reg != 0;
491 }
492 if (AM.IndexReg == 0) {
493 assert(AM.Scale == 1 && "Scale with no index!");
494 AM.IndexReg = getRegForValue(V);
495 return AM.IndexReg != 0;
496 }
497 }
498
499 return false;
Dan Gohman0586d912008-09-10 20:11:02 +0000500}
501
Owen Andersona3971df2008-09-04 07:08:58 +0000502/// X86SelectStore - Select and emit code to implement store instructions.
503bool X86FastISel::X86SelectStore(Instruction* I) {
Evan Cheng24e3a902008-09-08 06:35:17 +0000504 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000505 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Owen Andersona3971df2008-09-04 07:08:58 +0000506 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000507
Dan Gohman0586d912008-09-10 20:11:02 +0000508 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000509 if (!X86SelectAddress(I->getOperand(1), AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +0000510 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000511
Chris Lattner438949a2008-10-15 05:30:52 +0000512 return X86FastEmitStore(VT, I->getOperand(0), AM);
Owen Andersona3971df2008-09-04 07:08:58 +0000513}
514
Evan Cheng8b19e562008-09-03 06:44:39 +0000515/// X86SelectLoad - Select and emit code to implement load instructions.
516///
Dan Gohman3df24e62008-09-03 23:12:08 +0000517bool X86FastISel::X86SelectLoad(Instruction *I) {
Evan Chengf3d4efe2008-09-07 09:09:33 +0000518 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000519 if (!isTypeLegal(I->getType(), VT))
Evan Cheng8b19e562008-09-03 06:44:39 +0000520 return false;
521
Dan Gohman0586d912008-09-10 20:11:02 +0000522 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000523 if (!X86SelectAddress(I->getOperand(0), AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +0000524 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000525
Evan Cheng0de588f2008-09-05 21:00:03 +0000526 unsigned ResultReg = 0;
Dan Gohman0586d912008-09-10 20:11:02 +0000527 if (X86FastEmitLoad(VT, AM, ResultReg)) {
Evan Cheng0de588f2008-09-05 21:00:03 +0000528 UpdateValueMap(I, ResultReg);
529 return true;
Evan Cheng8b19e562008-09-03 06:44:39 +0000530 }
Evan Cheng0de588f2008-09-05 21:00:03 +0000531 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000532}
533
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000534static unsigned X86ChooseCmpOpcode(MVT VT) {
Dan Gohmand98d6202008-10-02 22:15:21 +0000535 switch (VT.getSimpleVT()) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000536 default: return 0;
537 case MVT::i8: return X86::CMP8rr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000538 case MVT::i16: return X86::CMP16rr;
539 case MVT::i32: return X86::CMP32rr;
540 case MVT::i64: return X86::CMP64rr;
541 case MVT::f32: return X86::UCOMISSrr;
542 case MVT::f64: return X86::UCOMISDrr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000543 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000544}
545
Chris Lattner0e13c782008-10-15 04:13:29 +0000546/// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS
547/// of the comparison, return an opcode that works for the compare (e.g.
548/// CMP32ri) otherwise return 0.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000549static unsigned X86ChooseCmpImmediateOpcode(MVT VT, ConstantInt *RHSC) {
550 switch (VT.getSimpleVT()) {
Chris Lattner0e13c782008-10-15 04:13:29 +0000551 // Otherwise, we can't fold the immediate into this comparison.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000552 default: return 0;
553 case MVT::i8: return X86::CMP8ri;
554 case MVT::i16: return X86::CMP16ri;
555 case MVT::i32: return X86::CMP32ri;
556 case MVT::i64:
557 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
558 // field.
Chris Lattner438949a2008-10-15 05:30:52 +0000559 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
Chris Lattner45ac17f2008-10-15 04:32:45 +0000560 return X86::CMP64ri32;
561 return 0;
562 }
Chris Lattner0e13c782008-10-15 04:13:29 +0000563}
564
Chris Lattner9a08a612008-10-15 04:26:38 +0000565bool X86FastISel::X86FastEmitCompare(Value *Op0, Value *Op1, MVT VT) {
566 unsigned Op0Reg = getRegForValue(Op0);
567 if (Op0Reg == 0) return false;
568
Chris Lattnerd53886b2008-10-15 05:18:04 +0000569 // Handle 'null' like i32/i64 0.
570 if (isa<ConstantPointerNull>(Op1))
571 Op1 = Constant::getNullValue(TD.getIntPtrType());
572
Chris Lattner9a08a612008-10-15 04:26:38 +0000573 // We have two options: compare with register or immediate. If the RHS of
574 // the compare is an immediate that we can fold into this compare, use
575 // CMPri, otherwise use CMPrr.
576 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000577 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000578 BuildMI(MBB, DL, TII.get(CompareImmOpc)).addReg(Op0Reg)
Chris Lattner9a08a612008-10-15 04:26:38 +0000579 .addImm(Op1C->getSExtValue());
580 return true;
581 }
582 }
583
584 unsigned CompareOpc = X86ChooseCmpOpcode(VT);
585 if (CompareOpc == 0) return false;
586
587 unsigned Op1Reg = getRegForValue(Op1);
588 if (Op1Reg == 0) return false;
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000589 BuildMI(MBB, DL, TII.get(CompareOpc)).addReg(Op0Reg).addReg(Op1Reg);
Chris Lattner9a08a612008-10-15 04:26:38 +0000590
591 return true;
592}
593
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000594bool X86FastISel::X86SelectCmp(Instruction *I) {
595 CmpInst *CI = cast<CmpInst>(I);
596
Dan Gohman9b66d732008-09-30 00:48:39 +0000597 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000598 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Dan Gohman4f22bb02008-09-05 01:33:56 +0000599 return false;
600
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000601 unsigned ResultReg = createResultReg(&X86::GR8RegClass);
Chris Lattner54aebde2008-10-15 03:47:17 +0000602 unsigned SetCCOpc;
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000603 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000604 switch (CI->getPredicate()) {
605 case CmpInst::FCMP_OEQ: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000606 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
607 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000608
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000609 unsigned EReg = createResultReg(&X86::GR8RegClass);
610 unsigned NPReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000611 BuildMI(MBB, DL, TII.get(X86::SETEr), EReg);
612 BuildMI(MBB, DL, TII.get(X86::SETNPr), NPReg);
613 BuildMI(MBB, DL,
614 TII.get(X86::AND8rr), ResultReg).addReg(NPReg).addReg(EReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000615 UpdateValueMap(I, ResultReg);
616 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000617 }
618 case CmpInst::FCMP_UNE: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000619 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
620 return false;
621
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000622 unsigned NEReg = createResultReg(&X86::GR8RegClass);
623 unsigned PReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000624 BuildMI(MBB, DL, TII.get(X86::SETNEr), NEReg);
625 BuildMI(MBB, DL, TII.get(X86::SETPr), PReg);
626 BuildMI(MBB, DL, TII.get(X86::OR8rr), ResultReg).addReg(PReg).addReg(NEReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000627 UpdateValueMap(I, ResultReg);
628 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000629 }
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000630 case CmpInst::FCMP_OGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
631 case CmpInst::FCMP_OGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
632 case CmpInst::FCMP_OLT: SwapArgs = true; SetCCOpc = X86::SETAr; break;
633 case CmpInst::FCMP_OLE: SwapArgs = true; SetCCOpc = X86::SETAEr; break;
634 case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
635 case CmpInst::FCMP_ORD: SwapArgs = false; SetCCOpc = X86::SETNPr; break;
636 case CmpInst::FCMP_UNO: SwapArgs = false; SetCCOpc = X86::SETPr; break;
637 case CmpInst::FCMP_UEQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
638 case CmpInst::FCMP_UGT: SwapArgs = true; SetCCOpc = X86::SETBr; break;
639 case CmpInst::FCMP_UGE: SwapArgs = true; SetCCOpc = X86::SETBEr; break;
640 case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
641 case CmpInst::FCMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
642
643 case CmpInst::ICMP_EQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
644 case CmpInst::ICMP_NE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
645 case CmpInst::ICMP_UGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
646 case CmpInst::ICMP_UGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
647 case CmpInst::ICMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
648 case CmpInst::ICMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
649 case CmpInst::ICMP_SGT: SwapArgs = false; SetCCOpc = X86::SETGr; break;
650 case CmpInst::ICMP_SGE: SwapArgs = false; SetCCOpc = X86::SETGEr; break;
651 case CmpInst::ICMP_SLT: SwapArgs = false; SetCCOpc = X86::SETLr; break;
652 case CmpInst::ICMP_SLE: SwapArgs = false; SetCCOpc = X86::SETLEr; break;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000653 default:
654 return false;
655 }
656
Chris Lattner9a08a612008-10-15 04:26:38 +0000657 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000658 if (SwapArgs)
Chris Lattner9a08a612008-10-15 04:26:38 +0000659 std::swap(Op0, Op1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000660
Chris Lattner9a08a612008-10-15 04:26:38 +0000661 // Emit a compare of Op0/Op1.
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000662 if (!X86FastEmitCompare(Op0, Op1, VT))
663 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000664
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000665 BuildMI(MBB, DL, TII.get(SetCCOpc), ResultReg);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000666 UpdateValueMap(I, ResultReg);
667 return true;
668}
Evan Cheng8b19e562008-09-03 06:44:39 +0000669
Dan Gohmand89ae992008-09-05 01:06:14 +0000670bool X86FastISel::X86SelectZExt(Instruction *I) {
671 // Special-case hack: The only i1 values we know how to produce currently
672 // set the upper bits of an i8 value to zero.
673 if (I->getType() == Type::Int8Ty &&
674 I->getOperand(0)->getType() == Type::Int1Ty) {
675 unsigned ResultReg = getRegForValue(I->getOperand(0));
Dan Gohmanf52550b2008-09-05 01:15:35 +0000676 if (ResultReg == 0) return false;
Dan Gohmand89ae992008-09-05 01:06:14 +0000677 UpdateValueMap(I, ResultReg);
678 return true;
679 }
680
681 return false;
682}
683
Chris Lattner9a08a612008-10-15 04:26:38 +0000684
Dan Gohmand89ae992008-09-05 01:06:14 +0000685bool X86FastISel::X86SelectBranch(Instruction *I) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000686 // Unconditional branches are selected by tablegen-generated code.
Dan Gohmand98d6202008-10-02 22:15:21 +0000687 // Handle a conditional branch.
688 BranchInst *BI = cast<BranchInst>(I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000689 MachineBasicBlock *TrueMBB = MBBMap[BI->getSuccessor(0)];
690 MachineBasicBlock *FalseMBB = MBBMap[BI->getSuccessor(1)];
691
Dan Gohmand98d6202008-10-02 22:15:21 +0000692 // Fold the common case of a conditional branch with a comparison.
693 if (CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
694 if (CI->hasOneUse()) {
695 MVT VT = TLI.getValueType(CI->getOperand(0)->getType());
Dan Gohmand89ae992008-09-05 01:06:14 +0000696
Dan Gohmand98d6202008-10-02 22:15:21 +0000697 // Try to take advantage of fallthrough opportunities.
698 CmpInst::Predicate Predicate = CI->getPredicate();
699 if (MBB->isLayoutSuccessor(TrueMBB)) {
700 std::swap(TrueMBB, FalseMBB);
701 Predicate = CmpInst::getInversePredicate(Predicate);
702 }
703
Chris Lattner871d2462008-10-15 03:58:05 +0000704 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
705 unsigned BranchOpc; // Opcode to jump on, e.g. "X86::JA"
706
Dan Gohmand98d6202008-10-02 22:15:21 +0000707 switch (Predicate) {
Dan Gohman7b66e042008-10-21 18:24:51 +0000708 case CmpInst::FCMP_OEQ:
709 std::swap(TrueMBB, FalseMBB);
710 Predicate = CmpInst::FCMP_UNE;
711 // FALL THROUGH
712 case CmpInst::FCMP_UNE: SwapArgs = false; BranchOpc = X86::JNE; break;
Chris Lattner871d2462008-10-15 03:58:05 +0000713 case CmpInst::FCMP_OGT: SwapArgs = false; BranchOpc = X86::JA; break;
714 case CmpInst::FCMP_OGE: SwapArgs = false; BranchOpc = X86::JAE; break;
715 case CmpInst::FCMP_OLT: SwapArgs = true; BranchOpc = X86::JA; break;
716 case CmpInst::FCMP_OLE: SwapArgs = true; BranchOpc = X86::JAE; break;
717 case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE; break;
718 case CmpInst::FCMP_ORD: SwapArgs = false; BranchOpc = X86::JNP; break;
719 case CmpInst::FCMP_UNO: SwapArgs = false; BranchOpc = X86::JP; break;
720 case CmpInst::FCMP_UEQ: SwapArgs = false; BranchOpc = X86::JE; break;
721 case CmpInst::FCMP_UGT: SwapArgs = true; BranchOpc = X86::JB; break;
722 case CmpInst::FCMP_UGE: SwapArgs = true; BranchOpc = X86::JBE; break;
723 case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break;
724 case CmpInst::FCMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break;
Chris Lattner9a08a612008-10-15 04:26:38 +0000725
Chris Lattner871d2462008-10-15 03:58:05 +0000726 case CmpInst::ICMP_EQ: SwapArgs = false; BranchOpc = X86::JE; break;
727 case CmpInst::ICMP_NE: SwapArgs = false; BranchOpc = X86::JNE; break;
728 case CmpInst::ICMP_UGT: SwapArgs = false; BranchOpc = X86::JA; break;
729 case CmpInst::ICMP_UGE: SwapArgs = false; BranchOpc = X86::JAE; break;
730 case CmpInst::ICMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break;
731 case CmpInst::ICMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break;
732 case CmpInst::ICMP_SGT: SwapArgs = false; BranchOpc = X86::JG; break;
733 case CmpInst::ICMP_SGE: SwapArgs = false; BranchOpc = X86::JGE; break;
734 case CmpInst::ICMP_SLT: SwapArgs = false; BranchOpc = X86::JL; break;
735 case CmpInst::ICMP_SLE: SwapArgs = false; BranchOpc = X86::JLE; break;
Dan Gohmand98d6202008-10-02 22:15:21 +0000736 default:
737 return false;
738 }
Chris Lattner54aebde2008-10-15 03:47:17 +0000739
Chris Lattner709d8292008-10-15 04:02:26 +0000740 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
741 if (SwapArgs)
742 std::swap(Op0, Op1);
743
Chris Lattner9a08a612008-10-15 04:26:38 +0000744 // Emit a compare of the LHS and RHS, setting the flags.
745 if (!X86FastEmitCompare(Op0, Op1, VT))
746 return false;
Chris Lattner0e13c782008-10-15 04:13:29 +0000747
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000748 BuildMI(MBB, DL, TII.get(BranchOpc)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000749
750 if (Predicate == CmpInst::FCMP_UNE) {
751 // X86 requires a second branch to handle UNE (and OEQ,
752 // which is mapped to UNE above).
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000753 BuildMI(MBB, DL, TII.get(X86::JP)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000754 }
755
Dan Gohmand98d6202008-10-02 22:15:21 +0000756 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000757 MBB->addSuccessor(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000758 return true;
759 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000760 } else if (ExtractValueInst *EI =
761 dyn_cast<ExtractValueInst>(BI->getCondition())) {
762 // Check to see if the branch instruction is from an "arithmetic with
763 // overflow" intrinsic. The main way these intrinsics are used is:
764 //
765 // %t = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2)
766 // %sum = extractvalue { i32, i1 } %t, 0
767 // %obit = extractvalue { i32, i1 } %t, 1
768 // br i1 %obit, label %overflow, label %normal
769 //
Dan Gohman653456c2009-01-07 00:15:08 +0000770 // The %sum and %obit are converted in an ADD and a SETO/SETB before
Bill Wendling30a64a72008-12-09 23:19:12 +0000771 // reaching the branch. Therefore, we search backwards through the MBB
Dan Gohman653456c2009-01-07 00:15:08 +0000772 // looking for the SETO/SETB instruction. If an instruction modifies the
773 // EFLAGS register before we reach the SETO/SETB instruction, then we can't
774 // convert the branch into a JO/JB instruction.
Bill Wendling30a64a72008-12-09 23:19:12 +0000775
Bill Wendling9a901322008-12-10 19:44:24 +0000776 Value *Agg = EI->getAggregateOperand();
Bill Wendling30a64a72008-12-09 23:19:12 +0000777
Bill Wendling9a901322008-12-10 19:44:24 +0000778 if (CallInst *CI = dyn_cast<CallInst>(Agg)) {
779 Function *F = CI->getCalledFunction();
Bill Wendling30a64a72008-12-09 23:19:12 +0000780
Bill Wendling9a901322008-12-10 19:44:24 +0000781 if (F && F->isDeclaration()) {
782 switch (F->getIntrinsicID()) {
783 default: break;
784 case Intrinsic::sadd_with_overflow:
785 case Intrinsic::uadd_with_overflow: {
786 const MachineInstr *SetMI = 0;
787 unsigned Reg = lookUpRegForValue(EI);
Bill Wendling30a64a72008-12-09 23:19:12 +0000788
Bill Wendling9a901322008-12-10 19:44:24 +0000789 for (MachineBasicBlock::const_reverse_iterator
790 RI = MBB->rbegin(), RE = MBB->rend(); RI != RE; ++RI) {
791 const MachineInstr &MI = *RI;
Bill Wendling30a64a72008-12-09 23:19:12 +0000792
Bill Wendling9a901322008-12-10 19:44:24 +0000793 if (MI.modifiesRegister(Reg)) {
Evan Cheng04ee5a12009-01-20 19:12:24 +0000794 unsigned Src, Dst, SrcSR, DstSR;
Bill Wendling30a64a72008-12-09 23:19:12 +0000795
Evan Cheng04ee5a12009-01-20 19:12:24 +0000796 if (getInstrInfo()->isMoveInstr(MI, Src, Dst, SrcSR, DstSR)) {
Bill Wendling9a901322008-12-10 19:44:24 +0000797 Reg = Src;
798 continue;
799 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000800
Bill Wendling9a901322008-12-10 19:44:24 +0000801 SetMI = &MI;
802 break;
803 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000804
Bill Wendling9a901322008-12-10 19:44:24 +0000805 const TargetInstrDesc &TID = MI.getDesc();
806 const unsigned *ImpDefs = TID.getImplicitDefs();
807
808 if (TID.hasUnmodeledSideEffects()) break;
809
810 bool ModifiesEFlags = false;
811
812 if (ImpDefs) {
813 for (unsigned u = 0; ImpDefs[u]; ++u)
814 if (ImpDefs[u] == X86::EFLAGS) {
815 ModifiesEFlags = true;
816 break;
817 }
818 }
819
820 if (ModifiesEFlags) break;
Bill Wendling30a64a72008-12-09 23:19:12 +0000821 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000822
Bill Wendling9a901322008-12-10 19:44:24 +0000823 if (SetMI) {
824 unsigned OpCode = SetMI->getOpcode();
Bill Wendling30a64a72008-12-09 23:19:12 +0000825
Dan Gohman653456c2009-01-07 00:15:08 +0000826 if (OpCode == X86::SETOr || OpCode == X86::SETBr) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000827 BuildMI(MBB, DL, TII.get((OpCode == X86::SETOr) ?
Dan Gohman653456c2009-01-07 00:15:08 +0000828 X86::JO : X86::JB)).addMBB(TrueMBB);
Bill Wendling9a901322008-12-10 19:44:24 +0000829 FastEmitBranch(FalseMBB);
830 MBB->addSuccessor(TrueMBB);
831 return true;
832 }
833 }
834 }
835 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000836 }
837 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000838 }
839
840 // Otherwise do a clumsy setcc and re-test it.
841 unsigned OpReg = getRegForValue(BI->getCondition());
842 if (OpReg == 0) return false;
843
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000844 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(OpReg).addReg(OpReg);
845 BuildMI(MBB, DL, TII.get(X86::JNE)).addMBB(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000846 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000847 MBB->addSuccessor(TrueMBB);
Dan Gohmand89ae992008-09-05 01:06:14 +0000848 return true;
849}
850
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000851bool X86FastISel::X86SelectShift(Instruction *I) {
Chris Lattner743922e2008-09-21 21:44:29 +0000852 unsigned CReg = 0, OpReg = 0, OpImm = 0;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000853 const TargetRegisterClass *RC = NULL;
854 if (I->getType() == Type::Int8Ty) {
855 CReg = X86::CL;
856 RC = &X86::GR8RegClass;
857 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000858 case Instruction::LShr: OpReg = X86::SHR8rCL; OpImm = X86::SHR8ri; break;
859 case Instruction::AShr: OpReg = X86::SAR8rCL; OpImm = X86::SAR8ri; break;
860 case Instruction::Shl: OpReg = X86::SHL8rCL; OpImm = X86::SHL8ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000861 default: return false;
862 }
863 } else if (I->getType() == Type::Int16Ty) {
864 CReg = X86::CX;
865 RC = &X86::GR16RegClass;
866 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000867 case Instruction::LShr: OpReg = X86::SHR16rCL; OpImm = X86::SHR16ri; break;
868 case Instruction::AShr: OpReg = X86::SAR16rCL; OpImm = X86::SAR16ri; break;
869 case Instruction::Shl: OpReg = X86::SHL16rCL; OpImm = X86::SHL16ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000870 default: return false;
871 }
872 } else if (I->getType() == Type::Int32Ty) {
873 CReg = X86::ECX;
874 RC = &X86::GR32RegClass;
875 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000876 case Instruction::LShr: OpReg = X86::SHR32rCL; OpImm = X86::SHR32ri; break;
877 case Instruction::AShr: OpReg = X86::SAR32rCL; OpImm = X86::SAR32ri; break;
878 case Instruction::Shl: OpReg = X86::SHL32rCL; OpImm = X86::SHL32ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000879 default: return false;
880 }
881 } else if (I->getType() == Type::Int64Ty) {
882 CReg = X86::RCX;
883 RC = &X86::GR64RegClass;
884 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000885 case Instruction::LShr: OpReg = X86::SHR64rCL; OpImm = X86::SHR64ri; break;
886 case Instruction::AShr: OpReg = X86::SAR64rCL; OpImm = X86::SAR64ri; break;
887 case Instruction::Shl: OpReg = X86::SHL64rCL; OpImm = X86::SHL64ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000888 default: return false;
889 }
890 } else {
891 return false;
892 }
893
Chris Lattner160f6cc2008-10-15 05:07:36 +0000894 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
895 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Dan Gohmanf58cb6d2008-09-05 21:27:34 +0000896 return false;
897
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000898 unsigned Op0Reg = getRegForValue(I->getOperand(0));
899 if (Op0Reg == 0) return false;
Chris Lattner743922e2008-09-21 21:44:29 +0000900
901 // Fold immediate in shl(x,3).
902 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
903 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000904 BuildMI(MBB, DL, TII.get(OpImm),
Dan Gohmanb12b1a22008-12-20 17:19:40 +0000905 ResultReg).addReg(Op0Reg).addImm(CI->getZExtValue() & 0xff);
Chris Lattner743922e2008-09-21 21:44:29 +0000906 UpdateValueMap(I, ResultReg);
907 return true;
908 }
909
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000910 unsigned Op1Reg = getRegForValue(I->getOperand(1));
911 if (Op1Reg == 0) return false;
912 TII.copyRegToReg(*MBB, MBB->end(), CReg, Op1Reg, RC, RC);
Dan Gohman145b8282008-10-07 21:50:36 +0000913
914 // The shift instruction uses X86::CL. If we defined a super-register
915 // of X86::CL, emit an EXTRACT_SUBREG to precisely describe what
916 // we're doing here.
917 if (CReg != X86::CL)
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000918 BuildMI(MBB, DL, TII.get(TargetInstrInfo::EXTRACT_SUBREG), X86::CL)
Dan Gohman145b8282008-10-07 21:50:36 +0000919 .addReg(CReg).addImm(X86::SUBREG_8BIT);
920
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000921 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000922 BuildMI(MBB, DL, TII.get(OpReg), ResultReg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000923 UpdateValueMap(I, ResultReg);
924 return true;
925}
926
927bool X86FastISel::X86SelectSelect(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +0000928 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
929 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
930 return false;
931
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000932 unsigned Opc = 0;
933 const TargetRegisterClass *RC = NULL;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000934 if (VT.getSimpleVT() == MVT::i16) {
Dan Gohman31d26912008-09-05 21:13:04 +0000935 Opc = X86::CMOVE16rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000936 RC = &X86::GR16RegClass;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000937 } else if (VT.getSimpleVT() == MVT::i32) {
Dan Gohman31d26912008-09-05 21:13:04 +0000938 Opc = X86::CMOVE32rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000939 RC = &X86::GR32RegClass;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000940 } else if (VT.getSimpleVT() == MVT::i64) {
Dan Gohman31d26912008-09-05 21:13:04 +0000941 Opc = X86::CMOVE64rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000942 RC = &X86::GR64RegClass;
943 } else {
944 return false;
945 }
946
947 unsigned Op0Reg = getRegForValue(I->getOperand(0));
948 if (Op0Reg == 0) return false;
949 unsigned Op1Reg = getRegForValue(I->getOperand(1));
950 if (Op1Reg == 0) return false;
951 unsigned Op2Reg = getRegForValue(I->getOperand(2));
952 if (Op2Reg == 0) return false;
953
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000954 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(Op0Reg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000955 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000956 BuildMI(MBB, DL, TII.get(Opc), ResultReg).addReg(Op1Reg).addReg(Op2Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000957 UpdateValueMap(I, ResultReg);
958 return true;
959}
960
Dan Gohman78efce62008-09-10 21:02:08 +0000961bool X86FastISel::X86SelectFPExt(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +0000962 // fpext from float to double.
963 if (Subtarget->hasSSE2() && I->getType() == Type::DoubleTy) {
964 Value *V = I->getOperand(0);
965 if (V->getType() == Type::FloatTy) {
966 unsigned OpReg = getRegForValue(V);
967 if (OpReg == 0) return false;
968 unsigned ResultReg = createResultReg(X86::FR64RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000969 BuildMI(MBB, DL, TII.get(X86::CVTSS2SDrr), ResultReg).addReg(OpReg);
Chris Lattner160f6cc2008-10-15 05:07:36 +0000970 UpdateValueMap(I, ResultReg);
971 return true;
Dan Gohman78efce62008-09-10 21:02:08 +0000972 }
973 }
974
975 return false;
976}
977
978bool X86FastISel::X86SelectFPTrunc(Instruction *I) {
979 if (Subtarget->hasSSE2()) {
980 if (I->getType() == Type::FloatTy) {
981 Value *V = I->getOperand(0);
982 if (V->getType() == Type::DoubleTy) {
983 unsigned OpReg = getRegForValue(V);
984 if (OpReg == 0) return false;
985 unsigned ResultReg = createResultReg(X86::FR32RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000986 BuildMI(MBB, DL, TII.get(X86::CVTSD2SSrr), ResultReg).addReg(OpReg);
Dan Gohman78efce62008-09-10 21:02:08 +0000987 UpdateValueMap(I, ResultReg);
988 return true;
989 }
990 }
991 }
992
993 return false;
994}
995
Evan Cheng10a8d9c2008-09-07 08:47:42 +0000996bool X86FastISel::X86SelectTrunc(Instruction *I) {
997 if (Subtarget->is64Bit())
998 // All other cases should be handled by the tblgen generated code.
999 return false;
1000 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1001 MVT DstVT = TLI.getValueType(I->getType());
1002 if (DstVT != MVT::i8)
1003 // All other cases should be handled by the tblgen generated code.
1004 return false;
1005 if (SrcVT != MVT::i16 && SrcVT != MVT::i32)
1006 // All other cases should be handled by the tblgen generated code.
1007 return false;
1008
1009 unsigned InputReg = getRegForValue(I->getOperand(0));
1010 if (!InputReg)
1011 // Unhandled operand. Halt "fast" selection and bail.
1012 return false;
1013
1014 // First issue a copy to GR16_ or GR32_.
1015 unsigned CopyOpc = (SrcVT == MVT::i16) ? X86::MOV16to16_ : X86::MOV32to32_;
1016 const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16)
1017 ? X86::GR16_RegisterClass : X86::GR32_RegisterClass;
1018 unsigned CopyReg = createResultReg(CopyRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001019 BuildMI(MBB, DL, TII.get(CopyOpc), CopyReg).addReg(InputReg);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001020
1021 // Then issue an extract_subreg.
Evan Cheng536ab132009-01-22 09:10:11 +00001022 unsigned ResultReg = FastEmitInst_extractsubreg(DstVT.getSimpleVT(),
1023 CopyReg, X86::SUBREG_8BIT);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001024 if (!ResultReg)
1025 return false;
1026
1027 UpdateValueMap(I, ResultReg);
1028 return true;
1029}
1030
Bill Wendling52370a12008-12-09 02:42:50 +00001031bool X86FastISel::X86SelectExtractValue(Instruction *I) {
1032 ExtractValueInst *EI = cast<ExtractValueInst>(I);
1033 Value *Agg = EI->getAggregateOperand();
1034
1035 if (CallInst *CI = dyn_cast<CallInst>(Agg)) {
1036 Function *F = CI->getCalledFunction();
1037
1038 if (F && F->isDeclaration()) {
1039 switch (F->getIntrinsicID()) {
1040 default: break;
1041 case Intrinsic::sadd_with_overflow:
1042 case Intrinsic::uadd_with_overflow:
Bill Wendlingc065b3f2008-12-09 07:55:31 +00001043 // Cheat a little. We know that the registers for "add" and "seto" are
1044 // allocated sequentially. However, we only keep track of the register
1045 // for "add" in the value map. Use extractvalue's index to get the
1046 // correct register for "seto".
Bill Wendling52370a12008-12-09 02:42:50 +00001047 UpdateValueMap(I, lookUpRegForValue(Agg) + *EI->idx_begin());
1048 return true;
1049 }
1050 }
1051 }
1052
1053 return false;
1054}
1055
1056bool X86FastISel::X86VisitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
1057 // FIXME: Handle more intrinsics.
1058 switch (Intrinsic) {
1059 default: return false;
1060 case Intrinsic::sadd_with_overflow:
1061 case Intrinsic::uadd_with_overflow: {
Bill Wendlingc065b3f2008-12-09 07:55:31 +00001062 // Replace "add with overflow" intrinsics with an "add" instruction followed
1063 // by a seto/setc instruction. Later on, when the "extractvalue"
1064 // instructions are encountered, we use the fact that two registers were
1065 // created sequentially to get the correct registers for the "sum" and the
1066 // "overflow bit".
Bill Wendling52370a12008-12-09 02:42:50 +00001067 MVT VT;
1068 const Function *Callee = I.getCalledFunction();
1069 const Type *RetTy =
1070 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(unsigned(0));
1071
1072 if (!isTypeLegal(RetTy, VT))
1073 return false;
1074
1075 Value *Op1 = I.getOperand(1);
1076 Value *Op2 = I.getOperand(2);
1077 unsigned Reg1 = getRegForValue(Op1);
1078 unsigned Reg2 = getRegForValue(Op2);
1079
1080 if (Reg1 == 0 || Reg2 == 0)
1081 // FIXME: Handle values *not* in registers.
1082 return false;
1083
1084 unsigned OpC = 0;
1085
1086 if (VT == MVT::i32)
1087 OpC = X86::ADD32rr;
1088 else if (VT == MVT::i64)
1089 OpC = X86::ADD64rr;
1090 else
1091 return false;
1092
1093 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001094 BuildMI(MBB, DL, TII.get(OpC), ResultReg).addReg(Reg1).addReg(Reg2);
Bill Wendling52370a12008-12-09 02:42:50 +00001095 UpdateValueMap(&I, ResultReg);
1096
1097 ResultReg = createResultReg(TLI.getRegClassFor(MVT::i8));
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001098 BuildMI(MBB, DL, TII.get((Intrinsic == Intrinsic::sadd_with_overflow) ?
Dan Gohman653456c2009-01-07 00:15:08 +00001099 X86::SETOr : X86::SETBr), ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001100 return true;
1101 }
1102 }
1103}
1104
Evan Chengf3d4efe2008-09-07 09:09:33 +00001105bool X86FastISel::X86SelectCall(Instruction *I) {
1106 CallInst *CI = cast<CallInst>(I);
1107 Value *Callee = I->getOperand(0);
1108
1109 // Can't handle inline asm yet.
1110 if (isa<InlineAsm>(Callee))
1111 return false;
1112
Bill Wendling52370a12008-12-09 02:42:50 +00001113 // Handle intrinsic calls.
1114 if (Function *F = CI->getCalledFunction())
1115 if (F->isDeclaration())
1116 if (unsigned IID = F->getIntrinsicID())
1117 return X86VisitIntrinsicCall(*CI, IID);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001118
Evan Chengf3d4efe2008-09-07 09:09:33 +00001119 // Handle only C and fastcc calling conventions for now.
1120 CallSite CS(CI);
1121 unsigned CC = CS.getCallingConv();
1122 if (CC != CallingConv::C &&
1123 CC != CallingConv::Fast &&
1124 CC != CallingConv::X86_FastCall)
1125 return false;
1126
1127 // Let SDISel handle vararg functions.
1128 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1129 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
1130 if (FTy->isVarArg())
1131 return false;
1132
1133 // Handle *simple* calls for now.
1134 const Type *RetTy = CS.getType();
1135 MVT RetVT;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001136 if (RetTy == Type::VoidTy)
1137 RetVT = MVT::isVoid;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001138 else if (!isTypeLegal(RetTy, RetVT, true))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001139 return false;
1140
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001141 // Materialize callee address in a register. FIXME: GV address can be
1142 // handled with a CALLpcrel32 instead.
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001143 X86AddressMode CalleeAM;
1144 if (!X86SelectAddress(Callee, CalleeAM, true))
1145 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001146 unsigned CalleeOp = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001147 GlobalValue *GV = 0;
1148 if (CalleeAM.Base.Reg != 0) {
1149 assert(CalleeAM.GV == 0);
1150 CalleeOp = CalleeAM.Base.Reg;
1151 } else if (CalleeAM.GV != 0) {
1152 assert(CalleeAM.GV != 0);
1153 GV = CalleeAM.GV;
1154 } else
1155 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001156
Evan Chengdebdea02008-09-08 17:15:42 +00001157 // Allow calls which produce i1 results.
1158 bool AndToI1 = false;
1159 if (RetVT == MVT::i1) {
1160 RetVT = MVT::i8;
1161 AndToI1 = true;
1162 }
1163
Evan Chengf3d4efe2008-09-07 09:09:33 +00001164 // Deal with call operands first.
Chris Lattner241ab472008-10-15 05:38:32 +00001165 SmallVector<Value*, 8> ArgVals;
1166 SmallVector<unsigned, 8> Args;
1167 SmallVector<MVT, 8> ArgVTs;
1168 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001169 Args.reserve(CS.arg_size());
Chris Lattner241ab472008-10-15 05:38:32 +00001170 ArgVals.reserve(CS.arg_size());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001171 ArgVTs.reserve(CS.arg_size());
1172 ArgFlags.reserve(CS.arg_size());
1173 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1174 i != e; ++i) {
1175 unsigned Arg = getRegForValue(*i);
1176 if (Arg == 0)
1177 return false;
1178 ISD::ArgFlagsTy Flags;
1179 unsigned AttrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00001180 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001181 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00001182 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001183 Flags.setZExt();
1184
1185 // FIXME: Only handle *easy* calls for now.
Devang Patel05988662008-09-25 21:00:45 +00001186 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1187 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1188 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1189 CS.paramHasAttr(AttrInd, Attribute::ByVal))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001190 return false;
1191
1192 const Type *ArgTy = (*i)->getType();
1193 MVT ArgVT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001194 if (!isTypeLegal(ArgTy, ArgVT))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001195 return false;
1196 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1197 Flags.setOrigAlign(OriginalAlignment);
1198
1199 Args.push_back(Arg);
Chris Lattner241ab472008-10-15 05:38:32 +00001200 ArgVals.push_back(*i);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001201 ArgVTs.push_back(ArgVT);
1202 ArgFlags.push_back(Flags);
1203 }
1204
1205 // Analyze operands of the call, assigning locations to each operand.
1206 SmallVector<CCValAssign, 16> ArgLocs;
1207 CCState CCInfo(CC, false, TM, ArgLocs);
1208 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC));
1209
1210 // Get a count of how many bytes are to be pushed on the stack.
1211 unsigned NumBytes = CCInfo.getNextStackOffset();
1212
1213 // Issue CALLSEQ_START
Dan Gohman6d4b0522008-10-01 18:28:06 +00001214 unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001215 BuildMI(MBB, DL, TII.get(AdjStackDown)).addImm(NumBytes);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001216
Chris Lattner438949a2008-10-15 05:30:52 +00001217 // Process argument: walk the register/memloc assignments, inserting
Evan Chengf3d4efe2008-09-07 09:09:33 +00001218 // copies / loads.
1219 SmallVector<unsigned, 4> RegArgs;
1220 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1221 CCValAssign &VA = ArgLocs[i];
1222 unsigned Arg = Args[VA.getValNo()];
1223 MVT ArgVT = ArgVTs[VA.getValNo()];
1224
1225 // Promote the value if needed.
1226 switch (VA.getLocInfo()) {
1227 default: assert(0 && "Unknown loc info!");
1228 case CCValAssign::Full: break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001229 case CCValAssign::SExt: {
1230 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1231 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001232 assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001233 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001234 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001235 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001236 }
1237 case CCValAssign::ZExt: {
1238 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1239 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001240 assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001241 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001242 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001243 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001244 }
1245 case CCValAssign::AExt: {
1246 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1247 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001248 if (!Emitted)
1249 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
Chris Lattner160f6cc2008-10-15 05:07:36 +00001250 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001251 if (!Emitted)
1252 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1253 Arg, ArgVT, Arg);
1254
Chris Lattnera33649e2008-12-19 17:03:38 +00001255 assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted;
Evan Cheng24e3a902008-09-08 06:35:17 +00001256 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001257 break;
1258 }
Evan Cheng24e3a902008-09-08 06:35:17 +00001259 }
Evan Chengf3d4efe2008-09-07 09:09:33 +00001260
1261 if (VA.isRegLoc()) {
1262 TargetRegisterClass* RC = TLI.getRegClassFor(ArgVT);
1263 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), VA.getLocReg(),
1264 Arg, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001265 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001266 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001267 RegArgs.push_back(VA.getLocReg());
1268 } else {
1269 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman0586d912008-09-10 20:11:02 +00001270 X86AddressMode AM;
1271 AM.Base.Reg = StackPtr;
1272 AM.Disp = LocMemOffset;
Chris Lattner241ab472008-10-15 05:38:32 +00001273 Value *ArgVal = ArgVals[VA.getValNo()];
1274
1275 // If this is a really simple value, emit this with the Value* version of
1276 // X86FastEmitStore. If it isn't simple, we don't want to do this, as it
1277 // can cause us to reevaluate the argument.
1278 if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal))
1279 X86FastEmitStore(ArgVT, ArgVal, AM);
1280 else
1281 X86FastEmitStore(ArgVT, Arg, AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001282 }
1283 }
1284
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001285 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1286 // GOT pointer.
1287 if (!Subtarget->is64Bit() &&
1288 TM.getRelocationModel() == Reloc::PIC_ &&
1289 Subtarget->isPICStyleGOT()) {
1290 TargetRegisterClass *RC = X86::GR32RegisterClass;
Dan Gohman57c3dac2008-09-30 00:58:23 +00001291 unsigned Base = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001292 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), X86::EBX, Base, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001293 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001294 Emitted = true;
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001295 }
1296
Evan Chengf3d4efe2008-09-07 09:09:33 +00001297 // Issue the call.
1298 unsigned CallOpc = CalleeOp
1299 ? (Subtarget->is64Bit() ? X86::CALL64r : X86::CALL32r)
1300 : (Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32);
1301 MachineInstrBuilder MIB = CalleeOp
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001302 ? BuildMI(MBB, DL, TII.get(CallOpc)).addReg(CalleeOp)
1303 : BuildMI(MBB, DL, TII.get(CallOpc)).addGlobalAddress(GV);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001304
1305 // Add an implicit use GOT pointer in EBX.
1306 if (!Subtarget->is64Bit() &&
1307 TM.getRelocationModel() == Reloc::PIC_ &&
1308 Subtarget->isPICStyleGOT())
1309 MIB.addReg(X86::EBX);
1310
Evan Chengf3d4efe2008-09-07 09:09:33 +00001311 // Add implicit physical register uses to the call.
Dan Gohman8c3f8b62008-10-07 22:10:33 +00001312 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1313 MIB.addReg(RegArgs[i]);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001314
1315 // Issue CALLSEQ_END
Dan Gohman6d4b0522008-10-01 18:28:06 +00001316 unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001317 BuildMI(MBB, DL, TII.get(AdjStackUp)).addImm(NumBytes).addImm(0);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001318
1319 // Now handle call return value (if any).
Evan Chengf3d4efe2008-09-07 09:09:33 +00001320 if (RetVT.getSimpleVT() != MVT::isVoid) {
1321 SmallVector<CCValAssign, 16> RVLocs;
1322 CCState CCInfo(CC, false, TM, RVLocs);
1323 CCInfo.AnalyzeCallResult(RetVT, RetCC_X86);
1324
1325 // Copy all of the result registers out of their specified physreg.
1326 assert(RVLocs.size() == 1 && "Can't handle multi-value calls!");
1327 MVT CopyVT = RVLocs[0].getValVT();
1328 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
1329 TargetRegisterClass *SrcRC = DstRC;
1330
1331 // If this is a call to a function that returns an fp value on the x87 fp
1332 // stack, but where we prefer to use the value in xmm registers, copy it
1333 // out as F80 and use a truncate to move it from fp stack reg to xmm reg.
1334 if ((RVLocs[0].getLocReg() == X86::ST0 ||
1335 RVLocs[0].getLocReg() == X86::ST1) &&
1336 isScalarFPTypeInSSEReg(RVLocs[0].getValVT())) {
1337 CopyVT = MVT::f80;
1338 SrcRC = X86::RSTRegisterClass;
1339 DstRC = X86::RFP80RegisterClass;
1340 }
1341
1342 unsigned ResultReg = createResultReg(DstRC);
1343 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
1344 RVLocs[0].getLocReg(), DstRC, SrcRC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001345 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001346 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001347 if (CopyVT != RVLocs[0].getValVT()) {
1348 // Round the F80 the right size, which also moves to the appropriate xmm
1349 // register. This is accomplished by storing the F80 value in memory and
1350 // then loading it back. Ewww...
1351 MVT ResVT = RVLocs[0].getValVT();
1352 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
1353 unsigned MemSize = ResVT.getSizeInBits()/8;
Dan Gohman0586d912008-09-10 20:11:02 +00001354 int FI = MFI.CreateStackObject(MemSize, MemSize);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001355 addFrameReference(BuildMI(MBB, DL, TII.get(Opc)), FI).addReg(ResultReg);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001356 DstRC = ResVT == MVT::f32
1357 ? X86::FR32RegisterClass : X86::FR64RegisterClass;
1358 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
1359 ResultReg = createResultReg(DstRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001360 addFrameReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), FI);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001361 }
1362
Evan Chengdebdea02008-09-08 17:15:42 +00001363 if (AndToI1) {
1364 // Mask out all but lowest bit for some call which produces an i1.
1365 unsigned AndResult = createResultReg(X86::GR8RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001366 BuildMI(MBB, DL,
1367 TII.get(X86::AND8ri), AndResult).addReg(ResultReg).addImm(1);
Evan Chengdebdea02008-09-08 17:15:42 +00001368 ResultReg = AndResult;
1369 }
1370
Evan Chengf3d4efe2008-09-07 09:09:33 +00001371 UpdateValueMap(I, ResultReg);
1372 }
1373
1374 return true;
1375}
1376
1377
Dan Gohman99b21822008-08-28 23:21:34 +00001378bool
Dan Gohman3df24e62008-09-03 23:12:08 +00001379X86FastISel::TargetSelectInstruction(Instruction *I) {
Dan Gohman99b21822008-08-28 23:21:34 +00001380 switch (I->getOpcode()) {
1381 default: break;
Evan Cheng8b19e562008-09-03 06:44:39 +00001382 case Instruction::Load:
Dan Gohman3df24e62008-09-03 23:12:08 +00001383 return X86SelectLoad(I);
Owen Anderson79924eb2008-09-04 16:48:33 +00001384 case Instruction::Store:
1385 return X86SelectStore(I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +00001386 case Instruction::ICmp:
1387 case Instruction::FCmp:
1388 return X86SelectCmp(I);
Dan Gohmand89ae992008-09-05 01:06:14 +00001389 case Instruction::ZExt:
1390 return X86SelectZExt(I);
1391 case Instruction::Br:
1392 return X86SelectBranch(I);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001393 case Instruction::Call:
1394 return X86SelectCall(I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001395 case Instruction::LShr:
1396 case Instruction::AShr:
1397 case Instruction::Shl:
1398 return X86SelectShift(I);
1399 case Instruction::Select:
1400 return X86SelectSelect(I);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001401 case Instruction::Trunc:
1402 return X86SelectTrunc(I);
Dan Gohman78efce62008-09-10 21:02:08 +00001403 case Instruction::FPExt:
1404 return X86SelectFPExt(I);
1405 case Instruction::FPTrunc:
1406 return X86SelectFPTrunc(I);
Bill Wendling52370a12008-12-09 02:42:50 +00001407 case Instruction::ExtractValue:
1408 return X86SelectExtractValue(I);
Dan Gohman99b21822008-08-28 23:21:34 +00001409 }
1410
1411 return false;
1412}
1413
Dan Gohman0586d912008-09-10 20:11:02 +00001414unsigned X86FastISel::TargetMaterializeConstant(Constant *C) {
Evan Cheng59fbc802008-09-09 01:26:59 +00001415 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001416 if (!isTypeLegal(C->getType(), VT))
Owen Anderson95267a12008-09-05 00:06:23 +00001417 return false;
1418
1419 // Get opcode and regclass of the output for the given load instruction.
1420 unsigned Opc = 0;
1421 const TargetRegisterClass *RC = NULL;
1422 switch (VT.getSimpleVT()) {
1423 default: return false;
1424 case MVT::i8:
1425 Opc = X86::MOV8rm;
1426 RC = X86::GR8RegisterClass;
1427 break;
1428 case MVT::i16:
1429 Opc = X86::MOV16rm;
1430 RC = X86::GR16RegisterClass;
1431 break;
1432 case MVT::i32:
1433 Opc = X86::MOV32rm;
1434 RC = X86::GR32RegisterClass;
1435 break;
1436 case MVT::i64:
1437 // Must be in x86-64 mode.
1438 Opc = X86::MOV64rm;
1439 RC = X86::GR64RegisterClass;
1440 break;
1441 case MVT::f32:
1442 if (Subtarget->hasSSE1()) {
1443 Opc = X86::MOVSSrm;
1444 RC = X86::FR32RegisterClass;
1445 } else {
1446 Opc = X86::LD_Fp32m;
1447 RC = X86::RFP32RegisterClass;
1448 }
1449 break;
1450 case MVT::f64:
1451 if (Subtarget->hasSSE2()) {
1452 Opc = X86::MOVSDrm;
1453 RC = X86::FR64RegisterClass;
1454 } else {
1455 Opc = X86::LD_Fp64m;
1456 RC = X86::RFP64RegisterClass;
1457 }
1458 break;
1459 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +00001460 // No f80 support yet.
1461 return false;
Owen Anderson95267a12008-09-05 00:06:23 +00001462 }
1463
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001464 // Materialize addresses with LEA instructions.
Owen Anderson95267a12008-09-05 00:06:23 +00001465 if (isa<GlobalValue>(C)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001466 X86AddressMode AM;
1467 if (X86SelectAddress(C, AM, false)) {
1468 if (TLI.getPointerTy() == MVT::i32)
1469 Opc = X86::LEA32r;
1470 else
1471 Opc = X86::LEA64r;
1472 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001473 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Owen Anderson95267a12008-09-05 00:06:23 +00001474 return ResultReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001475 }
Evan Cheng0de588f2008-09-05 21:00:03 +00001476 return 0;
Owen Anderson95267a12008-09-05 00:06:23 +00001477 }
1478
Owen Anderson3b217c62008-09-06 01:11:01 +00001479 // MachineConstantPool wants an explicit alignment.
Dan Gohman1fbc3cd2008-09-18 18:26:43 +00001480 unsigned Align = TD.getPreferredTypeAlignmentShift(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001481 if (Align == 0) {
1482 // Alignment of vector types. FIXME!
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00001483 Align = TD.getTypePaddedSize(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001484 Align = Log2_64(Align);
1485 }
Owen Anderson95267a12008-09-05 00:06:23 +00001486
Dan Gohman5396c992008-09-30 01:21:32 +00001487 // x86-32 PIC requires a PIC base register for constant pools.
1488 unsigned PICBase = 0;
1489 if (TM.getRelocationModel() == Reloc::PIC_ &&
1490 !Subtarget->is64Bit())
1491 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1492
1493 // Create the load from the constant pool.
Dan Gohman0586d912008-09-10 20:11:02 +00001494 unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align);
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001495 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001496 addConstantPoolReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), MCPOffset,
Dan Gohman5396c992008-09-30 01:21:32 +00001497 PICBase);
1498
Owen Anderson95267a12008-09-05 00:06:23 +00001499 return ResultReg;
1500}
1501
Dan Gohman0586d912008-09-10 20:11:02 +00001502unsigned X86FastISel::TargetMaterializeAlloca(AllocaInst *C) {
Dan Gohman4e6ed5e2008-10-03 01:27:49 +00001503 // Fail on dynamic allocas. At this point, getRegForValue has already
1504 // checked its CSE maps, so if we're here trying to handle a dynamic
1505 // alloca, we're not going to succeed. X86SelectAddress has a
1506 // check for dynamic allocas, because it's called directly from
1507 // various places, but TargetMaterializeAlloca also needs a check
1508 // in order to avoid recursion between getRegForValue,
1509 // X86SelectAddrss, and TargetMaterializeAlloca.
1510 if (!StaticAllocaMap.count(C))
1511 return 0;
1512
Dan Gohman0586d912008-09-10 20:11:02 +00001513 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001514 if (!X86SelectAddress(C, AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +00001515 return 0;
1516 unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
1517 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
1518 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001519 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Dan Gohman0586d912008-09-10 20:11:02 +00001520 return ResultReg;
1521}
1522
Evan Chengc3f44b02008-09-03 00:03:49 +00001523namespace llvm {
Dan Gohman3df24e62008-09-03 23:12:08 +00001524 llvm::FastISel *X86::createFastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +00001525 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +00001526 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +00001527 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +00001528 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001529 DenseMap<const AllocaInst *, int> &am
1530#ifndef NDEBUG
1531 , SmallSet<Instruction*, 8> &cil
1532#endif
1533 ) {
Devang Patel83489bb2009-01-13 00:35:13 +00001534 return new X86FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001535#ifndef NDEBUG
1536 , cil
1537#endif
1538 );
Evan Chengc3f44b02008-09-03 00:03:49 +00001539 }
Dan Gohman99b21822008-08-28 23:21:34 +00001540}