blob: 606728e499bf7cbac12ab3ed613ae53a08f88c77 [file] [log] [blame]
Dan Gohman1adf1b02008-08-19 21:45:35 +00001//===-- X86FastISel.cpp - X86 FastISel implementation ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the X86-specific support for the FastISel class. Much
11// of the target-specific code is generated by tablegen in the file
12// X86GenFastISel.inc, which is #included here.
13//
14//===----------------------------------------------------------------------===//
15
16#include "X86.h"
Evan Cheng8b19e562008-09-03 06:44:39 +000017#include "X86InstrBuilder.h"
Dan Gohman1adf1b02008-08-19 21:45:35 +000018#include "X86ISelLowering.h"
Evan Cheng88e30412008-09-03 01:04:47 +000019#include "X86RegisterInfo.h"
20#include "X86Subtarget.h"
Dan Gohman22bb3112008-08-22 00:20:26 +000021#include "X86TargetMachine.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000022#include "llvm/CallingConv.h"
Dan Gohman6e3f05f2008-09-04 23:26:51 +000023#include "llvm/DerivedTypes.h"
Dan Gohmane9865942009-02-23 22:03:08 +000024#include "llvm/GlobalVariable.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000025#include "llvm/Instructions.h"
Chris Lattnera9a42252009-04-12 07:36:01 +000026#include "llvm/IntrinsicInst.h"
Evan Chengc3f44b02008-09-03 00:03:49 +000027#include "llvm/CodeGen/FastISel.h"
Owen Anderson95267a12008-09-05 00:06:23 +000028#include "llvm/CodeGen/MachineConstantPool.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000029#include "llvm/CodeGen/MachineFrameInfo.h"
Owen Anderson667d8f72008-08-29 17:45:56 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000031#include "llvm/Support/CallSite.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000032#include "llvm/Support/ErrorHandling.h"
Dan Gohman35893082008-09-18 23:23:44 +000033#include "llvm/Support/GetElementPtrTypeIterator.h"
Evan Cheng381993f2010-01-27 00:00:57 +000034#include "llvm/Target/TargetOptions.h"
Evan Chengc3f44b02008-09-03 00:03:49 +000035using namespace llvm;
36
Chris Lattner087fcf32009-03-08 18:44:31 +000037namespace {
38
Evan Chengc3f44b02008-09-03 00:03:49 +000039class X86FastISel : public FastISel {
40 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
41 /// make the right decision when generating code for different targets.
42 const X86Subtarget *Subtarget;
Evan Chengf3d4efe2008-09-07 09:09:33 +000043
44 /// StackPtr - Register used as the stack pointer.
45 ///
46 unsigned StackPtr;
47
48 /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87
49 /// floating point ops.
50 /// When SSE is available, use it for f32 operations.
51 /// When SSE2 is available, use it for f64 operations.
52 bool X86ScalarSSEf64;
53 bool X86ScalarSSEf32;
54
Evan Cheng8b19e562008-09-03 06:44:39 +000055public:
Dan Gohman3df24e62008-09-03 23:12:08 +000056 explicit X86FastISel(MachineFunction &mf,
57 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
Dan Gohman25208642010-04-14 19:53:31 +000061 , SmallSet<const Instruction *, 8> &cil
Dan Gohmandd5b58a2008-10-14 23:54:11 +000062#endif
63 )
Chris Lattnered3a8062010-04-05 06:05:26 +000064 : FastISel(mf, 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 Gohman46510a72010-04-15 01:51:59 +000075 virtual bool TargetSelectInstruction(const 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:
Dan Gohman46510a72010-04-15 01:51:59 +000080 bool X86FastEmitCompare(const Value *LHS, const Value *RHS, EVT VT);
Chris Lattner9a08a612008-10-15 04:26:38 +000081
Owen Andersone50ed302009-08-10 22:56:29 +000082 bool X86FastEmitLoad(EVT VT, const X86AddressMode &AM, unsigned &RR);
Evan Cheng0de588f2008-09-05 21:00:03 +000083
Dan Gohman46510a72010-04-15 01:51:59 +000084 bool X86FastEmitStore(EVT VT, const Value *Val,
Chris Lattner438949a2008-10-15 05:30:52 +000085 const X86AddressMode &AM);
Owen Andersone50ed302009-08-10 22:56:29 +000086 bool X86FastEmitStore(EVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +000087 const X86AddressMode &AM);
Evan Cheng24e3a902008-09-08 06:35:17 +000088
Owen Andersone50ed302009-08-10 22:56:29 +000089 bool X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
Evan Cheng24e3a902008-09-08 06:35:17 +000090 unsigned &ResultReg);
Evan Cheng0de588f2008-09-05 21:00:03 +000091
Dan Gohman46510a72010-04-15 01:51:59 +000092 bool X86SelectAddress(const Value *V, X86AddressMode &AM);
93 bool X86SelectCallAddress(const Value *V, X86AddressMode &AM);
Dan Gohman0586d912008-09-10 20:11:02 +000094
Dan Gohman46510a72010-04-15 01:51:59 +000095 bool X86SelectLoad(const Instruction *I);
Owen Andersona3971df2008-09-04 07:08:58 +000096
Dan Gohman46510a72010-04-15 01:51:59 +000097 bool X86SelectStore(const Instruction *I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +000098
Dan Gohman46510a72010-04-15 01:51:59 +000099 bool X86SelectCmp(const Instruction *I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000100
Dan Gohman46510a72010-04-15 01:51:59 +0000101 bool X86SelectZExt(const Instruction *I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000102
Dan Gohman46510a72010-04-15 01:51:59 +0000103 bool X86SelectBranch(const Instruction *I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000104
Dan Gohman46510a72010-04-15 01:51:59 +0000105 bool X86SelectShift(const Instruction *I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000106
Dan Gohman46510a72010-04-15 01:51:59 +0000107 bool X86SelectSelect(const Instruction *I);
Evan Cheng0de588f2008-09-05 21:00:03 +0000108
Dan Gohman46510a72010-04-15 01:51:59 +0000109 bool X86SelectTrunc(const Instruction *I);
Dan Gohmand98d6202008-10-02 22:15:21 +0000110
Dan Gohman46510a72010-04-15 01:51:59 +0000111 bool X86SelectFPExt(const Instruction *I);
112 bool X86SelectFPTrunc(const Instruction *I);
Dan Gohman78efce62008-09-10 21:02:08 +0000113
Dan Gohman46510a72010-04-15 01:51:59 +0000114 bool X86SelectExtractValue(const Instruction *I);
Bill Wendling52370a12008-12-09 02:42:50 +0000115
Dan Gohman46510a72010-04-15 01:51:59 +0000116 bool X86VisitIntrinsicCall(const IntrinsicInst &I);
117 bool X86SelectCall(const Instruction *I);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000118
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000119 CCAssignFn *CCAssignFnForCall(CallingConv::ID CC, bool isTailCall = false);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000120
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 Gohman46510a72010-04-15 01:51:59 +0000128 unsigned TargetMaterializeConstant(const Constant *C);
Dan Gohman0586d912008-09-10 20:11:02 +0000129
Dan Gohman46510a72010-04-15 01:51:59 +0000130 unsigned TargetMaterializeAlloca(const 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.
Owen Andersone50ed302009-08-10 22:56:29 +0000134 bool isScalarFPTypeInSSEReg(EVT VT) const {
Owen Anderson825b72b2009-08-11 20:47:22 +0000135 return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2
136 (VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1
Evan Chengf3d4efe2008-09-07 09:09:33 +0000137 }
138
Owen Andersone50ed302009-08-10 22:56:29 +0000139 bool isTypeLegal(const Type *Ty, EVT &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
Owen Andersone50ed302009-08-10 22:56:29 +0000144bool X86FastISel::isTypeLegal(const Type *Ty, EVT &VT, bool AllowI1) {
Chris Lattner160f6cc2008-10-15 05:07:36 +0000145 VT = TLI.getValueType(Ty, /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +0000146 if (VT == MVT::Other || !VT.isSimple())
Evan Chengf3d4efe2008-09-07 09:09:33 +0000147 // 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.
Owen Anderson825b72b2009-08-11 20:47:22 +0000152 if (VT == MVT::f64 && !X86ScalarSSEf64)
Dan Gohman9b66d732008-09-30 00:48:39 +0000153 return false;
Owen Anderson825b72b2009-08-11 20:47:22 +0000154 if (VT == MVT::f32 && !X86ScalarSSEf32)
Dan Gohman9b66d732008-09-30 00:48:39 +0000155 return false;
156 // Similarly, no f80 support yet.
Owen Anderson825b72b2009-08-11 20:47:22 +0000157 if (VT == MVT::f80)
Dan Gohman9b66d732008-09-30 00:48:39 +0000158 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.
Owen Anderson825b72b2009-08-11 20:47:22 +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.
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000170CCAssignFn *X86FastISel::CCAssignFnForCall(CallingConv::ID CC,
171 bool isTaillCall) {
Evan Chengf3d4efe2008-09-07 09:09:33 +0000172 if (Subtarget->is64Bit()) {
Chris Lattner29689432010-03-11 00:22:57 +0000173 if (CC == CallingConv::GHC)
174 return CC_X86_64_GHC;
175 else if (Subtarget->isTargetWin64())
Evan Chengf3d4efe2008-09-07 09:09:33 +0000176 return CC_X86_Win64_C;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000177 else
178 return CC_X86_64_C;
179 }
180
181 if (CC == CallingConv::X86_FastCall)
182 return CC_X86_32_FastCall;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000183 else if (CC == CallingConv::Fast)
184 return CC_X86_32_FastCC;
Chris Lattner29689432010-03-11 00:22:57 +0000185 else if (CC == CallingConv::GHC)
186 return CC_X86_32_GHC;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000187 else
188 return CC_X86_32_C;
189}
190
Evan Cheng0de588f2008-09-05 21:00:03 +0000191/// X86FastEmitLoad - Emit a machine instruction to load a value of type VT.
Evan Chengf3d4efe2008-09-07 09:09:33 +0000192/// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
Evan Cheng0de588f2008-09-05 21:00:03 +0000193/// Return true and the result register by reference if it is possible.
Owen Andersone50ed302009-08-10 22:56:29 +0000194bool X86FastISel::X86FastEmitLoad(EVT VT, const X86AddressMode &AM,
Evan Cheng0de588f2008-09-05 21:00:03 +0000195 unsigned &ResultReg) {
196 // Get opcode and regclass of the output for the given load instruction.
197 unsigned Opc = 0;
198 const TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +0000199 switch (VT.getSimpleVT().SimpleTy) {
Evan Cheng0de588f2008-09-05 21:00:03 +0000200 default: return false;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000201 case MVT::i1:
Owen Anderson825b72b2009-08-11 20:47:22 +0000202 case MVT::i8:
Evan Cheng0de588f2008-09-05 21:00:03 +0000203 Opc = X86::MOV8rm;
204 RC = X86::GR8RegisterClass;
205 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000206 case MVT::i16:
Evan Cheng0de588f2008-09-05 21:00:03 +0000207 Opc = X86::MOV16rm;
208 RC = X86::GR16RegisterClass;
209 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000210 case MVT::i32:
Evan Cheng0de588f2008-09-05 21:00:03 +0000211 Opc = X86::MOV32rm;
212 RC = X86::GR32RegisterClass;
213 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000214 case MVT::i64:
Evan Cheng0de588f2008-09-05 21:00:03 +0000215 // Must be in x86-64 mode.
216 Opc = X86::MOV64rm;
217 RC = X86::GR64RegisterClass;
218 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000219 case MVT::f32:
Evan Cheng0de588f2008-09-05 21:00:03 +0000220 if (Subtarget->hasSSE1()) {
221 Opc = X86::MOVSSrm;
222 RC = X86::FR32RegisterClass;
223 } else {
224 Opc = X86::LD_Fp32m;
225 RC = X86::RFP32RegisterClass;
226 }
227 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000228 case MVT::f64:
Evan Cheng0de588f2008-09-05 21:00:03 +0000229 if (Subtarget->hasSSE2()) {
230 Opc = X86::MOVSDrm;
231 RC = X86::FR64RegisterClass;
232 } else {
233 Opc = X86::LD_Fp64m;
234 RC = X86::RFP64RegisterClass;
235 }
236 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000237 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +0000238 // No f80 support yet.
239 return false;
Evan Cheng0de588f2008-09-05 21:00:03 +0000240 }
241
242 ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000243 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Evan Cheng0de588f2008-09-05 21:00:03 +0000244 return true;
245}
246
Evan Chengf3d4efe2008-09-07 09:09:33 +0000247/// X86FastEmitStore - Emit a machine instruction to store a value Val of
248/// type VT. The address is either pre-computed, consisted of a base ptr, Ptr
249/// and a displacement offset, or a GlobalAddress,
Evan Cheng0de588f2008-09-05 21:00:03 +0000250/// i.e. V. Return true if it is possible.
251bool
Owen Andersone50ed302009-08-10 22:56:29 +0000252X86FastISel::X86FastEmitStore(EVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +0000253 const X86AddressMode &AM) {
Dan Gohman863890e2008-09-08 16:31:35 +0000254 // Get opcode and regclass of the output for the given store instruction.
Evan Cheng0de588f2008-09-05 21:00:03 +0000255 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +0000256 switch (VT.getSimpleVT().SimpleTy) {
257 case MVT::f80: // No f80 support yet.
Evan Cheng0de588f2008-09-05 21:00:03 +0000258 default: return false;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000259 case MVT::i1: {
260 // Mask out all but lowest bit.
261 unsigned AndResult = createResultReg(X86::GR8RegisterClass);
262 BuildMI(MBB, DL,
263 TII.get(X86::AND8ri), AndResult).addReg(Val).addImm(1);
264 Val = AndResult;
265 }
266 // FALLTHROUGH, handling i1 as i8.
Owen Anderson825b72b2009-08-11 20:47:22 +0000267 case MVT::i8: Opc = X86::MOV8mr; break;
268 case MVT::i16: Opc = X86::MOV16mr; break;
269 case MVT::i32: Opc = X86::MOV32mr; break;
270 case MVT::i64: Opc = X86::MOV64mr; break; // Must be in x86-64 mode.
271 case MVT::f32:
Chris Lattner438949a2008-10-15 05:30:52 +0000272 Opc = Subtarget->hasSSE1() ? X86::MOVSSmr : X86::ST_Fp32m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000273 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000274 case MVT::f64:
Chris Lattner438949a2008-10-15 05:30:52 +0000275 Opc = Subtarget->hasSSE2() ? X86::MOVSDmr : X86::ST_Fp64m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000276 break;
Evan Cheng0de588f2008-09-05 21:00:03 +0000277 }
Chris Lattner438949a2008-10-15 05:30:52 +0000278
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000279 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM).addReg(Val);
Evan Cheng0de588f2008-09-05 21:00:03 +0000280 return true;
281}
282
Dan Gohman46510a72010-04-15 01:51:59 +0000283bool X86FastISel::X86FastEmitStore(EVT VT, const Value *Val,
Chris Lattner438949a2008-10-15 05:30:52 +0000284 const X86AddressMode &AM) {
285 // Handle 'null' like i32/i64 0.
286 if (isa<ConstantPointerNull>(Val))
Owen Anderson1d0be152009-08-13 21:58:54 +0000287 Val = Constant::getNullValue(TD.getIntPtrType(Val->getContext()));
Chris Lattner438949a2008-10-15 05:30:52 +0000288
289 // If this is a store of a simple constant, fold the constant into the store.
Dan Gohman46510a72010-04-15 01:51:59 +0000290 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
Chris Lattner438949a2008-10-15 05:30:52 +0000291 unsigned Opc = 0;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000292 bool Signed = true;
Owen Anderson825b72b2009-08-11 20:47:22 +0000293 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner438949a2008-10-15 05:30:52 +0000294 default: break;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000295 case MVT::i1: Signed = false; // FALLTHROUGH to handle as i8.
Owen Anderson825b72b2009-08-11 20:47:22 +0000296 case MVT::i8: Opc = X86::MOV8mi; break;
297 case MVT::i16: Opc = X86::MOV16mi; break;
298 case MVT::i32: Opc = X86::MOV32mi; break;
299 case MVT::i64:
Chris Lattner438949a2008-10-15 05:30:52 +0000300 // Must be a 32-bit sign extended value.
301 if ((int)CI->getSExtValue() == CI->getSExtValue())
302 Opc = X86::MOV64mi32;
303 break;
304 }
305
306 if (Opc) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000307 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM)
John McCall795ee9d2010-04-06 23:35:53 +0000308 .addImm(Signed ? (uint64_t) CI->getSExtValue() :
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000309 CI->getZExtValue());
Chris Lattner438949a2008-10-15 05:30:52 +0000310 return true;
311 }
312 }
313
314 unsigned ValReg = getRegForValue(Val);
315 if (ValReg == 0)
Chris Lattner438949a2008-10-15 05:30:52 +0000316 return false;
317
318 return X86FastEmitStore(VT, ValReg, AM);
319}
320
Evan Cheng24e3a902008-09-08 06:35:17 +0000321/// X86FastEmitExtend - Emit a machine instruction to extend a value Src of
322/// type SrcVT to type DstVT using the specified extension opcode Opc (e.g.
323/// ISD::SIGN_EXTEND).
Owen Andersone50ed302009-08-10 22:56:29 +0000324bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT,
325 unsigned Src, EVT SrcVT,
Evan Cheng24e3a902008-09-08 06:35:17 +0000326 unsigned &ResultReg) {
Owen Andersonac34a002008-09-11 19:44:55 +0000327 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, Src);
328
329 if (RR != 0) {
330 ResultReg = RR;
331 return true;
332 } else
333 return false;
Evan Cheng24e3a902008-09-08 06:35:17 +0000334}
335
Dan Gohman0586d912008-09-10 20:11:02 +0000336/// X86SelectAddress - Attempt to fill in an address from the given value.
337///
Dan Gohman46510a72010-04-15 01:51:59 +0000338bool X86FastISel::X86SelectAddress(const Value *V, X86AddressMode &AM) {
339 const User *U = NULL;
Dan Gohman35893082008-09-18 23:23:44 +0000340 unsigned Opcode = Instruction::UserOp1;
Dan Gohman46510a72010-04-15 01:51:59 +0000341 if (const Instruction *I = dyn_cast<Instruction>(V)) {
Dan Gohman35893082008-09-18 23:23:44 +0000342 Opcode = I->getOpcode();
343 U = I;
Dan Gohman46510a72010-04-15 01:51:59 +0000344 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
Dan Gohman35893082008-09-18 23:23:44 +0000345 Opcode = C->getOpcode();
346 U = C;
347 }
Dan Gohman0586d912008-09-10 20:11:02 +0000348
Dan Gohman35893082008-09-18 23:23:44 +0000349 switch (Opcode) {
350 default: break;
351 case Instruction::BitCast:
352 // Look past bitcasts.
Chris Lattner0aa43de2009-07-10 05:33:42 +0000353 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman35893082008-09-18 23:23:44 +0000354
355 case Instruction::IntToPtr:
356 // Look past no-op inttoptrs.
357 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Chris Lattner0aa43de2009-07-10 05:33:42 +0000358 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000359 break;
Dan Gohman35893082008-09-18 23:23:44 +0000360
361 case Instruction::PtrToInt:
362 // Look past no-op ptrtoints.
363 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Chris Lattner0aa43de2009-07-10 05:33:42 +0000364 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000365 break;
Dan Gohman35893082008-09-18 23:23:44 +0000366
367 case Instruction::Alloca: {
368 // Do static allocas.
369 const AllocaInst *A = cast<AllocaInst>(V);
Dan Gohman0586d912008-09-10 20:11:02 +0000370 DenseMap<const AllocaInst*, int>::iterator SI = StaticAllocaMap.find(A);
Dan Gohman97135e12008-09-26 19:15:30 +0000371 if (SI != StaticAllocaMap.end()) {
372 AM.BaseType = X86AddressMode::FrameIndexBase;
373 AM.Base.FrameIndex = SI->second;
374 return true;
375 }
376 break;
Dan Gohman35893082008-09-18 23:23:44 +0000377 }
378
379 case Instruction::Add: {
380 // Adds of constants are common and easy enough.
Dan Gohman46510a72010-04-15 01:51:59 +0000381 if (const ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman09aae462008-09-26 20:04:15 +0000382 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
383 // They have to fit in the 32-bit signed displacement field though.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000384 if (isInt<32>(Disp)) {
Dan Gohman09aae462008-09-26 20:04:15 +0000385 AM.Disp = (uint32_t)Disp;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000386 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman09aae462008-09-26 20:04:15 +0000387 }
Dan Gohman0586d912008-09-10 20:11:02 +0000388 }
Dan Gohman35893082008-09-18 23:23:44 +0000389 break;
390 }
391
392 case Instruction::GetElementPtr: {
Chris Lattnerbfcc8e02010-03-04 19:54:45 +0000393 X86AddressMode SavedAM = AM;
394
Dan Gohman35893082008-09-18 23:23:44 +0000395 // Pattern-match simple GEPs.
Dan Gohman09aae462008-09-26 20:04:15 +0000396 uint64_t Disp = (int32_t)AM.Disp;
Dan Gohman35893082008-09-18 23:23:44 +0000397 unsigned IndexReg = AM.IndexReg;
398 unsigned Scale = AM.Scale;
399 gep_type_iterator GTI = gep_type_begin(U);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000400 // Iterate through the indices, folding what we can. Constants can be
401 // folded, and one dynamic index can be handled, if the scale is supported.
Dan Gohman46510a72010-04-15 01:51:59 +0000402 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
Dan Gohman35893082008-09-18 23:23:44 +0000403 i != e; ++i, ++GTI) {
Dan Gohman46510a72010-04-15 01:51:59 +0000404 const Value *Op = *i;
Dan Gohman35893082008-09-18 23:23:44 +0000405 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
406 const StructLayout *SL = TD.getStructLayout(STy);
407 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
408 Disp += SL->getElementOffset(Idx);
409 } else {
Duncan Sands777d2302009-05-09 07:06:46 +0000410 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
Dan Gohman46510a72010-04-15 01:51:59 +0000411 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
Dan Gohman35893082008-09-18 23:23:44 +0000412 // Constant-offset addressing.
Dan Gohman09aae462008-09-26 20:04:15 +0000413 Disp += CI->getSExtValue() * S;
Dan Gohman35893082008-09-18 23:23:44 +0000414 } else if (IndexReg == 0 &&
Chris Lattner4c1b6062009-06-27 05:24:12 +0000415 (!AM.GV || !Subtarget->isPICStyleRIPRel()) &&
Dan Gohman35893082008-09-18 23:23:44 +0000416 (S == 1 || S == 2 || S == 4 || S == 8)) {
417 // Scaled-index addressing.
418 Scale = S;
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000419 IndexReg = getRegForGEPIndex(Op);
Dan Gohman35893082008-09-18 23:23:44 +0000420 if (IndexReg == 0)
421 return false;
422 } else
423 // Unsupported.
424 goto unsupported_gep;
425 }
426 }
Dan Gohman09aae462008-09-26 20:04:15 +0000427 // Check for displacement overflow.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000428 if (!isInt<32>(Disp))
Dan Gohman09aae462008-09-26 20:04:15 +0000429 break;
Dan Gohman35893082008-09-18 23:23:44 +0000430 // Ok, the GEP indices were covered by constant-offset and scaled-index
431 // addressing. Update the address state and move on to examining the base.
432 AM.IndexReg = IndexReg;
433 AM.Scale = Scale;
Dan Gohman09aae462008-09-26 20:04:15 +0000434 AM.Disp = (uint32_t)Disp;
Chris Lattner225d4ca2010-03-04 19:48:19 +0000435 if (X86SelectAddress(U->getOperand(0), AM))
436 return true;
437
438 // If we couldn't merge the sub value into this addr mode, revert back to
439 // our address and just match the value instead of completely failing.
440 AM = SavedAM;
441 break;
Dan Gohman35893082008-09-18 23:23:44 +0000442 unsupported_gep:
443 // Ok, the GEP indices weren't all covered.
444 break;
445 }
446 }
447
448 // Handle constant address.
Dan Gohman46510a72010-04-15 01:51:59 +0000449 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000450 // Can't handle alternate code models yet.
Chris Lattnerf1d6bd52009-07-10 21:03:06 +0000451 if (TM.getCodeModel() != CodeModel::Small)
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000452 return false;
453
Dan Gohman97135e12008-09-26 19:15:30 +0000454 // RIP-relative addresses can't have additional register operands.
Chris Lattner4c1b6062009-06-27 05:24:12 +0000455 if (Subtarget->isPICStyleRIPRel() &&
Dan Gohman97135e12008-09-26 19:15:30 +0000456 (AM.Base.Reg != 0 || AM.IndexReg != 0))
457 return false;
458
Dan Gohmane9865942009-02-23 22:03:08 +0000459 // Can't handle TLS yet.
Dan Gohman46510a72010-04-15 01:51:59 +0000460 if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
Dan Gohmane9865942009-02-23 22:03:08 +0000461 if (GVar->isThreadLocal())
462 return false;
463
Chris Lattnerff7727f2009-07-09 06:41:35 +0000464 // Okay, we've committed to selecting this global. Set up the basic address.
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000465 AM.GV = GV;
Chris Lattner18c59872009-06-27 04:16:01 +0000466
Chris Lattner0d786dd2009-07-10 07:48:51 +0000467 // Allow the subtarget to classify the global.
468 unsigned char GVFlags = Subtarget->ClassifyGlobalReference(GV, TM);
469
470 // If this reference is relative to the pic base, set it now.
471 if (isGlobalRelativeToPICBase(GVFlags)) {
Chris Lattner75cdf272009-07-09 06:59:17 +0000472 // FIXME: How do we know Base.Reg is free??
Dan Gohman57c3dac2008-09-30 00:58:23 +0000473 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(&MF);
Chris Lattner75cdf272009-07-09 06:59:17 +0000474 }
Chris Lattner0d786dd2009-07-10 07:48:51 +0000475
476 // Unless the ABI requires an extra load, return a direct reference to
Chris Lattnerff7727f2009-07-09 06:41:35 +0000477 // the global.
Chris Lattner0d786dd2009-07-10 07:48:51 +0000478 if (!isGlobalStubReference(GVFlags)) {
Chris Lattnerff7727f2009-07-09 06:41:35 +0000479 if (Subtarget->isPICStyleRIPRel()) {
480 // Use rip-relative addressing if we can. Above we verified that the
481 // base and index registers are unused.
482 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
483 AM.Base.Reg = X86::RIP;
Dan Gohman7e8ef602008-09-19 23:42:04 +0000484 }
Chris Lattner0d786dd2009-07-10 07:48:51 +0000485 AM.GVOpFlags = GVFlags;
Chris Lattnerff7727f2009-07-09 06:41:35 +0000486 return true;
487 }
488
Chris Lattner0d786dd2009-07-10 07:48:51 +0000489 // Ok, we need to do a load from a stub. If we've already loaded from this
490 // stub, reuse the loaded pointer, otherwise emit the load now.
Chris Lattnerff7727f2009-07-09 06:41:35 +0000491 DenseMap<const Value*, unsigned>::iterator I = LocalValueMap.find(V);
492 unsigned LoadReg;
493 if (I != LocalValueMap.end() && I->second != 0) {
494 LoadReg = I->second;
495 } else {
Chris Lattner35c28ec2009-07-01 03:27:19 +0000496 // Issue load from stub.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000497 unsigned Opc = 0;
498 const TargetRegisterClass *RC = NULL;
Dan Gohman789ce772008-09-25 23:34:02 +0000499 X86AddressMode StubAM;
500 StubAM.Base.Reg = AM.Base.Reg;
Chris Lattner75cdf272009-07-09 06:59:17 +0000501 StubAM.GV = GV;
Chris Lattner0d786dd2009-07-10 07:48:51 +0000502 StubAM.GVOpFlags = GVFlags;
503
Owen Anderson825b72b2009-08-11 20:47:22 +0000504 if (TLI.getPointerTy() == MVT::i64) {
Chris Lattner75cdf272009-07-09 06:59:17 +0000505 Opc = X86::MOV64rm;
506 RC = X86::GR64RegisterClass;
507
Chris Lattner0d786dd2009-07-10 07:48:51 +0000508 if (Subtarget->isPICStyleRIPRel())
Chris Lattner75cdf272009-07-09 06:59:17 +0000509 StubAM.Base.Reg = X86::RIP;
Chris Lattner75cdf272009-07-09 06:59:17 +0000510 } else {
Chris Lattner35c28ec2009-07-01 03:27:19 +0000511 Opc = X86::MOV32rm;
512 RC = X86::GR32RegisterClass;
Chris Lattner35c28ec2009-07-01 03:27:19 +0000513 }
Chris Lattnerff7727f2009-07-09 06:41:35 +0000514
515 LoadReg = createResultReg(RC);
516 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), LoadReg), StubAM);
517
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000518 // Prevent loading GV stub multiple times in same MBB.
Chris Lattnerff7727f2009-07-09 06:41:35 +0000519 LocalValueMap[V] = LoadReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000520 }
Chris Lattner18c59872009-06-27 04:16:01 +0000521
Chris Lattnerff7727f2009-07-09 06:41:35 +0000522 // Now construct the final address. Note that the Disp, Scale,
523 // and Index values may already be set here.
524 AM.Base.Reg = LoadReg;
525 AM.GV = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000526 return true;
Dan Gohman0586d912008-09-10 20:11:02 +0000527 }
528
Dan Gohman97135e12008-09-26 19:15:30 +0000529 // If all else fails, try to materialize the value in a register.
Chris Lattner4c1b6062009-06-27 05:24:12 +0000530 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
Dan Gohman97135e12008-09-26 19:15:30 +0000531 if (AM.Base.Reg == 0) {
532 AM.Base.Reg = getRegForValue(V);
533 return AM.Base.Reg != 0;
534 }
535 if (AM.IndexReg == 0) {
536 assert(AM.Scale == 1 && "Scale with no index!");
537 AM.IndexReg = getRegForValue(V);
538 return AM.IndexReg != 0;
539 }
540 }
541
542 return false;
Dan Gohman0586d912008-09-10 20:11:02 +0000543}
544
Chris Lattner0aa43de2009-07-10 05:33:42 +0000545/// X86SelectCallAddress - Attempt to fill in an address from the given value.
546///
Dan Gohman46510a72010-04-15 01:51:59 +0000547bool X86FastISel::X86SelectCallAddress(const Value *V, X86AddressMode &AM) {
548 const User *U = NULL;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000549 unsigned Opcode = Instruction::UserOp1;
Dan Gohman46510a72010-04-15 01:51:59 +0000550 if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner0aa43de2009-07-10 05:33:42 +0000551 Opcode = I->getOpcode();
552 U = I;
Dan Gohman46510a72010-04-15 01:51:59 +0000553 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
Chris Lattner0aa43de2009-07-10 05:33:42 +0000554 Opcode = C->getOpcode();
555 U = C;
556 }
557
558 switch (Opcode) {
559 default: break;
560 case Instruction::BitCast:
561 // Look past bitcasts.
562 return X86SelectCallAddress(U->getOperand(0), AM);
563
564 case Instruction::IntToPtr:
565 // Look past no-op inttoptrs.
566 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
567 return X86SelectCallAddress(U->getOperand(0), AM);
568 break;
569
570 case Instruction::PtrToInt:
571 // Look past no-op ptrtoints.
572 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
573 return X86SelectCallAddress(U->getOperand(0), AM);
574 break;
575 }
576
577 // Handle constant address.
Dan Gohman46510a72010-04-15 01:51:59 +0000578 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Chris Lattner0aa43de2009-07-10 05:33:42 +0000579 // Can't handle alternate code models yet.
Chris Lattnerf1d6bd52009-07-10 21:03:06 +0000580 if (TM.getCodeModel() != CodeModel::Small)
Chris Lattner0aa43de2009-07-10 05:33:42 +0000581 return false;
582
583 // RIP-relative addresses can't have additional register operands.
584 if (Subtarget->isPICStyleRIPRel() &&
585 (AM.Base.Reg != 0 || AM.IndexReg != 0))
586 return false;
587
Chris Lattner754b7652009-07-10 05:48:03 +0000588 // Can't handle TLS or DLLImport.
Dan Gohman46510a72010-04-15 01:51:59 +0000589 if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
Chris Lattnere6c07b52009-07-10 05:45:15 +0000590 if (GVar->isThreadLocal() || GVar->hasDLLImportLinkage())
Chris Lattner0aa43de2009-07-10 05:33:42 +0000591 return false;
592
593 // Okay, we've committed to selecting this global. Set up the basic address.
594 AM.GV = GV;
595
Chris Lattnere6c07b52009-07-10 05:45:15 +0000596 // No ABI requires an extra load for anything other than DLLImport, which
597 // we rejected above. Return a direct reference to the global.
Chris Lattnere6c07b52009-07-10 05:45:15 +0000598 if (Subtarget->isPICStyleRIPRel()) {
599 // Use rip-relative addressing if we can. Above we verified that the
600 // base and index registers are unused.
601 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
602 AM.Base.Reg = X86::RIP;
Chris Lattnere2c92082009-07-10 21:00:45 +0000603 } else if (Subtarget->isPICStyleStubPIC()) {
Chris Lattnere6c07b52009-07-10 05:45:15 +0000604 AM.GVOpFlags = X86II::MO_PIC_BASE_OFFSET;
605 } else if (Subtarget->isPICStyleGOT()) {
606 AM.GVOpFlags = X86II::MO_GOTOFF;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000607 }
608
Chris Lattner0aa43de2009-07-10 05:33:42 +0000609 return true;
610 }
611
612 // If all else fails, try to materialize the value in a register.
613 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
614 if (AM.Base.Reg == 0) {
615 AM.Base.Reg = getRegForValue(V);
616 return AM.Base.Reg != 0;
617 }
618 if (AM.IndexReg == 0) {
619 assert(AM.Scale == 1 && "Scale with no index!");
620 AM.IndexReg = getRegForValue(V);
621 return AM.IndexReg != 0;
622 }
623 }
624
625 return false;
626}
627
628
Owen Andersona3971df2008-09-04 07:08:58 +0000629/// X86SelectStore - Select and emit code to implement store instructions.
Dan Gohman46510a72010-04-15 01:51:59 +0000630bool X86FastISel::X86SelectStore(const Instruction *I) {
Owen Andersone50ed302009-08-10 22:56:29 +0000631 EVT VT;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000632 if (!isTypeLegal(I->getOperand(0)->getType(), VT, /*AllowI1=*/true))
Owen Andersona3971df2008-09-04 07:08:58 +0000633 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000634
Dan Gohman0586d912008-09-10 20:11:02 +0000635 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000636 if (!X86SelectAddress(I->getOperand(1), AM))
Dan Gohman0586d912008-09-10 20:11:02 +0000637 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000638
Chris Lattner438949a2008-10-15 05:30:52 +0000639 return X86FastEmitStore(VT, I->getOperand(0), AM);
Owen Andersona3971df2008-09-04 07:08:58 +0000640}
641
Evan Cheng8b19e562008-09-03 06:44:39 +0000642/// X86SelectLoad - Select and emit code to implement load instructions.
643///
Dan Gohman46510a72010-04-15 01:51:59 +0000644bool X86FastISel::X86SelectLoad(const Instruction *I) {
Owen Andersone50ed302009-08-10 22:56:29 +0000645 EVT VT;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000646 if (!isTypeLegal(I->getType(), VT, /*AllowI1=*/true))
Evan Cheng8b19e562008-09-03 06:44:39 +0000647 return false;
648
Dan Gohman0586d912008-09-10 20:11:02 +0000649 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000650 if (!X86SelectAddress(I->getOperand(0), AM))
Dan Gohman0586d912008-09-10 20:11:02 +0000651 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000652
Evan Cheng0de588f2008-09-05 21:00:03 +0000653 unsigned ResultReg = 0;
Dan Gohman0586d912008-09-10 20:11:02 +0000654 if (X86FastEmitLoad(VT, AM, ResultReg)) {
Evan Cheng0de588f2008-09-05 21:00:03 +0000655 UpdateValueMap(I, ResultReg);
656 return true;
Evan Cheng8b19e562008-09-03 06:44:39 +0000657 }
Evan Cheng0de588f2008-09-05 21:00:03 +0000658 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000659}
660
Owen Andersone50ed302009-08-10 22:56:29 +0000661static unsigned X86ChooseCmpOpcode(EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000662 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000663 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +0000664 case MVT::i8: return X86::CMP8rr;
665 case MVT::i16: return X86::CMP16rr;
666 case MVT::i32: return X86::CMP32rr;
667 case MVT::i64: return X86::CMP64rr;
668 case MVT::f32: return X86::UCOMISSrr;
669 case MVT::f64: return X86::UCOMISDrr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000670 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000671}
672
Chris Lattner0e13c782008-10-15 04:13:29 +0000673/// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS
674/// of the comparison, return an opcode that works for the compare (e.g.
675/// CMP32ri) otherwise return 0.
Dan Gohman46510a72010-04-15 01:51:59 +0000676static unsigned X86ChooseCmpImmediateOpcode(EVT VT, const ConstantInt *RHSC) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000677 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0e13c782008-10-15 04:13:29 +0000678 // Otherwise, we can't fold the immediate into this comparison.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000679 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +0000680 case MVT::i8: return X86::CMP8ri;
681 case MVT::i16: return X86::CMP16ri;
682 case MVT::i32: return X86::CMP32ri;
683 case MVT::i64:
Chris Lattner45ac17f2008-10-15 04:32:45 +0000684 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
685 // field.
Chris Lattner438949a2008-10-15 05:30:52 +0000686 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
Chris Lattner45ac17f2008-10-15 04:32:45 +0000687 return X86::CMP64ri32;
688 return 0;
689 }
Chris Lattner0e13c782008-10-15 04:13:29 +0000690}
691
Dan Gohman46510a72010-04-15 01:51:59 +0000692bool X86FastISel::X86FastEmitCompare(const Value *Op0, const Value *Op1,
693 EVT VT) {
Chris Lattner9a08a612008-10-15 04:26:38 +0000694 unsigned Op0Reg = getRegForValue(Op0);
695 if (Op0Reg == 0) return false;
696
Chris Lattnerd53886b2008-10-15 05:18:04 +0000697 // Handle 'null' like i32/i64 0.
698 if (isa<ConstantPointerNull>(Op1))
Owen Anderson1d0be152009-08-13 21:58:54 +0000699 Op1 = Constant::getNullValue(TD.getIntPtrType(Op0->getContext()));
Chris Lattnerd53886b2008-10-15 05:18:04 +0000700
Chris Lattner9a08a612008-10-15 04:26:38 +0000701 // We have two options: compare with register or immediate. If the RHS of
702 // the compare is an immediate that we can fold into this compare, use
703 // CMPri, otherwise use CMPrr.
Dan Gohman46510a72010-04-15 01:51:59 +0000704 if (const ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000705 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000706 BuildMI(MBB, DL, TII.get(CompareImmOpc)).addReg(Op0Reg)
Chris Lattner9a08a612008-10-15 04:26:38 +0000707 .addImm(Op1C->getSExtValue());
708 return true;
709 }
710 }
711
712 unsigned CompareOpc = X86ChooseCmpOpcode(VT);
713 if (CompareOpc == 0) return false;
714
715 unsigned Op1Reg = getRegForValue(Op1);
716 if (Op1Reg == 0) return false;
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000717 BuildMI(MBB, DL, TII.get(CompareOpc)).addReg(Op0Reg).addReg(Op1Reg);
Chris Lattner9a08a612008-10-15 04:26:38 +0000718
719 return true;
720}
721
Dan Gohman46510a72010-04-15 01:51:59 +0000722bool X86FastISel::X86SelectCmp(const Instruction *I) {
723 const CmpInst *CI = cast<CmpInst>(I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000724
Owen Andersone50ed302009-08-10 22:56:29 +0000725 EVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000726 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Dan Gohman4f22bb02008-09-05 01:33:56 +0000727 return false;
728
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000729 unsigned ResultReg = createResultReg(&X86::GR8RegClass);
Chris Lattner54aebde2008-10-15 03:47:17 +0000730 unsigned SetCCOpc;
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000731 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000732 switch (CI->getPredicate()) {
733 case CmpInst::FCMP_OEQ: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000734 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
735 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000736
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000737 unsigned EReg = createResultReg(&X86::GR8RegClass);
738 unsigned NPReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000739 BuildMI(MBB, DL, TII.get(X86::SETEr), EReg);
740 BuildMI(MBB, DL, TII.get(X86::SETNPr), NPReg);
741 BuildMI(MBB, DL,
742 TII.get(X86::AND8rr), ResultReg).addReg(NPReg).addReg(EReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000743 UpdateValueMap(I, ResultReg);
744 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000745 }
746 case CmpInst::FCMP_UNE: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000747 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
748 return false;
749
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000750 unsigned NEReg = createResultReg(&X86::GR8RegClass);
751 unsigned PReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000752 BuildMI(MBB, DL, TII.get(X86::SETNEr), NEReg);
753 BuildMI(MBB, DL, TII.get(X86::SETPr), PReg);
754 BuildMI(MBB, DL, TII.get(X86::OR8rr), ResultReg).addReg(PReg).addReg(NEReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000755 UpdateValueMap(I, ResultReg);
756 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000757 }
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000758 case CmpInst::FCMP_OGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
759 case CmpInst::FCMP_OGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
760 case CmpInst::FCMP_OLT: SwapArgs = true; SetCCOpc = X86::SETAr; break;
761 case CmpInst::FCMP_OLE: SwapArgs = true; SetCCOpc = X86::SETAEr; break;
762 case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
763 case CmpInst::FCMP_ORD: SwapArgs = false; SetCCOpc = X86::SETNPr; break;
764 case CmpInst::FCMP_UNO: SwapArgs = false; SetCCOpc = X86::SETPr; break;
765 case CmpInst::FCMP_UEQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
766 case CmpInst::FCMP_UGT: SwapArgs = true; SetCCOpc = X86::SETBr; break;
767 case CmpInst::FCMP_UGE: SwapArgs = true; SetCCOpc = X86::SETBEr; break;
768 case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
769 case CmpInst::FCMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
770
771 case CmpInst::ICMP_EQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
772 case CmpInst::ICMP_NE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
773 case CmpInst::ICMP_UGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
774 case CmpInst::ICMP_UGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
775 case CmpInst::ICMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
776 case CmpInst::ICMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
777 case CmpInst::ICMP_SGT: SwapArgs = false; SetCCOpc = X86::SETGr; break;
778 case CmpInst::ICMP_SGE: SwapArgs = false; SetCCOpc = X86::SETGEr; break;
779 case CmpInst::ICMP_SLT: SwapArgs = false; SetCCOpc = X86::SETLr; break;
780 case CmpInst::ICMP_SLE: SwapArgs = false; SetCCOpc = X86::SETLEr; break;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000781 default:
782 return false;
783 }
784
Dan Gohman46510a72010-04-15 01:51:59 +0000785 const Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000786 if (SwapArgs)
Chris Lattner9a08a612008-10-15 04:26:38 +0000787 std::swap(Op0, Op1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000788
Chris Lattner9a08a612008-10-15 04:26:38 +0000789 // Emit a compare of Op0/Op1.
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000790 if (!X86FastEmitCompare(Op0, Op1, VT))
791 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000792
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000793 BuildMI(MBB, DL, TII.get(SetCCOpc), ResultReg);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000794 UpdateValueMap(I, ResultReg);
795 return true;
796}
Evan Cheng8b19e562008-09-03 06:44:39 +0000797
Dan Gohman46510a72010-04-15 01:51:59 +0000798bool X86FastISel::X86SelectZExt(const Instruction *I) {
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000799 // Handle zero-extension from i1 to i8, which is common.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000800 if (I->getType()->isIntegerTy(8) &&
801 I->getOperand(0)->getType()->isIntegerTy(1)) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000802 unsigned ResultReg = getRegForValue(I->getOperand(0));
Dan Gohmanf52550b2008-09-05 01:15:35 +0000803 if (ResultReg == 0) return false;
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000804 // Set the high bits to zero.
Owen Anderson825b72b2009-08-11 20:47:22 +0000805 ResultReg = FastEmitZExtFromI1(MVT::i8, ResultReg);
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000806 if (ResultReg == 0) return false;
Dan Gohmand89ae992008-09-05 01:06:14 +0000807 UpdateValueMap(I, ResultReg);
808 return true;
809 }
810
811 return false;
812}
813
Chris Lattner9a08a612008-10-15 04:26:38 +0000814
Dan Gohman46510a72010-04-15 01:51:59 +0000815bool X86FastISel::X86SelectBranch(const Instruction *I) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000816 // Unconditional branches are selected by tablegen-generated code.
Dan Gohmand98d6202008-10-02 22:15:21 +0000817 // Handle a conditional branch.
Dan Gohman46510a72010-04-15 01:51:59 +0000818 const BranchInst *BI = cast<BranchInst>(I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000819 MachineBasicBlock *TrueMBB = MBBMap[BI->getSuccessor(0)];
820 MachineBasicBlock *FalseMBB = MBBMap[BI->getSuccessor(1)];
821
Dan Gohmand98d6202008-10-02 22:15:21 +0000822 // Fold the common case of a conditional branch with a comparison.
Dan Gohman46510a72010-04-15 01:51:59 +0000823 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
Dan Gohmand98d6202008-10-02 22:15:21 +0000824 if (CI->hasOneUse()) {
Owen Andersone50ed302009-08-10 22:56:29 +0000825 EVT VT = TLI.getValueType(CI->getOperand(0)->getType());
Dan Gohmand89ae992008-09-05 01:06:14 +0000826
Dan Gohmand98d6202008-10-02 22:15:21 +0000827 // Try to take advantage of fallthrough opportunities.
828 CmpInst::Predicate Predicate = CI->getPredicate();
829 if (MBB->isLayoutSuccessor(TrueMBB)) {
830 std::swap(TrueMBB, FalseMBB);
831 Predicate = CmpInst::getInversePredicate(Predicate);
832 }
833
Chris Lattner871d2462008-10-15 03:58:05 +0000834 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
835 unsigned BranchOpc; // Opcode to jump on, e.g. "X86::JA"
836
Dan Gohmand98d6202008-10-02 22:15:21 +0000837 switch (Predicate) {
Dan Gohman7b66e042008-10-21 18:24:51 +0000838 case CmpInst::FCMP_OEQ:
839 std::swap(TrueMBB, FalseMBB);
840 Predicate = CmpInst::FCMP_UNE;
841 // FALL THROUGH
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000842 case CmpInst::FCMP_UNE: SwapArgs = false; BranchOpc = X86::JNE_4; break;
843 case CmpInst::FCMP_OGT: SwapArgs = false; BranchOpc = X86::JA_4; break;
844 case CmpInst::FCMP_OGE: SwapArgs = false; BranchOpc = X86::JAE_4; break;
845 case CmpInst::FCMP_OLT: SwapArgs = true; BranchOpc = X86::JA_4; break;
846 case CmpInst::FCMP_OLE: SwapArgs = true; BranchOpc = X86::JAE_4; break;
847 case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE_4; break;
848 case CmpInst::FCMP_ORD: SwapArgs = false; BranchOpc = X86::JNP_4; break;
849 case CmpInst::FCMP_UNO: SwapArgs = false; BranchOpc = X86::JP_4; break;
850 case CmpInst::FCMP_UEQ: SwapArgs = false; BranchOpc = X86::JE_4; break;
851 case CmpInst::FCMP_UGT: SwapArgs = true; BranchOpc = X86::JB_4; break;
852 case CmpInst::FCMP_UGE: SwapArgs = true; BranchOpc = X86::JBE_4; break;
853 case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB_4; break;
854 case CmpInst::FCMP_ULE: SwapArgs = false; BranchOpc = X86::JBE_4; break;
Chris Lattner9a08a612008-10-15 04:26:38 +0000855
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000856 case CmpInst::ICMP_EQ: SwapArgs = false; BranchOpc = X86::JE_4; break;
857 case CmpInst::ICMP_NE: SwapArgs = false; BranchOpc = X86::JNE_4; break;
858 case CmpInst::ICMP_UGT: SwapArgs = false; BranchOpc = X86::JA_4; break;
859 case CmpInst::ICMP_UGE: SwapArgs = false; BranchOpc = X86::JAE_4; break;
860 case CmpInst::ICMP_ULT: SwapArgs = false; BranchOpc = X86::JB_4; break;
861 case CmpInst::ICMP_ULE: SwapArgs = false; BranchOpc = X86::JBE_4; break;
862 case CmpInst::ICMP_SGT: SwapArgs = false; BranchOpc = X86::JG_4; break;
863 case CmpInst::ICMP_SGE: SwapArgs = false; BranchOpc = X86::JGE_4; break;
864 case CmpInst::ICMP_SLT: SwapArgs = false; BranchOpc = X86::JL_4; break;
865 case CmpInst::ICMP_SLE: SwapArgs = false; BranchOpc = X86::JLE_4; break;
Dan Gohmand98d6202008-10-02 22:15:21 +0000866 default:
867 return false;
868 }
Chris Lattner54aebde2008-10-15 03:47:17 +0000869
Dan Gohman46510a72010-04-15 01:51:59 +0000870 const Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
Chris Lattner709d8292008-10-15 04:02:26 +0000871 if (SwapArgs)
872 std::swap(Op0, Op1);
873
Chris Lattner9a08a612008-10-15 04:26:38 +0000874 // Emit a compare of the LHS and RHS, setting the flags.
875 if (!X86FastEmitCompare(Op0, Op1, VT))
876 return false;
Chris Lattner0e13c782008-10-15 04:13:29 +0000877
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000878 BuildMI(MBB, DL, TII.get(BranchOpc)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000879
880 if (Predicate == CmpInst::FCMP_UNE) {
881 // X86 requires a second branch to handle UNE (and OEQ,
882 // which is mapped to UNE above).
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000883 BuildMI(MBB, DL, TII.get(X86::JP_4)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000884 }
885
Dan Gohmand98d6202008-10-02 22:15:21 +0000886 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000887 MBB->addSuccessor(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000888 return true;
889 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000890 } else if (ExtractValueInst *EI =
891 dyn_cast<ExtractValueInst>(BI->getCondition())) {
892 // Check to see if the branch instruction is from an "arithmetic with
893 // overflow" intrinsic. The main way these intrinsics are used is:
894 //
895 // %t = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2)
896 // %sum = extractvalue { i32, i1 } %t, 0
897 // %obit = extractvalue { i32, i1 } %t, 1
898 // br i1 %obit, label %overflow, label %normal
899 //
Dan Gohman653456c2009-01-07 00:15:08 +0000900 // The %sum and %obit are converted in an ADD and a SETO/SETB before
Bill Wendling30a64a72008-12-09 23:19:12 +0000901 // reaching the branch. Therefore, we search backwards through the MBB
Dan Gohman653456c2009-01-07 00:15:08 +0000902 // looking for the SETO/SETB instruction. If an instruction modifies the
903 // EFLAGS register before we reach the SETO/SETB instruction, then we can't
904 // convert the branch into a JO/JB instruction.
Dan Gohman46510a72010-04-15 01:51:59 +0000905 if (const IntrinsicInst *CI =
906 dyn_cast<IntrinsicInst>(EI->getAggregateOperand())){
Chris Lattnera9a42252009-04-12 07:36:01 +0000907 if (CI->getIntrinsicID() == Intrinsic::sadd_with_overflow ||
908 CI->getIntrinsicID() == Intrinsic::uadd_with_overflow) {
909 const MachineInstr *SetMI = 0;
910 unsigned Reg = lookUpRegForValue(EI);
Bill Wendling30a64a72008-12-09 23:19:12 +0000911
Chris Lattnera9a42252009-04-12 07:36:01 +0000912 for (MachineBasicBlock::const_reverse_iterator
913 RI = MBB->rbegin(), RE = MBB->rend(); RI != RE; ++RI) {
914 const MachineInstr &MI = *RI;
Bill Wendling30a64a72008-12-09 23:19:12 +0000915
Chris Lattnera9a42252009-04-12 07:36:01 +0000916 if (MI.modifiesRegister(Reg)) {
917 unsigned Src, Dst, SrcSR, DstSR;
Bill Wendling30a64a72008-12-09 23:19:12 +0000918
Chris Lattnera9a42252009-04-12 07:36:01 +0000919 if (getInstrInfo()->isMoveInstr(MI, Src, Dst, SrcSR, DstSR)) {
920 Reg = Src;
921 continue;
Bill Wendling9a901322008-12-10 19:44:24 +0000922 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000923
Chris Lattnera9a42252009-04-12 07:36:01 +0000924 SetMI = &MI;
925 break;
Bill Wendling30a64a72008-12-09 23:19:12 +0000926 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000927
Chris Lattnera9a42252009-04-12 07:36:01 +0000928 const TargetInstrDesc &TID = MI.getDesc();
929 if (TID.hasUnmodeledSideEffects() ||
930 TID.hasImplicitDefOfPhysReg(X86::EFLAGS))
931 break;
Bill Wendling9a901322008-12-10 19:44:24 +0000932 }
Chris Lattnera9a42252009-04-12 07:36:01 +0000933
934 if (SetMI) {
935 unsigned OpCode = SetMI->getOpcode();
936
937 if (OpCode == X86::SETOr || OpCode == X86::SETBr) {
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000938 BuildMI(MBB, DL, TII.get(OpCode == X86::SETOr ?
939 X86::JO_4 : X86::JB_4))
Chris Lattner8d57b772009-04-12 07:51:14 +0000940 .addMBB(TrueMBB);
Chris Lattnera9a42252009-04-12 07:36:01 +0000941 FastEmitBranch(FalseMBB);
942 MBB->addSuccessor(TrueMBB);
943 return true;
944 }
Bill Wendling9a901322008-12-10 19:44:24 +0000945 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000946 }
947 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000948 }
949
950 // Otherwise do a clumsy setcc and re-test it.
951 unsigned OpReg = getRegForValue(BI->getCondition());
952 if (OpReg == 0) return false;
953
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000954 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(OpReg).addReg(OpReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000955 BuildMI(MBB, DL, TII.get(X86::JNE_4)).addMBB(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000956 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000957 MBB->addSuccessor(TrueMBB);
Dan Gohmand89ae992008-09-05 01:06:14 +0000958 return true;
959}
960
Dan Gohman46510a72010-04-15 01:51:59 +0000961bool X86FastISel::X86SelectShift(const Instruction *I) {
Chris Lattner743922e2008-09-21 21:44:29 +0000962 unsigned CReg = 0, OpReg = 0, OpImm = 0;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000963 const TargetRegisterClass *RC = NULL;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000964 if (I->getType()->isIntegerTy(8)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000965 CReg = X86::CL;
966 RC = &X86::GR8RegClass;
967 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000968 case Instruction::LShr: OpReg = X86::SHR8rCL; OpImm = X86::SHR8ri; break;
969 case Instruction::AShr: OpReg = X86::SAR8rCL; OpImm = X86::SAR8ri; break;
970 case Instruction::Shl: OpReg = X86::SHL8rCL; OpImm = X86::SHL8ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000971 default: return false;
972 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000973 } else if (I->getType()->isIntegerTy(16)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000974 CReg = X86::CX;
975 RC = &X86::GR16RegClass;
976 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000977 case Instruction::LShr: OpReg = X86::SHR16rCL; OpImm = X86::SHR16ri; break;
978 case Instruction::AShr: OpReg = X86::SAR16rCL; OpImm = X86::SAR16ri; break;
979 case Instruction::Shl: OpReg = X86::SHL16rCL; OpImm = X86::SHL16ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000980 default: return false;
981 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000982 } else if (I->getType()->isIntegerTy(32)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000983 CReg = X86::ECX;
984 RC = &X86::GR32RegClass;
985 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000986 case Instruction::LShr: OpReg = X86::SHR32rCL; OpImm = X86::SHR32ri; break;
987 case Instruction::AShr: OpReg = X86::SAR32rCL; OpImm = X86::SAR32ri; break;
988 case Instruction::Shl: OpReg = X86::SHL32rCL; OpImm = X86::SHL32ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000989 default: return false;
990 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000991 } else if (I->getType()->isIntegerTy(64)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000992 CReg = X86::RCX;
993 RC = &X86::GR64RegClass;
994 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000995 case Instruction::LShr: OpReg = X86::SHR64rCL; OpImm = X86::SHR64ri; break;
996 case Instruction::AShr: OpReg = X86::SAR64rCL; OpImm = X86::SAR64ri; break;
997 case Instruction::Shl: OpReg = X86::SHL64rCL; OpImm = X86::SHL64ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000998 default: return false;
999 }
1000 } else {
1001 return false;
1002 }
1003
Owen Andersone50ed302009-08-10 22:56:29 +00001004 EVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00001005 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Dan Gohmanf58cb6d2008-09-05 21:27:34 +00001006 return false;
1007
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001008 unsigned Op0Reg = getRegForValue(I->getOperand(0));
1009 if (Op0Reg == 0) return false;
Chris Lattner743922e2008-09-21 21:44:29 +00001010
1011 // Fold immediate in shl(x,3).
Dan Gohman46510a72010-04-15 01:51:59 +00001012 if (const ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
Chris Lattner743922e2008-09-21 21:44:29 +00001013 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001014 BuildMI(MBB, DL, TII.get(OpImm),
Dan Gohmanb12b1a22008-12-20 17:19:40 +00001015 ResultReg).addReg(Op0Reg).addImm(CI->getZExtValue() & 0xff);
Chris Lattner743922e2008-09-21 21:44:29 +00001016 UpdateValueMap(I, ResultReg);
1017 return true;
1018 }
1019
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001020 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1021 if (Op1Reg == 0) return false;
1022 TII.copyRegToReg(*MBB, MBB->end(), CReg, Op1Reg, RC, RC);
Dan Gohman145b8282008-10-07 21:50:36 +00001023
1024 // The shift instruction uses X86::CL. If we defined a super-register
1025 // of X86::CL, emit an EXTRACT_SUBREG to precisely describe what
1026 // we're doing here.
1027 if (CReg != X86::CL)
Chris Lattner518bb532010-02-09 19:54:29 +00001028 BuildMI(MBB, DL, TII.get(TargetOpcode::EXTRACT_SUBREG), X86::CL)
Dan Gohman145b8282008-10-07 21:50:36 +00001029 .addReg(CReg).addImm(X86::SUBREG_8BIT);
1030
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001031 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001032 BuildMI(MBB, DL, TII.get(OpReg), ResultReg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001033 UpdateValueMap(I, ResultReg);
1034 return true;
1035}
1036
Dan Gohman46510a72010-04-15 01:51:59 +00001037bool X86FastISel::X86SelectSelect(const Instruction *I) {
Owen Andersone50ed302009-08-10 22:56:29 +00001038 EVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00001039 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Chris Lattner160f6cc2008-10-15 05:07:36 +00001040 return false;
1041
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001042 unsigned Opc = 0;
1043 const TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001044 if (VT.getSimpleVT() == MVT::i16) {
Dan Gohman31d26912008-09-05 21:13:04 +00001045 Opc = X86::CMOVE16rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001046 RC = &X86::GR16RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001047 } else if (VT.getSimpleVT() == MVT::i32) {
Dan Gohman31d26912008-09-05 21:13:04 +00001048 Opc = X86::CMOVE32rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001049 RC = &X86::GR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001050 } else if (VT.getSimpleVT() == MVT::i64) {
Dan Gohman31d26912008-09-05 21:13:04 +00001051 Opc = X86::CMOVE64rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001052 RC = &X86::GR64RegClass;
1053 } else {
1054 return false;
1055 }
1056
1057 unsigned Op0Reg = getRegForValue(I->getOperand(0));
1058 if (Op0Reg == 0) return false;
1059 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1060 if (Op1Reg == 0) return false;
1061 unsigned Op2Reg = getRegForValue(I->getOperand(2));
1062 if (Op2Reg == 0) return false;
1063
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001064 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(Op0Reg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001065 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001066 BuildMI(MBB, DL, TII.get(Opc), ResultReg).addReg(Op1Reg).addReg(Op2Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001067 UpdateValueMap(I, ResultReg);
1068 return true;
1069}
1070
Dan Gohman46510a72010-04-15 01:51:59 +00001071bool X86FastISel::X86SelectFPExt(const Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +00001072 // fpext from float to double.
Owen Anderson1d0be152009-08-13 21:58:54 +00001073 if (Subtarget->hasSSE2() &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001074 I->getType()->isDoubleTy()) {
Dan Gohman46510a72010-04-15 01:51:59 +00001075 const Value *V = I->getOperand(0);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001076 if (V->getType()->isFloatTy()) {
Chris Lattner160f6cc2008-10-15 05:07:36 +00001077 unsigned OpReg = getRegForValue(V);
1078 if (OpReg == 0) return false;
1079 unsigned ResultReg = createResultReg(X86::FR64RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001080 BuildMI(MBB, DL, TII.get(X86::CVTSS2SDrr), ResultReg).addReg(OpReg);
Chris Lattner160f6cc2008-10-15 05:07:36 +00001081 UpdateValueMap(I, ResultReg);
1082 return true;
Dan Gohman78efce62008-09-10 21:02:08 +00001083 }
1084 }
1085
1086 return false;
1087}
1088
Dan Gohman46510a72010-04-15 01:51:59 +00001089bool X86FastISel::X86SelectFPTrunc(const Instruction *I) {
Dan Gohman78efce62008-09-10 21:02:08 +00001090 if (Subtarget->hasSSE2()) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001091 if (I->getType()->isFloatTy()) {
Dan Gohman46510a72010-04-15 01:51:59 +00001092 const Value *V = I->getOperand(0);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001093 if (V->getType()->isDoubleTy()) {
Dan Gohman78efce62008-09-10 21:02:08 +00001094 unsigned OpReg = getRegForValue(V);
1095 if (OpReg == 0) return false;
1096 unsigned ResultReg = createResultReg(X86::FR32RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001097 BuildMI(MBB, DL, TII.get(X86::CVTSD2SSrr), ResultReg).addReg(OpReg);
Dan Gohman78efce62008-09-10 21:02:08 +00001098 UpdateValueMap(I, ResultReg);
1099 return true;
1100 }
1101 }
1102 }
1103
1104 return false;
1105}
1106
Dan Gohman46510a72010-04-15 01:51:59 +00001107bool X86FastISel::X86SelectTrunc(const Instruction *I) {
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001108 if (Subtarget->is64Bit())
1109 // All other cases should be handled by the tblgen generated code.
1110 return false;
Owen Andersone50ed302009-08-10 22:56:29 +00001111 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1112 EVT DstVT = TLI.getValueType(I->getType());
Chris Lattner44ceb8a2009-03-13 16:36:42 +00001113
1114 // This code only handles truncation to byte right now.
Owen Anderson825b72b2009-08-11 20:47:22 +00001115 if (DstVT != MVT::i8 && DstVT != MVT::i1)
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001116 // All other cases should be handled by the tblgen generated code.
1117 return false;
Owen Anderson825b72b2009-08-11 20:47:22 +00001118 if (SrcVT != MVT::i16 && SrcVT != MVT::i32)
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001119 // All other cases should be handled by the tblgen generated code.
1120 return false;
1121
1122 unsigned InputReg = getRegForValue(I->getOperand(0));
1123 if (!InputReg)
1124 // Unhandled operand. Halt "fast" selection and bail.
1125 return false;
1126
Dan Gohman62417622009-04-27 16:33:14 +00001127 // First issue a copy to GR16_ABCD or GR32_ABCD.
Owen Anderson825b72b2009-08-11 20:47:22 +00001128 unsigned CopyOpc = (SrcVT == MVT::i16) ? X86::MOV16rr : X86::MOV32rr;
1129 const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16)
Dan Gohman62417622009-04-27 16:33:14 +00001130 ? X86::GR16_ABCDRegisterClass : X86::GR32_ABCDRegisterClass;
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001131 unsigned CopyReg = createResultReg(CopyRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001132 BuildMI(MBB, DL, TII.get(CopyOpc), CopyReg).addReg(InputReg);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001133
1134 // Then issue an extract_subreg.
Owen Anderson825b72b2009-08-11 20:47:22 +00001135 unsigned ResultReg = FastEmitInst_extractsubreg(MVT::i8,
Evan Cheng536ab132009-01-22 09:10:11 +00001136 CopyReg, X86::SUBREG_8BIT);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001137 if (!ResultReg)
1138 return false;
1139
1140 UpdateValueMap(I, ResultReg);
1141 return true;
1142}
1143
Dan Gohman46510a72010-04-15 01:51:59 +00001144bool X86FastISel::X86SelectExtractValue(const Instruction *I) {
1145 const ExtractValueInst *EI = cast<ExtractValueInst>(I);
1146 const Value *Agg = EI->getAggregateOperand();
Bill Wendling52370a12008-12-09 02:42:50 +00001147
Dan Gohman46510a72010-04-15 01:51:59 +00001148 if (const IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Agg)) {
Chris Lattnera9a42252009-04-12 07:36:01 +00001149 switch (CI->getIntrinsicID()) {
1150 default: break;
1151 case Intrinsic::sadd_with_overflow:
1152 case Intrinsic::uadd_with_overflow:
1153 // Cheat a little. We know that the registers for "add" and "seto" are
1154 // allocated sequentially. However, we only keep track of the register
1155 // for "add" in the value map. Use extractvalue's index to get the
1156 // correct register for "seto".
1157 UpdateValueMap(I, lookUpRegForValue(Agg) + *EI->idx_begin());
1158 return true;
Bill Wendling52370a12008-12-09 02:42:50 +00001159 }
1160 }
1161
1162 return false;
1163}
1164
Dan Gohman46510a72010-04-15 01:51:59 +00001165bool X86FastISel::X86VisitIntrinsicCall(const IntrinsicInst &I) {
Bill Wendling52370a12008-12-09 02:42:50 +00001166 // FIXME: Handle more intrinsics.
Chris Lattnera9a42252009-04-12 07:36:01 +00001167 switch (I.getIntrinsicID()) {
Bill Wendling52370a12008-12-09 02:42:50 +00001168 default: return false;
Eric Christopher07754c22010-03-18 20:27:26 +00001169 case Intrinsic::stackprotector: {
1170 // Emit code inline code to store the stack guard onto the stack.
1171 EVT PtrTy = TLI.getPointerTy();
1172
Eric Christopher551754c2010-04-16 23:37:20 +00001173 const Value *Op1 = I.getOperand(1); // The guard's value.
1174 const AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Eric Christopher07754c22010-03-18 20:27:26 +00001175
1176 // Grab the frame index.
1177 X86AddressMode AM;
1178 if (!X86SelectAddress(Slot, AM)) return false;
1179
Eric Christopher88dee302010-03-18 21:58:33 +00001180 if (!X86FastEmitStore(PtrTy, Op1, AM)) return false;
1181
Eric Christopher07754c22010-03-18 20:27:26 +00001182 return true;
1183 }
Eric Christopherf27805b2010-03-11 06:20:22 +00001184 case Intrinsic::objectsize: {
Eric Christopher551754c2010-04-16 23:37:20 +00001185 ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(2));
Eric Christopherf27805b2010-03-11 06:20:22 +00001186 const Type *Ty = I.getCalledFunction()->getReturnType();
1187
1188 assert(CI && "Non-constant type in Intrinsic::objectsize?");
1189
1190 EVT VT;
1191 if (!isTypeLegal(Ty, VT))
1192 return false;
1193
1194 unsigned OpC = 0;
1195 if (VT == MVT::i32)
1196 OpC = X86::MOV32ri;
1197 else if (VT == MVT::i64)
1198 OpC = X86::MOV64ri;
1199 else
1200 return false;
1201
1202 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
1203 BuildMI(MBB, DL, TII.get(OpC), ResultReg).
1204 addImm(CI->getZExtValue() == 0 ? -1ULL : 0);
1205 UpdateValueMap(&I, ResultReg);
1206 return true;
1207 }
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001208 case Intrinsic::dbg_declare: {
Dan Gohman46510a72010-04-15 01:51:59 +00001209 const DbgDeclareInst *DI = cast<DbgDeclareInst>(&I);
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001210 X86AddressMode AM;
Dale Johannesen973f4672010-01-29 21:21:28 +00001211 assert(DI->getAddress() && "Null address should be checked earlier!");
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001212 if (!X86SelectAddress(DI->getAddress(), AM))
1213 return false;
Chris Lattner518bb532010-02-09 19:54:29 +00001214 const TargetInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE);
Dale Johannesen116b7992010-02-18 18:51:15 +00001215 // FIXME may need to add RegState::Debug to any registers produced,
1216 // although ESP/EBP should be the only ones at the moment.
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001217 addFullAddress(BuildMI(MBB, DL, II), AM).addImm(0).
1218 addMetadata(DI->getVariable());
1219 return true;
1220 }
Eric Christopher77f79892010-01-18 22:11:29 +00001221 case Intrinsic::trap: {
1222 BuildMI(MBB, DL, TII.get(X86::TRAP));
1223 return true;
1224 }
Bill Wendling52370a12008-12-09 02:42:50 +00001225 case Intrinsic::sadd_with_overflow:
1226 case Intrinsic::uadd_with_overflow: {
Bill Wendlingc065b3f2008-12-09 07:55:31 +00001227 // Replace "add with overflow" intrinsics with an "add" instruction followed
1228 // by a seto/setc instruction. Later on, when the "extractvalue"
1229 // instructions are encountered, we use the fact that two registers were
1230 // created sequentially to get the correct registers for the "sum" and the
1231 // "overflow bit".
Bill Wendling52370a12008-12-09 02:42:50 +00001232 const Function *Callee = I.getCalledFunction();
1233 const Type *RetTy =
1234 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(unsigned(0));
1235
Owen Andersone50ed302009-08-10 22:56:29 +00001236 EVT VT;
Bill Wendling52370a12008-12-09 02:42:50 +00001237 if (!isTypeLegal(RetTy, VT))
1238 return false;
1239
Eric Christopher551754c2010-04-16 23:37:20 +00001240 const Value *Op1 = I.getOperand(1);
1241 const Value *Op2 = I.getOperand(2);
Bill Wendling52370a12008-12-09 02:42:50 +00001242 unsigned Reg1 = getRegForValue(Op1);
1243 unsigned Reg2 = getRegForValue(Op2);
1244
1245 if (Reg1 == 0 || Reg2 == 0)
1246 // FIXME: Handle values *not* in registers.
1247 return false;
1248
1249 unsigned OpC = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001250 if (VT == MVT::i32)
Bill Wendling52370a12008-12-09 02:42:50 +00001251 OpC = X86::ADD32rr;
Owen Anderson825b72b2009-08-11 20:47:22 +00001252 else if (VT == MVT::i64)
Bill Wendling52370a12008-12-09 02:42:50 +00001253 OpC = X86::ADD64rr;
1254 else
1255 return false;
1256
1257 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001258 BuildMI(MBB, DL, TII.get(OpC), ResultReg).addReg(Reg1).addReg(Reg2);
Chris Lattner8d57b772009-04-12 07:51:14 +00001259 unsigned DestReg1 = UpdateValueMap(&I, ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001260
Chris Lattner8d57b772009-04-12 07:51:14 +00001261 // If the add with overflow is an intra-block value then we just want to
1262 // create temporaries for it like normal. If it is a cross-block value then
1263 // UpdateValueMap will return the cross-block register used. Since we
1264 // *really* want the value to be live in the register pair known by
1265 // UpdateValueMap, we have to use DestReg1+1 as the destination register in
1266 // the cross block case. In the non-cross-block case, we should just make
1267 // another register for the value.
1268 if (DestReg1 != ResultReg)
1269 ResultReg = DestReg1+1;
1270 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001271 ResultReg = createResultReg(TLI.getRegClassFor(MVT::i8));
Chris Lattner8d57b772009-04-12 07:51:14 +00001272
Chris Lattnera9a42252009-04-12 07:36:01 +00001273 unsigned Opc = X86::SETBr;
1274 if (I.getIntrinsicID() == Intrinsic::sadd_with_overflow)
1275 Opc = X86::SETOr;
1276 BuildMI(MBB, DL, TII.get(Opc), ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001277 return true;
1278 }
1279 }
1280}
1281
Dan Gohman46510a72010-04-15 01:51:59 +00001282bool X86FastISel::X86SelectCall(const Instruction *I) {
1283 const CallInst *CI = cast<CallInst>(I);
Eric Christopher551754c2010-04-16 23:37:20 +00001284 const Value *Callee = I->getOperand(0);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001285
1286 // Can't handle inline asm yet.
1287 if (isa<InlineAsm>(Callee))
1288 return false;
1289
Bill Wendling52370a12008-12-09 02:42:50 +00001290 // Handle intrinsic calls.
Dan Gohman46510a72010-04-15 01:51:59 +00001291 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI))
Chris Lattnera9a42252009-04-12 07:36:01 +00001292 return X86VisitIntrinsicCall(*II);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001293
Evan Chengf3d4efe2008-09-07 09:09:33 +00001294 // Handle only C and fastcc calling conventions for now.
Dan Gohman46510a72010-04-15 01:51:59 +00001295 ImmutableCallSite CS(CI);
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001296 CallingConv::ID CC = CS.getCallingConv();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001297 if (CC != CallingConv::C &&
1298 CC != CallingConv::Fast &&
1299 CC != CallingConv::X86_FastCall)
1300 return false;
1301
Evan Cheng381993f2010-01-27 00:00:57 +00001302 // fastcc with -tailcallopt is intended to provide a guaranteed
1303 // tail call optimization. Fastisel doesn't know how to do that.
Dan Gohman1797ed52010-02-08 20:27:50 +00001304 if (CC == CallingConv::Fast && GuaranteedTailCallOpt)
Evan Cheng381993f2010-01-27 00:00:57 +00001305 return false;
1306
Evan Chengf3d4efe2008-09-07 09:09:33 +00001307 // Let SDISel handle vararg functions.
1308 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1309 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
1310 if (FTy->isVarArg())
1311 return false;
1312
1313 // Handle *simple* calls for now.
1314 const Type *RetTy = CS.getType();
Owen Andersone50ed302009-08-10 22:56:29 +00001315 EVT RetVT;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001316 if (RetTy->isVoidTy())
Owen Anderson825b72b2009-08-11 20:47:22 +00001317 RetVT = MVT::isVoid;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001318 else if (!isTypeLegal(RetTy, RetVT, true))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001319 return false;
1320
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001321 // Materialize callee address in a register. FIXME: GV address can be
1322 // handled with a CALLpcrel32 instead.
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001323 X86AddressMode CalleeAM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001324 if (!X86SelectCallAddress(Callee, CalleeAM))
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001325 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001326 unsigned CalleeOp = 0;
Dan Gohman46510a72010-04-15 01:51:59 +00001327 const GlobalValue *GV = 0;
Chris Lattner553e5712009-06-27 04:50:14 +00001328 if (CalleeAM.GV != 0) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001329 GV = CalleeAM.GV;
Chris Lattner553e5712009-06-27 04:50:14 +00001330 } else if (CalleeAM.Base.Reg != 0) {
1331 CalleeOp = CalleeAM.Base.Reg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001332 } else
1333 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001334
Evan Chengdebdea02008-09-08 17:15:42 +00001335 // Allow calls which produce i1 results.
1336 bool AndToI1 = false;
Owen Anderson825b72b2009-08-11 20:47:22 +00001337 if (RetVT == MVT::i1) {
1338 RetVT = MVT::i8;
Evan Chengdebdea02008-09-08 17:15:42 +00001339 AndToI1 = true;
1340 }
1341
Evan Chengf3d4efe2008-09-07 09:09:33 +00001342 // Deal with call operands first.
Dan Gohman46510a72010-04-15 01:51:59 +00001343 SmallVector<const Value *, 8> ArgVals;
Chris Lattner241ab472008-10-15 05:38:32 +00001344 SmallVector<unsigned, 8> Args;
Owen Andersone50ed302009-08-10 22:56:29 +00001345 SmallVector<EVT, 8> ArgVTs;
Chris Lattner241ab472008-10-15 05:38:32 +00001346 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001347 Args.reserve(CS.arg_size());
Chris Lattner241ab472008-10-15 05:38:32 +00001348 ArgVals.reserve(CS.arg_size());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001349 ArgVTs.reserve(CS.arg_size());
1350 ArgFlags.reserve(CS.arg_size());
Dan Gohman46510a72010-04-15 01:51:59 +00001351 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001352 i != e; ++i) {
1353 unsigned Arg = getRegForValue(*i);
1354 if (Arg == 0)
1355 return false;
1356 ISD::ArgFlagsTy Flags;
1357 unsigned AttrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00001358 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001359 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00001360 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001361 Flags.setZExt();
1362
1363 // FIXME: Only handle *easy* calls for now.
Devang Patel05988662008-09-25 21:00:45 +00001364 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1365 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1366 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1367 CS.paramHasAttr(AttrInd, Attribute::ByVal))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001368 return false;
1369
1370 const Type *ArgTy = (*i)->getType();
Owen Andersone50ed302009-08-10 22:56:29 +00001371 EVT ArgVT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001372 if (!isTypeLegal(ArgTy, ArgVT))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001373 return false;
1374 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1375 Flags.setOrigAlign(OriginalAlignment);
1376
1377 Args.push_back(Arg);
Chris Lattner241ab472008-10-15 05:38:32 +00001378 ArgVals.push_back(*i);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001379 ArgVTs.push_back(ArgVT);
1380 ArgFlags.push_back(Flags);
1381 }
1382
1383 // Analyze operands of the call, assigning locations to each operand.
1384 SmallVector<CCValAssign, 16> ArgLocs;
Owen Andersond1474d02009-07-09 17:57:24 +00001385 CCState CCInfo(CC, false, TM, ArgLocs, I->getParent()->getContext());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001386 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC));
1387
1388 // Get a count of how many bytes are to be pushed on the stack.
1389 unsigned NumBytes = CCInfo.getNextStackOffset();
1390
1391 // Issue CALLSEQ_START
Dan Gohman6d4b0522008-10-01 18:28:06 +00001392 unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001393 BuildMI(MBB, DL, TII.get(AdjStackDown)).addImm(NumBytes);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001394
Chris Lattner438949a2008-10-15 05:30:52 +00001395 // Process argument: walk the register/memloc assignments, inserting
Evan Chengf3d4efe2008-09-07 09:09:33 +00001396 // copies / loads.
1397 SmallVector<unsigned, 4> RegArgs;
1398 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1399 CCValAssign &VA = ArgLocs[i];
1400 unsigned Arg = Args[VA.getValNo()];
Owen Andersone50ed302009-08-10 22:56:29 +00001401 EVT ArgVT = ArgVTs[VA.getValNo()];
Evan Chengf3d4efe2008-09-07 09:09:33 +00001402
1403 // Promote the value if needed.
1404 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001405 default: llvm_unreachable("Unknown loc info!");
Evan Chengf3d4efe2008-09-07 09:09:33 +00001406 case CCValAssign::Full: break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001407 case CCValAssign::SExt: {
1408 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1409 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001410 assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001411 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001412 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001413 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001414 }
1415 case CCValAssign::ZExt: {
1416 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1417 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001418 assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001419 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001420 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001421 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001422 }
1423 case CCValAssign::AExt: {
1424 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1425 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001426 if (!Emitted)
1427 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
Chris Lattner160f6cc2008-10-15 05:07:36 +00001428 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001429 if (!Emitted)
1430 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1431 Arg, ArgVT, Arg);
1432
Chris Lattnera33649e2008-12-19 17:03:38 +00001433 assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted;
Evan Cheng24e3a902008-09-08 06:35:17 +00001434 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001435 break;
1436 }
Dan Gohmanc3c9c482009-08-05 05:33:42 +00001437 case CCValAssign::BCvt: {
1438 unsigned BC = FastEmit_r(ArgVT.getSimpleVT(), VA.getLocVT().getSimpleVT(),
1439 ISD::BIT_CONVERT, Arg);
1440 assert(BC != 0 && "Failed to emit a bitcast!");
1441 Arg = BC;
1442 ArgVT = VA.getLocVT();
1443 break;
1444 }
Evan Cheng24e3a902008-09-08 06:35:17 +00001445 }
Evan Chengf3d4efe2008-09-07 09:09:33 +00001446
1447 if (VA.isRegLoc()) {
1448 TargetRegisterClass* RC = TLI.getRegClassFor(ArgVT);
1449 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), VA.getLocReg(),
1450 Arg, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001451 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001452 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001453 RegArgs.push_back(VA.getLocReg());
1454 } else {
1455 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman0586d912008-09-10 20:11:02 +00001456 X86AddressMode AM;
1457 AM.Base.Reg = StackPtr;
1458 AM.Disp = LocMemOffset;
Dan Gohman46510a72010-04-15 01:51:59 +00001459 const Value *ArgVal = ArgVals[VA.getValNo()];
Chris Lattner241ab472008-10-15 05:38:32 +00001460
1461 // If this is a really simple value, emit this with the Value* version of
1462 // X86FastEmitStore. If it isn't simple, we don't want to do this, as it
1463 // can cause us to reevaluate the argument.
1464 if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal))
1465 X86FastEmitStore(ArgVT, ArgVal, AM);
1466 else
1467 X86FastEmitStore(ArgVT, Arg, AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001468 }
1469 }
1470
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001471 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1472 // GOT pointer.
Chris Lattner15a380a2009-07-09 04:39:06 +00001473 if (Subtarget->isPICStyleGOT()) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001474 TargetRegisterClass *RC = X86::GR32RegisterClass;
Dan Gohman57c3dac2008-09-30 00:58:23 +00001475 unsigned Base = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001476 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), X86::EBX, Base, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001477 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001478 Emitted = true;
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001479 }
Chris Lattner51e8eab2009-07-09 06:34:26 +00001480
Evan Chengf3d4efe2008-09-07 09:09:33 +00001481 // Issue the call.
Chris Lattner51e8eab2009-07-09 06:34:26 +00001482 MachineInstrBuilder MIB;
1483 if (CalleeOp) {
1484 // Register-indirect call.
1485 unsigned CallOpc = Subtarget->is64Bit() ? X86::CALL64r : X86::CALL32r;
1486 MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addReg(CalleeOp);
1487
1488 } else {
1489 // Direct call.
1490 assert(GV && "Not a direct call");
1491 unsigned CallOpc =
1492 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
1493
1494 // See if we need any target-specific flags on the GV operand.
1495 unsigned char OpFlags = 0;
1496
1497 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
1498 // external symbols most go through the PLT in PIC mode. If the symbol
1499 // has hidden or protected visibility, or if it is static or local, then
1500 // we don't need to use the PLT - we can directly call it.
1501 if (Subtarget->isTargetELF() &&
1502 TM.getRelocationModel() == Reloc::PIC_ &&
1503 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
1504 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00001505 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner51e8eab2009-07-09 06:34:26 +00001506 (GV->isDeclaration() || GV->isWeakForLinker()) &&
1507 Subtarget->getDarwinVers() < 9) {
1508 // PC-relative references to external symbols should go through $stub,
1509 // unless we're building with the leopard linker or later, which
1510 // automatically synthesizes these stubs.
1511 OpFlags = X86II::MO_DARWIN_STUB;
1512 }
1513
1514
1515 MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addGlobalAddress(GV, 0, OpFlags);
1516 }
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001517
1518 // Add an implicit use GOT pointer in EBX.
Chris Lattner15a380a2009-07-09 04:39:06 +00001519 if (Subtarget->isPICStyleGOT())
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001520 MIB.addReg(X86::EBX);
1521
Evan Chengf3d4efe2008-09-07 09:09:33 +00001522 // Add implicit physical register uses to the call.
Dan Gohman8c3f8b62008-10-07 22:10:33 +00001523 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1524 MIB.addReg(RegArgs[i]);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001525
1526 // Issue CALLSEQ_END
Dan Gohman6d4b0522008-10-01 18:28:06 +00001527 unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001528 BuildMI(MBB, DL, TII.get(AdjStackUp)).addImm(NumBytes).addImm(0);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001529
1530 // Now handle call return value (if any).
Owen Anderson825b72b2009-08-11 20:47:22 +00001531 if (RetVT.getSimpleVT().SimpleTy != MVT::isVoid) {
Evan Chengf3d4efe2008-09-07 09:09:33 +00001532 SmallVector<CCValAssign, 16> RVLocs;
Owen Andersond1474d02009-07-09 17:57:24 +00001533 CCState CCInfo(CC, false, TM, RVLocs, I->getParent()->getContext());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001534 CCInfo.AnalyzeCallResult(RetVT, RetCC_X86);
1535
1536 // Copy all of the result registers out of their specified physreg.
1537 assert(RVLocs.size() == 1 && "Can't handle multi-value calls!");
Owen Andersone50ed302009-08-10 22:56:29 +00001538 EVT CopyVT = RVLocs[0].getValVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001539 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
1540 TargetRegisterClass *SrcRC = DstRC;
1541
1542 // If this is a call to a function that returns an fp value on the x87 fp
1543 // stack, but where we prefer to use the value in xmm registers, copy it
1544 // out as F80 and use a truncate to move it from fp stack reg to xmm reg.
1545 if ((RVLocs[0].getLocReg() == X86::ST0 ||
1546 RVLocs[0].getLocReg() == X86::ST1) &&
1547 isScalarFPTypeInSSEReg(RVLocs[0].getValVT())) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001548 CopyVT = MVT::f80;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001549 SrcRC = X86::RSTRegisterClass;
1550 DstRC = X86::RFP80RegisterClass;
1551 }
1552
1553 unsigned ResultReg = createResultReg(DstRC);
1554 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
1555 RVLocs[0].getLocReg(), DstRC, SrcRC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001556 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001557 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001558 if (CopyVT != RVLocs[0].getValVT()) {
1559 // Round the F80 the right size, which also moves to the appropriate xmm
1560 // register. This is accomplished by storing the F80 value in memory and
1561 // then loading it back. Ewww...
Owen Andersone50ed302009-08-10 22:56:29 +00001562 EVT ResVT = RVLocs[0].getValVT();
Owen Anderson825b72b2009-08-11 20:47:22 +00001563 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001564 unsigned MemSize = ResVT.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00001565 int FI = MFI.CreateStackObject(MemSize, MemSize, false);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001566 addFrameReference(BuildMI(MBB, DL, TII.get(Opc)), FI).addReg(ResultReg);
Owen Anderson825b72b2009-08-11 20:47:22 +00001567 DstRC = ResVT == MVT::f32
Evan Chengf3d4efe2008-09-07 09:09:33 +00001568 ? X86::FR32RegisterClass : X86::FR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001569 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001570 ResultReg = createResultReg(DstRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001571 addFrameReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), FI);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001572 }
1573
Evan Chengdebdea02008-09-08 17:15:42 +00001574 if (AndToI1) {
1575 // Mask out all but lowest bit for some call which produces an i1.
1576 unsigned AndResult = createResultReg(X86::GR8RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001577 BuildMI(MBB, DL,
1578 TII.get(X86::AND8ri), AndResult).addReg(ResultReg).addImm(1);
Evan Chengdebdea02008-09-08 17:15:42 +00001579 ResultReg = AndResult;
1580 }
1581
Evan Chengf3d4efe2008-09-07 09:09:33 +00001582 UpdateValueMap(I, ResultReg);
1583 }
1584
1585 return true;
1586}
1587
1588
Dan Gohman99b21822008-08-28 23:21:34 +00001589bool
Dan Gohman46510a72010-04-15 01:51:59 +00001590X86FastISel::TargetSelectInstruction(const Instruction *I) {
Dan Gohman99b21822008-08-28 23:21:34 +00001591 switch (I->getOpcode()) {
1592 default: break;
Evan Cheng8b19e562008-09-03 06:44:39 +00001593 case Instruction::Load:
Dan Gohman3df24e62008-09-03 23:12:08 +00001594 return X86SelectLoad(I);
Owen Anderson79924eb2008-09-04 16:48:33 +00001595 case Instruction::Store:
1596 return X86SelectStore(I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +00001597 case Instruction::ICmp:
1598 case Instruction::FCmp:
1599 return X86SelectCmp(I);
Dan Gohmand89ae992008-09-05 01:06:14 +00001600 case Instruction::ZExt:
1601 return X86SelectZExt(I);
1602 case Instruction::Br:
1603 return X86SelectBranch(I);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001604 case Instruction::Call:
1605 return X86SelectCall(I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001606 case Instruction::LShr:
1607 case Instruction::AShr:
1608 case Instruction::Shl:
1609 return X86SelectShift(I);
1610 case Instruction::Select:
1611 return X86SelectSelect(I);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001612 case Instruction::Trunc:
1613 return X86SelectTrunc(I);
Dan Gohman78efce62008-09-10 21:02:08 +00001614 case Instruction::FPExt:
1615 return X86SelectFPExt(I);
1616 case Instruction::FPTrunc:
1617 return X86SelectFPTrunc(I);
Bill Wendling52370a12008-12-09 02:42:50 +00001618 case Instruction::ExtractValue:
1619 return X86SelectExtractValue(I);
Dan Gohman474d3b32009-03-13 23:53:06 +00001620 case Instruction::IntToPtr: // Deliberate fall-through.
1621 case Instruction::PtrToInt: {
Owen Andersone50ed302009-08-10 22:56:29 +00001622 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1623 EVT DstVT = TLI.getValueType(I->getType());
Dan Gohman474d3b32009-03-13 23:53:06 +00001624 if (DstVT.bitsGT(SrcVT))
1625 return X86SelectZExt(I);
1626 if (DstVT.bitsLT(SrcVT))
1627 return X86SelectTrunc(I);
1628 unsigned Reg = getRegForValue(I->getOperand(0));
1629 if (Reg == 0) return false;
1630 UpdateValueMap(I, Reg);
1631 return true;
1632 }
Dan Gohman99b21822008-08-28 23:21:34 +00001633 }
1634
1635 return false;
1636}
1637
Dan Gohman46510a72010-04-15 01:51:59 +00001638unsigned X86FastISel::TargetMaterializeConstant(const Constant *C) {
Owen Andersone50ed302009-08-10 22:56:29 +00001639 EVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001640 if (!isTypeLegal(C->getType(), VT))
Owen Anderson95267a12008-09-05 00:06:23 +00001641 return false;
1642
1643 // Get opcode and regclass of the output for the given load instruction.
1644 unsigned Opc = 0;
1645 const TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001646 switch (VT.getSimpleVT().SimpleTy) {
Owen Anderson95267a12008-09-05 00:06:23 +00001647 default: return false;
Owen Anderson825b72b2009-08-11 20:47:22 +00001648 case MVT::i8:
Owen Anderson95267a12008-09-05 00:06:23 +00001649 Opc = X86::MOV8rm;
1650 RC = X86::GR8RegisterClass;
1651 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001652 case MVT::i16:
Owen Anderson95267a12008-09-05 00:06:23 +00001653 Opc = X86::MOV16rm;
1654 RC = X86::GR16RegisterClass;
1655 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001656 case MVT::i32:
Owen Anderson95267a12008-09-05 00:06:23 +00001657 Opc = X86::MOV32rm;
1658 RC = X86::GR32RegisterClass;
1659 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001660 case MVT::i64:
Owen Anderson95267a12008-09-05 00:06:23 +00001661 // Must be in x86-64 mode.
1662 Opc = X86::MOV64rm;
1663 RC = X86::GR64RegisterClass;
1664 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001665 case MVT::f32:
Owen Anderson95267a12008-09-05 00:06:23 +00001666 if (Subtarget->hasSSE1()) {
1667 Opc = X86::MOVSSrm;
1668 RC = X86::FR32RegisterClass;
1669 } else {
1670 Opc = X86::LD_Fp32m;
1671 RC = X86::RFP32RegisterClass;
1672 }
1673 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001674 case MVT::f64:
Owen Anderson95267a12008-09-05 00:06:23 +00001675 if (Subtarget->hasSSE2()) {
1676 Opc = X86::MOVSDrm;
1677 RC = X86::FR64RegisterClass;
1678 } else {
1679 Opc = X86::LD_Fp64m;
1680 RC = X86::RFP64RegisterClass;
1681 }
1682 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001683 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +00001684 // No f80 support yet.
1685 return false;
Owen Anderson95267a12008-09-05 00:06:23 +00001686 }
1687
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001688 // Materialize addresses with LEA instructions.
Owen Anderson95267a12008-09-05 00:06:23 +00001689 if (isa<GlobalValue>(C)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001690 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001691 if (X86SelectAddress(C, AM)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001692 if (TLI.getPointerTy() == MVT::i32)
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001693 Opc = X86::LEA32r;
1694 else
1695 Opc = X86::LEA64r;
1696 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001697 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Owen Anderson95267a12008-09-05 00:06:23 +00001698 return ResultReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001699 }
Evan Cheng0de588f2008-09-05 21:00:03 +00001700 return 0;
Owen Anderson95267a12008-09-05 00:06:23 +00001701 }
1702
Owen Anderson3b217c62008-09-06 01:11:01 +00001703 // MachineConstantPool wants an explicit alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +00001704 unsigned Align = TD.getPrefTypeAlignment(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001705 if (Align == 0) {
1706 // Alignment of vector types. FIXME!
Duncan Sands777d2302009-05-09 07:06:46 +00001707 Align = TD.getTypeAllocSize(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001708 }
Owen Anderson95267a12008-09-05 00:06:23 +00001709
Dan Gohman5396c992008-09-30 01:21:32 +00001710 // x86-32 PIC requires a PIC base register for constant pools.
1711 unsigned PICBase = 0;
Chris Lattner89da6992009-06-27 01:31:51 +00001712 unsigned char OpFlag = 0;
Chris Lattnere2c92082009-07-10 21:00:45 +00001713 if (Subtarget->isPICStyleStubPIC()) { // Not dynamic-no-pic
Chris Lattner15a380a2009-07-09 04:39:06 +00001714 OpFlag = X86II::MO_PIC_BASE_OFFSET;
1715 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1716 } else if (Subtarget->isPICStyleGOT()) {
1717 OpFlag = X86II::MO_GOTOFF;
1718 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1719 } else if (Subtarget->isPICStyleRIPRel() &&
1720 TM.getCodeModel() == CodeModel::Small) {
1721 PICBase = X86::RIP;
Chris Lattner89da6992009-06-27 01:31:51 +00001722 }
Dan Gohman5396c992008-09-30 01:21:32 +00001723
1724 // Create the load from the constant pool.
Dan Gohman0586d912008-09-10 20:11:02 +00001725 unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align);
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001726 unsigned ResultReg = createResultReg(RC);
Chris Lattner89da6992009-06-27 01:31:51 +00001727 addConstantPoolReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg),
1728 MCPOffset, PICBase, OpFlag);
Dan Gohman5396c992008-09-30 01:21:32 +00001729
Owen Anderson95267a12008-09-05 00:06:23 +00001730 return ResultReg;
1731}
1732
Dan Gohman46510a72010-04-15 01:51:59 +00001733unsigned X86FastISel::TargetMaterializeAlloca(const AllocaInst *C) {
Dan Gohman4e6ed5e2008-10-03 01:27:49 +00001734 // Fail on dynamic allocas. At this point, getRegForValue has already
1735 // checked its CSE maps, so if we're here trying to handle a dynamic
1736 // alloca, we're not going to succeed. X86SelectAddress has a
1737 // check for dynamic allocas, because it's called directly from
1738 // various places, but TargetMaterializeAlloca also needs a check
1739 // in order to avoid recursion between getRegForValue,
1740 // X86SelectAddrss, and TargetMaterializeAlloca.
1741 if (!StaticAllocaMap.count(C))
1742 return 0;
1743
Dan Gohman0586d912008-09-10 20:11:02 +00001744 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001745 if (!X86SelectAddress(C, AM))
Dan Gohman0586d912008-09-10 20:11:02 +00001746 return 0;
1747 unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
1748 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
1749 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001750 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Dan Gohman0586d912008-09-10 20:11:02 +00001751 return ResultReg;
1752}
1753
Evan Chengc3f44b02008-09-03 00:03:49 +00001754namespace llvm {
Dan Gohman3df24e62008-09-03 23:12:08 +00001755 llvm::FastISel *X86::createFastISel(MachineFunction &mf,
1756 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +00001757 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001758 DenseMap<const AllocaInst *, int> &am
1759#ifndef NDEBUG
Dan Gohman25208642010-04-14 19:53:31 +00001760 , SmallSet<const Instruction *, 8> &cil
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001761#endif
1762 ) {
Chris Lattnered3a8062010-04-05 06:05:26 +00001763 return new X86FastISel(mf, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001764#ifndef NDEBUG
1765 , cil
1766#endif
1767 );
Evan Chengc3f44b02008-09-03 00:03:49 +00001768 }
Dan Gohman99b21822008-08-28 23:21:34 +00001769}