blob: 811887bdc61b074607e0148184ad7c0568808fac [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"
Dan Gohman35893082008-09-18 23:23:44 +000032#include "llvm/Support/GetElementPtrTypeIterator.h"
Dan Gohman7d04e4a2009-05-04 19:50:33 +000033#include "llvm/Target/TargetOptions.h"
Evan Chengc3f44b02008-09-03 00:03:49 +000034using namespace llvm;
35
Chris Lattner087fcf32009-03-08 18:44:31 +000036namespace {
37
Evan Chengc3f44b02008-09-03 00:03:49 +000038class X86FastISel : public FastISel {
39 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
40 /// make the right decision when generating code for different targets.
41 const X86Subtarget *Subtarget;
Evan Chengf3d4efe2008-09-07 09:09:33 +000042
43 /// StackPtr - Register used as the stack pointer.
44 ///
45 unsigned StackPtr;
46
47 /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87
48 /// floating point ops.
49 /// When SSE is available, use it for f32 operations.
50 /// When SSE2 is available, use it for f64 operations.
51 bool X86ScalarSSEf64;
52 bool X86ScalarSSEf32;
53
Evan Cheng8b19e562008-09-03 06:44:39 +000054public:
Dan Gohman3df24e62008-09-03 23:12:08 +000055 explicit X86FastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +000056 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +000057 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +000058 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +000059 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +000060 DenseMap<const AllocaInst *, int> &am
61#ifndef NDEBUG
62 , SmallSet<Instruction*, 8> &cil
63#endif
64 )
Devang Patel83489bb2009-01-13 00:35:13 +000065 : FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +000066#ifndef NDEBUG
67 , cil
68#endif
69 ) {
Evan Cheng88e30412008-09-03 01:04:47 +000070 Subtarget = &TM.getSubtarget<X86Subtarget>();
Evan Chengf3d4efe2008-09-07 09:09:33 +000071 StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
72 X86ScalarSSEf64 = Subtarget->hasSSE2();
73 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng88e30412008-09-03 01:04:47 +000074 }
Evan Chengc3f44b02008-09-03 00:03:49 +000075
Dan Gohman3df24e62008-09-03 23:12:08 +000076 virtual bool TargetSelectInstruction(Instruction *I);
Evan Chengc3f44b02008-09-03 00:03:49 +000077
Dan Gohman1adf1b02008-08-19 21:45:35 +000078#include "X86GenFastISel.inc"
Evan Cheng8b19e562008-09-03 06:44:39 +000079
80private:
Chris Lattner9a08a612008-10-15 04:26:38 +000081 bool X86FastEmitCompare(Value *LHS, Value *RHS, MVT VT);
82
Dan Gohman0586d912008-09-10 20:11:02 +000083 bool X86FastEmitLoad(MVT VT, const X86AddressMode &AM, unsigned &RR);
Evan Cheng0de588f2008-09-05 21:00:03 +000084
Chris Lattner438949a2008-10-15 05:30:52 +000085 bool X86FastEmitStore(MVT VT, Value *Val,
86 const X86AddressMode &AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +000087 bool X86FastEmitStore(MVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +000088 const X86AddressMode &AM);
Evan Cheng24e3a902008-09-08 06:35:17 +000089
90 bool X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT, unsigned Src, MVT SrcVT,
91 unsigned &ResultReg);
Evan Cheng0de588f2008-09-05 21:00:03 +000092
Dan Gohman2ff7fd12008-09-19 22:16:54 +000093 bool X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall);
Dan Gohman0586d912008-09-10 20:11:02 +000094
Dan Gohman3df24e62008-09-03 23:12:08 +000095 bool X86SelectLoad(Instruction *I);
Owen Andersona3971df2008-09-04 07:08:58 +000096
97 bool X86SelectStore(Instruction *I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +000098
99 bool X86SelectCmp(Instruction *I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000100
101 bool X86SelectZExt(Instruction *I);
102
103 bool X86SelectBranch(Instruction *I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000104
105 bool X86SelectShift(Instruction *I);
106
107 bool X86SelectSelect(Instruction *I);
Evan Cheng0de588f2008-09-05 21:00:03 +0000108
Evan Cheng10a8d9c2008-09-07 08:47:42 +0000109 bool X86SelectTrunc(Instruction *I);
Dan Gohmand98d6202008-10-02 22:15:21 +0000110
Dan Gohman78efce62008-09-10 21:02:08 +0000111 bool X86SelectFPExt(Instruction *I);
112 bool X86SelectFPTrunc(Instruction *I);
113
Bill Wendling52370a12008-12-09 02:42:50 +0000114 bool X86SelectExtractValue(Instruction *I);
115
Chris Lattnera9a42252009-04-12 07:36:01 +0000116 bool X86VisitIntrinsicCall(IntrinsicInst &I);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000117 bool X86SelectCall(Instruction *I);
118
119 CCAssignFn *CCAssignFnForCall(unsigned CC, bool isTailCall = false);
120
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000121 const X86InstrInfo *getInstrInfo() const {
Dan Gohman97135e12008-09-26 19:15:30 +0000122 return getTargetMachine()->getInstrInfo();
123 }
124 const X86TargetMachine *getTargetMachine() const {
125 return static_cast<const X86TargetMachine *>(&TM);
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000126 }
127
Dan Gohman0586d912008-09-10 20:11:02 +0000128 unsigned TargetMaterializeConstant(Constant *C);
129
130 unsigned TargetMaterializeAlloca(AllocaInst *C);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000131
132 /// isScalarFPTypeInSSEReg - Return true if the specified scalar FP type is
133 /// computed in an SSE register, not on the X87 floating point stack.
134 bool isScalarFPTypeInSSEReg(MVT VT) const {
135 return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2
136 (VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1
137 }
138
Chris Lattner160f6cc2008-10-15 05:07:36 +0000139 bool isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1 = false);
Evan Chengc3f44b02008-09-03 00:03:49 +0000140};
Chris Lattner087fcf32009-03-08 18:44:31 +0000141
142} // end anonymous namespace.
Dan Gohman99b21822008-08-28 23:21:34 +0000143
Chris Lattner160f6cc2008-10-15 05:07:36 +0000144bool X86FastISel::isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1) {
145 VT = TLI.getValueType(Ty, /*HandleUnknown=*/true);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000146 if (VT == MVT::Other || !VT.isSimple())
147 // Unhandled type. Halt "fast" selection and bail.
148 return false;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000149
Dan Gohman9b66d732008-09-30 00:48:39 +0000150 // For now, require SSE/SSE2 for performing floating-point operations,
151 // since x87 requires additional work.
152 if (VT == MVT::f64 && !X86ScalarSSEf64)
153 return false;
154 if (VT == MVT::f32 && !X86ScalarSSEf32)
155 return false;
156 // Similarly, no f80 support yet.
157 if (VT == MVT::f80)
158 return false;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000159 // We only handle legal types. For example, on x86-32 the instruction
160 // selector contains all of the 64-bit instructions from x86-64,
161 // under the assumption that i64 won't be used if the target doesn't
162 // support it.
Evan Chengdebdea02008-09-08 17:15:42 +0000163 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000164}
165
166#include "X86GenCallingConv.inc"
167
168/// CCAssignFnForCall - Selects the correct CCAssignFn for a given calling
169/// convention.
170CCAssignFn *X86FastISel::CCAssignFnForCall(unsigned CC, bool isTaillCall) {
171 if (Subtarget->is64Bit()) {
172 if (Subtarget->isTargetWin64())
173 return CC_X86_Win64_C;
174 else if (CC == CallingConv::Fast && isTaillCall)
175 return CC_X86_64_TailCall;
176 else
177 return CC_X86_64_C;
178 }
179
180 if (CC == CallingConv::X86_FastCall)
181 return CC_X86_32_FastCall;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000182 else if (CC == CallingConv::Fast)
183 return CC_X86_32_FastCC;
184 else
185 return CC_X86_32_C;
186}
187
Evan Cheng0de588f2008-09-05 21:00:03 +0000188/// X86FastEmitLoad - Emit a machine instruction to load a value of type VT.
Evan Chengf3d4efe2008-09-07 09:09:33 +0000189/// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
Evan Cheng0de588f2008-09-05 21:00:03 +0000190/// Return true and the result register by reference if it is possible.
Dan Gohman0586d912008-09-10 20:11:02 +0000191bool X86FastISel::X86FastEmitLoad(MVT VT, const X86AddressMode &AM,
Evan Cheng0de588f2008-09-05 21:00:03 +0000192 unsigned &ResultReg) {
193 // Get opcode and regclass of the output for the given load instruction.
194 unsigned Opc = 0;
195 const TargetRegisterClass *RC = NULL;
196 switch (VT.getSimpleVT()) {
197 default: return false;
198 case MVT::i8:
199 Opc = X86::MOV8rm;
200 RC = X86::GR8RegisterClass;
201 break;
202 case MVT::i16:
203 Opc = X86::MOV16rm;
204 RC = X86::GR16RegisterClass;
205 break;
206 case MVT::i32:
207 Opc = X86::MOV32rm;
208 RC = X86::GR32RegisterClass;
209 break;
210 case MVT::i64:
211 // Must be in x86-64 mode.
212 Opc = X86::MOV64rm;
213 RC = X86::GR64RegisterClass;
214 break;
215 case MVT::f32:
216 if (Subtarget->hasSSE1()) {
217 Opc = X86::MOVSSrm;
218 RC = X86::FR32RegisterClass;
219 } else {
220 Opc = X86::LD_Fp32m;
221 RC = X86::RFP32RegisterClass;
222 }
223 break;
224 case MVT::f64:
225 if (Subtarget->hasSSE2()) {
226 Opc = X86::MOVSDrm;
227 RC = X86::FR64RegisterClass;
228 } else {
229 Opc = X86::LD_Fp64m;
230 RC = X86::RFP64RegisterClass;
231 }
232 break;
233 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +0000234 // No f80 support yet.
235 return false;
Evan Cheng0de588f2008-09-05 21:00:03 +0000236 }
237
238 ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000239 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Evan Cheng0de588f2008-09-05 21:00:03 +0000240 return true;
241}
242
Evan Chengf3d4efe2008-09-07 09:09:33 +0000243/// X86FastEmitStore - Emit a machine instruction to store a value Val of
244/// type VT. The address is either pre-computed, consisted of a base ptr, Ptr
245/// and a displacement offset, or a GlobalAddress,
Evan Cheng0de588f2008-09-05 21:00:03 +0000246/// i.e. V. Return true if it is possible.
247bool
Evan Chengf3d4efe2008-09-07 09:09:33 +0000248X86FastISel::X86FastEmitStore(MVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +0000249 const X86AddressMode &AM) {
Dan Gohman863890e2008-09-08 16:31:35 +0000250 // Get opcode and regclass of the output for the given store instruction.
Evan Cheng0de588f2008-09-05 21:00:03 +0000251 unsigned Opc = 0;
Evan Cheng0de588f2008-09-05 21:00:03 +0000252 switch (VT.getSimpleVT()) {
Chris Lattner241ab472008-10-15 05:38:32 +0000253 case MVT::f80: // No f80 support yet.
Evan Cheng0de588f2008-09-05 21:00:03 +0000254 default: return false;
Chris Lattner241ab472008-10-15 05:38:32 +0000255 case MVT::i8: Opc = X86::MOV8mr; break;
256 case MVT::i16: Opc = X86::MOV16mr; break;
257 case MVT::i32: Opc = X86::MOV32mr; break;
258 case MVT::i64: Opc = X86::MOV64mr; break; // Must be in x86-64 mode.
Evan Cheng0de588f2008-09-05 21:00:03 +0000259 case MVT::f32:
Chris Lattner438949a2008-10-15 05:30:52 +0000260 Opc = Subtarget->hasSSE1() ? X86::MOVSSmr : X86::ST_Fp32m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000261 break;
262 case MVT::f64:
Chris Lattner438949a2008-10-15 05:30:52 +0000263 Opc = Subtarget->hasSSE2() ? X86::MOVSDmr : X86::ST_Fp64m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000264 break;
Evan Cheng0de588f2008-09-05 21:00:03 +0000265 }
Chris Lattner438949a2008-10-15 05:30:52 +0000266
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000267 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM).addReg(Val);
Evan Cheng0de588f2008-09-05 21:00:03 +0000268 return true;
269}
270
Chris Lattner438949a2008-10-15 05:30:52 +0000271bool X86FastISel::X86FastEmitStore(MVT VT, Value *Val,
272 const X86AddressMode &AM) {
273 // Handle 'null' like i32/i64 0.
274 if (isa<ConstantPointerNull>(Val))
275 Val = Constant::getNullValue(TD.getIntPtrType());
276
277 // If this is a store of a simple constant, fold the constant into the store.
278 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
279 unsigned Opc = 0;
280 switch (VT.getSimpleVT()) {
281 default: break;
282 case MVT::i8: Opc = X86::MOV8mi; break;
283 case MVT::i16: Opc = X86::MOV16mi; break;
284 case MVT::i32: Opc = X86::MOV32mi; break;
285 case MVT::i64:
286 // Must be a 32-bit sign extended value.
287 if ((int)CI->getSExtValue() == CI->getSExtValue())
288 Opc = X86::MOV64mi32;
289 break;
290 }
291
292 if (Opc) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000293 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM)
294 .addImm(CI->getSExtValue());
Chris Lattner438949a2008-10-15 05:30:52 +0000295 return true;
296 }
297 }
298
299 unsigned ValReg = getRegForValue(Val);
300 if (ValReg == 0)
Chris Lattner438949a2008-10-15 05:30:52 +0000301 return false;
302
303 return X86FastEmitStore(VT, ValReg, AM);
304}
305
Evan Cheng24e3a902008-09-08 06:35:17 +0000306/// X86FastEmitExtend - Emit a machine instruction to extend a value Src of
307/// type SrcVT to type DstVT using the specified extension opcode Opc (e.g.
308/// ISD::SIGN_EXTEND).
309bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT,
310 unsigned Src, MVT SrcVT,
311 unsigned &ResultReg) {
Owen Andersonac34a002008-09-11 19:44:55 +0000312 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, Src);
313
314 if (RR != 0) {
315 ResultReg = RR;
316 return true;
317 } else
318 return false;
Evan Cheng24e3a902008-09-08 06:35:17 +0000319}
320
Dan Gohman0586d912008-09-10 20:11:02 +0000321/// X86SelectAddress - Attempt to fill in an address from the given value.
322///
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000323bool X86FastISel::X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall) {
Dan Gohman35893082008-09-18 23:23:44 +0000324 User *U;
325 unsigned Opcode = Instruction::UserOp1;
326 if (Instruction *I = dyn_cast<Instruction>(V)) {
327 Opcode = I->getOpcode();
328 U = I;
329 } else if (ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
330 Opcode = C->getOpcode();
331 U = C;
332 }
Dan Gohman0586d912008-09-10 20:11:02 +0000333
Dan Gohman35893082008-09-18 23:23:44 +0000334 switch (Opcode) {
335 default: break;
336 case Instruction::BitCast:
337 // Look past bitcasts.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000338 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman35893082008-09-18 23:23:44 +0000339
340 case Instruction::IntToPtr:
341 // Look past no-op inttoptrs.
342 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000343 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000344 break;
Dan Gohman35893082008-09-18 23:23:44 +0000345
346 case Instruction::PtrToInt:
347 // Look past no-op ptrtoints.
348 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000349 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000350 break;
Dan Gohman35893082008-09-18 23:23:44 +0000351
352 case Instruction::Alloca: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000353 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000354 // Do static allocas.
355 const AllocaInst *A = cast<AllocaInst>(V);
Dan Gohman0586d912008-09-10 20:11:02 +0000356 DenseMap<const AllocaInst*, int>::iterator SI = StaticAllocaMap.find(A);
Dan Gohman97135e12008-09-26 19:15:30 +0000357 if (SI != StaticAllocaMap.end()) {
358 AM.BaseType = X86AddressMode::FrameIndexBase;
359 AM.Base.FrameIndex = SI->second;
360 return true;
361 }
362 break;
Dan Gohman35893082008-09-18 23:23:44 +0000363 }
364
365 case Instruction::Add: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000366 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000367 // Adds of constants are common and easy enough.
368 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman09aae462008-09-26 20:04:15 +0000369 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
370 // They have to fit in the 32-bit signed displacement field though.
371 if (isInt32(Disp)) {
372 AM.Disp = (uint32_t)Disp;
373 return X86SelectAddress(U->getOperand(0), AM, isCall);
374 }
Dan Gohman0586d912008-09-10 20:11:02 +0000375 }
Dan Gohman35893082008-09-18 23:23:44 +0000376 break;
377 }
378
379 case Instruction::GetElementPtr: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000380 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000381 // Pattern-match simple GEPs.
Dan Gohman09aae462008-09-26 20:04:15 +0000382 uint64_t Disp = (int32_t)AM.Disp;
Dan Gohman35893082008-09-18 23:23:44 +0000383 unsigned IndexReg = AM.IndexReg;
384 unsigned Scale = AM.Scale;
385 gep_type_iterator GTI = gep_type_begin(U);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000386 // Iterate through the indices, folding what we can. Constants can be
387 // folded, and one dynamic index can be handled, if the scale is supported.
Dan Gohman35893082008-09-18 23:23:44 +0000388 for (User::op_iterator i = U->op_begin() + 1, e = U->op_end();
389 i != e; ++i, ++GTI) {
390 Value *Op = *i;
391 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
392 const StructLayout *SL = TD.getStructLayout(STy);
393 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
394 Disp += SL->getElementOffset(Idx);
395 } else {
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000396 uint64_t S = TD.getTypePaddedSize(GTI.getIndexedType());
Dan Gohman35893082008-09-18 23:23:44 +0000397 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
398 // Constant-offset addressing.
Dan Gohman09aae462008-09-26 20:04:15 +0000399 Disp += CI->getSExtValue() * S;
Dan Gohman35893082008-09-18 23:23:44 +0000400 } else if (IndexReg == 0 &&
Dan Gohman97135e12008-09-26 19:15:30 +0000401 (!AM.GV ||
402 !getTargetMachine()->symbolicAddressesAreRIPRel()) &&
Dan Gohman35893082008-09-18 23:23:44 +0000403 (S == 1 || S == 2 || S == 4 || S == 8)) {
404 // Scaled-index addressing.
405 Scale = S;
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000406 IndexReg = getRegForGEPIndex(Op);
Dan Gohman35893082008-09-18 23:23:44 +0000407 if (IndexReg == 0)
408 return false;
409 } else
410 // Unsupported.
411 goto unsupported_gep;
412 }
413 }
Dan Gohman09aae462008-09-26 20:04:15 +0000414 // Check for displacement overflow.
415 if (!isInt32(Disp))
416 break;
Dan Gohman35893082008-09-18 23:23:44 +0000417 // Ok, the GEP indices were covered by constant-offset and scaled-index
418 // addressing. Update the address state and move on to examining the base.
419 AM.IndexReg = IndexReg;
420 AM.Scale = Scale;
Dan Gohman09aae462008-09-26 20:04:15 +0000421 AM.Disp = (uint32_t)Disp;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000422 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman35893082008-09-18 23:23:44 +0000423 unsupported_gep:
424 // Ok, the GEP indices weren't all covered.
425 break;
426 }
427 }
428
429 // Handle constant address.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000430 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000431 // Can't handle alternate code models yet.
432 if (TM.getCodeModel() != CodeModel::Default &&
433 TM.getCodeModel() != CodeModel::Small)
434 return false;
435
Dan Gohman97135e12008-09-26 19:15:30 +0000436 // RIP-relative addresses can't have additional register operands.
437 if (getTargetMachine()->symbolicAddressesAreRIPRel() &&
438 (AM.Base.Reg != 0 || AM.IndexReg != 0))
439 return false;
440
Dan Gohmane9865942009-02-23 22:03:08 +0000441 // Can't handle TLS yet.
442 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
443 if (GVar->isThreadLocal())
444 return false;
445
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000446 // Set up the basic address.
447 AM.GV = GV;
448 if (!isCall &&
449 TM.getRelocationModel() == Reloc::PIC_ &&
450 !Subtarget->is64Bit())
Dan Gohman57c3dac2008-09-30 00:58:23 +0000451 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000452
453 // Emit an extra load if the ABI requires it.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000454 if (Subtarget->GVRequiresExtraLoad(GV, TM, isCall)) {
455 // Check to see if we've already materialized this
456 // value in a register in this block.
Dan Gohman7e8ef602008-09-19 23:42:04 +0000457 if (unsigned Reg = LocalValueMap[V]) {
458 AM.Base.Reg = Reg;
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000459 AM.GV = 0;
Dan Gohman7e8ef602008-09-19 23:42:04 +0000460 return true;
461 }
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000462 // Issue load from stub if necessary.
463 unsigned Opc = 0;
464 const TargetRegisterClass *RC = NULL;
465 if (TLI.getPointerTy() == MVT::i32) {
466 Opc = X86::MOV32rm;
467 RC = X86::GR32RegisterClass;
468 } else {
469 Opc = X86::MOV64rm;
470 RC = X86::GR64RegisterClass;
471 }
Dan Gohman789ce772008-09-25 23:34:02 +0000472
473 X86AddressMode StubAM;
474 StubAM.Base.Reg = AM.Base.Reg;
475 StubAM.GV = AM.GV;
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000476 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000477 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), StubAM);
Dan Gohman789ce772008-09-25 23:34:02 +0000478
479 // Now construct the final address. Note that the Disp, Scale,
480 // and Index values may already be set here.
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000481 AM.Base.Reg = ResultReg;
482 AM.GV = 0;
Dan Gohman789ce772008-09-25 23:34:02 +0000483
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000484 // Prevent loading GV stub multiple times in same MBB.
485 LocalValueMap[V] = AM.Base.Reg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000486 }
487 return true;
Dan Gohman0586d912008-09-10 20:11:02 +0000488 }
489
Dan Gohman97135e12008-09-26 19:15:30 +0000490 // If all else fails, try to materialize the value in a register.
Dan Gohman7962e852008-09-29 21:13:15 +0000491 if (!AM.GV || !getTargetMachine()->symbolicAddressesAreRIPRel()) {
Dan Gohman97135e12008-09-26 19:15:30 +0000492 if (AM.Base.Reg == 0) {
493 AM.Base.Reg = getRegForValue(V);
494 return AM.Base.Reg != 0;
495 }
496 if (AM.IndexReg == 0) {
497 assert(AM.Scale == 1 && "Scale with no index!");
498 AM.IndexReg = getRegForValue(V);
499 return AM.IndexReg != 0;
500 }
501 }
502
503 return false;
Dan Gohman0586d912008-09-10 20:11:02 +0000504}
505
Owen Andersona3971df2008-09-04 07:08:58 +0000506/// X86SelectStore - Select and emit code to implement store instructions.
507bool X86FastISel::X86SelectStore(Instruction* I) {
Evan Cheng24e3a902008-09-08 06:35:17 +0000508 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000509 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Owen Andersona3971df2008-09-04 07:08:58 +0000510 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000511
Dan Gohman0586d912008-09-10 20:11:02 +0000512 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000513 if (!X86SelectAddress(I->getOperand(1), AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +0000514 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000515
Chris Lattner438949a2008-10-15 05:30:52 +0000516 return X86FastEmitStore(VT, I->getOperand(0), AM);
Owen Andersona3971df2008-09-04 07:08:58 +0000517}
518
Evan Cheng8b19e562008-09-03 06:44:39 +0000519/// X86SelectLoad - Select and emit code to implement load instructions.
520///
Dan Gohman3df24e62008-09-03 23:12:08 +0000521bool X86FastISel::X86SelectLoad(Instruction *I) {
Evan Chengf3d4efe2008-09-07 09:09:33 +0000522 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000523 if (!isTypeLegal(I->getType(), VT))
Evan Cheng8b19e562008-09-03 06:44:39 +0000524 return false;
525
Dan Gohman0586d912008-09-10 20:11:02 +0000526 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000527 if (!X86SelectAddress(I->getOperand(0), AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +0000528 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000529
Evan Cheng0de588f2008-09-05 21:00:03 +0000530 unsigned ResultReg = 0;
Dan Gohman0586d912008-09-10 20:11:02 +0000531 if (X86FastEmitLoad(VT, AM, ResultReg)) {
Evan Cheng0de588f2008-09-05 21:00:03 +0000532 UpdateValueMap(I, ResultReg);
533 return true;
Evan Cheng8b19e562008-09-03 06:44:39 +0000534 }
Evan Cheng0de588f2008-09-05 21:00:03 +0000535 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000536}
537
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000538static unsigned X86ChooseCmpOpcode(MVT VT) {
Dan Gohmand98d6202008-10-02 22:15:21 +0000539 switch (VT.getSimpleVT()) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000540 default: return 0;
541 case MVT::i8: return X86::CMP8rr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000542 case MVT::i16: return X86::CMP16rr;
543 case MVT::i32: return X86::CMP32rr;
544 case MVT::i64: return X86::CMP64rr;
545 case MVT::f32: return X86::UCOMISSrr;
546 case MVT::f64: return X86::UCOMISDrr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000547 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000548}
549
Chris Lattner0e13c782008-10-15 04:13:29 +0000550/// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS
551/// of the comparison, return an opcode that works for the compare (e.g.
552/// CMP32ri) otherwise return 0.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000553static unsigned X86ChooseCmpImmediateOpcode(MVT VT, ConstantInt *RHSC) {
554 switch (VT.getSimpleVT()) {
Chris Lattner0e13c782008-10-15 04:13:29 +0000555 // Otherwise, we can't fold the immediate into this comparison.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000556 default: return 0;
557 case MVT::i8: return X86::CMP8ri;
558 case MVT::i16: return X86::CMP16ri;
559 case MVT::i32: return X86::CMP32ri;
560 case MVT::i64:
561 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
562 // field.
Chris Lattner438949a2008-10-15 05:30:52 +0000563 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
Chris Lattner45ac17f2008-10-15 04:32:45 +0000564 return X86::CMP64ri32;
565 return 0;
566 }
Chris Lattner0e13c782008-10-15 04:13:29 +0000567}
568
Chris Lattner9a08a612008-10-15 04:26:38 +0000569bool X86FastISel::X86FastEmitCompare(Value *Op0, Value *Op1, MVT VT) {
570 unsigned Op0Reg = getRegForValue(Op0);
571 if (Op0Reg == 0) return false;
572
Chris Lattnerd53886b2008-10-15 05:18:04 +0000573 // Handle 'null' like i32/i64 0.
574 if (isa<ConstantPointerNull>(Op1))
575 Op1 = Constant::getNullValue(TD.getIntPtrType());
576
Chris Lattner9a08a612008-10-15 04:26:38 +0000577 // We have two options: compare with register or immediate. If the RHS of
578 // the compare is an immediate that we can fold into this compare, use
579 // CMPri, otherwise use CMPrr.
580 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000581 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000582 BuildMI(MBB, DL, TII.get(CompareImmOpc)).addReg(Op0Reg)
Chris Lattner9a08a612008-10-15 04:26:38 +0000583 .addImm(Op1C->getSExtValue());
584 return true;
585 }
586 }
587
588 unsigned CompareOpc = X86ChooseCmpOpcode(VT);
589 if (CompareOpc == 0) return false;
590
591 unsigned Op1Reg = getRegForValue(Op1);
592 if (Op1Reg == 0) return false;
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000593 BuildMI(MBB, DL, TII.get(CompareOpc)).addReg(Op0Reg).addReg(Op1Reg);
Chris Lattner9a08a612008-10-15 04:26:38 +0000594
595 return true;
596}
597
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000598bool X86FastISel::X86SelectCmp(Instruction *I) {
599 CmpInst *CI = cast<CmpInst>(I);
600
Dan Gohman9b66d732008-09-30 00:48:39 +0000601 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000602 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Dan Gohman4f22bb02008-09-05 01:33:56 +0000603 return false;
604
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000605 unsigned ResultReg = createResultReg(&X86::GR8RegClass);
Chris Lattner54aebde2008-10-15 03:47:17 +0000606 unsigned SetCCOpc;
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000607 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000608 switch (CI->getPredicate()) {
609 case CmpInst::FCMP_OEQ: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000610 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
611 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000612
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000613 unsigned EReg = createResultReg(&X86::GR8RegClass);
614 unsigned NPReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000615 BuildMI(MBB, DL, TII.get(X86::SETEr), EReg);
616 BuildMI(MBB, DL, TII.get(X86::SETNPr), NPReg);
617 BuildMI(MBB, DL,
618 TII.get(X86::AND8rr), ResultReg).addReg(NPReg).addReg(EReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000619 UpdateValueMap(I, ResultReg);
620 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000621 }
622 case CmpInst::FCMP_UNE: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000623 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
624 return false;
625
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000626 unsigned NEReg = createResultReg(&X86::GR8RegClass);
627 unsigned PReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000628 BuildMI(MBB, DL, TII.get(X86::SETNEr), NEReg);
629 BuildMI(MBB, DL, TII.get(X86::SETPr), PReg);
630 BuildMI(MBB, DL, TII.get(X86::OR8rr), ResultReg).addReg(PReg).addReg(NEReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000631 UpdateValueMap(I, ResultReg);
632 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000633 }
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000634 case CmpInst::FCMP_OGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
635 case CmpInst::FCMP_OGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
636 case CmpInst::FCMP_OLT: SwapArgs = true; SetCCOpc = X86::SETAr; break;
637 case CmpInst::FCMP_OLE: SwapArgs = true; SetCCOpc = X86::SETAEr; break;
638 case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
639 case CmpInst::FCMP_ORD: SwapArgs = false; SetCCOpc = X86::SETNPr; break;
640 case CmpInst::FCMP_UNO: SwapArgs = false; SetCCOpc = X86::SETPr; break;
641 case CmpInst::FCMP_UEQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
642 case CmpInst::FCMP_UGT: SwapArgs = true; SetCCOpc = X86::SETBr; break;
643 case CmpInst::FCMP_UGE: SwapArgs = true; SetCCOpc = X86::SETBEr; break;
644 case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
645 case CmpInst::FCMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
646
647 case CmpInst::ICMP_EQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
648 case CmpInst::ICMP_NE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
649 case CmpInst::ICMP_UGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
650 case CmpInst::ICMP_UGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
651 case CmpInst::ICMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
652 case CmpInst::ICMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
653 case CmpInst::ICMP_SGT: SwapArgs = false; SetCCOpc = X86::SETGr; break;
654 case CmpInst::ICMP_SGE: SwapArgs = false; SetCCOpc = X86::SETGEr; break;
655 case CmpInst::ICMP_SLT: SwapArgs = false; SetCCOpc = X86::SETLr; break;
656 case CmpInst::ICMP_SLE: SwapArgs = false; SetCCOpc = X86::SETLEr; break;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000657 default:
658 return false;
659 }
660
Chris Lattner9a08a612008-10-15 04:26:38 +0000661 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000662 if (SwapArgs)
Chris Lattner9a08a612008-10-15 04:26:38 +0000663 std::swap(Op0, Op1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000664
Chris Lattner9a08a612008-10-15 04:26:38 +0000665 // Emit a compare of Op0/Op1.
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000666 if (!X86FastEmitCompare(Op0, Op1, VT))
667 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000668
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000669 BuildMI(MBB, DL, TII.get(SetCCOpc), ResultReg);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000670 UpdateValueMap(I, ResultReg);
671 return true;
672}
Evan Cheng8b19e562008-09-03 06:44:39 +0000673
Dan Gohmand89ae992008-09-05 01:06:14 +0000674bool X86FastISel::X86SelectZExt(Instruction *I) {
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000675 // Handle zero-extension from i1 to i8, which is common.
Dan Gohmand89ae992008-09-05 01:06:14 +0000676 if (I->getType() == Type::Int8Ty &&
677 I->getOperand(0)->getType() == Type::Int1Ty) {
678 unsigned ResultReg = getRegForValue(I->getOperand(0));
Dan Gohmanf52550b2008-09-05 01:15:35 +0000679 if (ResultReg == 0) return false;
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000680 // Set the high bits to zero.
681 ResultReg = FastEmitZExtFromI1(MVT::i8, ResultReg);
682 if (ResultReg == 0) return false;
Dan Gohmand89ae992008-09-05 01:06:14 +0000683 UpdateValueMap(I, ResultReg);
684 return true;
685 }
686
687 return false;
688}
689
Chris Lattner9a08a612008-10-15 04:26:38 +0000690
Dan Gohmand89ae992008-09-05 01:06:14 +0000691bool X86FastISel::X86SelectBranch(Instruction *I) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000692 // Unconditional branches are selected by tablegen-generated code.
Dan Gohmand98d6202008-10-02 22:15:21 +0000693 // Handle a conditional branch.
694 BranchInst *BI = cast<BranchInst>(I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000695 MachineBasicBlock *TrueMBB = MBBMap[BI->getSuccessor(0)];
696 MachineBasicBlock *FalseMBB = MBBMap[BI->getSuccessor(1)];
697
Dan Gohmand98d6202008-10-02 22:15:21 +0000698 // Fold the common case of a conditional branch with a comparison.
699 if (CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
700 if (CI->hasOneUse()) {
701 MVT VT = TLI.getValueType(CI->getOperand(0)->getType());
Dan Gohmand89ae992008-09-05 01:06:14 +0000702
Dan Gohmand98d6202008-10-02 22:15:21 +0000703 // Try to take advantage of fallthrough opportunities.
704 CmpInst::Predicate Predicate = CI->getPredicate();
705 if (MBB->isLayoutSuccessor(TrueMBB)) {
706 std::swap(TrueMBB, FalseMBB);
707 Predicate = CmpInst::getInversePredicate(Predicate);
708 }
709
Chris Lattner871d2462008-10-15 03:58:05 +0000710 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
711 unsigned BranchOpc; // Opcode to jump on, e.g. "X86::JA"
712
Dan Gohmand98d6202008-10-02 22:15:21 +0000713 switch (Predicate) {
Dan Gohman7b66e042008-10-21 18:24:51 +0000714 case CmpInst::FCMP_OEQ:
715 std::swap(TrueMBB, FalseMBB);
716 Predicate = CmpInst::FCMP_UNE;
717 // FALL THROUGH
718 case CmpInst::FCMP_UNE: SwapArgs = false; BranchOpc = X86::JNE; break;
Chris Lattner871d2462008-10-15 03:58:05 +0000719 case CmpInst::FCMP_OGT: SwapArgs = false; BranchOpc = X86::JA; break;
720 case CmpInst::FCMP_OGE: SwapArgs = false; BranchOpc = X86::JAE; break;
721 case CmpInst::FCMP_OLT: SwapArgs = true; BranchOpc = X86::JA; break;
722 case CmpInst::FCMP_OLE: SwapArgs = true; BranchOpc = X86::JAE; break;
723 case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE; break;
724 case CmpInst::FCMP_ORD: SwapArgs = false; BranchOpc = X86::JNP; break;
725 case CmpInst::FCMP_UNO: SwapArgs = false; BranchOpc = X86::JP; break;
726 case CmpInst::FCMP_UEQ: SwapArgs = false; BranchOpc = X86::JE; break;
727 case CmpInst::FCMP_UGT: SwapArgs = true; BranchOpc = X86::JB; break;
728 case CmpInst::FCMP_UGE: SwapArgs = true; BranchOpc = X86::JBE; break;
729 case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break;
730 case CmpInst::FCMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break;
Chris Lattner9a08a612008-10-15 04:26:38 +0000731
Chris Lattner871d2462008-10-15 03:58:05 +0000732 case CmpInst::ICMP_EQ: SwapArgs = false; BranchOpc = X86::JE; break;
733 case CmpInst::ICMP_NE: SwapArgs = false; BranchOpc = X86::JNE; break;
734 case CmpInst::ICMP_UGT: SwapArgs = false; BranchOpc = X86::JA; break;
735 case CmpInst::ICMP_UGE: SwapArgs = false; BranchOpc = X86::JAE; break;
736 case CmpInst::ICMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break;
737 case CmpInst::ICMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break;
738 case CmpInst::ICMP_SGT: SwapArgs = false; BranchOpc = X86::JG; break;
739 case CmpInst::ICMP_SGE: SwapArgs = false; BranchOpc = X86::JGE; break;
740 case CmpInst::ICMP_SLT: SwapArgs = false; BranchOpc = X86::JL; break;
741 case CmpInst::ICMP_SLE: SwapArgs = false; BranchOpc = X86::JLE; break;
Dan Gohmand98d6202008-10-02 22:15:21 +0000742 default:
743 return false;
744 }
Chris Lattner54aebde2008-10-15 03:47:17 +0000745
Chris Lattner709d8292008-10-15 04:02:26 +0000746 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
747 if (SwapArgs)
748 std::swap(Op0, Op1);
749
Chris Lattner9a08a612008-10-15 04:26:38 +0000750 // Emit a compare of the LHS and RHS, setting the flags.
751 if (!X86FastEmitCompare(Op0, Op1, VT))
752 return false;
Chris Lattner0e13c782008-10-15 04:13:29 +0000753
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000754 BuildMI(MBB, DL, TII.get(BranchOpc)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000755
756 if (Predicate == CmpInst::FCMP_UNE) {
757 // X86 requires a second branch to handle UNE (and OEQ,
758 // which is mapped to UNE above).
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000759 BuildMI(MBB, DL, TII.get(X86::JP)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000760 }
761
Dan Gohmand98d6202008-10-02 22:15:21 +0000762 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000763 MBB->addSuccessor(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000764 return true;
765 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000766 } else if (ExtractValueInst *EI =
767 dyn_cast<ExtractValueInst>(BI->getCondition())) {
768 // Check to see if the branch instruction is from an "arithmetic with
769 // overflow" intrinsic. The main way these intrinsics are used is:
770 //
771 // %t = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2)
772 // %sum = extractvalue { i32, i1 } %t, 0
773 // %obit = extractvalue { i32, i1 } %t, 1
774 // br i1 %obit, label %overflow, label %normal
775 //
Dan Gohman653456c2009-01-07 00:15:08 +0000776 // The %sum and %obit are converted in an ADD and a SETO/SETB before
Bill Wendling30a64a72008-12-09 23:19:12 +0000777 // reaching the branch. Therefore, we search backwards through the MBB
Dan Gohman653456c2009-01-07 00:15:08 +0000778 // looking for the SETO/SETB instruction. If an instruction modifies the
779 // EFLAGS register before we reach the SETO/SETB instruction, then we can't
780 // convert the branch into a JO/JB instruction.
Chris Lattnera9a42252009-04-12 07:36:01 +0000781 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(EI->getAggregateOperand())){
782 if (CI->getIntrinsicID() == Intrinsic::sadd_with_overflow ||
783 CI->getIntrinsicID() == Intrinsic::uadd_with_overflow) {
784 const MachineInstr *SetMI = 0;
785 unsigned Reg = lookUpRegForValue(EI);
Bill Wendling30a64a72008-12-09 23:19:12 +0000786
Chris Lattnera9a42252009-04-12 07:36:01 +0000787 for (MachineBasicBlock::const_reverse_iterator
788 RI = MBB->rbegin(), RE = MBB->rend(); RI != RE; ++RI) {
789 const MachineInstr &MI = *RI;
Bill Wendling30a64a72008-12-09 23:19:12 +0000790
Chris Lattnera9a42252009-04-12 07:36:01 +0000791 if (MI.modifiesRegister(Reg)) {
792 unsigned Src, Dst, SrcSR, DstSR;
Bill Wendling30a64a72008-12-09 23:19:12 +0000793
Chris Lattnera9a42252009-04-12 07:36:01 +0000794 if (getInstrInfo()->isMoveInstr(MI, Src, Dst, SrcSR, DstSR)) {
795 Reg = Src;
796 continue;
Bill Wendling9a901322008-12-10 19:44:24 +0000797 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000798
Chris Lattnera9a42252009-04-12 07:36:01 +0000799 SetMI = &MI;
800 break;
Bill Wendling30a64a72008-12-09 23:19:12 +0000801 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000802
Chris Lattnera9a42252009-04-12 07:36:01 +0000803 const TargetInstrDesc &TID = MI.getDesc();
804 if (TID.hasUnmodeledSideEffects() ||
805 TID.hasImplicitDefOfPhysReg(X86::EFLAGS))
806 break;
Bill Wendling9a901322008-12-10 19:44:24 +0000807 }
Chris Lattnera9a42252009-04-12 07:36:01 +0000808
809 if (SetMI) {
810 unsigned OpCode = SetMI->getOpcode();
811
812 if (OpCode == X86::SETOr || OpCode == X86::SETBr) {
Chris Lattner8d57b772009-04-12 07:51:14 +0000813 BuildMI(MBB, DL, TII.get(OpCode == X86::SETOr ? X86::JO : X86::JB))
814 .addMBB(TrueMBB);
Chris Lattnera9a42252009-04-12 07:36:01 +0000815 FastEmitBranch(FalseMBB);
816 MBB->addSuccessor(TrueMBB);
817 return true;
818 }
Bill Wendling9a901322008-12-10 19:44:24 +0000819 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000820 }
821 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000822 }
823
824 // Otherwise do a clumsy setcc and re-test it.
825 unsigned OpReg = getRegForValue(BI->getCondition());
826 if (OpReg == 0) return false;
827
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000828 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(OpReg).addReg(OpReg);
829 BuildMI(MBB, DL, TII.get(X86::JNE)).addMBB(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000830 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000831 MBB->addSuccessor(TrueMBB);
Dan Gohmand89ae992008-09-05 01:06:14 +0000832 return true;
833}
834
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000835bool X86FastISel::X86SelectShift(Instruction *I) {
Chris Lattner743922e2008-09-21 21:44:29 +0000836 unsigned CReg = 0, OpReg = 0, OpImm = 0;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000837 const TargetRegisterClass *RC = NULL;
838 if (I->getType() == Type::Int8Ty) {
839 CReg = X86::CL;
840 RC = &X86::GR8RegClass;
841 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000842 case Instruction::LShr: OpReg = X86::SHR8rCL; OpImm = X86::SHR8ri; break;
843 case Instruction::AShr: OpReg = X86::SAR8rCL; OpImm = X86::SAR8ri; break;
844 case Instruction::Shl: OpReg = X86::SHL8rCL; OpImm = X86::SHL8ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000845 default: return false;
846 }
847 } else if (I->getType() == Type::Int16Ty) {
848 CReg = X86::CX;
849 RC = &X86::GR16RegClass;
850 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000851 case Instruction::LShr: OpReg = X86::SHR16rCL; OpImm = X86::SHR16ri; break;
852 case Instruction::AShr: OpReg = X86::SAR16rCL; OpImm = X86::SAR16ri; break;
853 case Instruction::Shl: OpReg = X86::SHL16rCL; OpImm = X86::SHL16ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000854 default: return false;
855 }
856 } else if (I->getType() == Type::Int32Ty) {
857 CReg = X86::ECX;
858 RC = &X86::GR32RegClass;
859 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000860 case Instruction::LShr: OpReg = X86::SHR32rCL; OpImm = X86::SHR32ri; break;
861 case Instruction::AShr: OpReg = X86::SAR32rCL; OpImm = X86::SAR32ri; break;
862 case Instruction::Shl: OpReg = X86::SHL32rCL; OpImm = X86::SHL32ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000863 default: return false;
864 }
865 } else if (I->getType() == Type::Int64Ty) {
866 CReg = X86::RCX;
867 RC = &X86::GR64RegClass;
868 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000869 case Instruction::LShr: OpReg = X86::SHR64rCL; OpImm = X86::SHR64ri; break;
870 case Instruction::AShr: OpReg = X86::SAR64rCL; OpImm = X86::SAR64ri; break;
871 case Instruction::Shl: OpReg = X86::SHL64rCL; OpImm = X86::SHL64ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000872 default: return false;
873 }
874 } else {
875 return false;
876 }
877
Chris Lattner160f6cc2008-10-15 05:07:36 +0000878 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
879 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Dan Gohmanf58cb6d2008-09-05 21:27:34 +0000880 return false;
881
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000882 unsigned Op0Reg = getRegForValue(I->getOperand(0));
883 if (Op0Reg == 0) return false;
Chris Lattner743922e2008-09-21 21:44:29 +0000884
885 // Fold immediate in shl(x,3).
886 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
887 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000888 BuildMI(MBB, DL, TII.get(OpImm),
Dan Gohmanb12b1a22008-12-20 17:19:40 +0000889 ResultReg).addReg(Op0Reg).addImm(CI->getZExtValue() & 0xff);
Chris Lattner743922e2008-09-21 21:44:29 +0000890 UpdateValueMap(I, ResultReg);
891 return true;
892 }
893
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000894 unsigned Op1Reg = getRegForValue(I->getOperand(1));
895 if (Op1Reg == 0) return false;
896 TII.copyRegToReg(*MBB, MBB->end(), CReg, Op1Reg, RC, RC);
Dan Gohman145b8282008-10-07 21:50:36 +0000897
898 // The shift instruction uses X86::CL. If we defined a super-register
899 // of X86::CL, emit an EXTRACT_SUBREG to precisely describe what
900 // we're doing here.
901 if (CReg != X86::CL)
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000902 BuildMI(MBB, DL, TII.get(TargetInstrInfo::EXTRACT_SUBREG), X86::CL)
Dan Gohman145b8282008-10-07 21:50:36 +0000903 .addReg(CReg).addImm(X86::SUBREG_8BIT);
904
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000905 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000906 BuildMI(MBB, DL, TII.get(OpReg), ResultReg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000907 UpdateValueMap(I, ResultReg);
908 return true;
909}
910
911bool X86FastISel::X86SelectSelect(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +0000912 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
913 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
914 return false;
915
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000916 unsigned Opc = 0;
917 const TargetRegisterClass *RC = NULL;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000918 if (VT.getSimpleVT() == MVT::i16) {
Dan Gohman31d26912008-09-05 21:13:04 +0000919 Opc = X86::CMOVE16rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000920 RC = &X86::GR16RegClass;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000921 } else if (VT.getSimpleVT() == MVT::i32) {
Dan Gohman31d26912008-09-05 21:13:04 +0000922 Opc = X86::CMOVE32rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000923 RC = &X86::GR32RegClass;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000924 } else if (VT.getSimpleVT() == MVT::i64) {
Dan Gohman31d26912008-09-05 21:13:04 +0000925 Opc = X86::CMOVE64rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000926 RC = &X86::GR64RegClass;
927 } else {
928 return false;
929 }
930
931 unsigned Op0Reg = getRegForValue(I->getOperand(0));
932 if (Op0Reg == 0) return false;
933 unsigned Op1Reg = getRegForValue(I->getOperand(1));
934 if (Op1Reg == 0) return false;
935 unsigned Op2Reg = getRegForValue(I->getOperand(2));
936 if (Op2Reg == 0) return false;
937
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000938 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(Op0Reg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000939 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000940 BuildMI(MBB, DL, TII.get(Opc), ResultReg).addReg(Op1Reg).addReg(Op2Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000941 UpdateValueMap(I, ResultReg);
942 return true;
943}
944
Dan Gohman78efce62008-09-10 21:02:08 +0000945bool X86FastISel::X86SelectFPExt(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +0000946 // fpext from float to double.
947 if (Subtarget->hasSSE2() && I->getType() == Type::DoubleTy) {
948 Value *V = I->getOperand(0);
949 if (V->getType() == Type::FloatTy) {
950 unsigned OpReg = getRegForValue(V);
951 if (OpReg == 0) return false;
952 unsigned ResultReg = createResultReg(X86::FR64RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000953 BuildMI(MBB, DL, TII.get(X86::CVTSS2SDrr), ResultReg).addReg(OpReg);
Chris Lattner160f6cc2008-10-15 05:07:36 +0000954 UpdateValueMap(I, ResultReg);
955 return true;
Dan Gohman78efce62008-09-10 21:02:08 +0000956 }
957 }
958
959 return false;
960}
961
962bool X86FastISel::X86SelectFPTrunc(Instruction *I) {
963 if (Subtarget->hasSSE2()) {
964 if (I->getType() == Type::FloatTy) {
965 Value *V = I->getOperand(0);
966 if (V->getType() == Type::DoubleTy) {
967 unsigned OpReg = getRegForValue(V);
968 if (OpReg == 0) return false;
969 unsigned ResultReg = createResultReg(X86::FR32RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000970 BuildMI(MBB, DL, TII.get(X86::CVTSD2SSrr), ResultReg).addReg(OpReg);
Dan Gohman78efce62008-09-10 21:02:08 +0000971 UpdateValueMap(I, ResultReg);
972 return true;
973 }
974 }
975 }
976
977 return false;
978}
979
Evan Cheng10a8d9c2008-09-07 08:47:42 +0000980bool X86FastISel::X86SelectTrunc(Instruction *I) {
981 if (Subtarget->is64Bit())
982 // All other cases should be handled by the tblgen generated code.
983 return false;
984 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
985 MVT DstVT = TLI.getValueType(I->getType());
Chris Lattner44ceb8a2009-03-13 16:36:42 +0000986
987 // This code only handles truncation to byte right now.
988 if (DstVT != MVT::i8 && DstVT != MVT::i1)
Evan Cheng10a8d9c2008-09-07 08:47:42 +0000989 // All other cases should be handled by the tblgen generated code.
990 return false;
991 if (SrcVT != MVT::i16 && SrcVT != MVT::i32)
992 // All other cases should be handled by the tblgen generated code.
993 return false;
994
995 unsigned InputReg = getRegForValue(I->getOperand(0));
996 if (!InputReg)
997 // Unhandled operand. Halt "fast" selection and bail.
998 return false;
999
Dan Gohman62417622009-04-27 16:33:14 +00001000 // First issue a copy to GR16_ABCD or GR32_ABCD.
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001001 unsigned CopyOpc = (SrcVT == MVT::i16) ? X86::MOV16rr : X86::MOV32rr;
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001002 const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16)
Dan Gohman62417622009-04-27 16:33:14 +00001003 ? X86::GR16_ABCDRegisterClass : X86::GR32_ABCDRegisterClass;
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001004 unsigned CopyReg = createResultReg(CopyRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001005 BuildMI(MBB, DL, TII.get(CopyOpc), CopyReg).addReg(InputReg);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001006
1007 // Then issue an extract_subreg.
Chris Lattner44ceb8a2009-03-13 16:36:42 +00001008 unsigned ResultReg = FastEmitInst_extractsubreg(MVT::i8,
Evan Cheng536ab132009-01-22 09:10:11 +00001009 CopyReg, X86::SUBREG_8BIT);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001010 if (!ResultReg)
1011 return false;
1012
1013 UpdateValueMap(I, ResultReg);
1014 return true;
1015}
1016
Bill Wendling52370a12008-12-09 02:42:50 +00001017bool X86FastISel::X86SelectExtractValue(Instruction *I) {
1018 ExtractValueInst *EI = cast<ExtractValueInst>(I);
1019 Value *Agg = EI->getAggregateOperand();
1020
Chris Lattnera9a42252009-04-12 07:36:01 +00001021 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Agg)) {
1022 switch (CI->getIntrinsicID()) {
1023 default: break;
1024 case Intrinsic::sadd_with_overflow:
1025 case Intrinsic::uadd_with_overflow:
1026 // Cheat a little. We know that the registers for "add" and "seto" are
1027 // allocated sequentially. However, we only keep track of the register
1028 // for "add" in the value map. Use extractvalue's index to get the
1029 // correct register for "seto".
1030 UpdateValueMap(I, lookUpRegForValue(Agg) + *EI->idx_begin());
1031 return true;
Bill Wendling52370a12008-12-09 02:42:50 +00001032 }
1033 }
1034
1035 return false;
1036}
1037
Chris Lattnera9a42252009-04-12 07:36:01 +00001038bool X86FastISel::X86VisitIntrinsicCall(IntrinsicInst &I) {
Bill Wendling52370a12008-12-09 02:42:50 +00001039 // FIXME: Handle more intrinsics.
Chris Lattnera9a42252009-04-12 07:36:01 +00001040 switch (I.getIntrinsicID()) {
Bill Wendling52370a12008-12-09 02:42:50 +00001041 default: return false;
1042 case Intrinsic::sadd_with_overflow:
1043 case Intrinsic::uadd_with_overflow: {
Bill Wendlingc065b3f2008-12-09 07:55:31 +00001044 // Replace "add with overflow" intrinsics with an "add" instruction followed
1045 // by a seto/setc instruction. Later on, when the "extractvalue"
1046 // instructions are encountered, we use the fact that two registers were
1047 // created sequentially to get the correct registers for the "sum" and the
1048 // "overflow bit".
Bill Wendling52370a12008-12-09 02:42:50 +00001049 const Function *Callee = I.getCalledFunction();
1050 const Type *RetTy =
1051 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(unsigned(0));
1052
Chris Lattnera9a42252009-04-12 07:36:01 +00001053 MVT VT;
Bill Wendling52370a12008-12-09 02:42:50 +00001054 if (!isTypeLegal(RetTy, VT))
1055 return false;
1056
1057 Value *Op1 = I.getOperand(1);
1058 Value *Op2 = I.getOperand(2);
1059 unsigned Reg1 = getRegForValue(Op1);
1060 unsigned Reg2 = getRegForValue(Op2);
1061
1062 if (Reg1 == 0 || Reg2 == 0)
1063 // FIXME: Handle values *not* in registers.
1064 return false;
1065
1066 unsigned OpC = 0;
Bill Wendling52370a12008-12-09 02:42:50 +00001067 if (VT == MVT::i32)
1068 OpC = X86::ADD32rr;
1069 else if (VT == MVT::i64)
1070 OpC = X86::ADD64rr;
1071 else
1072 return false;
1073
1074 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001075 BuildMI(MBB, DL, TII.get(OpC), ResultReg).addReg(Reg1).addReg(Reg2);
Chris Lattner8d57b772009-04-12 07:51:14 +00001076 unsigned DestReg1 = UpdateValueMap(&I, ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001077
Chris Lattner8d57b772009-04-12 07:51:14 +00001078 // If the add with overflow is an intra-block value then we just want to
1079 // create temporaries for it like normal. If it is a cross-block value then
1080 // UpdateValueMap will return the cross-block register used. Since we
1081 // *really* want the value to be live in the register pair known by
1082 // UpdateValueMap, we have to use DestReg1+1 as the destination register in
1083 // the cross block case. In the non-cross-block case, we should just make
1084 // another register for the value.
1085 if (DestReg1 != ResultReg)
1086 ResultReg = DestReg1+1;
1087 else
1088 ResultReg = createResultReg(TLI.getRegClassFor(MVT::i8));
1089
Chris Lattnera9a42252009-04-12 07:36:01 +00001090 unsigned Opc = X86::SETBr;
1091 if (I.getIntrinsicID() == Intrinsic::sadd_with_overflow)
1092 Opc = X86::SETOr;
1093 BuildMI(MBB, DL, TII.get(Opc), ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001094 return true;
1095 }
1096 }
1097}
1098
Evan Chengf3d4efe2008-09-07 09:09:33 +00001099bool X86FastISel::X86SelectCall(Instruction *I) {
1100 CallInst *CI = cast<CallInst>(I);
1101 Value *Callee = I->getOperand(0);
1102
1103 // Can't handle inline asm yet.
1104 if (isa<InlineAsm>(Callee))
1105 return false;
1106
Bill Wendling52370a12008-12-09 02:42:50 +00001107 // Handle intrinsic calls.
Chris Lattnera9a42252009-04-12 07:36:01 +00001108 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI))
1109 return X86VisitIntrinsicCall(*II);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001110
Evan Chengf3d4efe2008-09-07 09:09:33 +00001111 // Handle only C and fastcc calling conventions for now.
1112 CallSite CS(CI);
1113 unsigned CC = CS.getCallingConv();
1114 if (CC != CallingConv::C &&
1115 CC != CallingConv::Fast &&
1116 CC != CallingConv::X86_FastCall)
1117 return false;
1118
Dan Gohman7d04e4a2009-05-04 19:50:33 +00001119 // On X86, -tailcallopt changes the fastcc ABI. FastISel doesn't
1120 // handle this for now.
1121 if (CC == CallingConv::Fast && PerformTailCallOpt)
1122 return false;
1123
Evan Chengf3d4efe2008-09-07 09:09:33 +00001124 // Let SDISel handle vararg functions.
1125 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1126 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
1127 if (FTy->isVarArg())
1128 return false;
1129
1130 // Handle *simple* calls for now.
1131 const Type *RetTy = CS.getType();
1132 MVT RetVT;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001133 if (RetTy == Type::VoidTy)
1134 RetVT = MVT::isVoid;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001135 else if (!isTypeLegal(RetTy, RetVT, true))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001136 return false;
1137
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001138 // Materialize callee address in a register. FIXME: GV address can be
1139 // handled with a CALLpcrel32 instead.
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001140 X86AddressMode CalleeAM;
1141 if (!X86SelectAddress(Callee, CalleeAM, true))
1142 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001143 unsigned CalleeOp = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001144 GlobalValue *GV = 0;
1145 if (CalleeAM.Base.Reg != 0) {
1146 assert(CalleeAM.GV == 0);
1147 CalleeOp = CalleeAM.Base.Reg;
1148 } else if (CalleeAM.GV != 0) {
1149 assert(CalleeAM.GV != 0);
1150 GV = CalleeAM.GV;
1151 } else
1152 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001153
Evan Chengdebdea02008-09-08 17:15:42 +00001154 // Allow calls which produce i1 results.
1155 bool AndToI1 = false;
1156 if (RetVT == MVT::i1) {
1157 RetVT = MVT::i8;
1158 AndToI1 = true;
1159 }
1160
Evan Chengf3d4efe2008-09-07 09:09:33 +00001161 // Deal with call operands first.
Chris Lattner241ab472008-10-15 05:38:32 +00001162 SmallVector<Value*, 8> ArgVals;
1163 SmallVector<unsigned, 8> Args;
1164 SmallVector<MVT, 8> ArgVTs;
1165 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001166 Args.reserve(CS.arg_size());
Chris Lattner241ab472008-10-15 05:38:32 +00001167 ArgVals.reserve(CS.arg_size());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001168 ArgVTs.reserve(CS.arg_size());
1169 ArgFlags.reserve(CS.arg_size());
1170 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1171 i != e; ++i) {
1172 unsigned Arg = getRegForValue(*i);
1173 if (Arg == 0)
1174 return false;
1175 ISD::ArgFlagsTy Flags;
1176 unsigned AttrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00001177 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001178 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00001179 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001180 Flags.setZExt();
1181
1182 // FIXME: Only handle *easy* calls for now.
Devang Patel05988662008-09-25 21:00:45 +00001183 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1184 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1185 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1186 CS.paramHasAttr(AttrInd, Attribute::ByVal))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001187 return false;
1188
1189 const Type *ArgTy = (*i)->getType();
1190 MVT ArgVT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001191 if (!isTypeLegal(ArgTy, ArgVT))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001192 return false;
1193 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1194 Flags.setOrigAlign(OriginalAlignment);
1195
1196 Args.push_back(Arg);
Chris Lattner241ab472008-10-15 05:38:32 +00001197 ArgVals.push_back(*i);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001198 ArgVTs.push_back(ArgVT);
1199 ArgFlags.push_back(Flags);
1200 }
1201
1202 // Analyze operands of the call, assigning locations to each operand.
1203 SmallVector<CCValAssign, 16> ArgLocs;
1204 CCState CCInfo(CC, false, TM, ArgLocs);
1205 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC));
1206
1207 // Get a count of how many bytes are to be pushed on the stack.
1208 unsigned NumBytes = CCInfo.getNextStackOffset();
1209
1210 // Issue CALLSEQ_START
Dan Gohman6d4b0522008-10-01 18:28:06 +00001211 unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001212 BuildMI(MBB, DL, TII.get(AdjStackDown)).addImm(NumBytes);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001213
Chris Lattner438949a2008-10-15 05:30:52 +00001214 // Process argument: walk the register/memloc assignments, inserting
Evan Chengf3d4efe2008-09-07 09:09:33 +00001215 // copies / loads.
1216 SmallVector<unsigned, 4> RegArgs;
1217 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1218 CCValAssign &VA = ArgLocs[i];
1219 unsigned Arg = Args[VA.getValNo()];
1220 MVT ArgVT = ArgVTs[VA.getValNo()];
1221
1222 // Promote the value if needed.
1223 switch (VA.getLocInfo()) {
1224 default: assert(0 && "Unknown loc info!");
1225 case CCValAssign::Full: break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001226 case CCValAssign::SExt: {
1227 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1228 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001229 assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001230 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001231 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001232 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001233 }
1234 case CCValAssign::ZExt: {
1235 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1236 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001237 assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001238 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001239 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001240 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001241 }
1242 case CCValAssign::AExt: {
1243 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1244 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001245 if (!Emitted)
1246 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
Chris Lattner160f6cc2008-10-15 05:07:36 +00001247 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001248 if (!Emitted)
1249 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1250 Arg, ArgVT, Arg);
1251
Chris Lattnera33649e2008-12-19 17:03:38 +00001252 assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted;
Evan Cheng24e3a902008-09-08 06:35:17 +00001253 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001254 break;
1255 }
Evan Cheng24e3a902008-09-08 06:35:17 +00001256 }
Evan Chengf3d4efe2008-09-07 09:09:33 +00001257
1258 if (VA.isRegLoc()) {
1259 TargetRegisterClass* RC = TLI.getRegClassFor(ArgVT);
1260 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), VA.getLocReg(),
1261 Arg, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001262 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001263 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001264 RegArgs.push_back(VA.getLocReg());
1265 } else {
1266 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman0586d912008-09-10 20:11:02 +00001267 X86AddressMode AM;
1268 AM.Base.Reg = StackPtr;
1269 AM.Disp = LocMemOffset;
Chris Lattner241ab472008-10-15 05:38:32 +00001270 Value *ArgVal = ArgVals[VA.getValNo()];
1271
1272 // If this is a really simple value, emit this with the Value* version of
1273 // X86FastEmitStore. If it isn't simple, we don't want to do this, as it
1274 // can cause us to reevaluate the argument.
1275 if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal))
1276 X86FastEmitStore(ArgVT, ArgVal, AM);
1277 else
1278 X86FastEmitStore(ArgVT, Arg, AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001279 }
1280 }
1281
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001282 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1283 // GOT pointer.
1284 if (!Subtarget->is64Bit() &&
1285 TM.getRelocationModel() == Reloc::PIC_ &&
1286 Subtarget->isPICStyleGOT()) {
1287 TargetRegisterClass *RC = X86::GR32RegisterClass;
Dan Gohman57c3dac2008-09-30 00:58:23 +00001288 unsigned Base = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001289 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), X86::EBX, Base, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001290 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001291 Emitted = true;
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001292 }
1293
Evan Chengf3d4efe2008-09-07 09:09:33 +00001294 // Issue the call.
1295 unsigned CallOpc = CalleeOp
1296 ? (Subtarget->is64Bit() ? X86::CALL64r : X86::CALL32r)
1297 : (Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32);
1298 MachineInstrBuilder MIB = CalleeOp
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001299 ? BuildMI(MBB, DL, TII.get(CallOpc)).addReg(CalleeOp)
1300 : BuildMI(MBB, DL, TII.get(CallOpc)).addGlobalAddress(GV);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001301
1302 // Add an implicit use GOT pointer in EBX.
1303 if (!Subtarget->is64Bit() &&
1304 TM.getRelocationModel() == Reloc::PIC_ &&
1305 Subtarget->isPICStyleGOT())
1306 MIB.addReg(X86::EBX);
1307
Evan Chengf3d4efe2008-09-07 09:09:33 +00001308 // Add implicit physical register uses to the call.
Dan Gohman8c3f8b62008-10-07 22:10:33 +00001309 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1310 MIB.addReg(RegArgs[i]);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001311
1312 // Issue CALLSEQ_END
Dan Gohman6d4b0522008-10-01 18:28:06 +00001313 unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001314 BuildMI(MBB, DL, TII.get(AdjStackUp)).addImm(NumBytes).addImm(0);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001315
1316 // Now handle call return value (if any).
Evan Chengf3d4efe2008-09-07 09:09:33 +00001317 if (RetVT.getSimpleVT() != MVT::isVoid) {
1318 SmallVector<CCValAssign, 16> RVLocs;
1319 CCState CCInfo(CC, false, TM, RVLocs);
1320 CCInfo.AnalyzeCallResult(RetVT, RetCC_X86);
1321
1322 // Copy all of the result registers out of their specified physreg.
1323 assert(RVLocs.size() == 1 && "Can't handle multi-value calls!");
1324 MVT CopyVT = RVLocs[0].getValVT();
1325 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
1326 TargetRegisterClass *SrcRC = DstRC;
1327
1328 // If this is a call to a function that returns an fp value on the x87 fp
1329 // stack, but where we prefer to use the value in xmm registers, copy it
1330 // out as F80 and use a truncate to move it from fp stack reg to xmm reg.
1331 if ((RVLocs[0].getLocReg() == X86::ST0 ||
1332 RVLocs[0].getLocReg() == X86::ST1) &&
1333 isScalarFPTypeInSSEReg(RVLocs[0].getValVT())) {
1334 CopyVT = MVT::f80;
1335 SrcRC = X86::RSTRegisterClass;
1336 DstRC = X86::RFP80RegisterClass;
1337 }
1338
1339 unsigned ResultReg = createResultReg(DstRC);
1340 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
1341 RVLocs[0].getLocReg(), DstRC, SrcRC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001342 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001343 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001344 if (CopyVT != RVLocs[0].getValVT()) {
1345 // Round the F80 the right size, which also moves to the appropriate xmm
1346 // register. This is accomplished by storing the F80 value in memory and
1347 // then loading it back. Ewww...
1348 MVT ResVT = RVLocs[0].getValVT();
1349 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
1350 unsigned MemSize = ResVT.getSizeInBits()/8;
Dan Gohman0586d912008-09-10 20:11:02 +00001351 int FI = MFI.CreateStackObject(MemSize, MemSize);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001352 addFrameReference(BuildMI(MBB, DL, TII.get(Opc)), FI).addReg(ResultReg);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001353 DstRC = ResVT == MVT::f32
1354 ? X86::FR32RegisterClass : X86::FR64RegisterClass;
1355 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
1356 ResultReg = createResultReg(DstRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001357 addFrameReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), FI);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001358 }
1359
Evan Chengdebdea02008-09-08 17:15:42 +00001360 if (AndToI1) {
1361 // Mask out all but lowest bit for some call which produces an i1.
1362 unsigned AndResult = createResultReg(X86::GR8RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001363 BuildMI(MBB, DL,
1364 TII.get(X86::AND8ri), AndResult).addReg(ResultReg).addImm(1);
Evan Chengdebdea02008-09-08 17:15:42 +00001365 ResultReg = AndResult;
1366 }
1367
Evan Chengf3d4efe2008-09-07 09:09:33 +00001368 UpdateValueMap(I, ResultReg);
1369 }
1370
1371 return true;
1372}
1373
1374
Dan Gohman99b21822008-08-28 23:21:34 +00001375bool
Dan Gohman3df24e62008-09-03 23:12:08 +00001376X86FastISel::TargetSelectInstruction(Instruction *I) {
Dan Gohman99b21822008-08-28 23:21:34 +00001377 switch (I->getOpcode()) {
1378 default: break;
Evan Cheng8b19e562008-09-03 06:44:39 +00001379 case Instruction::Load:
Dan Gohman3df24e62008-09-03 23:12:08 +00001380 return X86SelectLoad(I);
Owen Anderson79924eb2008-09-04 16:48:33 +00001381 case Instruction::Store:
1382 return X86SelectStore(I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +00001383 case Instruction::ICmp:
1384 case Instruction::FCmp:
1385 return X86SelectCmp(I);
Dan Gohmand89ae992008-09-05 01:06:14 +00001386 case Instruction::ZExt:
1387 return X86SelectZExt(I);
1388 case Instruction::Br:
1389 return X86SelectBranch(I);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001390 case Instruction::Call:
1391 return X86SelectCall(I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001392 case Instruction::LShr:
1393 case Instruction::AShr:
1394 case Instruction::Shl:
1395 return X86SelectShift(I);
1396 case Instruction::Select:
1397 return X86SelectSelect(I);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001398 case Instruction::Trunc:
1399 return X86SelectTrunc(I);
Dan Gohman78efce62008-09-10 21:02:08 +00001400 case Instruction::FPExt:
1401 return X86SelectFPExt(I);
1402 case Instruction::FPTrunc:
1403 return X86SelectFPTrunc(I);
Bill Wendling52370a12008-12-09 02:42:50 +00001404 case Instruction::ExtractValue:
1405 return X86SelectExtractValue(I);
Dan Gohman474d3b32009-03-13 23:53:06 +00001406 case Instruction::IntToPtr: // Deliberate fall-through.
1407 case Instruction::PtrToInt: {
1408 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1409 MVT DstVT = TLI.getValueType(I->getType());
1410 if (DstVT.bitsGT(SrcVT))
1411 return X86SelectZExt(I);
1412 if (DstVT.bitsLT(SrcVT))
1413 return X86SelectTrunc(I);
1414 unsigned Reg = getRegForValue(I->getOperand(0));
1415 if (Reg == 0) return false;
1416 UpdateValueMap(I, Reg);
1417 return true;
1418 }
Dan Gohman99b21822008-08-28 23:21:34 +00001419 }
1420
1421 return false;
1422}
1423
Dan Gohman0586d912008-09-10 20:11:02 +00001424unsigned X86FastISel::TargetMaterializeConstant(Constant *C) {
Evan Cheng59fbc802008-09-09 01:26:59 +00001425 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001426 if (!isTypeLegal(C->getType(), VT))
Owen Anderson95267a12008-09-05 00:06:23 +00001427 return false;
1428
1429 // Get opcode and regclass of the output for the given load instruction.
1430 unsigned Opc = 0;
1431 const TargetRegisterClass *RC = NULL;
1432 switch (VT.getSimpleVT()) {
1433 default: return false;
1434 case MVT::i8:
1435 Opc = X86::MOV8rm;
1436 RC = X86::GR8RegisterClass;
1437 break;
1438 case MVT::i16:
1439 Opc = X86::MOV16rm;
1440 RC = X86::GR16RegisterClass;
1441 break;
1442 case MVT::i32:
1443 Opc = X86::MOV32rm;
1444 RC = X86::GR32RegisterClass;
1445 break;
1446 case MVT::i64:
1447 // Must be in x86-64 mode.
1448 Opc = X86::MOV64rm;
1449 RC = X86::GR64RegisterClass;
1450 break;
1451 case MVT::f32:
1452 if (Subtarget->hasSSE1()) {
1453 Opc = X86::MOVSSrm;
1454 RC = X86::FR32RegisterClass;
1455 } else {
1456 Opc = X86::LD_Fp32m;
1457 RC = X86::RFP32RegisterClass;
1458 }
1459 break;
1460 case MVT::f64:
1461 if (Subtarget->hasSSE2()) {
1462 Opc = X86::MOVSDrm;
1463 RC = X86::FR64RegisterClass;
1464 } else {
1465 Opc = X86::LD_Fp64m;
1466 RC = X86::RFP64RegisterClass;
1467 }
1468 break;
1469 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +00001470 // No f80 support yet.
1471 return false;
Owen Anderson95267a12008-09-05 00:06:23 +00001472 }
1473
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001474 // Materialize addresses with LEA instructions.
Owen Anderson95267a12008-09-05 00:06:23 +00001475 if (isa<GlobalValue>(C)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001476 X86AddressMode AM;
1477 if (X86SelectAddress(C, AM, false)) {
1478 if (TLI.getPointerTy() == MVT::i32)
1479 Opc = X86::LEA32r;
1480 else
1481 Opc = X86::LEA64r;
1482 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001483 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Owen Anderson95267a12008-09-05 00:06:23 +00001484 return ResultReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001485 }
Evan Cheng0de588f2008-09-05 21:00:03 +00001486 return 0;
Owen Anderson95267a12008-09-05 00:06:23 +00001487 }
1488
Owen Anderson3b217c62008-09-06 01:11:01 +00001489 // MachineConstantPool wants an explicit alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +00001490 unsigned Align = TD.getPrefTypeAlignment(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001491 if (Align == 0) {
1492 // Alignment of vector types. FIXME!
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00001493 Align = TD.getTypePaddedSize(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001494 }
Owen Anderson95267a12008-09-05 00:06:23 +00001495
Dan Gohman5396c992008-09-30 01:21:32 +00001496 // x86-32 PIC requires a PIC base register for constant pools.
1497 unsigned PICBase = 0;
1498 if (TM.getRelocationModel() == Reloc::PIC_ &&
1499 !Subtarget->is64Bit())
1500 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1501
1502 // Create the load from the constant pool.
Dan Gohman0586d912008-09-10 20:11:02 +00001503 unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align);
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001504 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001505 addConstantPoolReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), MCPOffset,
Dan Gohman5396c992008-09-30 01:21:32 +00001506 PICBase);
1507
Owen Anderson95267a12008-09-05 00:06:23 +00001508 return ResultReg;
1509}
1510
Dan Gohman0586d912008-09-10 20:11:02 +00001511unsigned X86FastISel::TargetMaterializeAlloca(AllocaInst *C) {
Dan Gohman4e6ed5e2008-10-03 01:27:49 +00001512 // Fail on dynamic allocas. At this point, getRegForValue has already
1513 // checked its CSE maps, so if we're here trying to handle a dynamic
1514 // alloca, we're not going to succeed. X86SelectAddress has a
1515 // check for dynamic allocas, because it's called directly from
1516 // various places, but TargetMaterializeAlloca also needs a check
1517 // in order to avoid recursion between getRegForValue,
1518 // X86SelectAddrss, and TargetMaterializeAlloca.
1519 if (!StaticAllocaMap.count(C))
1520 return 0;
1521
Dan Gohman0586d912008-09-10 20:11:02 +00001522 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001523 if (!X86SelectAddress(C, AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +00001524 return 0;
1525 unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
1526 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
1527 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001528 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Dan Gohman0586d912008-09-10 20:11:02 +00001529 return ResultReg;
1530}
1531
Evan Chengc3f44b02008-09-03 00:03:49 +00001532namespace llvm {
Dan Gohman3df24e62008-09-03 23:12:08 +00001533 llvm::FastISel *X86::createFastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +00001534 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +00001535 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +00001536 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +00001537 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001538 DenseMap<const AllocaInst *, int> &am
1539#ifndef NDEBUG
1540 , SmallSet<Instruction*, 8> &cil
1541#endif
1542 ) {
Devang Patel83489bb2009-01-13 00:35:13 +00001543 return new X86FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001544#ifndef NDEBUG
1545 , cil
1546#endif
1547 );
Evan Chengc3f44b02008-09-03 00:03:49 +00001548 }
Dan Gohman99b21822008-08-28 23:21:34 +00001549}