blob: 42844562020addfaee15b50a12eca9282148b548 [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"
Evan Chengc3f44b02008-09-03 00:03:49 +000033using namespace llvm;
34
Chris Lattner087fcf32009-03-08 18:44:31 +000035namespace {
36
Evan Chengc3f44b02008-09-03 00:03:49 +000037class X86FastISel : public FastISel {
38 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
39 /// make the right decision when generating code for different targets.
40 const X86Subtarget *Subtarget;
Evan Chengf3d4efe2008-09-07 09:09:33 +000041
42 /// StackPtr - Register used as the stack pointer.
43 ///
44 unsigned StackPtr;
45
46 /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87
47 /// floating point ops.
48 /// When SSE is available, use it for f32 operations.
49 /// When SSE2 is available, use it for f64 operations.
50 bool X86ScalarSSEf64;
51 bool X86ScalarSSEf32;
52
Evan Cheng8b19e562008-09-03 06:44:39 +000053public:
Dan Gohman3df24e62008-09-03 23:12:08 +000054 explicit X86FastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +000055 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +000056 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +000057 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +000058 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +000059 DenseMap<const AllocaInst *, int> &am
60#ifndef NDEBUG
61 , SmallSet<Instruction*, 8> &cil
62#endif
63 )
Devang Patel83489bb2009-01-13 00:35:13 +000064 : FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +000065#ifndef NDEBUG
66 , cil
67#endif
68 ) {
Evan Cheng88e30412008-09-03 01:04:47 +000069 Subtarget = &TM.getSubtarget<X86Subtarget>();
Evan Chengf3d4efe2008-09-07 09:09:33 +000070 StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
71 X86ScalarSSEf64 = Subtarget->hasSSE2();
72 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng88e30412008-09-03 01:04:47 +000073 }
Evan Chengc3f44b02008-09-03 00:03:49 +000074
Dan Gohman3df24e62008-09-03 23:12:08 +000075 virtual bool TargetSelectInstruction(Instruction *I);
Evan Chengc3f44b02008-09-03 00:03:49 +000076
Dan Gohman1adf1b02008-08-19 21:45:35 +000077#include "X86GenFastISel.inc"
Evan Cheng8b19e562008-09-03 06:44:39 +000078
79private:
Chris Lattner9a08a612008-10-15 04:26:38 +000080 bool X86FastEmitCompare(Value *LHS, Value *RHS, MVT VT);
81
Dan Gohman0586d912008-09-10 20:11:02 +000082 bool X86FastEmitLoad(MVT VT, const X86AddressMode &AM, unsigned &RR);
Evan Cheng0de588f2008-09-05 21:00:03 +000083
Chris Lattner438949a2008-10-15 05:30:52 +000084 bool X86FastEmitStore(MVT VT, Value *Val,
85 const X86AddressMode &AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +000086 bool X86FastEmitStore(MVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +000087 const X86AddressMode &AM);
Evan Cheng24e3a902008-09-08 06:35:17 +000088
89 bool X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT, unsigned Src, MVT SrcVT,
90 unsigned &ResultReg);
Evan Cheng0de588f2008-09-05 21:00:03 +000091
Dan Gohman2ff7fd12008-09-19 22:16:54 +000092 bool X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall);
Dan Gohman0586d912008-09-10 20:11:02 +000093
Dan Gohman3df24e62008-09-03 23:12:08 +000094 bool X86SelectLoad(Instruction *I);
Owen Andersona3971df2008-09-04 07:08:58 +000095
96 bool X86SelectStore(Instruction *I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +000097
98 bool X86SelectCmp(Instruction *I);
Dan Gohmand89ae992008-09-05 01:06:14 +000099
100 bool X86SelectZExt(Instruction *I);
101
102 bool X86SelectBranch(Instruction *I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000103
104 bool X86SelectShift(Instruction *I);
105
106 bool X86SelectSelect(Instruction *I);
Evan Cheng0de588f2008-09-05 21:00:03 +0000107
Evan Cheng10a8d9c2008-09-07 08:47:42 +0000108 bool X86SelectTrunc(Instruction *I);
Dan Gohmand98d6202008-10-02 22:15:21 +0000109
Dan Gohman78efce62008-09-10 21:02:08 +0000110 bool X86SelectFPExt(Instruction *I);
111 bool X86SelectFPTrunc(Instruction *I);
112
Bill Wendling52370a12008-12-09 02:42:50 +0000113 bool X86SelectExtractValue(Instruction *I);
114
Chris Lattnera9a42252009-04-12 07:36:01 +0000115 bool X86VisitIntrinsicCall(IntrinsicInst &I);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000116 bool X86SelectCall(Instruction *I);
117
118 CCAssignFn *CCAssignFnForCall(unsigned CC, bool isTailCall = false);
119
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000120 const X86InstrInfo *getInstrInfo() const {
Dan Gohman97135e12008-09-26 19:15:30 +0000121 return getTargetMachine()->getInstrInfo();
122 }
123 const X86TargetMachine *getTargetMachine() const {
124 return static_cast<const X86TargetMachine *>(&TM);
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000125 }
126
Dan Gohman0586d912008-09-10 20:11:02 +0000127 unsigned TargetMaterializeConstant(Constant *C);
128
129 unsigned TargetMaterializeAlloca(AllocaInst *C);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000130
131 /// isScalarFPTypeInSSEReg - Return true if the specified scalar FP type is
132 /// computed in an SSE register, not on the X87 floating point stack.
133 bool isScalarFPTypeInSSEReg(MVT VT) const {
134 return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2
135 (VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1
136 }
137
Chris Lattner160f6cc2008-10-15 05:07:36 +0000138 bool isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1 = false);
Evan Chengc3f44b02008-09-03 00:03:49 +0000139};
Chris Lattner087fcf32009-03-08 18:44:31 +0000140
141} // end anonymous namespace.
Dan Gohman99b21822008-08-28 23:21:34 +0000142
Chris Lattner160f6cc2008-10-15 05:07:36 +0000143bool X86FastISel::isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1) {
144 VT = TLI.getValueType(Ty, /*HandleUnknown=*/true);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000145 if (VT == MVT::Other || !VT.isSimple())
146 // Unhandled type. Halt "fast" selection and bail.
147 return false;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000148
Dan Gohman9b66d732008-09-30 00:48:39 +0000149 // For now, require SSE/SSE2 for performing floating-point operations,
150 // since x87 requires additional work.
151 if (VT == MVT::f64 && !X86ScalarSSEf64)
152 return false;
153 if (VT == MVT::f32 && !X86ScalarSSEf32)
154 return false;
155 // Similarly, no f80 support yet.
156 if (VT == MVT::f80)
157 return false;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000158 // We only handle legal types. For example, on x86-32 the instruction
159 // selector contains all of the 64-bit instructions from x86-64,
160 // under the assumption that i64 won't be used if the target doesn't
161 // support it.
Evan Chengdebdea02008-09-08 17:15:42 +0000162 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000163}
164
165#include "X86GenCallingConv.inc"
166
167/// CCAssignFnForCall - Selects the correct CCAssignFn for a given calling
168/// convention.
169CCAssignFn *X86FastISel::CCAssignFnForCall(unsigned CC, bool isTaillCall) {
170 if (Subtarget->is64Bit()) {
171 if (Subtarget->isTargetWin64())
172 return CC_X86_Win64_C;
173 else if (CC == CallingConv::Fast && isTaillCall)
174 return CC_X86_64_TailCall;
175 else
176 return CC_X86_64_C;
177 }
178
179 if (CC == CallingConv::X86_FastCall)
180 return CC_X86_32_FastCall;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000181 else if (CC == CallingConv::Fast)
182 return CC_X86_32_FastCC;
183 else
184 return CC_X86_32_C;
185}
186
Evan Cheng0de588f2008-09-05 21:00:03 +0000187/// X86FastEmitLoad - Emit a machine instruction to load a value of type VT.
Evan Chengf3d4efe2008-09-07 09:09:33 +0000188/// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
Evan Cheng0de588f2008-09-05 21:00:03 +0000189/// Return true and the result register by reference if it is possible.
Dan Gohman0586d912008-09-10 20:11:02 +0000190bool X86FastISel::X86FastEmitLoad(MVT VT, const X86AddressMode &AM,
Evan Cheng0de588f2008-09-05 21:00:03 +0000191 unsigned &ResultReg) {
192 // Get opcode and regclass of the output for the given load instruction.
193 unsigned Opc = 0;
194 const TargetRegisterClass *RC = NULL;
195 switch (VT.getSimpleVT()) {
196 default: return false;
197 case MVT::i8:
198 Opc = X86::MOV8rm;
199 RC = X86::GR8RegisterClass;
200 break;
201 case MVT::i16:
202 Opc = X86::MOV16rm;
203 RC = X86::GR16RegisterClass;
204 break;
205 case MVT::i32:
206 Opc = X86::MOV32rm;
207 RC = X86::GR32RegisterClass;
208 break;
209 case MVT::i64:
210 // Must be in x86-64 mode.
211 Opc = X86::MOV64rm;
212 RC = X86::GR64RegisterClass;
213 break;
214 case MVT::f32:
215 if (Subtarget->hasSSE1()) {
216 Opc = X86::MOVSSrm;
217 RC = X86::FR32RegisterClass;
218 } else {
219 Opc = X86::LD_Fp32m;
220 RC = X86::RFP32RegisterClass;
221 }
222 break;
223 case MVT::f64:
224 if (Subtarget->hasSSE2()) {
225 Opc = X86::MOVSDrm;
226 RC = X86::FR64RegisterClass;
227 } else {
228 Opc = X86::LD_Fp64m;
229 RC = X86::RFP64RegisterClass;
230 }
231 break;
232 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +0000233 // No f80 support yet.
234 return false;
Evan Cheng0de588f2008-09-05 21:00:03 +0000235 }
236
237 ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000238 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Evan Cheng0de588f2008-09-05 21:00:03 +0000239 return true;
240}
241
Evan Chengf3d4efe2008-09-07 09:09:33 +0000242/// X86FastEmitStore - Emit a machine instruction to store a value Val of
243/// type VT. The address is either pre-computed, consisted of a base ptr, Ptr
244/// and a displacement offset, or a GlobalAddress,
Evan Cheng0de588f2008-09-05 21:00:03 +0000245/// i.e. V. Return true if it is possible.
246bool
Evan Chengf3d4efe2008-09-07 09:09:33 +0000247X86FastISel::X86FastEmitStore(MVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +0000248 const X86AddressMode &AM) {
Dan Gohman863890e2008-09-08 16:31:35 +0000249 // Get opcode and regclass of the output for the given store instruction.
Evan Cheng0de588f2008-09-05 21:00:03 +0000250 unsigned Opc = 0;
Evan Cheng0de588f2008-09-05 21:00:03 +0000251 switch (VT.getSimpleVT()) {
Chris Lattner241ab472008-10-15 05:38:32 +0000252 case MVT::f80: // No f80 support yet.
Evan Cheng0de588f2008-09-05 21:00:03 +0000253 default: return false;
Chris Lattner241ab472008-10-15 05:38:32 +0000254 case MVT::i8: Opc = X86::MOV8mr; break;
255 case MVT::i16: Opc = X86::MOV16mr; break;
256 case MVT::i32: Opc = X86::MOV32mr; break;
257 case MVT::i64: Opc = X86::MOV64mr; break; // Must be in x86-64 mode.
Evan Cheng0de588f2008-09-05 21:00:03 +0000258 case MVT::f32:
Chris Lattner438949a2008-10-15 05:30:52 +0000259 Opc = Subtarget->hasSSE1() ? X86::MOVSSmr : X86::ST_Fp32m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000260 break;
261 case MVT::f64:
Chris Lattner438949a2008-10-15 05:30:52 +0000262 Opc = Subtarget->hasSSE2() ? X86::MOVSDmr : X86::ST_Fp64m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000263 break;
Evan Cheng0de588f2008-09-05 21:00:03 +0000264 }
Chris Lattner438949a2008-10-15 05:30:52 +0000265
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000266 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM).addReg(Val);
Evan Cheng0de588f2008-09-05 21:00:03 +0000267 return true;
268}
269
Chris Lattner438949a2008-10-15 05:30:52 +0000270bool X86FastISel::X86FastEmitStore(MVT VT, Value *Val,
271 const X86AddressMode &AM) {
272 // Handle 'null' like i32/i64 0.
273 if (isa<ConstantPointerNull>(Val))
274 Val = Constant::getNullValue(TD.getIntPtrType());
275
276 // If this is a store of a simple constant, fold the constant into the store.
277 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
278 unsigned Opc = 0;
279 switch (VT.getSimpleVT()) {
280 default: break;
281 case MVT::i8: Opc = X86::MOV8mi; break;
282 case MVT::i16: Opc = X86::MOV16mi; break;
283 case MVT::i32: Opc = X86::MOV32mi; break;
284 case MVT::i64:
285 // Must be a 32-bit sign extended value.
286 if ((int)CI->getSExtValue() == CI->getSExtValue())
287 Opc = X86::MOV64mi32;
288 break;
289 }
290
291 if (Opc) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000292 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM)
293 .addImm(CI->getSExtValue());
Chris Lattner438949a2008-10-15 05:30:52 +0000294 return true;
295 }
296 }
297
298 unsigned ValReg = getRegForValue(Val);
299 if (ValReg == 0)
Chris Lattner438949a2008-10-15 05:30:52 +0000300 return false;
301
302 return X86FastEmitStore(VT, ValReg, AM);
303}
304
Evan Cheng24e3a902008-09-08 06:35:17 +0000305/// X86FastEmitExtend - Emit a machine instruction to extend a value Src of
306/// type SrcVT to type DstVT using the specified extension opcode Opc (e.g.
307/// ISD::SIGN_EXTEND).
308bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT,
309 unsigned Src, MVT SrcVT,
310 unsigned &ResultReg) {
Owen Andersonac34a002008-09-11 19:44:55 +0000311 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, Src);
312
313 if (RR != 0) {
314 ResultReg = RR;
315 return true;
316 } else
317 return false;
Evan Cheng24e3a902008-09-08 06:35:17 +0000318}
319
Dan Gohman0586d912008-09-10 20:11:02 +0000320/// X86SelectAddress - Attempt to fill in an address from the given value.
321///
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000322bool X86FastISel::X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall) {
Dan Gohman35893082008-09-18 23:23:44 +0000323 User *U;
324 unsigned Opcode = Instruction::UserOp1;
325 if (Instruction *I = dyn_cast<Instruction>(V)) {
326 Opcode = I->getOpcode();
327 U = I;
328 } else if (ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
329 Opcode = C->getOpcode();
330 U = C;
331 }
Dan Gohman0586d912008-09-10 20:11:02 +0000332
Dan Gohman35893082008-09-18 23:23:44 +0000333 switch (Opcode) {
334 default: break;
335 case Instruction::BitCast:
336 // Look past bitcasts.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000337 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman35893082008-09-18 23:23:44 +0000338
339 case Instruction::IntToPtr:
340 // Look past no-op inttoptrs.
341 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000342 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000343 break;
Dan Gohman35893082008-09-18 23:23:44 +0000344
345 case Instruction::PtrToInt:
346 // Look past no-op ptrtoints.
347 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000348 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000349 break;
Dan Gohman35893082008-09-18 23:23:44 +0000350
351 case Instruction::Alloca: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000352 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000353 // Do static allocas.
354 const AllocaInst *A = cast<AllocaInst>(V);
Dan Gohman0586d912008-09-10 20:11:02 +0000355 DenseMap<const AllocaInst*, int>::iterator SI = StaticAllocaMap.find(A);
Dan Gohman97135e12008-09-26 19:15:30 +0000356 if (SI != StaticAllocaMap.end()) {
357 AM.BaseType = X86AddressMode::FrameIndexBase;
358 AM.Base.FrameIndex = SI->second;
359 return true;
360 }
361 break;
Dan Gohman35893082008-09-18 23:23:44 +0000362 }
363
364 case Instruction::Add: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000365 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000366 // Adds of constants are common and easy enough.
367 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman09aae462008-09-26 20:04:15 +0000368 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
369 // They have to fit in the 32-bit signed displacement field though.
370 if (isInt32(Disp)) {
371 AM.Disp = (uint32_t)Disp;
372 return X86SelectAddress(U->getOperand(0), AM, isCall);
373 }
Dan Gohman0586d912008-09-10 20:11:02 +0000374 }
Dan Gohman35893082008-09-18 23:23:44 +0000375 break;
376 }
377
378 case Instruction::GetElementPtr: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000379 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000380 // Pattern-match simple GEPs.
Dan Gohman09aae462008-09-26 20:04:15 +0000381 uint64_t Disp = (int32_t)AM.Disp;
Dan Gohman35893082008-09-18 23:23:44 +0000382 unsigned IndexReg = AM.IndexReg;
383 unsigned Scale = AM.Scale;
384 gep_type_iterator GTI = gep_type_begin(U);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000385 // Iterate through the indices, folding what we can. Constants can be
386 // folded, and one dynamic index can be handled, if the scale is supported.
Dan Gohman35893082008-09-18 23:23:44 +0000387 for (User::op_iterator i = U->op_begin() + 1, e = U->op_end();
388 i != e; ++i, ++GTI) {
389 Value *Op = *i;
390 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
391 const StructLayout *SL = TD.getStructLayout(STy);
392 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
393 Disp += SL->getElementOffset(Idx);
394 } else {
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000395 uint64_t S = TD.getTypePaddedSize(GTI.getIndexedType());
Dan Gohman35893082008-09-18 23:23:44 +0000396 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
397 // Constant-offset addressing.
Dan Gohman09aae462008-09-26 20:04:15 +0000398 Disp += CI->getSExtValue() * S;
Dan Gohman35893082008-09-18 23:23:44 +0000399 } else if (IndexReg == 0 &&
Dan Gohman97135e12008-09-26 19:15:30 +0000400 (!AM.GV ||
401 !getTargetMachine()->symbolicAddressesAreRIPRel()) &&
Dan Gohman35893082008-09-18 23:23:44 +0000402 (S == 1 || S == 2 || S == 4 || S == 8)) {
403 // Scaled-index addressing.
404 Scale = S;
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000405 IndexReg = getRegForGEPIndex(Op);
Dan Gohman35893082008-09-18 23:23:44 +0000406 if (IndexReg == 0)
407 return false;
408 } else
409 // Unsupported.
410 goto unsupported_gep;
411 }
412 }
Dan Gohman09aae462008-09-26 20:04:15 +0000413 // Check for displacement overflow.
414 if (!isInt32(Disp))
415 break;
Dan Gohman35893082008-09-18 23:23:44 +0000416 // Ok, the GEP indices were covered by constant-offset and scaled-index
417 // addressing. Update the address state and move on to examining the base.
418 AM.IndexReg = IndexReg;
419 AM.Scale = Scale;
Dan Gohman09aae462008-09-26 20:04:15 +0000420 AM.Disp = (uint32_t)Disp;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000421 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman35893082008-09-18 23:23:44 +0000422 unsupported_gep:
423 // Ok, the GEP indices weren't all covered.
424 break;
425 }
426 }
427
428 // Handle constant address.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000429 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000430 // Can't handle alternate code models yet.
431 if (TM.getCodeModel() != CodeModel::Default &&
432 TM.getCodeModel() != CodeModel::Small)
433 return false;
434
Dan Gohman97135e12008-09-26 19:15:30 +0000435 // RIP-relative addresses can't have additional register operands.
436 if (getTargetMachine()->symbolicAddressesAreRIPRel() &&
437 (AM.Base.Reg != 0 || AM.IndexReg != 0))
438 return false;
439
Dan Gohmane9865942009-02-23 22:03:08 +0000440 // Can't handle TLS yet.
441 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
442 if (GVar->isThreadLocal())
443 return false;
444
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000445 // Set up the basic address.
446 AM.GV = GV;
447 if (!isCall &&
448 TM.getRelocationModel() == Reloc::PIC_ &&
449 !Subtarget->is64Bit())
Dan Gohman57c3dac2008-09-30 00:58:23 +0000450 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000451
452 // Emit an extra load if the ABI requires it.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000453 if (Subtarget->GVRequiresExtraLoad(GV, TM, isCall)) {
454 // Check to see if we've already materialized this
455 // value in a register in this block.
Dan Gohman7e8ef602008-09-19 23:42:04 +0000456 if (unsigned Reg = LocalValueMap[V]) {
457 AM.Base.Reg = Reg;
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000458 AM.GV = 0;
Dan Gohman7e8ef602008-09-19 23:42:04 +0000459 return true;
460 }
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000461 // Issue load from stub if necessary.
462 unsigned Opc = 0;
463 const TargetRegisterClass *RC = NULL;
464 if (TLI.getPointerTy() == MVT::i32) {
465 Opc = X86::MOV32rm;
466 RC = X86::GR32RegisterClass;
467 } else {
468 Opc = X86::MOV64rm;
469 RC = X86::GR64RegisterClass;
470 }
Dan Gohman789ce772008-09-25 23:34:02 +0000471
472 X86AddressMode StubAM;
473 StubAM.Base.Reg = AM.Base.Reg;
474 StubAM.GV = AM.GV;
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000475 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000476 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), StubAM);
Dan Gohman789ce772008-09-25 23:34:02 +0000477
478 // Now construct the final address. Note that the Disp, Scale,
479 // and Index values may already be set here.
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000480 AM.Base.Reg = ResultReg;
481 AM.GV = 0;
Dan Gohman789ce772008-09-25 23:34:02 +0000482
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000483 // Prevent loading GV stub multiple times in same MBB.
484 LocalValueMap[V] = AM.Base.Reg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000485 }
486 return true;
Dan Gohman0586d912008-09-10 20:11:02 +0000487 }
488
Dan Gohman97135e12008-09-26 19:15:30 +0000489 // If all else fails, try to materialize the value in a register.
Dan Gohman7962e852008-09-29 21:13:15 +0000490 if (!AM.GV || !getTargetMachine()->symbolicAddressesAreRIPRel()) {
Dan Gohman97135e12008-09-26 19:15:30 +0000491 if (AM.Base.Reg == 0) {
492 AM.Base.Reg = getRegForValue(V);
493 return AM.Base.Reg != 0;
494 }
495 if (AM.IndexReg == 0) {
496 assert(AM.Scale == 1 && "Scale with no index!");
497 AM.IndexReg = getRegForValue(V);
498 return AM.IndexReg != 0;
499 }
500 }
501
502 return false;
Dan Gohman0586d912008-09-10 20:11:02 +0000503}
504
Owen Andersona3971df2008-09-04 07:08:58 +0000505/// X86SelectStore - Select and emit code to implement store instructions.
506bool X86FastISel::X86SelectStore(Instruction* I) {
Evan Cheng24e3a902008-09-08 06:35:17 +0000507 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000508 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Owen Andersona3971df2008-09-04 07:08:58 +0000509 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000510
Dan Gohman0586d912008-09-10 20:11:02 +0000511 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000512 if (!X86SelectAddress(I->getOperand(1), AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +0000513 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000514
Chris Lattner438949a2008-10-15 05:30:52 +0000515 return X86FastEmitStore(VT, I->getOperand(0), AM);
Owen Andersona3971df2008-09-04 07:08:58 +0000516}
517
Evan Cheng8b19e562008-09-03 06:44:39 +0000518/// X86SelectLoad - Select and emit code to implement load instructions.
519///
Dan Gohman3df24e62008-09-03 23:12:08 +0000520bool X86FastISel::X86SelectLoad(Instruction *I) {
Evan Chengf3d4efe2008-09-07 09:09:33 +0000521 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000522 if (!isTypeLegal(I->getType(), VT))
Evan Cheng8b19e562008-09-03 06:44:39 +0000523 return false;
524
Dan Gohman0586d912008-09-10 20:11:02 +0000525 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000526 if (!X86SelectAddress(I->getOperand(0), AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +0000527 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000528
Evan Cheng0de588f2008-09-05 21:00:03 +0000529 unsigned ResultReg = 0;
Dan Gohman0586d912008-09-10 20:11:02 +0000530 if (X86FastEmitLoad(VT, AM, ResultReg)) {
Evan Cheng0de588f2008-09-05 21:00:03 +0000531 UpdateValueMap(I, ResultReg);
532 return true;
Evan Cheng8b19e562008-09-03 06:44:39 +0000533 }
Evan Cheng0de588f2008-09-05 21:00:03 +0000534 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000535}
536
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000537static unsigned X86ChooseCmpOpcode(MVT VT) {
Dan Gohmand98d6202008-10-02 22:15:21 +0000538 switch (VT.getSimpleVT()) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000539 default: return 0;
540 case MVT::i8: return X86::CMP8rr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000541 case MVT::i16: return X86::CMP16rr;
542 case MVT::i32: return X86::CMP32rr;
543 case MVT::i64: return X86::CMP64rr;
544 case MVT::f32: return X86::UCOMISSrr;
545 case MVT::f64: return X86::UCOMISDrr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000546 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000547}
548
Chris Lattner0e13c782008-10-15 04:13:29 +0000549/// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS
550/// of the comparison, return an opcode that works for the compare (e.g.
551/// CMP32ri) otherwise return 0.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000552static unsigned X86ChooseCmpImmediateOpcode(MVT VT, ConstantInt *RHSC) {
553 switch (VT.getSimpleVT()) {
Chris Lattner0e13c782008-10-15 04:13:29 +0000554 // Otherwise, we can't fold the immediate into this comparison.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000555 default: return 0;
556 case MVT::i8: return X86::CMP8ri;
557 case MVT::i16: return X86::CMP16ri;
558 case MVT::i32: return X86::CMP32ri;
559 case MVT::i64:
560 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
561 // field.
Chris Lattner438949a2008-10-15 05:30:52 +0000562 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
Chris Lattner45ac17f2008-10-15 04:32:45 +0000563 return X86::CMP64ri32;
564 return 0;
565 }
Chris Lattner0e13c782008-10-15 04:13:29 +0000566}
567
Chris Lattner9a08a612008-10-15 04:26:38 +0000568bool X86FastISel::X86FastEmitCompare(Value *Op0, Value *Op1, MVT VT) {
569 unsigned Op0Reg = getRegForValue(Op0);
570 if (Op0Reg == 0) return false;
571
Chris Lattnerd53886b2008-10-15 05:18:04 +0000572 // Handle 'null' like i32/i64 0.
573 if (isa<ConstantPointerNull>(Op1))
574 Op1 = Constant::getNullValue(TD.getIntPtrType());
575
Chris Lattner9a08a612008-10-15 04:26:38 +0000576 // We have two options: compare with register or immediate. If the RHS of
577 // the compare is an immediate that we can fold into this compare, use
578 // CMPri, otherwise use CMPrr.
579 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000580 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000581 BuildMI(MBB, DL, TII.get(CompareImmOpc)).addReg(Op0Reg)
Chris Lattner9a08a612008-10-15 04:26:38 +0000582 .addImm(Op1C->getSExtValue());
583 return true;
584 }
585 }
586
587 unsigned CompareOpc = X86ChooseCmpOpcode(VT);
588 if (CompareOpc == 0) return false;
589
590 unsigned Op1Reg = getRegForValue(Op1);
591 if (Op1Reg == 0) return false;
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000592 BuildMI(MBB, DL, TII.get(CompareOpc)).addReg(Op0Reg).addReg(Op1Reg);
Chris Lattner9a08a612008-10-15 04:26:38 +0000593
594 return true;
595}
596
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000597bool X86FastISel::X86SelectCmp(Instruction *I) {
598 CmpInst *CI = cast<CmpInst>(I);
599
Dan Gohman9b66d732008-09-30 00:48:39 +0000600 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000601 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Dan Gohman4f22bb02008-09-05 01:33:56 +0000602 return false;
603
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000604 unsigned ResultReg = createResultReg(&X86::GR8RegClass);
Chris Lattner54aebde2008-10-15 03:47:17 +0000605 unsigned SetCCOpc;
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000606 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000607 switch (CI->getPredicate()) {
608 case CmpInst::FCMP_OEQ: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000609 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
610 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000611
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000612 unsigned EReg = createResultReg(&X86::GR8RegClass);
613 unsigned NPReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000614 BuildMI(MBB, DL, TII.get(X86::SETEr), EReg);
615 BuildMI(MBB, DL, TII.get(X86::SETNPr), NPReg);
616 BuildMI(MBB, DL,
617 TII.get(X86::AND8rr), ResultReg).addReg(NPReg).addReg(EReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000618 UpdateValueMap(I, ResultReg);
619 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000620 }
621 case CmpInst::FCMP_UNE: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000622 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
623 return false;
624
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000625 unsigned NEReg = createResultReg(&X86::GR8RegClass);
626 unsigned PReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000627 BuildMI(MBB, DL, TII.get(X86::SETNEr), NEReg);
628 BuildMI(MBB, DL, TII.get(X86::SETPr), PReg);
629 BuildMI(MBB, DL, TII.get(X86::OR8rr), ResultReg).addReg(PReg).addReg(NEReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000630 UpdateValueMap(I, ResultReg);
631 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000632 }
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000633 case CmpInst::FCMP_OGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
634 case CmpInst::FCMP_OGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
635 case CmpInst::FCMP_OLT: SwapArgs = true; SetCCOpc = X86::SETAr; break;
636 case CmpInst::FCMP_OLE: SwapArgs = true; SetCCOpc = X86::SETAEr; break;
637 case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
638 case CmpInst::FCMP_ORD: SwapArgs = false; SetCCOpc = X86::SETNPr; break;
639 case CmpInst::FCMP_UNO: SwapArgs = false; SetCCOpc = X86::SETPr; break;
640 case CmpInst::FCMP_UEQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
641 case CmpInst::FCMP_UGT: SwapArgs = true; SetCCOpc = X86::SETBr; break;
642 case CmpInst::FCMP_UGE: SwapArgs = true; SetCCOpc = X86::SETBEr; break;
643 case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
644 case CmpInst::FCMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
645
646 case CmpInst::ICMP_EQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
647 case CmpInst::ICMP_NE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
648 case CmpInst::ICMP_UGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
649 case CmpInst::ICMP_UGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
650 case CmpInst::ICMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
651 case CmpInst::ICMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
652 case CmpInst::ICMP_SGT: SwapArgs = false; SetCCOpc = X86::SETGr; break;
653 case CmpInst::ICMP_SGE: SwapArgs = false; SetCCOpc = X86::SETGEr; break;
654 case CmpInst::ICMP_SLT: SwapArgs = false; SetCCOpc = X86::SETLr; break;
655 case CmpInst::ICMP_SLE: SwapArgs = false; SetCCOpc = X86::SETLEr; break;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000656 default:
657 return false;
658 }
659
Chris Lattner9a08a612008-10-15 04:26:38 +0000660 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000661 if (SwapArgs)
Chris Lattner9a08a612008-10-15 04:26:38 +0000662 std::swap(Op0, Op1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000663
Chris Lattner9a08a612008-10-15 04:26:38 +0000664 // Emit a compare of Op0/Op1.
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000665 if (!X86FastEmitCompare(Op0, Op1, VT))
666 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000667
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000668 BuildMI(MBB, DL, TII.get(SetCCOpc), ResultReg);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000669 UpdateValueMap(I, ResultReg);
670 return true;
671}
Evan Cheng8b19e562008-09-03 06:44:39 +0000672
Dan Gohmand89ae992008-09-05 01:06:14 +0000673bool X86FastISel::X86SelectZExt(Instruction *I) {
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000674 // Handle zero-extension from i1 to i8, which is common.
Dan Gohmand89ae992008-09-05 01:06:14 +0000675 if (I->getType() == Type::Int8Ty &&
676 I->getOperand(0)->getType() == Type::Int1Ty) {
677 unsigned ResultReg = getRegForValue(I->getOperand(0));
Dan Gohmanf52550b2008-09-05 01:15:35 +0000678 if (ResultReg == 0) return false;
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000679 // Set the high bits to zero.
680 ResultReg = FastEmitZExtFromI1(MVT::i8, ResultReg);
681 if (ResultReg == 0) return false;
Dan Gohmand89ae992008-09-05 01:06:14 +0000682 UpdateValueMap(I, ResultReg);
683 return true;
684 }
685
686 return false;
687}
688
Chris Lattner9a08a612008-10-15 04:26:38 +0000689
Dan Gohmand89ae992008-09-05 01:06:14 +0000690bool X86FastISel::X86SelectBranch(Instruction *I) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000691 // Unconditional branches are selected by tablegen-generated code.
Dan Gohmand98d6202008-10-02 22:15:21 +0000692 // Handle a conditional branch.
693 BranchInst *BI = cast<BranchInst>(I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000694 MachineBasicBlock *TrueMBB = MBBMap[BI->getSuccessor(0)];
695 MachineBasicBlock *FalseMBB = MBBMap[BI->getSuccessor(1)];
696
Dan Gohmand98d6202008-10-02 22:15:21 +0000697 // Fold the common case of a conditional branch with a comparison.
698 if (CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
699 if (CI->hasOneUse()) {
700 MVT VT = TLI.getValueType(CI->getOperand(0)->getType());
Dan Gohmand89ae992008-09-05 01:06:14 +0000701
Dan Gohmand98d6202008-10-02 22:15:21 +0000702 // Try to take advantage of fallthrough opportunities.
703 CmpInst::Predicate Predicate = CI->getPredicate();
704 if (MBB->isLayoutSuccessor(TrueMBB)) {
705 std::swap(TrueMBB, FalseMBB);
706 Predicate = CmpInst::getInversePredicate(Predicate);
707 }
708
Chris Lattner871d2462008-10-15 03:58:05 +0000709 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
710 unsigned BranchOpc; // Opcode to jump on, e.g. "X86::JA"
711
Dan Gohmand98d6202008-10-02 22:15:21 +0000712 switch (Predicate) {
Dan Gohman7b66e042008-10-21 18:24:51 +0000713 case CmpInst::FCMP_OEQ:
714 std::swap(TrueMBB, FalseMBB);
715 Predicate = CmpInst::FCMP_UNE;
716 // FALL THROUGH
717 case CmpInst::FCMP_UNE: SwapArgs = false; BranchOpc = X86::JNE; break;
Chris Lattner871d2462008-10-15 03:58:05 +0000718 case CmpInst::FCMP_OGT: SwapArgs = false; BranchOpc = X86::JA; break;
719 case CmpInst::FCMP_OGE: SwapArgs = false; BranchOpc = X86::JAE; break;
720 case CmpInst::FCMP_OLT: SwapArgs = true; BranchOpc = X86::JA; break;
721 case CmpInst::FCMP_OLE: SwapArgs = true; BranchOpc = X86::JAE; break;
722 case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE; break;
723 case CmpInst::FCMP_ORD: SwapArgs = false; BranchOpc = X86::JNP; break;
724 case CmpInst::FCMP_UNO: SwapArgs = false; BranchOpc = X86::JP; break;
725 case CmpInst::FCMP_UEQ: SwapArgs = false; BranchOpc = X86::JE; break;
726 case CmpInst::FCMP_UGT: SwapArgs = true; BranchOpc = X86::JB; break;
727 case CmpInst::FCMP_UGE: SwapArgs = true; BranchOpc = X86::JBE; break;
728 case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break;
729 case CmpInst::FCMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break;
Chris Lattner9a08a612008-10-15 04:26:38 +0000730
Chris Lattner871d2462008-10-15 03:58:05 +0000731 case CmpInst::ICMP_EQ: SwapArgs = false; BranchOpc = X86::JE; break;
732 case CmpInst::ICMP_NE: SwapArgs = false; BranchOpc = X86::JNE; break;
733 case CmpInst::ICMP_UGT: SwapArgs = false; BranchOpc = X86::JA; break;
734 case CmpInst::ICMP_UGE: SwapArgs = false; BranchOpc = X86::JAE; break;
735 case CmpInst::ICMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break;
736 case CmpInst::ICMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break;
737 case CmpInst::ICMP_SGT: SwapArgs = false; BranchOpc = X86::JG; break;
738 case CmpInst::ICMP_SGE: SwapArgs = false; BranchOpc = X86::JGE; break;
739 case CmpInst::ICMP_SLT: SwapArgs = false; BranchOpc = X86::JL; break;
740 case CmpInst::ICMP_SLE: SwapArgs = false; BranchOpc = X86::JLE; break;
Dan Gohmand98d6202008-10-02 22:15:21 +0000741 default:
742 return false;
743 }
Chris Lattner54aebde2008-10-15 03:47:17 +0000744
Chris Lattner709d8292008-10-15 04:02:26 +0000745 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
746 if (SwapArgs)
747 std::swap(Op0, Op1);
748
Chris Lattner9a08a612008-10-15 04:26:38 +0000749 // Emit a compare of the LHS and RHS, setting the flags.
750 if (!X86FastEmitCompare(Op0, Op1, VT))
751 return false;
Chris Lattner0e13c782008-10-15 04:13:29 +0000752
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000753 BuildMI(MBB, DL, TII.get(BranchOpc)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000754
755 if (Predicate == CmpInst::FCMP_UNE) {
756 // X86 requires a second branch to handle UNE (and OEQ,
757 // which is mapped to UNE above).
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000758 BuildMI(MBB, DL, TII.get(X86::JP)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000759 }
760
Dan Gohmand98d6202008-10-02 22:15:21 +0000761 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000762 MBB->addSuccessor(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000763 return true;
764 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000765 } else if (ExtractValueInst *EI =
766 dyn_cast<ExtractValueInst>(BI->getCondition())) {
767 // Check to see if the branch instruction is from an "arithmetic with
768 // overflow" intrinsic. The main way these intrinsics are used is:
769 //
770 // %t = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2)
771 // %sum = extractvalue { i32, i1 } %t, 0
772 // %obit = extractvalue { i32, i1 } %t, 1
773 // br i1 %obit, label %overflow, label %normal
774 //
Dan Gohman653456c2009-01-07 00:15:08 +0000775 // The %sum and %obit are converted in an ADD and a SETO/SETB before
Bill Wendling30a64a72008-12-09 23:19:12 +0000776 // reaching the branch. Therefore, we search backwards through the MBB
Dan Gohman653456c2009-01-07 00:15:08 +0000777 // looking for the SETO/SETB instruction. If an instruction modifies the
778 // EFLAGS register before we reach the SETO/SETB instruction, then we can't
779 // convert the branch into a JO/JB instruction.
Chris Lattnera9a42252009-04-12 07:36:01 +0000780 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(EI->getAggregateOperand())){
781 if (CI->getIntrinsicID() == Intrinsic::sadd_with_overflow ||
782 CI->getIntrinsicID() == Intrinsic::uadd_with_overflow) {
783 const MachineInstr *SetMI = 0;
784 unsigned Reg = lookUpRegForValue(EI);
Bill Wendling30a64a72008-12-09 23:19:12 +0000785
Chris Lattnera9a42252009-04-12 07:36:01 +0000786 for (MachineBasicBlock::const_reverse_iterator
787 RI = MBB->rbegin(), RE = MBB->rend(); RI != RE; ++RI) {
788 const MachineInstr &MI = *RI;
Bill Wendling30a64a72008-12-09 23:19:12 +0000789
Chris Lattnera9a42252009-04-12 07:36:01 +0000790 if (MI.modifiesRegister(Reg)) {
791 unsigned Src, Dst, SrcSR, DstSR;
Bill Wendling30a64a72008-12-09 23:19:12 +0000792
Chris Lattnera9a42252009-04-12 07:36:01 +0000793 if (getInstrInfo()->isMoveInstr(MI, Src, Dst, SrcSR, DstSR)) {
794 Reg = Src;
795 continue;
Bill Wendling9a901322008-12-10 19:44:24 +0000796 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000797
Chris Lattnera9a42252009-04-12 07:36:01 +0000798 SetMI = &MI;
799 break;
Bill Wendling30a64a72008-12-09 23:19:12 +0000800 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000801
Chris Lattnera9a42252009-04-12 07:36:01 +0000802 const TargetInstrDesc &TID = MI.getDesc();
803 if (TID.hasUnmodeledSideEffects() ||
804 TID.hasImplicitDefOfPhysReg(X86::EFLAGS))
805 break;
Bill Wendling9a901322008-12-10 19:44:24 +0000806 }
Chris Lattnera9a42252009-04-12 07:36:01 +0000807
808 if (SetMI) {
809 unsigned OpCode = SetMI->getOpcode();
810
811 if (OpCode == X86::SETOr || OpCode == X86::SETBr) {
Chris Lattner8d57b772009-04-12 07:51:14 +0000812 BuildMI(MBB, DL, TII.get(OpCode == X86::SETOr ? X86::JO : X86::JB))
813 .addMBB(TrueMBB);
Chris Lattnera9a42252009-04-12 07:36:01 +0000814 FastEmitBranch(FalseMBB);
815 MBB->addSuccessor(TrueMBB);
816 return true;
817 }
Bill Wendling9a901322008-12-10 19:44:24 +0000818 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000819 }
820 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000821 }
822
823 // Otherwise do a clumsy setcc and re-test it.
824 unsigned OpReg = getRegForValue(BI->getCondition());
825 if (OpReg == 0) return false;
826
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000827 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(OpReg).addReg(OpReg);
828 BuildMI(MBB, DL, TII.get(X86::JNE)).addMBB(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000829 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000830 MBB->addSuccessor(TrueMBB);
Dan Gohmand89ae992008-09-05 01:06:14 +0000831 return true;
832}
833
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000834bool X86FastISel::X86SelectShift(Instruction *I) {
Chris Lattner743922e2008-09-21 21:44:29 +0000835 unsigned CReg = 0, OpReg = 0, OpImm = 0;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000836 const TargetRegisterClass *RC = NULL;
837 if (I->getType() == Type::Int8Ty) {
838 CReg = X86::CL;
839 RC = &X86::GR8RegClass;
840 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000841 case Instruction::LShr: OpReg = X86::SHR8rCL; OpImm = X86::SHR8ri; break;
842 case Instruction::AShr: OpReg = X86::SAR8rCL; OpImm = X86::SAR8ri; break;
843 case Instruction::Shl: OpReg = X86::SHL8rCL; OpImm = X86::SHL8ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000844 default: return false;
845 }
846 } else if (I->getType() == Type::Int16Ty) {
847 CReg = X86::CX;
848 RC = &X86::GR16RegClass;
849 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000850 case Instruction::LShr: OpReg = X86::SHR16rCL; OpImm = X86::SHR16ri; break;
851 case Instruction::AShr: OpReg = X86::SAR16rCL; OpImm = X86::SAR16ri; break;
852 case Instruction::Shl: OpReg = X86::SHL16rCL; OpImm = X86::SHL16ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000853 default: return false;
854 }
855 } else if (I->getType() == Type::Int32Ty) {
856 CReg = X86::ECX;
857 RC = &X86::GR32RegClass;
858 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000859 case Instruction::LShr: OpReg = X86::SHR32rCL; OpImm = X86::SHR32ri; break;
860 case Instruction::AShr: OpReg = X86::SAR32rCL; OpImm = X86::SAR32ri; break;
861 case Instruction::Shl: OpReg = X86::SHL32rCL; OpImm = X86::SHL32ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000862 default: return false;
863 }
864 } else if (I->getType() == Type::Int64Ty) {
865 CReg = X86::RCX;
866 RC = &X86::GR64RegClass;
867 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000868 case Instruction::LShr: OpReg = X86::SHR64rCL; OpImm = X86::SHR64ri; break;
869 case Instruction::AShr: OpReg = X86::SAR64rCL; OpImm = X86::SAR64ri; break;
870 case Instruction::Shl: OpReg = X86::SHL64rCL; OpImm = X86::SHL64ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000871 default: return false;
872 }
873 } else {
874 return false;
875 }
876
Chris Lattner160f6cc2008-10-15 05:07:36 +0000877 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
878 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Dan Gohmanf58cb6d2008-09-05 21:27:34 +0000879 return false;
880
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000881 unsigned Op0Reg = getRegForValue(I->getOperand(0));
882 if (Op0Reg == 0) return false;
Chris Lattner743922e2008-09-21 21:44:29 +0000883
884 // Fold immediate in shl(x,3).
885 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
886 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000887 BuildMI(MBB, DL, TII.get(OpImm),
Dan Gohmanb12b1a22008-12-20 17:19:40 +0000888 ResultReg).addReg(Op0Reg).addImm(CI->getZExtValue() & 0xff);
Chris Lattner743922e2008-09-21 21:44:29 +0000889 UpdateValueMap(I, ResultReg);
890 return true;
891 }
892
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000893 unsigned Op1Reg = getRegForValue(I->getOperand(1));
894 if (Op1Reg == 0) return false;
895 TII.copyRegToReg(*MBB, MBB->end(), CReg, Op1Reg, RC, RC);
Dan Gohman145b8282008-10-07 21:50:36 +0000896
897 // The shift instruction uses X86::CL. If we defined a super-register
898 // of X86::CL, emit an EXTRACT_SUBREG to precisely describe what
899 // we're doing here.
900 if (CReg != X86::CL)
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000901 BuildMI(MBB, DL, TII.get(TargetInstrInfo::EXTRACT_SUBREG), X86::CL)
Dan Gohman145b8282008-10-07 21:50:36 +0000902 .addReg(CReg).addImm(X86::SUBREG_8BIT);
903
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000904 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000905 BuildMI(MBB, DL, TII.get(OpReg), ResultReg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000906 UpdateValueMap(I, ResultReg);
907 return true;
908}
909
910bool X86FastISel::X86SelectSelect(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +0000911 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
912 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
913 return false;
914
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000915 unsigned Opc = 0;
916 const TargetRegisterClass *RC = NULL;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000917 if (VT.getSimpleVT() == MVT::i16) {
Dan Gohman31d26912008-09-05 21:13:04 +0000918 Opc = X86::CMOVE16rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000919 RC = &X86::GR16RegClass;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000920 } else if (VT.getSimpleVT() == MVT::i32) {
Dan Gohman31d26912008-09-05 21:13:04 +0000921 Opc = X86::CMOVE32rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000922 RC = &X86::GR32RegClass;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000923 } else if (VT.getSimpleVT() == MVT::i64) {
Dan Gohman31d26912008-09-05 21:13:04 +0000924 Opc = X86::CMOVE64rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000925 RC = &X86::GR64RegClass;
926 } else {
927 return false;
928 }
929
930 unsigned Op0Reg = getRegForValue(I->getOperand(0));
931 if (Op0Reg == 0) return false;
932 unsigned Op1Reg = getRegForValue(I->getOperand(1));
933 if (Op1Reg == 0) return false;
934 unsigned Op2Reg = getRegForValue(I->getOperand(2));
935 if (Op2Reg == 0) return false;
936
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000937 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(Op0Reg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000938 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000939 BuildMI(MBB, DL, TII.get(Opc), ResultReg).addReg(Op1Reg).addReg(Op2Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000940 UpdateValueMap(I, ResultReg);
941 return true;
942}
943
Dan Gohman78efce62008-09-10 21:02:08 +0000944bool X86FastISel::X86SelectFPExt(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +0000945 // fpext from float to double.
946 if (Subtarget->hasSSE2() && I->getType() == Type::DoubleTy) {
947 Value *V = I->getOperand(0);
948 if (V->getType() == Type::FloatTy) {
949 unsigned OpReg = getRegForValue(V);
950 if (OpReg == 0) return false;
951 unsigned ResultReg = createResultReg(X86::FR64RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000952 BuildMI(MBB, DL, TII.get(X86::CVTSS2SDrr), ResultReg).addReg(OpReg);
Chris Lattner160f6cc2008-10-15 05:07:36 +0000953 UpdateValueMap(I, ResultReg);
954 return true;
Dan Gohman78efce62008-09-10 21:02:08 +0000955 }
956 }
957
958 return false;
959}
960
961bool X86FastISel::X86SelectFPTrunc(Instruction *I) {
962 if (Subtarget->hasSSE2()) {
963 if (I->getType() == Type::FloatTy) {
964 Value *V = I->getOperand(0);
965 if (V->getType() == Type::DoubleTy) {
966 unsigned OpReg = getRegForValue(V);
967 if (OpReg == 0) return false;
968 unsigned ResultReg = createResultReg(X86::FR32RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000969 BuildMI(MBB, DL, TII.get(X86::CVTSD2SSrr), ResultReg).addReg(OpReg);
Dan Gohman78efce62008-09-10 21:02:08 +0000970 UpdateValueMap(I, ResultReg);
971 return true;
972 }
973 }
974 }
975
976 return false;
977}
978
Evan Cheng10a8d9c2008-09-07 08:47:42 +0000979bool X86FastISel::X86SelectTrunc(Instruction *I) {
980 if (Subtarget->is64Bit())
981 // All other cases should be handled by the tblgen generated code.
982 return false;
983 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
984 MVT DstVT = TLI.getValueType(I->getType());
Chris Lattner44ceb8a2009-03-13 16:36:42 +0000985
986 // This code only handles truncation to byte right now.
987 if (DstVT != MVT::i8 && DstVT != MVT::i1)
Evan Cheng10a8d9c2008-09-07 08:47:42 +0000988 // All other cases should be handled by the tblgen generated code.
989 return false;
990 if (SrcVT != MVT::i16 && SrcVT != MVT::i32)
991 // All other cases should be handled by the tblgen generated code.
992 return false;
993
994 unsigned InputReg = getRegForValue(I->getOperand(0));
995 if (!InputReg)
996 // Unhandled operand. Halt "fast" selection and bail.
997 return false;
998
999 // First issue a copy to GR16_ or GR32_.
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001000 unsigned CopyOpc = (SrcVT == MVT::i16) ? X86::MOV16rr : X86::MOV32rr;
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001001 const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16)
1002 ? X86::GR16_RegisterClass : X86::GR32_RegisterClass;
1003 unsigned CopyReg = createResultReg(CopyRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001004 BuildMI(MBB, DL, TII.get(CopyOpc), CopyReg).addReg(InputReg);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001005
1006 // Then issue an extract_subreg.
Chris Lattner44ceb8a2009-03-13 16:36:42 +00001007 unsigned ResultReg = FastEmitInst_extractsubreg(MVT::i8,
Evan Cheng536ab132009-01-22 09:10:11 +00001008 CopyReg, X86::SUBREG_8BIT);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001009 if (!ResultReg)
1010 return false;
1011
1012 UpdateValueMap(I, ResultReg);
1013 return true;
1014}
1015
Bill Wendling52370a12008-12-09 02:42:50 +00001016bool X86FastISel::X86SelectExtractValue(Instruction *I) {
1017 ExtractValueInst *EI = cast<ExtractValueInst>(I);
1018 Value *Agg = EI->getAggregateOperand();
1019
Chris Lattnera9a42252009-04-12 07:36:01 +00001020 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Agg)) {
1021 switch (CI->getIntrinsicID()) {
1022 default: break;
1023 case Intrinsic::sadd_with_overflow:
1024 case Intrinsic::uadd_with_overflow:
1025 // Cheat a little. We know that the registers for "add" and "seto" are
1026 // allocated sequentially. However, we only keep track of the register
1027 // for "add" in the value map. Use extractvalue's index to get the
1028 // correct register for "seto".
1029 UpdateValueMap(I, lookUpRegForValue(Agg) + *EI->idx_begin());
1030 return true;
Bill Wendling52370a12008-12-09 02:42:50 +00001031 }
1032 }
1033
1034 return false;
1035}
1036
Chris Lattnera9a42252009-04-12 07:36:01 +00001037bool X86FastISel::X86VisitIntrinsicCall(IntrinsicInst &I) {
Bill Wendling52370a12008-12-09 02:42:50 +00001038 // FIXME: Handle more intrinsics.
Chris Lattnera9a42252009-04-12 07:36:01 +00001039 switch (I.getIntrinsicID()) {
Bill Wendling52370a12008-12-09 02:42:50 +00001040 default: return false;
1041 case Intrinsic::sadd_with_overflow:
1042 case Intrinsic::uadd_with_overflow: {
Bill Wendlingc065b3f2008-12-09 07:55:31 +00001043 // Replace "add with overflow" intrinsics with an "add" instruction followed
1044 // by a seto/setc instruction. Later on, when the "extractvalue"
1045 // instructions are encountered, we use the fact that two registers were
1046 // created sequentially to get the correct registers for the "sum" and the
1047 // "overflow bit".
Bill Wendling52370a12008-12-09 02:42:50 +00001048 const Function *Callee = I.getCalledFunction();
1049 const Type *RetTy =
1050 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(unsigned(0));
1051
Chris Lattnera9a42252009-04-12 07:36:01 +00001052 MVT VT;
Bill Wendling52370a12008-12-09 02:42:50 +00001053 if (!isTypeLegal(RetTy, VT))
1054 return false;
1055
1056 Value *Op1 = I.getOperand(1);
1057 Value *Op2 = I.getOperand(2);
1058 unsigned Reg1 = getRegForValue(Op1);
1059 unsigned Reg2 = getRegForValue(Op2);
1060
1061 if (Reg1 == 0 || Reg2 == 0)
1062 // FIXME: Handle values *not* in registers.
1063 return false;
1064
1065 unsigned OpC = 0;
Bill Wendling52370a12008-12-09 02:42:50 +00001066 if (VT == MVT::i32)
1067 OpC = X86::ADD32rr;
1068 else if (VT == MVT::i64)
1069 OpC = X86::ADD64rr;
1070 else
1071 return false;
1072
1073 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001074 BuildMI(MBB, DL, TII.get(OpC), ResultReg).addReg(Reg1).addReg(Reg2);
Chris Lattner8d57b772009-04-12 07:51:14 +00001075 unsigned DestReg1 = UpdateValueMap(&I, ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001076
Chris Lattner8d57b772009-04-12 07:51:14 +00001077 // If the add with overflow is an intra-block value then we just want to
1078 // create temporaries for it like normal. If it is a cross-block value then
1079 // UpdateValueMap will return the cross-block register used. Since we
1080 // *really* want the value to be live in the register pair known by
1081 // UpdateValueMap, we have to use DestReg1+1 as the destination register in
1082 // the cross block case. In the non-cross-block case, we should just make
1083 // another register for the value.
1084 if (DestReg1 != ResultReg)
1085 ResultReg = DestReg1+1;
1086 else
1087 ResultReg = createResultReg(TLI.getRegClassFor(MVT::i8));
1088
Chris Lattnera9a42252009-04-12 07:36:01 +00001089 unsigned Opc = X86::SETBr;
1090 if (I.getIntrinsicID() == Intrinsic::sadd_with_overflow)
1091 Opc = X86::SETOr;
1092 BuildMI(MBB, DL, TII.get(Opc), ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001093 return true;
1094 }
1095 }
1096}
1097
Evan Chengf3d4efe2008-09-07 09:09:33 +00001098bool X86FastISel::X86SelectCall(Instruction *I) {
1099 CallInst *CI = cast<CallInst>(I);
1100 Value *Callee = I->getOperand(0);
1101
1102 // Can't handle inline asm yet.
1103 if (isa<InlineAsm>(Callee))
1104 return false;
1105
Bill Wendling52370a12008-12-09 02:42:50 +00001106 // Handle intrinsic calls.
Chris Lattnera9a42252009-04-12 07:36:01 +00001107 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI))
1108 return X86VisitIntrinsicCall(*II);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001109
Evan Chengf3d4efe2008-09-07 09:09:33 +00001110 // Handle only C and fastcc calling conventions for now.
1111 CallSite CS(CI);
1112 unsigned CC = CS.getCallingConv();
1113 if (CC != CallingConv::C &&
1114 CC != CallingConv::Fast &&
1115 CC != CallingConv::X86_FastCall)
1116 return false;
1117
1118 // Let SDISel handle vararg functions.
1119 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1120 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
1121 if (FTy->isVarArg())
1122 return false;
1123
1124 // Handle *simple* calls for now.
1125 const Type *RetTy = CS.getType();
1126 MVT RetVT;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001127 if (RetTy == Type::VoidTy)
1128 RetVT = MVT::isVoid;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001129 else if (!isTypeLegal(RetTy, RetVT, true))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001130 return false;
1131
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001132 // Materialize callee address in a register. FIXME: GV address can be
1133 // handled with a CALLpcrel32 instead.
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001134 X86AddressMode CalleeAM;
1135 if (!X86SelectAddress(Callee, CalleeAM, true))
1136 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001137 unsigned CalleeOp = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001138 GlobalValue *GV = 0;
1139 if (CalleeAM.Base.Reg != 0) {
1140 assert(CalleeAM.GV == 0);
1141 CalleeOp = CalleeAM.Base.Reg;
1142 } else if (CalleeAM.GV != 0) {
1143 assert(CalleeAM.GV != 0);
1144 GV = CalleeAM.GV;
1145 } else
1146 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001147
Evan Chengdebdea02008-09-08 17:15:42 +00001148 // Allow calls which produce i1 results.
1149 bool AndToI1 = false;
1150 if (RetVT == MVT::i1) {
1151 RetVT = MVT::i8;
1152 AndToI1 = true;
1153 }
1154
Evan Chengf3d4efe2008-09-07 09:09:33 +00001155 // Deal with call operands first.
Chris Lattner241ab472008-10-15 05:38:32 +00001156 SmallVector<Value*, 8> ArgVals;
1157 SmallVector<unsigned, 8> Args;
1158 SmallVector<MVT, 8> ArgVTs;
1159 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001160 Args.reserve(CS.arg_size());
Chris Lattner241ab472008-10-15 05:38:32 +00001161 ArgVals.reserve(CS.arg_size());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001162 ArgVTs.reserve(CS.arg_size());
1163 ArgFlags.reserve(CS.arg_size());
1164 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1165 i != e; ++i) {
1166 unsigned Arg = getRegForValue(*i);
1167 if (Arg == 0)
1168 return false;
1169 ISD::ArgFlagsTy Flags;
1170 unsigned AttrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00001171 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001172 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00001173 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001174 Flags.setZExt();
1175
1176 // FIXME: Only handle *easy* calls for now.
Devang Patel05988662008-09-25 21:00:45 +00001177 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1178 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1179 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1180 CS.paramHasAttr(AttrInd, Attribute::ByVal))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001181 return false;
1182
1183 const Type *ArgTy = (*i)->getType();
1184 MVT ArgVT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001185 if (!isTypeLegal(ArgTy, ArgVT))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001186 return false;
1187 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1188 Flags.setOrigAlign(OriginalAlignment);
1189
1190 Args.push_back(Arg);
Chris Lattner241ab472008-10-15 05:38:32 +00001191 ArgVals.push_back(*i);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001192 ArgVTs.push_back(ArgVT);
1193 ArgFlags.push_back(Flags);
1194 }
1195
1196 // Analyze operands of the call, assigning locations to each operand.
1197 SmallVector<CCValAssign, 16> ArgLocs;
1198 CCState CCInfo(CC, false, TM, ArgLocs);
1199 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC));
1200
1201 // Get a count of how many bytes are to be pushed on the stack.
1202 unsigned NumBytes = CCInfo.getNextStackOffset();
1203
1204 // Issue CALLSEQ_START
Dan Gohman6d4b0522008-10-01 18:28:06 +00001205 unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001206 BuildMI(MBB, DL, TII.get(AdjStackDown)).addImm(NumBytes);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001207
Chris Lattner438949a2008-10-15 05:30:52 +00001208 // Process argument: walk the register/memloc assignments, inserting
Evan Chengf3d4efe2008-09-07 09:09:33 +00001209 // copies / loads.
1210 SmallVector<unsigned, 4> RegArgs;
1211 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1212 CCValAssign &VA = ArgLocs[i];
1213 unsigned Arg = Args[VA.getValNo()];
1214 MVT ArgVT = ArgVTs[VA.getValNo()];
1215
1216 // Promote the value if needed.
1217 switch (VA.getLocInfo()) {
1218 default: assert(0 && "Unknown loc info!");
1219 case CCValAssign::Full: break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001220 case CCValAssign::SExt: {
1221 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1222 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001223 assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001224 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001225 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001226 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001227 }
1228 case CCValAssign::ZExt: {
1229 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1230 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001231 assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001232 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001233 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001234 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001235 }
1236 case CCValAssign::AExt: {
1237 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1238 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001239 if (!Emitted)
1240 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
Chris Lattner160f6cc2008-10-15 05:07:36 +00001241 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001242 if (!Emitted)
1243 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1244 Arg, ArgVT, Arg);
1245
Chris Lattnera33649e2008-12-19 17:03:38 +00001246 assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted;
Evan Cheng24e3a902008-09-08 06:35:17 +00001247 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001248 break;
1249 }
Evan Cheng24e3a902008-09-08 06:35:17 +00001250 }
Evan Chengf3d4efe2008-09-07 09:09:33 +00001251
1252 if (VA.isRegLoc()) {
1253 TargetRegisterClass* RC = TLI.getRegClassFor(ArgVT);
1254 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), VA.getLocReg(),
1255 Arg, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001256 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001257 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001258 RegArgs.push_back(VA.getLocReg());
1259 } else {
1260 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman0586d912008-09-10 20:11:02 +00001261 X86AddressMode AM;
1262 AM.Base.Reg = StackPtr;
1263 AM.Disp = LocMemOffset;
Chris Lattner241ab472008-10-15 05:38:32 +00001264 Value *ArgVal = ArgVals[VA.getValNo()];
1265
1266 // If this is a really simple value, emit this with the Value* version of
1267 // X86FastEmitStore. If it isn't simple, we don't want to do this, as it
1268 // can cause us to reevaluate the argument.
1269 if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal))
1270 X86FastEmitStore(ArgVT, ArgVal, AM);
1271 else
1272 X86FastEmitStore(ArgVT, Arg, AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001273 }
1274 }
1275
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001276 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1277 // GOT pointer.
1278 if (!Subtarget->is64Bit() &&
1279 TM.getRelocationModel() == Reloc::PIC_ &&
1280 Subtarget->isPICStyleGOT()) {
1281 TargetRegisterClass *RC = X86::GR32RegisterClass;
Dan Gohman57c3dac2008-09-30 00:58:23 +00001282 unsigned Base = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001283 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), X86::EBX, Base, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001284 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001285 Emitted = true;
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001286 }
1287
Evan Chengf3d4efe2008-09-07 09:09:33 +00001288 // Issue the call.
1289 unsigned CallOpc = CalleeOp
1290 ? (Subtarget->is64Bit() ? X86::CALL64r : X86::CALL32r)
1291 : (Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32);
1292 MachineInstrBuilder MIB = CalleeOp
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001293 ? BuildMI(MBB, DL, TII.get(CallOpc)).addReg(CalleeOp)
1294 : BuildMI(MBB, DL, TII.get(CallOpc)).addGlobalAddress(GV);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001295
1296 // Add an implicit use GOT pointer in EBX.
1297 if (!Subtarget->is64Bit() &&
1298 TM.getRelocationModel() == Reloc::PIC_ &&
1299 Subtarget->isPICStyleGOT())
1300 MIB.addReg(X86::EBX);
1301
Evan Chengf3d4efe2008-09-07 09:09:33 +00001302 // Add implicit physical register uses to the call.
Dan Gohman8c3f8b62008-10-07 22:10:33 +00001303 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1304 MIB.addReg(RegArgs[i]);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001305
1306 // Issue CALLSEQ_END
Dan Gohman6d4b0522008-10-01 18:28:06 +00001307 unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001308 BuildMI(MBB, DL, TII.get(AdjStackUp)).addImm(NumBytes).addImm(0);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001309
1310 // Now handle call return value (if any).
Evan Chengf3d4efe2008-09-07 09:09:33 +00001311 if (RetVT.getSimpleVT() != MVT::isVoid) {
1312 SmallVector<CCValAssign, 16> RVLocs;
1313 CCState CCInfo(CC, false, TM, RVLocs);
1314 CCInfo.AnalyzeCallResult(RetVT, RetCC_X86);
1315
1316 // Copy all of the result registers out of their specified physreg.
1317 assert(RVLocs.size() == 1 && "Can't handle multi-value calls!");
1318 MVT CopyVT = RVLocs[0].getValVT();
1319 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
1320 TargetRegisterClass *SrcRC = DstRC;
1321
1322 // If this is a call to a function that returns an fp value on the x87 fp
1323 // stack, but where we prefer to use the value in xmm registers, copy it
1324 // out as F80 and use a truncate to move it from fp stack reg to xmm reg.
1325 if ((RVLocs[0].getLocReg() == X86::ST0 ||
1326 RVLocs[0].getLocReg() == X86::ST1) &&
1327 isScalarFPTypeInSSEReg(RVLocs[0].getValVT())) {
1328 CopyVT = MVT::f80;
1329 SrcRC = X86::RSTRegisterClass;
1330 DstRC = X86::RFP80RegisterClass;
1331 }
1332
1333 unsigned ResultReg = createResultReg(DstRC);
1334 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
1335 RVLocs[0].getLocReg(), DstRC, SrcRC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001336 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001337 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001338 if (CopyVT != RVLocs[0].getValVT()) {
1339 // Round the F80 the right size, which also moves to the appropriate xmm
1340 // register. This is accomplished by storing the F80 value in memory and
1341 // then loading it back. Ewww...
1342 MVT ResVT = RVLocs[0].getValVT();
1343 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
1344 unsigned MemSize = ResVT.getSizeInBits()/8;
Dan Gohman0586d912008-09-10 20:11:02 +00001345 int FI = MFI.CreateStackObject(MemSize, MemSize);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001346 addFrameReference(BuildMI(MBB, DL, TII.get(Opc)), FI).addReg(ResultReg);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001347 DstRC = ResVT == MVT::f32
1348 ? X86::FR32RegisterClass : X86::FR64RegisterClass;
1349 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
1350 ResultReg = createResultReg(DstRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001351 addFrameReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), FI);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001352 }
1353
Evan Chengdebdea02008-09-08 17:15:42 +00001354 if (AndToI1) {
1355 // Mask out all but lowest bit for some call which produces an i1.
1356 unsigned AndResult = createResultReg(X86::GR8RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001357 BuildMI(MBB, DL,
1358 TII.get(X86::AND8ri), AndResult).addReg(ResultReg).addImm(1);
Evan Chengdebdea02008-09-08 17:15:42 +00001359 ResultReg = AndResult;
1360 }
1361
Evan Chengf3d4efe2008-09-07 09:09:33 +00001362 UpdateValueMap(I, ResultReg);
1363 }
1364
1365 return true;
1366}
1367
1368
Dan Gohman99b21822008-08-28 23:21:34 +00001369bool
Dan Gohman3df24e62008-09-03 23:12:08 +00001370X86FastISel::TargetSelectInstruction(Instruction *I) {
Dan Gohman99b21822008-08-28 23:21:34 +00001371 switch (I->getOpcode()) {
1372 default: break;
Evan Cheng8b19e562008-09-03 06:44:39 +00001373 case Instruction::Load:
Dan Gohman3df24e62008-09-03 23:12:08 +00001374 return X86SelectLoad(I);
Owen Anderson79924eb2008-09-04 16:48:33 +00001375 case Instruction::Store:
1376 return X86SelectStore(I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +00001377 case Instruction::ICmp:
1378 case Instruction::FCmp:
1379 return X86SelectCmp(I);
Dan Gohmand89ae992008-09-05 01:06:14 +00001380 case Instruction::ZExt:
1381 return X86SelectZExt(I);
1382 case Instruction::Br:
1383 return X86SelectBranch(I);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001384 case Instruction::Call:
1385 return X86SelectCall(I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001386 case Instruction::LShr:
1387 case Instruction::AShr:
1388 case Instruction::Shl:
1389 return X86SelectShift(I);
1390 case Instruction::Select:
1391 return X86SelectSelect(I);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001392 case Instruction::Trunc:
1393 return X86SelectTrunc(I);
Dan Gohman78efce62008-09-10 21:02:08 +00001394 case Instruction::FPExt:
1395 return X86SelectFPExt(I);
1396 case Instruction::FPTrunc:
1397 return X86SelectFPTrunc(I);
Bill Wendling52370a12008-12-09 02:42:50 +00001398 case Instruction::ExtractValue:
1399 return X86SelectExtractValue(I);
Dan Gohman474d3b32009-03-13 23:53:06 +00001400 case Instruction::IntToPtr: // Deliberate fall-through.
1401 case Instruction::PtrToInt: {
1402 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1403 MVT DstVT = TLI.getValueType(I->getType());
1404 if (DstVT.bitsGT(SrcVT))
1405 return X86SelectZExt(I);
1406 if (DstVT.bitsLT(SrcVT))
1407 return X86SelectTrunc(I);
1408 unsigned Reg = getRegForValue(I->getOperand(0));
1409 if (Reg == 0) return false;
1410 UpdateValueMap(I, Reg);
1411 return true;
1412 }
Dan Gohman99b21822008-08-28 23:21:34 +00001413 }
1414
1415 return false;
1416}
1417
Dan Gohman0586d912008-09-10 20:11:02 +00001418unsigned X86FastISel::TargetMaterializeConstant(Constant *C) {
Evan Cheng59fbc802008-09-09 01:26:59 +00001419 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001420 if (!isTypeLegal(C->getType(), VT))
Owen Anderson95267a12008-09-05 00:06:23 +00001421 return false;
1422
1423 // Get opcode and regclass of the output for the given load instruction.
1424 unsigned Opc = 0;
1425 const TargetRegisterClass *RC = NULL;
1426 switch (VT.getSimpleVT()) {
1427 default: return false;
1428 case MVT::i8:
1429 Opc = X86::MOV8rm;
1430 RC = X86::GR8RegisterClass;
1431 break;
1432 case MVT::i16:
1433 Opc = X86::MOV16rm;
1434 RC = X86::GR16RegisterClass;
1435 break;
1436 case MVT::i32:
1437 Opc = X86::MOV32rm;
1438 RC = X86::GR32RegisterClass;
1439 break;
1440 case MVT::i64:
1441 // Must be in x86-64 mode.
1442 Opc = X86::MOV64rm;
1443 RC = X86::GR64RegisterClass;
1444 break;
1445 case MVT::f32:
1446 if (Subtarget->hasSSE1()) {
1447 Opc = X86::MOVSSrm;
1448 RC = X86::FR32RegisterClass;
1449 } else {
1450 Opc = X86::LD_Fp32m;
1451 RC = X86::RFP32RegisterClass;
1452 }
1453 break;
1454 case MVT::f64:
1455 if (Subtarget->hasSSE2()) {
1456 Opc = X86::MOVSDrm;
1457 RC = X86::FR64RegisterClass;
1458 } else {
1459 Opc = X86::LD_Fp64m;
1460 RC = X86::RFP64RegisterClass;
1461 }
1462 break;
1463 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +00001464 // No f80 support yet.
1465 return false;
Owen Anderson95267a12008-09-05 00:06:23 +00001466 }
1467
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001468 // Materialize addresses with LEA instructions.
Owen Anderson95267a12008-09-05 00:06:23 +00001469 if (isa<GlobalValue>(C)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001470 X86AddressMode AM;
1471 if (X86SelectAddress(C, AM, false)) {
1472 if (TLI.getPointerTy() == MVT::i32)
1473 Opc = X86::LEA32r;
1474 else
1475 Opc = X86::LEA64r;
1476 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001477 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Owen Anderson95267a12008-09-05 00:06:23 +00001478 return ResultReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001479 }
Evan Cheng0de588f2008-09-05 21:00:03 +00001480 return 0;
Owen Anderson95267a12008-09-05 00:06:23 +00001481 }
1482
Owen Anderson3b217c62008-09-06 01:11:01 +00001483 // MachineConstantPool wants an explicit alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +00001484 unsigned Align = TD.getPrefTypeAlignment(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001485 if (Align == 0) {
1486 // Alignment of vector types. FIXME!
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00001487 Align = TD.getTypePaddedSize(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001488 }
Owen Anderson95267a12008-09-05 00:06:23 +00001489
Dan Gohman5396c992008-09-30 01:21:32 +00001490 // x86-32 PIC requires a PIC base register for constant pools.
1491 unsigned PICBase = 0;
1492 if (TM.getRelocationModel() == Reloc::PIC_ &&
1493 !Subtarget->is64Bit())
1494 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1495
1496 // Create the load from the constant pool.
Dan Gohman0586d912008-09-10 20:11:02 +00001497 unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align);
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001498 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001499 addConstantPoolReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), MCPOffset,
Dan Gohman5396c992008-09-30 01:21:32 +00001500 PICBase);
1501
Owen Anderson95267a12008-09-05 00:06:23 +00001502 return ResultReg;
1503}
1504
Dan Gohman0586d912008-09-10 20:11:02 +00001505unsigned X86FastISel::TargetMaterializeAlloca(AllocaInst *C) {
Dan Gohman4e6ed5e2008-10-03 01:27:49 +00001506 // Fail on dynamic allocas. At this point, getRegForValue has already
1507 // checked its CSE maps, so if we're here trying to handle a dynamic
1508 // alloca, we're not going to succeed. X86SelectAddress has a
1509 // check for dynamic allocas, because it's called directly from
1510 // various places, but TargetMaterializeAlloca also needs a check
1511 // in order to avoid recursion between getRegForValue,
1512 // X86SelectAddrss, and TargetMaterializeAlloca.
1513 if (!StaticAllocaMap.count(C))
1514 return 0;
1515
Dan Gohman0586d912008-09-10 20:11:02 +00001516 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001517 if (!X86SelectAddress(C, AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +00001518 return 0;
1519 unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
1520 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
1521 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001522 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Dan Gohman0586d912008-09-10 20:11:02 +00001523 return ResultReg;
1524}
1525
Evan Chengc3f44b02008-09-03 00:03:49 +00001526namespace llvm {
Dan Gohman3df24e62008-09-03 23:12:08 +00001527 llvm::FastISel *X86::createFastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +00001528 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +00001529 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +00001530 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +00001531 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001532 DenseMap<const AllocaInst *, int> &am
1533#ifndef NDEBUG
1534 , SmallSet<Instruction*, 8> &cil
1535#endif
1536 ) {
Devang Patel83489bb2009-01-13 00:35:13 +00001537 return new X86FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001538#ifndef NDEBUG
1539 , cil
1540#endif
1541 );
Evan Chengc3f44b02008-09-03 00:03:49 +00001542 }
Dan Gohman99b21822008-08-28 23:21:34 +00001543}