blob: 492ba523aa4413d705dc33819ea2a4ce15a16aa8 [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;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000174 else
175 return CC_X86_64_C;
176 }
177
178 if (CC == CallingConv::X86_FastCall)
179 return CC_X86_32_FastCall;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000180 else if (CC == CallingConv::Fast)
181 return CC_X86_32_FastCC;
182 else
183 return CC_X86_32_C;
184}
185
Evan Cheng0de588f2008-09-05 21:00:03 +0000186/// X86FastEmitLoad - Emit a machine instruction to load a value of type VT.
Evan Chengf3d4efe2008-09-07 09:09:33 +0000187/// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
Evan Cheng0de588f2008-09-05 21:00:03 +0000188/// Return true and the result register by reference if it is possible.
Dan Gohman0586d912008-09-10 20:11:02 +0000189bool X86FastISel::X86FastEmitLoad(MVT VT, const X86AddressMode &AM,
Evan Cheng0de588f2008-09-05 21:00:03 +0000190 unsigned &ResultReg) {
191 // Get opcode and regclass of the output for the given load instruction.
192 unsigned Opc = 0;
193 const TargetRegisterClass *RC = NULL;
194 switch (VT.getSimpleVT()) {
195 default: return false;
196 case MVT::i8:
197 Opc = X86::MOV8rm;
198 RC = X86::GR8RegisterClass;
199 break;
200 case MVT::i16:
201 Opc = X86::MOV16rm;
202 RC = X86::GR16RegisterClass;
203 break;
204 case MVT::i32:
205 Opc = X86::MOV32rm;
206 RC = X86::GR32RegisterClass;
207 break;
208 case MVT::i64:
209 // Must be in x86-64 mode.
210 Opc = X86::MOV64rm;
211 RC = X86::GR64RegisterClass;
212 break;
213 case MVT::f32:
214 if (Subtarget->hasSSE1()) {
215 Opc = X86::MOVSSrm;
216 RC = X86::FR32RegisterClass;
217 } else {
218 Opc = X86::LD_Fp32m;
219 RC = X86::RFP32RegisterClass;
220 }
221 break;
222 case MVT::f64:
223 if (Subtarget->hasSSE2()) {
224 Opc = X86::MOVSDrm;
225 RC = X86::FR64RegisterClass;
226 } else {
227 Opc = X86::LD_Fp64m;
228 RC = X86::RFP64RegisterClass;
229 }
230 break;
231 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +0000232 // No f80 support yet.
233 return false;
Evan Cheng0de588f2008-09-05 21:00:03 +0000234 }
235
236 ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000237 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Evan Cheng0de588f2008-09-05 21:00:03 +0000238 return true;
239}
240
Evan Chengf3d4efe2008-09-07 09:09:33 +0000241/// X86FastEmitStore - Emit a machine instruction to store a value Val of
242/// type VT. The address is either pre-computed, consisted of a base ptr, Ptr
243/// and a displacement offset, or a GlobalAddress,
Evan Cheng0de588f2008-09-05 21:00:03 +0000244/// i.e. V. Return true if it is possible.
245bool
Evan Chengf3d4efe2008-09-07 09:09:33 +0000246X86FastISel::X86FastEmitStore(MVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +0000247 const X86AddressMode &AM) {
Dan Gohman863890e2008-09-08 16:31:35 +0000248 // Get opcode and regclass of the output for the given store instruction.
Evan Cheng0de588f2008-09-05 21:00:03 +0000249 unsigned Opc = 0;
Evan Cheng0de588f2008-09-05 21:00:03 +0000250 switch (VT.getSimpleVT()) {
Chris Lattner241ab472008-10-15 05:38:32 +0000251 case MVT::f80: // No f80 support yet.
Evan Cheng0de588f2008-09-05 21:00:03 +0000252 default: return false;
Chris Lattner241ab472008-10-15 05:38:32 +0000253 case MVT::i8: Opc = X86::MOV8mr; break;
254 case MVT::i16: Opc = X86::MOV16mr; break;
255 case MVT::i32: Opc = X86::MOV32mr; break;
256 case MVT::i64: Opc = X86::MOV64mr; break; // Must be in x86-64 mode.
Evan Cheng0de588f2008-09-05 21:00:03 +0000257 case MVT::f32:
Chris Lattner438949a2008-10-15 05:30:52 +0000258 Opc = Subtarget->hasSSE1() ? X86::MOVSSmr : X86::ST_Fp32m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000259 break;
260 case MVT::f64:
Chris Lattner438949a2008-10-15 05:30:52 +0000261 Opc = Subtarget->hasSSE2() ? X86::MOVSDmr : X86::ST_Fp64m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000262 break;
Evan Cheng0de588f2008-09-05 21:00:03 +0000263 }
Chris Lattner438949a2008-10-15 05:30:52 +0000264
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000265 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM).addReg(Val);
Evan Cheng0de588f2008-09-05 21:00:03 +0000266 return true;
267}
268
Chris Lattner438949a2008-10-15 05:30:52 +0000269bool X86FastISel::X86FastEmitStore(MVT VT, Value *Val,
270 const X86AddressMode &AM) {
271 // Handle 'null' like i32/i64 0.
272 if (isa<ConstantPointerNull>(Val))
273 Val = Constant::getNullValue(TD.getIntPtrType());
274
275 // If this is a store of a simple constant, fold the constant into the store.
276 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
277 unsigned Opc = 0;
278 switch (VT.getSimpleVT()) {
279 default: break;
280 case MVT::i8: Opc = X86::MOV8mi; break;
281 case MVT::i16: Opc = X86::MOV16mi; break;
282 case MVT::i32: Opc = X86::MOV32mi; break;
283 case MVT::i64:
284 // Must be a 32-bit sign extended value.
285 if ((int)CI->getSExtValue() == CI->getSExtValue())
286 Opc = X86::MOV64mi32;
287 break;
288 }
289
290 if (Opc) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000291 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM)
292 .addImm(CI->getSExtValue());
Chris Lattner438949a2008-10-15 05:30:52 +0000293 return true;
294 }
295 }
296
297 unsigned ValReg = getRegForValue(Val);
298 if (ValReg == 0)
Chris Lattner438949a2008-10-15 05:30:52 +0000299 return false;
300
301 return X86FastEmitStore(VT, ValReg, AM);
302}
303
Evan Cheng24e3a902008-09-08 06:35:17 +0000304/// X86FastEmitExtend - Emit a machine instruction to extend a value Src of
305/// type SrcVT to type DstVT using the specified extension opcode Opc (e.g.
306/// ISD::SIGN_EXTEND).
307bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT,
308 unsigned Src, MVT SrcVT,
309 unsigned &ResultReg) {
Owen Andersonac34a002008-09-11 19:44:55 +0000310 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, Src);
311
312 if (RR != 0) {
313 ResultReg = RR;
314 return true;
315 } else
316 return false;
Evan Cheng24e3a902008-09-08 06:35:17 +0000317}
318
Dan Gohman0586d912008-09-10 20:11:02 +0000319/// X86SelectAddress - Attempt to fill in an address from the given value.
320///
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000321bool X86FastISel::X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall) {
Duncan Sands12513882009-06-03 12:05:18 +0000322 User *U = NULL;
Dan Gohman35893082008-09-18 23:23:44 +0000323 unsigned Opcode = Instruction::UserOp1;
324 if (Instruction *I = dyn_cast<Instruction>(V)) {
325 Opcode = I->getOpcode();
326 U = I;
327 } else if (ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
328 Opcode = C->getOpcode();
329 U = C;
330 }
Dan Gohman0586d912008-09-10 20:11:02 +0000331
Dan Gohman35893082008-09-18 23:23:44 +0000332 switch (Opcode) {
333 default: break;
334 case Instruction::BitCast:
335 // Look past bitcasts.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000336 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman35893082008-09-18 23:23:44 +0000337
338 case Instruction::IntToPtr:
339 // Look past no-op inttoptrs.
340 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000341 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000342 break;
Dan Gohman35893082008-09-18 23:23:44 +0000343
344 case Instruction::PtrToInt:
345 // Look past no-op ptrtoints.
346 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000347 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000348 break;
Dan Gohman35893082008-09-18 23:23:44 +0000349
350 case Instruction::Alloca: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000351 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000352 // Do static allocas.
353 const AllocaInst *A = cast<AllocaInst>(V);
Dan Gohman0586d912008-09-10 20:11:02 +0000354 DenseMap<const AllocaInst*, int>::iterator SI = StaticAllocaMap.find(A);
Dan Gohman97135e12008-09-26 19:15:30 +0000355 if (SI != StaticAllocaMap.end()) {
356 AM.BaseType = X86AddressMode::FrameIndexBase;
357 AM.Base.FrameIndex = SI->second;
358 return true;
359 }
360 break;
Dan Gohman35893082008-09-18 23:23:44 +0000361 }
362
363 case Instruction::Add: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000364 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000365 // Adds of constants are common and easy enough.
366 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman09aae462008-09-26 20:04:15 +0000367 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
368 // They have to fit in the 32-bit signed displacement field though.
369 if (isInt32(Disp)) {
370 AM.Disp = (uint32_t)Disp;
371 return X86SelectAddress(U->getOperand(0), AM, isCall);
372 }
Dan Gohman0586d912008-09-10 20:11:02 +0000373 }
Dan Gohman35893082008-09-18 23:23:44 +0000374 break;
375 }
376
377 case Instruction::GetElementPtr: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000378 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000379 // Pattern-match simple GEPs.
Dan Gohman09aae462008-09-26 20:04:15 +0000380 uint64_t Disp = (int32_t)AM.Disp;
Dan Gohman35893082008-09-18 23:23:44 +0000381 unsigned IndexReg = AM.IndexReg;
382 unsigned Scale = AM.Scale;
383 gep_type_iterator GTI = gep_type_begin(U);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000384 // Iterate through the indices, folding what we can. Constants can be
385 // folded, and one dynamic index can be handled, if the scale is supported.
Dan Gohman35893082008-09-18 23:23:44 +0000386 for (User::op_iterator i = U->op_begin() + 1, e = U->op_end();
387 i != e; ++i, ++GTI) {
388 Value *Op = *i;
389 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
390 const StructLayout *SL = TD.getStructLayout(STy);
391 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
392 Disp += SL->getElementOffset(Idx);
393 } else {
Duncan Sands777d2302009-05-09 07:06:46 +0000394 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
Dan Gohman35893082008-09-18 23:23:44 +0000395 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
396 // Constant-offset addressing.
Dan Gohman09aae462008-09-26 20:04:15 +0000397 Disp += CI->getSExtValue() * S;
Dan Gohman35893082008-09-18 23:23:44 +0000398 } else if (IndexReg == 0 &&
Chris Lattner4c1b6062009-06-27 05:24:12 +0000399 (!AM.GV || !Subtarget->isPICStyleRIPRel()) &&
Dan Gohman35893082008-09-18 23:23:44 +0000400 (S == 1 || S == 2 || S == 4 || S == 8)) {
401 // Scaled-index addressing.
402 Scale = S;
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000403 IndexReg = getRegForGEPIndex(Op);
Dan Gohman35893082008-09-18 23:23:44 +0000404 if (IndexReg == 0)
405 return false;
406 } else
407 // Unsupported.
408 goto unsupported_gep;
409 }
410 }
Dan Gohman09aae462008-09-26 20:04:15 +0000411 // Check for displacement overflow.
412 if (!isInt32(Disp))
413 break;
Dan Gohman35893082008-09-18 23:23:44 +0000414 // Ok, the GEP indices were covered by constant-offset and scaled-index
415 // addressing. Update the address state and move on to examining the base.
416 AM.IndexReg = IndexReg;
417 AM.Scale = Scale;
Dan Gohman09aae462008-09-26 20:04:15 +0000418 AM.Disp = (uint32_t)Disp;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000419 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman35893082008-09-18 23:23:44 +0000420 unsupported_gep:
421 // Ok, the GEP indices weren't all covered.
422 break;
423 }
424 }
425
426 // Handle constant address.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000427 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000428 // Can't handle alternate code models yet.
429 if (TM.getCodeModel() != CodeModel::Default &&
430 TM.getCodeModel() != CodeModel::Small)
431 return false;
432
Dan Gohman97135e12008-09-26 19:15:30 +0000433 // RIP-relative addresses can't have additional register operands.
Chris Lattner4c1b6062009-06-27 05:24:12 +0000434 if (Subtarget->isPICStyleRIPRel() &&
Dan Gohman97135e12008-09-26 19:15:30 +0000435 (AM.Base.Reg != 0 || AM.IndexReg != 0))
436 return false;
437
Dan Gohmane9865942009-02-23 22:03:08 +0000438 // Can't handle TLS yet.
439 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
440 if (GVar->isThreadLocal())
441 return false;
442
Chris Lattnerff7727f2009-07-09 06:41:35 +0000443 // Okay, we've committed to selecting this global. Set up the basic address.
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000444 AM.GV = GV;
Chris Lattner18c59872009-06-27 04:16:01 +0000445
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000446 if (!isCall &&
447 TM.getRelocationModel() == Reloc::PIC_ &&
448 !Subtarget->is64Bit())
Dan Gohman57c3dac2008-09-30 00:58:23 +0000449 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000450
Chris Lattnerff7727f2009-07-09 06:41:35 +0000451 // If the ABI doesn't require an extra load, return a direct reference to
452 // the global.
453 if (!Subtarget->GVRequiresExtraLoad(GV, TM, isCall)) {
454 if (Subtarget->isPICStyleRIPRel()) {
455 // Use rip-relative addressing if we can. Above we verified that the
456 // base and index registers are unused.
457 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
458 AM.Base.Reg = X86::RIP;
Dan Gohman7e8ef602008-09-19 23:42:04 +0000459 }
Chris Lattner35c28ec2009-07-01 03:27:19 +0000460
Chris Lattnerff7727f2009-07-09 06:41:35 +0000461 return true;
462 }
463
464 // Check to see if we've already materialized this stub loaded value into a
465 // register in this block. If so, just reuse it.
466 DenseMap<const Value*, unsigned>::iterator I = LocalValueMap.find(V);
467 unsigned LoadReg;
468 if (I != LocalValueMap.end() && I->second != 0) {
469 LoadReg = I->second;
470 } else {
Chris Lattner35c28ec2009-07-01 03:27:19 +0000471 // Issue load from stub.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000472 unsigned Opc = 0;
473 const TargetRegisterClass *RC = NULL;
Dan Gohman789ce772008-09-25 23:34:02 +0000474 X86AddressMode StubAM;
475 StubAM.Base.Reg = AM.Base.Reg;
476 StubAM.GV = AM.GV;
Chris Lattner35c28ec2009-07-01 03:27:19 +0000477
478 if (TLI.getPointerTy() == MVT::i32) {
479 Opc = X86::MOV32rm;
480 RC = X86::GR32RegisterClass;
481
Chris Lattner15a380a2009-07-09 04:39:06 +0000482 if (Subtarget->isPICStyleGOT())
Chris Lattner35c28ec2009-07-01 03:27:19 +0000483 StubAM.GVOpFlags = X86II::MO_GOT;
484
485 } else {
486 Opc = X86::MOV64rm;
487 RC = X86::GR64RegisterClass;
488
Chris Lattnercd714b12009-07-02 04:22:01 +0000489 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner35c28ec2009-07-01 03:27:19 +0000490 StubAM.GVOpFlags = X86II::MO_GOTPCREL;
Chris Lattnercd714b12009-07-02 04:22:01 +0000491 StubAM.Base.Reg = X86::RIP;
492 }
Chris Lattner35c28ec2009-07-01 03:27:19 +0000493 }
Chris Lattnerff7727f2009-07-09 06:41:35 +0000494
495 LoadReg = createResultReg(RC);
496 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), LoadReg), StubAM);
497
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000498 // Prevent loading GV stub multiple times in same MBB.
Chris Lattnerff7727f2009-07-09 06:41:35 +0000499 LocalValueMap[V] = LoadReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000500 }
Chris Lattner18c59872009-06-27 04:16:01 +0000501
Chris Lattnerff7727f2009-07-09 06:41:35 +0000502 // Now construct the final address. Note that the Disp, Scale,
503 // and Index values may already be set here.
504 AM.Base.Reg = LoadReg;
505 AM.GV = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000506 return true;
Dan Gohman0586d912008-09-10 20:11:02 +0000507 }
508
Dan Gohman97135e12008-09-26 19:15:30 +0000509 // If all else fails, try to materialize the value in a register.
Chris Lattner4c1b6062009-06-27 05:24:12 +0000510 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
Dan Gohman97135e12008-09-26 19:15:30 +0000511 if (AM.Base.Reg == 0) {
512 AM.Base.Reg = getRegForValue(V);
513 return AM.Base.Reg != 0;
514 }
515 if (AM.IndexReg == 0) {
516 assert(AM.Scale == 1 && "Scale with no index!");
517 AM.IndexReg = getRegForValue(V);
518 return AM.IndexReg != 0;
519 }
520 }
521
522 return false;
Dan Gohman0586d912008-09-10 20:11:02 +0000523}
524
Owen Andersona3971df2008-09-04 07:08:58 +0000525/// X86SelectStore - Select and emit code to implement store instructions.
526bool X86FastISel::X86SelectStore(Instruction* I) {
Evan Cheng24e3a902008-09-08 06:35:17 +0000527 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000528 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Owen Andersona3971df2008-09-04 07:08:58 +0000529 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000530
Dan Gohman0586d912008-09-10 20:11:02 +0000531 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000532 if (!X86SelectAddress(I->getOperand(1), AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +0000533 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000534
Chris Lattner438949a2008-10-15 05:30:52 +0000535 return X86FastEmitStore(VT, I->getOperand(0), AM);
Owen Andersona3971df2008-09-04 07:08:58 +0000536}
537
Evan Cheng8b19e562008-09-03 06:44:39 +0000538/// X86SelectLoad - Select and emit code to implement load instructions.
539///
Dan Gohman3df24e62008-09-03 23:12:08 +0000540bool X86FastISel::X86SelectLoad(Instruction *I) {
Evan Chengf3d4efe2008-09-07 09:09:33 +0000541 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000542 if (!isTypeLegal(I->getType(), VT))
Evan Cheng8b19e562008-09-03 06:44:39 +0000543 return false;
544
Dan Gohman0586d912008-09-10 20:11:02 +0000545 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000546 if (!X86SelectAddress(I->getOperand(0), AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +0000547 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000548
Evan Cheng0de588f2008-09-05 21:00:03 +0000549 unsigned ResultReg = 0;
Dan Gohman0586d912008-09-10 20:11:02 +0000550 if (X86FastEmitLoad(VT, AM, ResultReg)) {
Evan Cheng0de588f2008-09-05 21:00:03 +0000551 UpdateValueMap(I, ResultReg);
552 return true;
Evan Cheng8b19e562008-09-03 06:44:39 +0000553 }
Evan Cheng0de588f2008-09-05 21:00:03 +0000554 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000555}
556
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000557static unsigned X86ChooseCmpOpcode(MVT VT) {
Dan Gohmand98d6202008-10-02 22:15:21 +0000558 switch (VT.getSimpleVT()) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000559 default: return 0;
560 case MVT::i8: return X86::CMP8rr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000561 case MVT::i16: return X86::CMP16rr;
562 case MVT::i32: return X86::CMP32rr;
563 case MVT::i64: return X86::CMP64rr;
564 case MVT::f32: return X86::UCOMISSrr;
565 case MVT::f64: return X86::UCOMISDrr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000566 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000567}
568
Chris Lattner0e13c782008-10-15 04:13:29 +0000569/// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS
570/// of the comparison, return an opcode that works for the compare (e.g.
571/// CMP32ri) otherwise return 0.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000572static unsigned X86ChooseCmpImmediateOpcode(MVT VT, ConstantInt *RHSC) {
573 switch (VT.getSimpleVT()) {
Chris Lattner0e13c782008-10-15 04:13:29 +0000574 // Otherwise, we can't fold the immediate into this comparison.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000575 default: return 0;
576 case MVT::i8: return X86::CMP8ri;
577 case MVT::i16: return X86::CMP16ri;
578 case MVT::i32: return X86::CMP32ri;
579 case MVT::i64:
580 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
581 // field.
Chris Lattner438949a2008-10-15 05:30:52 +0000582 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
Chris Lattner45ac17f2008-10-15 04:32:45 +0000583 return X86::CMP64ri32;
584 return 0;
585 }
Chris Lattner0e13c782008-10-15 04:13:29 +0000586}
587
Chris Lattner9a08a612008-10-15 04:26:38 +0000588bool X86FastISel::X86FastEmitCompare(Value *Op0, Value *Op1, MVT VT) {
589 unsigned Op0Reg = getRegForValue(Op0);
590 if (Op0Reg == 0) return false;
591
Chris Lattnerd53886b2008-10-15 05:18:04 +0000592 // Handle 'null' like i32/i64 0.
593 if (isa<ConstantPointerNull>(Op1))
594 Op1 = Constant::getNullValue(TD.getIntPtrType());
595
Chris Lattner9a08a612008-10-15 04:26:38 +0000596 // We have two options: compare with register or immediate. If the RHS of
597 // the compare is an immediate that we can fold into this compare, use
598 // CMPri, otherwise use CMPrr.
599 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000600 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000601 BuildMI(MBB, DL, TII.get(CompareImmOpc)).addReg(Op0Reg)
Chris Lattner9a08a612008-10-15 04:26:38 +0000602 .addImm(Op1C->getSExtValue());
603 return true;
604 }
605 }
606
607 unsigned CompareOpc = X86ChooseCmpOpcode(VT);
608 if (CompareOpc == 0) return false;
609
610 unsigned Op1Reg = getRegForValue(Op1);
611 if (Op1Reg == 0) return false;
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000612 BuildMI(MBB, DL, TII.get(CompareOpc)).addReg(Op0Reg).addReg(Op1Reg);
Chris Lattner9a08a612008-10-15 04:26:38 +0000613
614 return true;
615}
616
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000617bool X86FastISel::X86SelectCmp(Instruction *I) {
618 CmpInst *CI = cast<CmpInst>(I);
619
Dan Gohman9b66d732008-09-30 00:48:39 +0000620 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000621 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Dan Gohman4f22bb02008-09-05 01:33:56 +0000622 return false;
623
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000624 unsigned ResultReg = createResultReg(&X86::GR8RegClass);
Chris Lattner54aebde2008-10-15 03:47:17 +0000625 unsigned SetCCOpc;
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000626 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000627 switch (CI->getPredicate()) {
628 case CmpInst::FCMP_OEQ: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000629 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
630 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000631
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000632 unsigned EReg = createResultReg(&X86::GR8RegClass);
633 unsigned NPReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000634 BuildMI(MBB, DL, TII.get(X86::SETEr), EReg);
635 BuildMI(MBB, DL, TII.get(X86::SETNPr), NPReg);
636 BuildMI(MBB, DL,
637 TII.get(X86::AND8rr), ResultReg).addReg(NPReg).addReg(EReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000638 UpdateValueMap(I, ResultReg);
639 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000640 }
641 case CmpInst::FCMP_UNE: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000642 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
643 return false;
644
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000645 unsigned NEReg = createResultReg(&X86::GR8RegClass);
646 unsigned PReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000647 BuildMI(MBB, DL, TII.get(X86::SETNEr), NEReg);
648 BuildMI(MBB, DL, TII.get(X86::SETPr), PReg);
649 BuildMI(MBB, DL, TII.get(X86::OR8rr), ResultReg).addReg(PReg).addReg(NEReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000650 UpdateValueMap(I, ResultReg);
651 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000652 }
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000653 case CmpInst::FCMP_OGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
654 case CmpInst::FCMP_OGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
655 case CmpInst::FCMP_OLT: SwapArgs = true; SetCCOpc = X86::SETAr; break;
656 case CmpInst::FCMP_OLE: SwapArgs = true; SetCCOpc = X86::SETAEr; break;
657 case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
658 case CmpInst::FCMP_ORD: SwapArgs = false; SetCCOpc = X86::SETNPr; break;
659 case CmpInst::FCMP_UNO: SwapArgs = false; SetCCOpc = X86::SETPr; break;
660 case CmpInst::FCMP_UEQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
661 case CmpInst::FCMP_UGT: SwapArgs = true; SetCCOpc = X86::SETBr; break;
662 case CmpInst::FCMP_UGE: SwapArgs = true; SetCCOpc = X86::SETBEr; break;
663 case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
664 case CmpInst::FCMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
665
666 case CmpInst::ICMP_EQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
667 case CmpInst::ICMP_NE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
668 case CmpInst::ICMP_UGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
669 case CmpInst::ICMP_UGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
670 case CmpInst::ICMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
671 case CmpInst::ICMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
672 case CmpInst::ICMP_SGT: SwapArgs = false; SetCCOpc = X86::SETGr; break;
673 case CmpInst::ICMP_SGE: SwapArgs = false; SetCCOpc = X86::SETGEr; break;
674 case CmpInst::ICMP_SLT: SwapArgs = false; SetCCOpc = X86::SETLr; break;
675 case CmpInst::ICMP_SLE: SwapArgs = false; SetCCOpc = X86::SETLEr; break;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000676 default:
677 return false;
678 }
679
Chris Lattner9a08a612008-10-15 04:26:38 +0000680 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000681 if (SwapArgs)
Chris Lattner9a08a612008-10-15 04:26:38 +0000682 std::swap(Op0, Op1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000683
Chris Lattner9a08a612008-10-15 04:26:38 +0000684 // Emit a compare of Op0/Op1.
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000685 if (!X86FastEmitCompare(Op0, Op1, VT))
686 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000687
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000688 BuildMI(MBB, DL, TII.get(SetCCOpc), ResultReg);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000689 UpdateValueMap(I, ResultReg);
690 return true;
691}
Evan Cheng8b19e562008-09-03 06:44:39 +0000692
Dan Gohmand89ae992008-09-05 01:06:14 +0000693bool X86FastISel::X86SelectZExt(Instruction *I) {
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000694 // Handle zero-extension from i1 to i8, which is common.
Dan Gohmand89ae992008-09-05 01:06:14 +0000695 if (I->getType() == Type::Int8Ty &&
696 I->getOperand(0)->getType() == Type::Int1Ty) {
697 unsigned ResultReg = getRegForValue(I->getOperand(0));
Dan Gohmanf52550b2008-09-05 01:15:35 +0000698 if (ResultReg == 0) return false;
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000699 // Set the high bits to zero.
700 ResultReg = FastEmitZExtFromI1(MVT::i8, ResultReg);
701 if (ResultReg == 0) return false;
Dan Gohmand89ae992008-09-05 01:06:14 +0000702 UpdateValueMap(I, ResultReg);
703 return true;
704 }
705
706 return false;
707}
708
Chris Lattner9a08a612008-10-15 04:26:38 +0000709
Dan Gohmand89ae992008-09-05 01:06:14 +0000710bool X86FastISel::X86SelectBranch(Instruction *I) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000711 // Unconditional branches are selected by tablegen-generated code.
Dan Gohmand98d6202008-10-02 22:15:21 +0000712 // Handle a conditional branch.
713 BranchInst *BI = cast<BranchInst>(I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000714 MachineBasicBlock *TrueMBB = MBBMap[BI->getSuccessor(0)];
715 MachineBasicBlock *FalseMBB = MBBMap[BI->getSuccessor(1)];
716
Dan Gohmand98d6202008-10-02 22:15:21 +0000717 // Fold the common case of a conditional branch with a comparison.
718 if (CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
719 if (CI->hasOneUse()) {
720 MVT VT = TLI.getValueType(CI->getOperand(0)->getType());
Dan Gohmand89ae992008-09-05 01:06:14 +0000721
Dan Gohmand98d6202008-10-02 22:15:21 +0000722 // Try to take advantage of fallthrough opportunities.
723 CmpInst::Predicate Predicate = CI->getPredicate();
724 if (MBB->isLayoutSuccessor(TrueMBB)) {
725 std::swap(TrueMBB, FalseMBB);
726 Predicate = CmpInst::getInversePredicate(Predicate);
727 }
728
Chris Lattner871d2462008-10-15 03:58:05 +0000729 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
730 unsigned BranchOpc; // Opcode to jump on, e.g. "X86::JA"
731
Dan Gohmand98d6202008-10-02 22:15:21 +0000732 switch (Predicate) {
Dan Gohman7b66e042008-10-21 18:24:51 +0000733 case CmpInst::FCMP_OEQ:
734 std::swap(TrueMBB, FalseMBB);
735 Predicate = CmpInst::FCMP_UNE;
736 // FALL THROUGH
737 case CmpInst::FCMP_UNE: SwapArgs = false; BranchOpc = X86::JNE; break;
Chris Lattner871d2462008-10-15 03:58:05 +0000738 case CmpInst::FCMP_OGT: SwapArgs = false; BranchOpc = X86::JA; break;
739 case CmpInst::FCMP_OGE: SwapArgs = false; BranchOpc = X86::JAE; break;
740 case CmpInst::FCMP_OLT: SwapArgs = true; BranchOpc = X86::JA; break;
741 case CmpInst::FCMP_OLE: SwapArgs = true; BranchOpc = X86::JAE; break;
742 case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE; break;
743 case CmpInst::FCMP_ORD: SwapArgs = false; BranchOpc = X86::JNP; break;
744 case CmpInst::FCMP_UNO: SwapArgs = false; BranchOpc = X86::JP; break;
745 case CmpInst::FCMP_UEQ: SwapArgs = false; BranchOpc = X86::JE; break;
746 case CmpInst::FCMP_UGT: SwapArgs = true; BranchOpc = X86::JB; break;
747 case CmpInst::FCMP_UGE: SwapArgs = true; BranchOpc = X86::JBE; break;
748 case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break;
749 case CmpInst::FCMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break;
Chris Lattner9a08a612008-10-15 04:26:38 +0000750
Chris Lattner871d2462008-10-15 03:58:05 +0000751 case CmpInst::ICMP_EQ: SwapArgs = false; BranchOpc = X86::JE; break;
752 case CmpInst::ICMP_NE: SwapArgs = false; BranchOpc = X86::JNE; break;
753 case CmpInst::ICMP_UGT: SwapArgs = false; BranchOpc = X86::JA; break;
754 case CmpInst::ICMP_UGE: SwapArgs = false; BranchOpc = X86::JAE; break;
755 case CmpInst::ICMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break;
756 case CmpInst::ICMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break;
757 case CmpInst::ICMP_SGT: SwapArgs = false; BranchOpc = X86::JG; break;
758 case CmpInst::ICMP_SGE: SwapArgs = false; BranchOpc = X86::JGE; break;
759 case CmpInst::ICMP_SLT: SwapArgs = false; BranchOpc = X86::JL; break;
760 case CmpInst::ICMP_SLE: SwapArgs = false; BranchOpc = X86::JLE; break;
Dan Gohmand98d6202008-10-02 22:15:21 +0000761 default:
762 return false;
763 }
Chris Lattner54aebde2008-10-15 03:47:17 +0000764
Chris Lattner709d8292008-10-15 04:02:26 +0000765 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
766 if (SwapArgs)
767 std::swap(Op0, Op1);
768
Chris Lattner9a08a612008-10-15 04:26:38 +0000769 // Emit a compare of the LHS and RHS, setting the flags.
770 if (!X86FastEmitCompare(Op0, Op1, VT))
771 return false;
Chris Lattner0e13c782008-10-15 04:13:29 +0000772
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000773 BuildMI(MBB, DL, TII.get(BranchOpc)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000774
775 if (Predicate == CmpInst::FCMP_UNE) {
776 // X86 requires a second branch to handle UNE (and OEQ,
777 // which is mapped to UNE above).
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000778 BuildMI(MBB, DL, TII.get(X86::JP)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000779 }
780
Dan Gohmand98d6202008-10-02 22:15:21 +0000781 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000782 MBB->addSuccessor(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000783 return true;
784 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000785 } else if (ExtractValueInst *EI =
786 dyn_cast<ExtractValueInst>(BI->getCondition())) {
787 // Check to see if the branch instruction is from an "arithmetic with
788 // overflow" intrinsic. The main way these intrinsics are used is:
789 //
790 // %t = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2)
791 // %sum = extractvalue { i32, i1 } %t, 0
792 // %obit = extractvalue { i32, i1 } %t, 1
793 // br i1 %obit, label %overflow, label %normal
794 //
Dan Gohman653456c2009-01-07 00:15:08 +0000795 // The %sum and %obit are converted in an ADD and a SETO/SETB before
Bill Wendling30a64a72008-12-09 23:19:12 +0000796 // reaching the branch. Therefore, we search backwards through the MBB
Dan Gohman653456c2009-01-07 00:15:08 +0000797 // looking for the SETO/SETB instruction. If an instruction modifies the
798 // EFLAGS register before we reach the SETO/SETB instruction, then we can't
799 // convert the branch into a JO/JB instruction.
Chris Lattnera9a42252009-04-12 07:36:01 +0000800 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(EI->getAggregateOperand())){
801 if (CI->getIntrinsicID() == Intrinsic::sadd_with_overflow ||
802 CI->getIntrinsicID() == Intrinsic::uadd_with_overflow) {
803 const MachineInstr *SetMI = 0;
804 unsigned Reg = lookUpRegForValue(EI);
Bill Wendling30a64a72008-12-09 23:19:12 +0000805
Chris Lattnera9a42252009-04-12 07:36:01 +0000806 for (MachineBasicBlock::const_reverse_iterator
807 RI = MBB->rbegin(), RE = MBB->rend(); RI != RE; ++RI) {
808 const MachineInstr &MI = *RI;
Bill Wendling30a64a72008-12-09 23:19:12 +0000809
Chris Lattnera9a42252009-04-12 07:36:01 +0000810 if (MI.modifiesRegister(Reg)) {
811 unsigned Src, Dst, SrcSR, DstSR;
Bill Wendling30a64a72008-12-09 23:19:12 +0000812
Chris Lattnera9a42252009-04-12 07:36:01 +0000813 if (getInstrInfo()->isMoveInstr(MI, Src, Dst, SrcSR, DstSR)) {
814 Reg = Src;
815 continue;
Bill Wendling9a901322008-12-10 19:44:24 +0000816 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000817
Chris Lattnera9a42252009-04-12 07:36:01 +0000818 SetMI = &MI;
819 break;
Bill Wendling30a64a72008-12-09 23:19:12 +0000820 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000821
Chris Lattnera9a42252009-04-12 07:36:01 +0000822 const TargetInstrDesc &TID = MI.getDesc();
823 if (TID.hasUnmodeledSideEffects() ||
824 TID.hasImplicitDefOfPhysReg(X86::EFLAGS))
825 break;
Bill Wendling9a901322008-12-10 19:44:24 +0000826 }
Chris Lattnera9a42252009-04-12 07:36:01 +0000827
828 if (SetMI) {
829 unsigned OpCode = SetMI->getOpcode();
830
831 if (OpCode == X86::SETOr || OpCode == X86::SETBr) {
Chris Lattner8d57b772009-04-12 07:51:14 +0000832 BuildMI(MBB, DL, TII.get(OpCode == X86::SETOr ? X86::JO : X86::JB))
833 .addMBB(TrueMBB);
Chris Lattnera9a42252009-04-12 07:36:01 +0000834 FastEmitBranch(FalseMBB);
835 MBB->addSuccessor(TrueMBB);
836 return true;
837 }
Bill Wendling9a901322008-12-10 19:44:24 +0000838 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000839 }
840 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000841 }
842
843 // Otherwise do a clumsy setcc and re-test it.
844 unsigned OpReg = getRegForValue(BI->getCondition());
845 if (OpReg == 0) return false;
846
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000847 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(OpReg).addReg(OpReg);
848 BuildMI(MBB, DL, TII.get(X86::JNE)).addMBB(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000849 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000850 MBB->addSuccessor(TrueMBB);
Dan Gohmand89ae992008-09-05 01:06:14 +0000851 return true;
852}
853
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000854bool X86FastISel::X86SelectShift(Instruction *I) {
Chris Lattner743922e2008-09-21 21:44:29 +0000855 unsigned CReg = 0, OpReg = 0, OpImm = 0;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000856 const TargetRegisterClass *RC = NULL;
857 if (I->getType() == Type::Int8Ty) {
858 CReg = X86::CL;
859 RC = &X86::GR8RegClass;
860 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000861 case Instruction::LShr: OpReg = X86::SHR8rCL; OpImm = X86::SHR8ri; break;
862 case Instruction::AShr: OpReg = X86::SAR8rCL; OpImm = X86::SAR8ri; break;
863 case Instruction::Shl: OpReg = X86::SHL8rCL; OpImm = X86::SHL8ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000864 default: return false;
865 }
866 } else if (I->getType() == Type::Int16Ty) {
867 CReg = X86::CX;
868 RC = &X86::GR16RegClass;
869 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000870 case Instruction::LShr: OpReg = X86::SHR16rCL; OpImm = X86::SHR16ri; break;
871 case Instruction::AShr: OpReg = X86::SAR16rCL; OpImm = X86::SAR16ri; break;
872 case Instruction::Shl: OpReg = X86::SHL16rCL; OpImm = X86::SHL16ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000873 default: return false;
874 }
875 } else if (I->getType() == Type::Int32Ty) {
876 CReg = X86::ECX;
877 RC = &X86::GR32RegClass;
878 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000879 case Instruction::LShr: OpReg = X86::SHR32rCL; OpImm = X86::SHR32ri; break;
880 case Instruction::AShr: OpReg = X86::SAR32rCL; OpImm = X86::SAR32ri; break;
881 case Instruction::Shl: OpReg = X86::SHL32rCL; OpImm = X86::SHL32ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000882 default: return false;
883 }
884 } else if (I->getType() == Type::Int64Ty) {
885 CReg = X86::RCX;
886 RC = &X86::GR64RegClass;
887 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000888 case Instruction::LShr: OpReg = X86::SHR64rCL; OpImm = X86::SHR64ri; break;
889 case Instruction::AShr: OpReg = X86::SAR64rCL; OpImm = X86::SAR64ri; break;
890 case Instruction::Shl: OpReg = X86::SHL64rCL; OpImm = X86::SHL64ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000891 default: return false;
892 }
893 } else {
894 return false;
895 }
896
Chris Lattner160f6cc2008-10-15 05:07:36 +0000897 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
898 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Dan Gohmanf58cb6d2008-09-05 21:27:34 +0000899 return false;
900
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000901 unsigned Op0Reg = getRegForValue(I->getOperand(0));
902 if (Op0Reg == 0) return false;
Chris Lattner743922e2008-09-21 21:44:29 +0000903
904 // Fold immediate in shl(x,3).
905 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
906 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000907 BuildMI(MBB, DL, TII.get(OpImm),
Dan Gohmanb12b1a22008-12-20 17:19:40 +0000908 ResultReg).addReg(Op0Reg).addImm(CI->getZExtValue() & 0xff);
Chris Lattner743922e2008-09-21 21:44:29 +0000909 UpdateValueMap(I, ResultReg);
910 return true;
911 }
912
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000913 unsigned Op1Reg = getRegForValue(I->getOperand(1));
914 if (Op1Reg == 0) return false;
915 TII.copyRegToReg(*MBB, MBB->end(), CReg, Op1Reg, RC, RC);
Dan Gohman145b8282008-10-07 21:50:36 +0000916
917 // The shift instruction uses X86::CL. If we defined a super-register
918 // of X86::CL, emit an EXTRACT_SUBREG to precisely describe what
919 // we're doing here.
920 if (CReg != X86::CL)
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000921 BuildMI(MBB, DL, TII.get(TargetInstrInfo::EXTRACT_SUBREG), X86::CL)
Dan Gohman145b8282008-10-07 21:50:36 +0000922 .addReg(CReg).addImm(X86::SUBREG_8BIT);
923
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000924 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000925 BuildMI(MBB, DL, TII.get(OpReg), ResultReg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000926 UpdateValueMap(I, ResultReg);
927 return true;
928}
929
930bool X86FastISel::X86SelectSelect(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +0000931 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
932 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
933 return false;
934
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000935 unsigned Opc = 0;
936 const TargetRegisterClass *RC = NULL;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000937 if (VT.getSimpleVT() == MVT::i16) {
Dan Gohman31d26912008-09-05 21:13:04 +0000938 Opc = X86::CMOVE16rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000939 RC = &X86::GR16RegClass;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000940 } else if (VT.getSimpleVT() == MVT::i32) {
Dan Gohman31d26912008-09-05 21:13:04 +0000941 Opc = X86::CMOVE32rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000942 RC = &X86::GR32RegClass;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000943 } else if (VT.getSimpleVT() == MVT::i64) {
Dan Gohman31d26912008-09-05 21:13:04 +0000944 Opc = X86::CMOVE64rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000945 RC = &X86::GR64RegClass;
946 } else {
947 return false;
948 }
949
950 unsigned Op0Reg = getRegForValue(I->getOperand(0));
951 if (Op0Reg == 0) return false;
952 unsigned Op1Reg = getRegForValue(I->getOperand(1));
953 if (Op1Reg == 0) return false;
954 unsigned Op2Reg = getRegForValue(I->getOperand(2));
955 if (Op2Reg == 0) return false;
956
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000957 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(Op0Reg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000958 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000959 BuildMI(MBB, DL, TII.get(Opc), ResultReg).addReg(Op1Reg).addReg(Op2Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000960 UpdateValueMap(I, ResultReg);
961 return true;
962}
963
Dan Gohman78efce62008-09-10 21:02:08 +0000964bool X86FastISel::X86SelectFPExt(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +0000965 // fpext from float to double.
966 if (Subtarget->hasSSE2() && I->getType() == Type::DoubleTy) {
967 Value *V = I->getOperand(0);
968 if (V->getType() == Type::FloatTy) {
969 unsigned OpReg = getRegForValue(V);
970 if (OpReg == 0) return false;
971 unsigned ResultReg = createResultReg(X86::FR64RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000972 BuildMI(MBB, DL, TII.get(X86::CVTSS2SDrr), ResultReg).addReg(OpReg);
Chris Lattner160f6cc2008-10-15 05:07:36 +0000973 UpdateValueMap(I, ResultReg);
974 return true;
Dan Gohman78efce62008-09-10 21:02:08 +0000975 }
976 }
977
978 return false;
979}
980
981bool X86FastISel::X86SelectFPTrunc(Instruction *I) {
982 if (Subtarget->hasSSE2()) {
983 if (I->getType() == Type::FloatTy) {
984 Value *V = I->getOperand(0);
985 if (V->getType() == Type::DoubleTy) {
986 unsigned OpReg = getRegForValue(V);
987 if (OpReg == 0) return false;
988 unsigned ResultReg = createResultReg(X86::FR32RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000989 BuildMI(MBB, DL, TII.get(X86::CVTSD2SSrr), ResultReg).addReg(OpReg);
Dan Gohman78efce62008-09-10 21:02:08 +0000990 UpdateValueMap(I, ResultReg);
991 return true;
992 }
993 }
994 }
995
996 return false;
997}
998
Evan Cheng10a8d9c2008-09-07 08:47:42 +0000999bool X86FastISel::X86SelectTrunc(Instruction *I) {
1000 if (Subtarget->is64Bit())
1001 // All other cases should be handled by the tblgen generated code.
1002 return false;
1003 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1004 MVT DstVT = TLI.getValueType(I->getType());
Chris Lattner44ceb8a2009-03-13 16:36:42 +00001005
1006 // This code only handles truncation to byte right now.
1007 if (DstVT != MVT::i8 && DstVT != MVT::i1)
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001008 // All other cases should be handled by the tblgen generated code.
1009 return false;
1010 if (SrcVT != MVT::i16 && SrcVT != MVT::i32)
1011 // All other cases should be handled by the tblgen generated code.
1012 return false;
1013
1014 unsigned InputReg = getRegForValue(I->getOperand(0));
1015 if (!InputReg)
1016 // Unhandled operand. Halt "fast" selection and bail.
1017 return false;
1018
Dan Gohman62417622009-04-27 16:33:14 +00001019 // First issue a copy to GR16_ABCD or GR32_ABCD.
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001020 unsigned CopyOpc = (SrcVT == MVT::i16) ? X86::MOV16rr : X86::MOV32rr;
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001021 const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16)
Dan Gohman62417622009-04-27 16:33:14 +00001022 ? X86::GR16_ABCDRegisterClass : X86::GR32_ABCDRegisterClass;
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001023 unsigned CopyReg = createResultReg(CopyRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001024 BuildMI(MBB, DL, TII.get(CopyOpc), CopyReg).addReg(InputReg);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001025
1026 // Then issue an extract_subreg.
Chris Lattner44ceb8a2009-03-13 16:36:42 +00001027 unsigned ResultReg = FastEmitInst_extractsubreg(MVT::i8,
Evan Cheng536ab132009-01-22 09:10:11 +00001028 CopyReg, X86::SUBREG_8BIT);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001029 if (!ResultReg)
1030 return false;
1031
1032 UpdateValueMap(I, ResultReg);
1033 return true;
1034}
1035
Bill Wendling52370a12008-12-09 02:42:50 +00001036bool X86FastISel::X86SelectExtractValue(Instruction *I) {
1037 ExtractValueInst *EI = cast<ExtractValueInst>(I);
1038 Value *Agg = EI->getAggregateOperand();
1039
Chris Lattnera9a42252009-04-12 07:36:01 +00001040 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Agg)) {
1041 switch (CI->getIntrinsicID()) {
1042 default: break;
1043 case Intrinsic::sadd_with_overflow:
1044 case Intrinsic::uadd_with_overflow:
1045 // Cheat a little. We know that the registers for "add" and "seto" are
1046 // allocated sequentially. However, we only keep track of the register
1047 // for "add" in the value map. Use extractvalue's index to get the
1048 // correct register for "seto".
1049 UpdateValueMap(I, lookUpRegForValue(Agg) + *EI->idx_begin());
1050 return true;
Bill Wendling52370a12008-12-09 02:42:50 +00001051 }
1052 }
1053
1054 return false;
1055}
1056
Chris Lattnera9a42252009-04-12 07:36:01 +00001057bool X86FastISel::X86VisitIntrinsicCall(IntrinsicInst &I) {
Bill Wendling52370a12008-12-09 02:42:50 +00001058 // FIXME: Handle more intrinsics.
Chris Lattnera9a42252009-04-12 07:36:01 +00001059 switch (I.getIntrinsicID()) {
Bill Wendling52370a12008-12-09 02:42:50 +00001060 default: return false;
1061 case Intrinsic::sadd_with_overflow:
1062 case Intrinsic::uadd_with_overflow: {
Bill Wendlingc065b3f2008-12-09 07:55:31 +00001063 // Replace "add with overflow" intrinsics with an "add" instruction followed
1064 // by a seto/setc instruction. Later on, when the "extractvalue"
1065 // instructions are encountered, we use the fact that two registers were
1066 // created sequentially to get the correct registers for the "sum" and the
1067 // "overflow bit".
Bill Wendling52370a12008-12-09 02:42:50 +00001068 const Function *Callee = I.getCalledFunction();
1069 const Type *RetTy =
1070 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(unsigned(0));
1071
Chris Lattnera9a42252009-04-12 07:36:01 +00001072 MVT VT;
Bill Wendling52370a12008-12-09 02:42:50 +00001073 if (!isTypeLegal(RetTy, VT))
1074 return false;
1075
1076 Value *Op1 = I.getOperand(1);
1077 Value *Op2 = I.getOperand(2);
1078 unsigned Reg1 = getRegForValue(Op1);
1079 unsigned Reg2 = getRegForValue(Op2);
1080
1081 if (Reg1 == 0 || Reg2 == 0)
1082 // FIXME: Handle values *not* in registers.
1083 return false;
1084
1085 unsigned OpC = 0;
Bill Wendling52370a12008-12-09 02:42:50 +00001086 if (VT == MVT::i32)
1087 OpC = X86::ADD32rr;
1088 else if (VT == MVT::i64)
1089 OpC = X86::ADD64rr;
1090 else
1091 return false;
1092
1093 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001094 BuildMI(MBB, DL, TII.get(OpC), ResultReg).addReg(Reg1).addReg(Reg2);
Chris Lattner8d57b772009-04-12 07:51:14 +00001095 unsigned DestReg1 = UpdateValueMap(&I, ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001096
Chris Lattner8d57b772009-04-12 07:51:14 +00001097 // If the add with overflow is an intra-block value then we just want to
1098 // create temporaries for it like normal. If it is a cross-block value then
1099 // UpdateValueMap will return the cross-block register used. Since we
1100 // *really* want the value to be live in the register pair known by
1101 // UpdateValueMap, we have to use DestReg1+1 as the destination register in
1102 // the cross block case. In the non-cross-block case, we should just make
1103 // another register for the value.
1104 if (DestReg1 != ResultReg)
1105 ResultReg = DestReg1+1;
1106 else
1107 ResultReg = createResultReg(TLI.getRegClassFor(MVT::i8));
1108
Chris Lattnera9a42252009-04-12 07:36:01 +00001109 unsigned Opc = X86::SETBr;
1110 if (I.getIntrinsicID() == Intrinsic::sadd_with_overflow)
1111 Opc = X86::SETOr;
1112 BuildMI(MBB, DL, TII.get(Opc), ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001113 return true;
1114 }
1115 }
1116}
1117
Evan Chengf3d4efe2008-09-07 09:09:33 +00001118bool X86FastISel::X86SelectCall(Instruction *I) {
1119 CallInst *CI = cast<CallInst>(I);
1120 Value *Callee = I->getOperand(0);
1121
1122 // Can't handle inline asm yet.
1123 if (isa<InlineAsm>(Callee))
1124 return false;
1125
Bill Wendling52370a12008-12-09 02:42:50 +00001126 // Handle intrinsic calls.
Chris Lattnera9a42252009-04-12 07:36:01 +00001127 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI))
1128 return X86VisitIntrinsicCall(*II);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001129
Evan Chengf3d4efe2008-09-07 09:09:33 +00001130 // Handle only C and fastcc calling conventions for now.
1131 CallSite CS(CI);
1132 unsigned CC = CS.getCallingConv();
1133 if (CC != CallingConv::C &&
1134 CC != CallingConv::Fast &&
1135 CC != CallingConv::X86_FastCall)
1136 return false;
1137
Dan Gohman7d04e4a2009-05-04 19:50:33 +00001138 // On X86, -tailcallopt changes the fastcc ABI. FastISel doesn't
1139 // handle this for now.
1140 if (CC == CallingConv::Fast && PerformTailCallOpt)
1141 return false;
1142
Evan Chengf3d4efe2008-09-07 09:09:33 +00001143 // Let SDISel handle vararg functions.
1144 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1145 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
1146 if (FTy->isVarArg())
1147 return false;
1148
1149 // Handle *simple* calls for now.
1150 const Type *RetTy = CS.getType();
1151 MVT RetVT;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001152 if (RetTy == Type::VoidTy)
1153 RetVT = MVT::isVoid;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001154 else if (!isTypeLegal(RetTy, RetVT, true))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001155 return false;
1156
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001157 // Materialize callee address in a register. FIXME: GV address can be
1158 // handled with a CALLpcrel32 instead.
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001159 X86AddressMode CalleeAM;
1160 if (!X86SelectAddress(Callee, CalleeAM, true))
1161 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001162 unsigned CalleeOp = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001163 GlobalValue *GV = 0;
Chris Lattner553e5712009-06-27 04:50:14 +00001164 if (CalleeAM.GV != 0) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001165 GV = CalleeAM.GV;
Chris Lattner553e5712009-06-27 04:50:14 +00001166 } else if (CalleeAM.Base.Reg != 0) {
1167 CalleeOp = CalleeAM.Base.Reg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001168 } else
1169 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001170
Evan Chengdebdea02008-09-08 17:15:42 +00001171 // Allow calls which produce i1 results.
1172 bool AndToI1 = false;
1173 if (RetVT == MVT::i1) {
1174 RetVT = MVT::i8;
1175 AndToI1 = true;
1176 }
1177
Evan Chengf3d4efe2008-09-07 09:09:33 +00001178 // Deal with call operands first.
Chris Lattner241ab472008-10-15 05:38:32 +00001179 SmallVector<Value*, 8> ArgVals;
1180 SmallVector<unsigned, 8> Args;
1181 SmallVector<MVT, 8> ArgVTs;
1182 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001183 Args.reserve(CS.arg_size());
Chris Lattner241ab472008-10-15 05:38:32 +00001184 ArgVals.reserve(CS.arg_size());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001185 ArgVTs.reserve(CS.arg_size());
1186 ArgFlags.reserve(CS.arg_size());
1187 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1188 i != e; ++i) {
1189 unsigned Arg = getRegForValue(*i);
1190 if (Arg == 0)
1191 return false;
1192 ISD::ArgFlagsTy Flags;
1193 unsigned AttrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00001194 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001195 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00001196 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001197 Flags.setZExt();
1198
1199 // FIXME: Only handle *easy* calls for now.
Devang Patel05988662008-09-25 21:00:45 +00001200 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1201 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1202 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1203 CS.paramHasAttr(AttrInd, Attribute::ByVal))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001204 return false;
1205
1206 const Type *ArgTy = (*i)->getType();
1207 MVT ArgVT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001208 if (!isTypeLegal(ArgTy, ArgVT))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001209 return false;
1210 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1211 Flags.setOrigAlign(OriginalAlignment);
1212
1213 Args.push_back(Arg);
Chris Lattner241ab472008-10-15 05:38:32 +00001214 ArgVals.push_back(*i);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001215 ArgVTs.push_back(ArgVT);
1216 ArgFlags.push_back(Flags);
1217 }
1218
1219 // Analyze operands of the call, assigning locations to each operand.
1220 SmallVector<CCValAssign, 16> ArgLocs;
1221 CCState CCInfo(CC, false, TM, ArgLocs);
1222 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC));
1223
1224 // Get a count of how many bytes are to be pushed on the stack.
1225 unsigned NumBytes = CCInfo.getNextStackOffset();
1226
1227 // Issue CALLSEQ_START
Dan Gohman6d4b0522008-10-01 18:28:06 +00001228 unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001229 BuildMI(MBB, DL, TII.get(AdjStackDown)).addImm(NumBytes);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001230
Chris Lattner438949a2008-10-15 05:30:52 +00001231 // Process argument: walk the register/memloc assignments, inserting
Evan Chengf3d4efe2008-09-07 09:09:33 +00001232 // copies / loads.
1233 SmallVector<unsigned, 4> RegArgs;
1234 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1235 CCValAssign &VA = ArgLocs[i];
1236 unsigned Arg = Args[VA.getValNo()];
1237 MVT ArgVT = ArgVTs[VA.getValNo()];
1238
1239 // Promote the value if needed.
1240 switch (VA.getLocInfo()) {
1241 default: assert(0 && "Unknown loc info!");
1242 case CCValAssign::Full: break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001243 case CCValAssign::SExt: {
1244 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1245 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001246 assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001247 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001248 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001249 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001250 }
1251 case CCValAssign::ZExt: {
1252 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1253 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001254 assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001255 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001256 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001257 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001258 }
1259 case CCValAssign::AExt: {
1260 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1261 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001262 if (!Emitted)
1263 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
Chris Lattner160f6cc2008-10-15 05:07:36 +00001264 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001265 if (!Emitted)
1266 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1267 Arg, ArgVT, Arg);
1268
Chris Lattnera33649e2008-12-19 17:03:38 +00001269 assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted;
Evan Cheng24e3a902008-09-08 06:35:17 +00001270 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001271 break;
1272 }
Evan Cheng24e3a902008-09-08 06:35:17 +00001273 }
Evan Chengf3d4efe2008-09-07 09:09:33 +00001274
1275 if (VA.isRegLoc()) {
1276 TargetRegisterClass* RC = TLI.getRegClassFor(ArgVT);
1277 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), VA.getLocReg(),
1278 Arg, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001279 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001280 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001281 RegArgs.push_back(VA.getLocReg());
1282 } else {
1283 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman0586d912008-09-10 20:11:02 +00001284 X86AddressMode AM;
1285 AM.Base.Reg = StackPtr;
1286 AM.Disp = LocMemOffset;
Chris Lattner241ab472008-10-15 05:38:32 +00001287 Value *ArgVal = ArgVals[VA.getValNo()];
1288
1289 // If this is a really simple value, emit this with the Value* version of
1290 // X86FastEmitStore. If it isn't simple, we don't want to do this, as it
1291 // can cause us to reevaluate the argument.
1292 if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal))
1293 X86FastEmitStore(ArgVT, ArgVal, AM);
1294 else
1295 X86FastEmitStore(ArgVT, Arg, AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001296 }
1297 }
1298
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001299 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1300 // GOT pointer.
Chris Lattner15a380a2009-07-09 04:39:06 +00001301 if (Subtarget->isPICStyleGOT()) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001302 TargetRegisterClass *RC = X86::GR32RegisterClass;
Dan Gohman57c3dac2008-09-30 00:58:23 +00001303 unsigned Base = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001304 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), X86::EBX, Base, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001305 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001306 Emitted = true;
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001307 }
Chris Lattner51e8eab2009-07-09 06:34:26 +00001308
Evan Chengf3d4efe2008-09-07 09:09:33 +00001309 // Issue the call.
Chris Lattner51e8eab2009-07-09 06:34:26 +00001310 MachineInstrBuilder MIB;
1311 if (CalleeOp) {
1312 // Register-indirect call.
1313 unsigned CallOpc = Subtarget->is64Bit() ? X86::CALL64r : X86::CALL32r;
1314 MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addReg(CalleeOp);
1315
1316 } else {
1317 // Direct call.
1318 assert(GV && "Not a direct call");
1319 unsigned CallOpc =
1320 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
1321
1322 // See if we need any target-specific flags on the GV operand.
1323 unsigned char OpFlags = 0;
1324
1325 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
1326 // external symbols most go through the PLT in PIC mode. If the symbol
1327 // has hidden or protected visibility, or if it is static or local, then
1328 // we don't need to use the PLT - we can directly call it.
1329 if (Subtarget->isTargetELF() &&
1330 TM.getRelocationModel() == Reloc::PIC_ &&
1331 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
1332 OpFlags = X86II::MO_PLT;
1333 } else if (Subtarget->isPICStyleStub() &&
1334 (GV->isDeclaration() || GV->isWeakForLinker()) &&
1335 Subtarget->getDarwinVers() < 9) {
1336 // PC-relative references to external symbols should go through $stub,
1337 // unless we're building with the leopard linker or later, which
1338 // automatically synthesizes these stubs.
1339 OpFlags = X86II::MO_DARWIN_STUB;
1340 }
1341
1342
1343 MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addGlobalAddress(GV, 0, OpFlags);
1344 }
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001345
1346 // Add an implicit use GOT pointer in EBX.
Chris Lattner15a380a2009-07-09 04:39:06 +00001347 if (Subtarget->isPICStyleGOT())
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001348 MIB.addReg(X86::EBX);
1349
Evan Chengf3d4efe2008-09-07 09:09:33 +00001350 // Add implicit physical register uses to the call.
Dan Gohman8c3f8b62008-10-07 22:10:33 +00001351 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1352 MIB.addReg(RegArgs[i]);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001353
1354 // Issue CALLSEQ_END
Dan Gohman6d4b0522008-10-01 18:28:06 +00001355 unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001356 BuildMI(MBB, DL, TII.get(AdjStackUp)).addImm(NumBytes).addImm(0);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001357
1358 // Now handle call return value (if any).
Evan Chengf3d4efe2008-09-07 09:09:33 +00001359 if (RetVT.getSimpleVT() != MVT::isVoid) {
1360 SmallVector<CCValAssign, 16> RVLocs;
1361 CCState CCInfo(CC, false, TM, RVLocs);
1362 CCInfo.AnalyzeCallResult(RetVT, RetCC_X86);
1363
1364 // Copy all of the result registers out of their specified physreg.
1365 assert(RVLocs.size() == 1 && "Can't handle multi-value calls!");
1366 MVT CopyVT = RVLocs[0].getValVT();
1367 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
1368 TargetRegisterClass *SrcRC = DstRC;
1369
1370 // If this is a call to a function that returns an fp value on the x87 fp
1371 // stack, but where we prefer to use the value in xmm registers, copy it
1372 // out as F80 and use a truncate to move it from fp stack reg to xmm reg.
1373 if ((RVLocs[0].getLocReg() == X86::ST0 ||
1374 RVLocs[0].getLocReg() == X86::ST1) &&
1375 isScalarFPTypeInSSEReg(RVLocs[0].getValVT())) {
1376 CopyVT = MVT::f80;
1377 SrcRC = X86::RSTRegisterClass;
1378 DstRC = X86::RFP80RegisterClass;
1379 }
1380
1381 unsigned ResultReg = createResultReg(DstRC);
1382 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
1383 RVLocs[0].getLocReg(), DstRC, SrcRC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001384 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001385 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001386 if (CopyVT != RVLocs[0].getValVT()) {
1387 // Round the F80 the right size, which also moves to the appropriate xmm
1388 // register. This is accomplished by storing the F80 value in memory and
1389 // then loading it back. Ewww...
1390 MVT ResVT = RVLocs[0].getValVT();
1391 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
1392 unsigned MemSize = ResVT.getSizeInBits()/8;
Dan Gohman0586d912008-09-10 20:11:02 +00001393 int FI = MFI.CreateStackObject(MemSize, MemSize);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001394 addFrameReference(BuildMI(MBB, DL, TII.get(Opc)), FI).addReg(ResultReg);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001395 DstRC = ResVT == MVT::f32
1396 ? X86::FR32RegisterClass : X86::FR64RegisterClass;
1397 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
1398 ResultReg = createResultReg(DstRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001399 addFrameReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), FI);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001400 }
1401
Evan Chengdebdea02008-09-08 17:15:42 +00001402 if (AndToI1) {
1403 // Mask out all but lowest bit for some call which produces an i1.
1404 unsigned AndResult = createResultReg(X86::GR8RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001405 BuildMI(MBB, DL,
1406 TII.get(X86::AND8ri), AndResult).addReg(ResultReg).addImm(1);
Evan Chengdebdea02008-09-08 17:15:42 +00001407 ResultReg = AndResult;
1408 }
1409
Evan Chengf3d4efe2008-09-07 09:09:33 +00001410 UpdateValueMap(I, ResultReg);
1411 }
1412
1413 return true;
1414}
1415
1416
Dan Gohman99b21822008-08-28 23:21:34 +00001417bool
Dan Gohman3df24e62008-09-03 23:12:08 +00001418X86FastISel::TargetSelectInstruction(Instruction *I) {
Dan Gohman99b21822008-08-28 23:21:34 +00001419 switch (I->getOpcode()) {
1420 default: break;
Evan Cheng8b19e562008-09-03 06:44:39 +00001421 case Instruction::Load:
Dan Gohman3df24e62008-09-03 23:12:08 +00001422 return X86SelectLoad(I);
Owen Anderson79924eb2008-09-04 16:48:33 +00001423 case Instruction::Store:
1424 return X86SelectStore(I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +00001425 case Instruction::ICmp:
1426 case Instruction::FCmp:
1427 return X86SelectCmp(I);
Dan Gohmand89ae992008-09-05 01:06:14 +00001428 case Instruction::ZExt:
1429 return X86SelectZExt(I);
1430 case Instruction::Br:
1431 return X86SelectBranch(I);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001432 case Instruction::Call:
1433 return X86SelectCall(I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001434 case Instruction::LShr:
1435 case Instruction::AShr:
1436 case Instruction::Shl:
1437 return X86SelectShift(I);
1438 case Instruction::Select:
1439 return X86SelectSelect(I);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001440 case Instruction::Trunc:
1441 return X86SelectTrunc(I);
Dan Gohman78efce62008-09-10 21:02:08 +00001442 case Instruction::FPExt:
1443 return X86SelectFPExt(I);
1444 case Instruction::FPTrunc:
1445 return X86SelectFPTrunc(I);
Bill Wendling52370a12008-12-09 02:42:50 +00001446 case Instruction::ExtractValue:
1447 return X86SelectExtractValue(I);
Dan Gohman474d3b32009-03-13 23:53:06 +00001448 case Instruction::IntToPtr: // Deliberate fall-through.
1449 case Instruction::PtrToInt: {
1450 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1451 MVT DstVT = TLI.getValueType(I->getType());
1452 if (DstVT.bitsGT(SrcVT))
1453 return X86SelectZExt(I);
1454 if (DstVT.bitsLT(SrcVT))
1455 return X86SelectTrunc(I);
1456 unsigned Reg = getRegForValue(I->getOperand(0));
1457 if (Reg == 0) return false;
1458 UpdateValueMap(I, Reg);
1459 return true;
1460 }
Dan Gohman99b21822008-08-28 23:21:34 +00001461 }
1462
1463 return false;
1464}
1465
Dan Gohman0586d912008-09-10 20:11:02 +00001466unsigned X86FastISel::TargetMaterializeConstant(Constant *C) {
Evan Cheng59fbc802008-09-09 01:26:59 +00001467 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001468 if (!isTypeLegal(C->getType(), VT))
Owen Anderson95267a12008-09-05 00:06:23 +00001469 return false;
1470
1471 // Get opcode and regclass of the output for the given load instruction.
1472 unsigned Opc = 0;
1473 const TargetRegisterClass *RC = NULL;
1474 switch (VT.getSimpleVT()) {
1475 default: return false;
1476 case MVT::i8:
1477 Opc = X86::MOV8rm;
1478 RC = X86::GR8RegisterClass;
1479 break;
1480 case MVT::i16:
1481 Opc = X86::MOV16rm;
1482 RC = X86::GR16RegisterClass;
1483 break;
1484 case MVT::i32:
1485 Opc = X86::MOV32rm;
1486 RC = X86::GR32RegisterClass;
1487 break;
1488 case MVT::i64:
1489 // Must be in x86-64 mode.
1490 Opc = X86::MOV64rm;
1491 RC = X86::GR64RegisterClass;
1492 break;
1493 case MVT::f32:
1494 if (Subtarget->hasSSE1()) {
1495 Opc = X86::MOVSSrm;
1496 RC = X86::FR32RegisterClass;
1497 } else {
1498 Opc = X86::LD_Fp32m;
1499 RC = X86::RFP32RegisterClass;
1500 }
1501 break;
1502 case MVT::f64:
1503 if (Subtarget->hasSSE2()) {
1504 Opc = X86::MOVSDrm;
1505 RC = X86::FR64RegisterClass;
1506 } else {
1507 Opc = X86::LD_Fp64m;
1508 RC = X86::RFP64RegisterClass;
1509 }
1510 break;
1511 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +00001512 // No f80 support yet.
1513 return false;
Owen Anderson95267a12008-09-05 00:06:23 +00001514 }
1515
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001516 // Materialize addresses with LEA instructions.
Owen Anderson95267a12008-09-05 00:06:23 +00001517 if (isa<GlobalValue>(C)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001518 X86AddressMode AM;
1519 if (X86SelectAddress(C, AM, false)) {
1520 if (TLI.getPointerTy() == MVT::i32)
1521 Opc = X86::LEA32r;
1522 else
1523 Opc = X86::LEA64r;
1524 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001525 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Owen Anderson95267a12008-09-05 00:06:23 +00001526 return ResultReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001527 }
Evan Cheng0de588f2008-09-05 21:00:03 +00001528 return 0;
Owen Anderson95267a12008-09-05 00:06:23 +00001529 }
1530
Owen Anderson3b217c62008-09-06 01:11:01 +00001531 // MachineConstantPool wants an explicit alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +00001532 unsigned Align = TD.getPrefTypeAlignment(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001533 if (Align == 0) {
1534 // Alignment of vector types. FIXME!
Duncan Sands777d2302009-05-09 07:06:46 +00001535 Align = TD.getTypeAllocSize(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001536 }
Owen Anderson95267a12008-09-05 00:06:23 +00001537
Dan Gohman5396c992008-09-30 01:21:32 +00001538 // x86-32 PIC requires a PIC base register for constant pools.
1539 unsigned PICBase = 0;
Chris Lattner89da6992009-06-27 01:31:51 +00001540 unsigned char OpFlag = 0;
Chris Lattner15a380a2009-07-09 04:39:06 +00001541 if (Subtarget->isPICStyleStub() &&
1542 TM.getRelocationModel() == Reloc::PIC_) { // Not dynamic-no-pic
1543 OpFlag = X86II::MO_PIC_BASE_OFFSET;
1544 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1545 } else if (Subtarget->isPICStyleGOT()) {
1546 OpFlag = X86II::MO_GOTOFF;
1547 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1548 } else if (Subtarget->isPICStyleRIPRel() &&
1549 TM.getCodeModel() == CodeModel::Small) {
1550 PICBase = X86::RIP;
Chris Lattner89da6992009-06-27 01:31:51 +00001551 }
Dan Gohman5396c992008-09-30 01:21:32 +00001552
1553 // Create the load from the constant pool.
Dan Gohman0586d912008-09-10 20:11:02 +00001554 unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align);
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001555 unsigned ResultReg = createResultReg(RC);
Chris Lattner89da6992009-06-27 01:31:51 +00001556 addConstantPoolReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg),
1557 MCPOffset, PICBase, OpFlag);
Dan Gohman5396c992008-09-30 01:21:32 +00001558
Owen Anderson95267a12008-09-05 00:06:23 +00001559 return ResultReg;
1560}
1561
Dan Gohman0586d912008-09-10 20:11:02 +00001562unsigned X86FastISel::TargetMaterializeAlloca(AllocaInst *C) {
Dan Gohman4e6ed5e2008-10-03 01:27:49 +00001563 // Fail on dynamic allocas. At this point, getRegForValue has already
1564 // checked its CSE maps, so if we're here trying to handle a dynamic
1565 // alloca, we're not going to succeed. X86SelectAddress has a
1566 // check for dynamic allocas, because it's called directly from
1567 // various places, but TargetMaterializeAlloca also needs a check
1568 // in order to avoid recursion between getRegForValue,
1569 // X86SelectAddrss, and TargetMaterializeAlloca.
1570 if (!StaticAllocaMap.count(C))
1571 return 0;
1572
Dan Gohman0586d912008-09-10 20:11:02 +00001573 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001574 if (!X86SelectAddress(C, AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +00001575 return 0;
1576 unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
1577 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
1578 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001579 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Dan Gohman0586d912008-09-10 20:11:02 +00001580 return ResultReg;
1581}
1582
Evan Chengc3f44b02008-09-03 00:03:49 +00001583namespace llvm {
Dan Gohman3df24e62008-09-03 23:12:08 +00001584 llvm::FastISel *X86::createFastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +00001585 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +00001586 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +00001587 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +00001588 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001589 DenseMap<const AllocaInst *, int> &am
1590#ifndef NDEBUG
1591 , SmallSet<Instruction*, 8> &cil
1592#endif
1593 ) {
Devang Patel83489bb2009-01-13 00:35:13 +00001594 return new X86FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001595#ifndef NDEBUG
1596 , cil
1597#endif
1598 );
Evan Chengc3f44b02008-09-03 00:03:49 +00001599 }
Dan Gohman99b21822008-08-28 23:21:34 +00001600}