blob: ba6c546341e9d794c0ba06d95da133fca43ecdc0 [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"
Evan Cheng88e30412008-09-03 01:04:47 +000018#include "X86RegisterInfo.h"
19#include "X86Subtarget.h"
Dan Gohman22bb3112008-08-22 00:20:26 +000020#include "X86TargetMachine.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000021#include "llvm/CallingConv.h"
Dan Gohman6e3f05f2008-09-04 23:26:51 +000022#include "llvm/DerivedTypes.h"
Dan Gohmane9865942009-02-23 22:03:08 +000023#include "llvm/GlobalVariable.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000024#include "llvm/Instructions.h"
Chris Lattnera9a42252009-04-12 07:36:01 +000025#include "llvm/IntrinsicInst.h"
Evan Chengc3f44b02008-09-03 00:03:49 +000026#include "llvm/CodeGen/FastISel.h"
Owen Anderson95267a12008-09-05 00:06:23 +000027#include "llvm/CodeGen/MachineConstantPool.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000028#include "llvm/CodeGen/MachineFrameInfo.h"
Owen Anderson667d8f72008-08-29 17:45:56 +000029#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000030#include "llvm/Support/CallSite.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000031#include "llvm/Support/ErrorHandling.h"
Dan Gohman35893082008-09-18 23:23:44 +000032#include "llvm/Support/GetElementPtrTypeIterator.h"
Evan Cheng381993f2010-01-27 00:00:57 +000033#include "llvm/Target/TargetOptions.h"
Evan Chengc3f44b02008-09-03 00:03:49 +000034using namespace llvm;
35
Chris Lattner087fcf32009-03-08 18:44:31 +000036namespace {
37
Evan Chengc3f44b02008-09-03 00:03:49 +000038class X86FastISel : public FastISel {
39 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
40 /// make the right decision when generating code for different targets.
41 const X86Subtarget *Subtarget;
Evan Chengf3d4efe2008-09-07 09:09:33 +000042
43 /// StackPtr - Register used as the stack pointer.
44 ///
45 unsigned StackPtr;
46
47 /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87
48 /// floating point ops.
49 /// When SSE is available, use it for f32 operations.
50 /// When SSE2 is available, use it for f64 operations.
51 bool X86ScalarSSEf64;
52 bool X86ScalarSSEf32;
53
Evan Cheng8b19e562008-09-03 06:44:39 +000054public:
Dan Gohman3df24e62008-09-03 23:12:08 +000055 explicit X86FastISel(MachineFunction &mf,
56 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +000057 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +000058 DenseMap<const AllocaInst *, int> &am
59#ifndef NDEBUG
Dan Gohman25208642010-04-14 19:53:31 +000060 , SmallSet<const Instruction *, 8> &cil
Dan Gohmandd5b58a2008-10-14 23:54:11 +000061#endif
62 )
Chris Lattnered3a8062010-04-05 06:05:26 +000063 : FastISel(mf, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +000064#ifndef NDEBUG
65 , cil
66#endif
67 ) {
Evan Cheng88e30412008-09-03 01:04:47 +000068 Subtarget = &TM.getSubtarget<X86Subtarget>();
Evan Chengf3d4efe2008-09-07 09:09:33 +000069 StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
70 X86ScalarSSEf64 = Subtarget->hasSSE2();
71 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng88e30412008-09-03 01:04:47 +000072 }
Evan Chengc3f44b02008-09-03 00:03:49 +000073
Dan Gohman46510a72010-04-15 01:51:59 +000074 virtual bool TargetSelectInstruction(const Instruction *I);
Evan Chengc3f44b02008-09-03 00:03:49 +000075
Dan Gohman1adf1b02008-08-19 21:45:35 +000076#include "X86GenFastISel.inc"
Evan Cheng8b19e562008-09-03 06:44:39 +000077
78private:
Dan Gohman46510a72010-04-15 01:51:59 +000079 bool X86FastEmitCompare(const Value *LHS, const Value *RHS, EVT VT);
Chris Lattner9a08a612008-10-15 04:26:38 +000080
Owen Andersone50ed302009-08-10 22:56:29 +000081 bool X86FastEmitLoad(EVT VT, const X86AddressMode &AM, unsigned &RR);
Evan Cheng0de588f2008-09-05 21:00:03 +000082
Dan Gohman46510a72010-04-15 01:51:59 +000083 bool X86FastEmitStore(EVT VT, const Value *Val,
Chris Lattner438949a2008-10-15 05:30:52 +000084 const X86AddressMode &AM);
Owen Andersone50ed302009-08-10 22:56:29 +000085 bool X86FastEmitStore(EVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +000086 const X86AddressMode &AM);
Evan Cheng24e3a902008-09-08 06:35:17 +000087
Owen Andersone50ed302009-08-10 22:56:29 +000088 bool X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
Evan Cheng24e3a902008-09-08 06:35:17 +000089 unsigned &ResultReg);
Evan Cheng0de588f2008-09-05 21:00:03 +000090
Dan Gohman46510a72010-04-15 01:51:59 +000091 bool X86SelectAddress(const Value *V, X86AddressMode &AM);
92 bool X86SelectCallAddress(const Value *V, X86AddressMode &AM);
Dan Gohman0586d912008-09-10 20:11:02 +000093
Dan Gohman46510a72010-04-15 01:51:59 +000094 bool X86SelectLoad(const Instruction *I);
Owen Andersona3971df2008-09-04 07:08:58 +000095
Dan Gohman46510a72010-04-15 01:51:59 +000096 bool X86SelectStore(const Instruction *I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +000097
Dan Gohman46510a72010-04-15 01:51:59 +000098 bool X86SelectCmp(const Instruction *I);
Dan Gohmand89ae992008-09-05 01:06:14 +000099
Dan Gohman46510a72010-04-15 01:51:59 +0000100 bool X86SelectZExt(const Instruction *I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000101
Dan Gohman46510a72010-04-15 01:51:59 +0000102 bool X86SelectBranch(const Instruction *I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000103
Dan Gohman46510a72010-04-15 01:51:59 +0000104 bool X86SelectShift(const Instruction *I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000105
Dan Gohman46510a72010-04-15 01:51:59 +0000106 bool X86SelectSelect(const Instruction *I);
Evan Cheng0de588f2008-09-05 21:00:03 +0000107
Dan Gohman46510a72010-04-15 01:51:59 +0000108 bool X86SelectTrunc(const Instruction *I);
Dan Gohmand98d6202008-10-02 22:15:21 +0000109
Dan Gohman46510a72010-04-15 01:51:59 +0000110 bool X86SelectFPExt(const Instruction *I);
111 bool X86SelectFPTrunc(const Instruction *I);
Dan Gohman78efce62008-09-10 21:02:08 +0000112
Dan Gohman46510a72010-04-15 01:51:59 +0000113 bool X86SelectExtractValue(const Instruction *I);
Bill Wendling52370a12008-12-09 02:42:50 +0000114
Dan Gohman46510a72010-04-15 01:51:59 +0000115 bool X86VisitIntrinsicCall(const IntrinsicInst &I);
116 bool X86SelectCall(const Instruction *I);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000117
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000118 CCAssignFn *CCAssignFnForCall(CallingConv::ID CC, bool isTailCall = false);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000119
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000120 const X86InstrInfo *getInstrInfo() const {
Dan Gohman97135e12008-09-26 19:15:30 +0000121 return getTargetMachine()->getInstrInfo();
122 }
123 const X86TargetMachine *getTargetMachine() const {
124 return static_cast<const X86TargetMachine *>(&TM);
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000125 }
126
Dan Gohman46510a72010-04-15 01:51:59 +0000127 unsigned TargetMaterializeConstant(const Constant *C);
Dan Gohman0586d912008-09-10 20:11:02 +0000128
Dan Gohman46510a72010-04-15 01:51:59 +0000129 unsigned TargetMaterializeAlloca(const AllocaInst *C);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000130
131 /// isScalarFPTypeInSSEReg - Return true if the specified scalar FP type is
132 /// computed in an SSE register, not on the X87 floating point stack.
Owen Andersone50ed302009-08-10 22:56:29 +0000133 bool isScalarFPTypeInSSEReg(EVT VT) const {
Owen Anderson825b72b2009-08-11 20:47:22 +0000134 return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2
135 (VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1
Evan Chengf3d4efe2008-09-07 09:09:33 +0000136 }
137
Owen Andersone50ed302009-08-10 22:56:29 +0000138 bool isTypeLegal(const Type *Ty, EVT &VT, bool AllowI1 = false);
Evan Chengc3f44b02008-09-03 00:03:49 +0000139};
Chris Lattner087fcf32009-03-08 18:44:31 +0000140
141} // end anonymous namespace.
Dan Gohman99b21822008-08-28 23:21:34 +0000142
Owen Andersone50ed302009-08-10 22:56:29 +0000143bool X86FastISel::isTypeLegal(const Type *Ty, EVT &VT, bool AllowI1) {
Chris Lattner160f6cc2008-10-15 05:07:36 +0000144 VT = TLI.getValueType(Ty, /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +0000145 if (VT == MVT::Other || !VT.isSimple())
Evan Chengf3d4efe2008-09-07 09:09:33 +0000146 // Unhandled type. Halt "fast" selection and bail.
147 return false;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000148
Dan Gohman9b66d732008-09-30 00:48:39 +0000149 // For now, require SSE/SSE2 for performing floating-point operations,
150 // since x87 requires additional work.
Owen Anderson825b72b2009-08-11 20:47:22 +0000151 if (VT == MVT::f64 && !X86ScalarSSEf64)
Dan Gohman9b66d732008-09-30 00:48:39 +0000152 return false;
Owen Anderson825b72b2009-08-11 20:47:22 +0000153 if (VT == MVT::f32 && !X86ScalarSSEf32)
Dan Gohman9b66d732008-09-30 00:48:39 +0000154 return false;
155 // Similarly, no f80 support yet.
Owen Anderson825b72b2009-08-11 20:47:22 +0000156 if (VT == MVT::f80)
Dan Gohman9b66d732008-09-30 00:48:39 +0000157 return false;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000158 // We only handle legal types. For example, on x86-32 the instruction
159 // selector contains all of the 64-bit instructions from x86-64,
160 // under the assumption that i64 won't be used if the target doesn't
161 // support it.
Owen Anderson825b72b2009-08-11 20:47:22 +0000162 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000163}
164
165#include "X86GenCallingConv.inc"
166
167/// CCAssignFnForCall - Selects the correct CCAssignFn for a given calling
168/// convention.
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000169CCAssignFn *X86FastISel::CCAssignFnForCall(CallingConv::ID CC,
170 bool isTaillCall) {
Evan Chengf3d4efe2008-09-07 09:09:33 +0000171 if (Subtarget->is64Bit()) {
Chris Lattner29689432010-03-11 00:22:57 +0000172 if (CC == CallingConv::GHC)
173 return CC_X86_64_GHC;
174 else if (Subtarget->isTargetWin64())
Evan Chengf3d4efe2008-09-07 09:09:33 +0000175 return CC_X86_Win64_C;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000176 else
177 return CC_X86_64_C;
178 }
179
180 if (CC == CallingConv::X86_FastCall)
181 return CC_X86_32_FastCall;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000182 else if (CC == CallingConv::Fast)
183 return CC_X86_32_FastCC;
Chris Lattner29689432010-03-11 00:22:57 +0000184 else if (CC == CallingConv::GHC)
185 return CC_X86_32_GHC;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000186 else
187 return CC_X86_32_C;
188}
189
Evan Cheng0de588f2008-09-05 21:00:03 +0000190/// X86FastEmitLoad - Emit a machine instruction to load a value of type VT.
Evan Chengf3d4efe2008-09-07 09:09:33 +0000191/// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
Evan Cheng0de588f2008-09-05 21:00:03 +0000192/// Return true and the result register by reference if it is possible.
Owen Andersone50ed302009-08-10 22:56:29 +0000193bool X86FastISel::X86FastEmitLoad(EVT VT, const X86AddressMode &AM,
Evan Cheng0de588f2008-09-05 21:00:03 +0000194 unsigned &ResultReg) {
195 // Get opcode and regclass of the output for the given load instruction.
196 unsigned Opc = 0;
197 const TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +0000198 switch (VT.getSimpleVT().SimpleTy) {
Evan Cheng0de588f2008-09-05 21:00:03 +0000199 default: return false;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000200 case MVT::i1:
Owen Anderson825b72b2009-08-11 20:47:22 +0000201 case MVT::i8:
Evan Cheng0de588f2008-09-05 21:00:03 +0000202 Opc = X86::MOV8rm;
203 RC = X86::GR8RegisterClass;
204 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000205 case MVT::i16:
Evan Cheng0de588f2008-09-05 21:00:03 +0000206 Opc = X86::MOV16rm;
207 RC = X86::GR16RegisterClass;
208 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000209 case MVT::i32:
Evan Cheng0de588f2008-09-05 21:00:03 +0000210 Opc = X86::MOV32rm;
211 RC = X86::GR32RegisterClass;
212 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000213 case MVT::i64:
Evan Cheng0de588f2008-09-05 21:00:03 +0000214 // Must be in x86-64 mode.
215 Opc = X86::MOV64rm;
216 RC = X86::GR64RegisterClass;
217 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000218 case MVT::f32:
Evan Cheng0de588f2008-09-05 21:00:03 +0000219 if (Subtarget->hasSSE1()) {
220 Opc = X86::MOVSSrm;
221 RC = X86::FR32RegisterClass;
222 } else {
223 Opc = X86::LD_Fp32m;
224 RC = X86::RFP32RegisterClass;
225 }
226 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000227 case MVT::f64:
Evan Cheng0de588f2008-09-05 21:00:03 +0000228 if (Subtarget->hasSSE2()) {
229 Opc = X86::MOVSDrm;
230 RC = X86::FR64RegisterClass;
231 } else {
232 Opc = X86::LD_Fp64m;
233 RC = X86::RFP64RegisterClass;
234 }
235 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000236 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +0000237 // No f80 support yet.
238 return false;
Evan Cheng0de588f2008-09-05 21:00:03 +0000239 }
240
241 ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000242 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Evan Cheng0de588f2008-09-05 21:00:03 +0000243 return true;
244}
245
Evan Chengf3d4efe2008-09-07 09:09:33 +0000246/// X86FastEmitStore - Emit a machine instruction to store a value Val of
247/// type VT. The address is either pre-computed, consisted of a base ptr, Ptr
248/// and a displacement offset, or a GlobalAddress,
Evan Cheng0de588f2008-09-05 21:00:03 +0000249/// i.e. V. Return true if it is possible.
250bool
Owen Andersone50ed302009-08-10 22:56:29 +0000251X86FastISel::X86FastEmitStore(EVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +0000252 const X86AddressMode &AM) {
Dan Gohman863890e2008-09-08 16:31:35 +0000253 // Get opcode and regclass of the output for the given store instruction.
Evan Cheng0de588f2008-09-05 21:00:03 +0000254 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +0000255 switch (VT.getSimpleVT().SimpleTy) {
256 case MVT::f80: // No f80 support yet.
Evan Cheng0de588f2008-09-05 21:00:03 +0000257 default: return false;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000258 case MVT::i1: {
259 // Mask out all but lowest bit.
260 unsigned AndResult = createResultReg(X86::GR8RegisterClass);
261 BuildMI(MBB, DL,
262 TII.get(X86::AND8ri), AndResult).addReg(Val).addImm(1);
263 Val = AndResult;
264 }
265 // FALLTHROUGH, handling i1 as i8.
Owen Anderson825b72b2009-08-11 20:47:22 +0000266 case MVT::i8: Opc = X86::MOV8mr; break;
267 case MVT::i16: Opc = X86::MOV16mr; break;
268 case MVT::i32: Opc = X86::MOV32mr; break;
269 case MVT::i64: Opc = X86::MOV64mr; break; // Must be in x86-64 mode.
270 case MVT::f32:
Chris Lattner438949a2008-10-15 05:30:52 +0000271 Opc = Subtarget->hasSSE1() ? X86::MOVSSmr : X86::ST_Fp32m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000272 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000273 case MVT::f64:
Chris Lattner438949a2008-10-15 05:30:52 +0000274 Opc = Subtarget->hasSSE2() ? X86::MOVSDmr : X86::ST_Fp64m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000275 break;
Evan Cheng0de588f2008-09-05 21:00:03 +0000276 }
Chris Lattner438949a2008-10-15 05:30:52 +0000277
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000278 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM).addReg(Val);
Evan Cheng0de588f2008-09-05 21:00:03 +0000279 return true;
280}
281
Dan Gohman46510a72010-04-15 01:51:59 +0000282bool X86FastISel::X86FastEmitStore(EVT VT, const Value *Val,
Chris Lattner438949a2008-10-15 05:30:52 +0000283 const X86AddressMode &AM) {
284 // Handle 'null' like i32/i64 0.
285 if (isa<ConstantPointerNull>(Val))
Owen Anderson1d0be152009-08-13 21:58:54 +0000286 Val = Constant::getNullValue(TD.getIntPtrType(Val->getContext()));
Chris Lattner438949a2008-10-15 05:30:52 +0000287
288 // If this is a store of a simple constant, fold the constant into the store.
Dan Gohman46510a72010-04-15 01:51:59 +0000289 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
Chris Lattner438949a2008-10-15 05:30:52 +0000290 unsigned Opc = 0;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000291 bool Signed = true;
Owen Anderson825b72b2009-08-11 20:47:22 +0000292 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner438949a2008-10-15 05:30:52 +0000293 default: break;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000294 case MVT::i1: Signed = false; // FALLTHROUGH to handle as i8.
Owen Anderson825b72b2009-08-11 20:47:22 +0000295 case MVT::i8: Opc = X86::MOV8mi; break;
296 case MVT::i16: Opc = X86::MOV16mi; break;
297 case MVT::i32: Opc = X86::MOV32mi; break;
298 case MVT::i64:
Chris Lattner438949a2008-10-15 05:30:52 +0000299 // Must be a 32-bit sign extended value.
300 if ((int)CI->getSExtValue() == CI->getSExtValue())
301 Opc = X86::MOV64mi32;
302 break;
303 }
304
305 if (Opc) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000306 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM)
John McCall795ee9d2010-04-06 23:35:53 +0000307 .addImm(Signed ? (uint64_t) CI->getSExtValue() :
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000308 CI->getZExtValue());
Chris Lattner438949a2008-10-15 05:30:52 +0000309 return true;
310 }
311 }
312
313 unsigned ValReg = getRegForValue(Val);
314 if (ValReg == 0)
Chris Lattner438949a2008-10-15 05:30:52 +0000315 return false;
316
317 return X86FastEmitStore(VT, ValReg, AM);
318}
319
Evan Cheng24e3a902008-09-08 06:35:17 +0000320/// X86FastEmitExtend - Emit a machine instruction to extend a value Src of
321/// type SrcVT to type DstVT using the specified extension opcode Opc (e.g.
322/// ISD::SIGN_EXTEND).
Owen Andersone50ed302009-08-10 22:56:29 +0000323bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT,
324 unsigned Src, EVT SrcVT,
Evan Cheng24e3a902008-09-08 06:35:17 +0000325 unsigned &ResultReg) {
Owen Andersonac34a002008-09-11 19:44:55 +0000326 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, Src);
327
328 if (RR != 0) {
329 ResultReg = RR;
330 return true;
331 } else
332 return false;
Evan Cheng24e3a902008-09-08 06:35:17 +0000333}
334
Dan Gohman0586d912008-09-10 20:11:02 +0000335/// X86SelectAddress - Attempt to fill in an address from the given value.
336///
Dan Gohman46510a72010-04-15 01:51:59 +0000337bool X86FastISel::X86SelectAddress(const Value *V, X86AddressMode &AM) {
338 const User *U = NULL;
Dan Gohman35893082008-09-18 23:23:44 +0000339 unsigned Opcode = Instruction::UserOp1;
Dan Gohman46510a72010-04-15 01:51:59 +0000340 if (const Instruction *I = dyn_cast<Instruction>(V)) {
Dan Gohman35893082008-09-18 23:23:44 +0000341 Opcode = I->getOpcode();
342 U = I;
Dan Gohman46510a72010-04-15 01:51:59 +0000343 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
Dan Gohman35893082008-09-18 23:23:44 +0000344 Opcode = C->getOpcode();
345 U = C;
346 }
Dan Gohman0586d912008-09-10 20:11:02 +0000347
Dan Gohman35893082008-09-18 23:23:44 +0000348 switch (Opcode) {
349 default: break;
350 case Instruction::BitCast:
351 // Look past bitcasts.
Chris Lattner0aa43de2009-07-10 05:33:42 +0000352 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman35893082008-09-18 23:23:44 +0000353
354 case Instruction::IntToPtr:
355 // Look past no-op inttoptrs.
356 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Chris Lattner0aa43de2009-07-10 05:33:42 +0000357 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000358 break;
Dan Gohman35893082008-09-18 23:23:44 +0000359
360 case Instruction::PtrToInt:
361 // Look past no-op ptrtoints.
362 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Chris Lattner0aa43de2009-07-10 05:33:42 +0000363 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000364 break;
Dan Gohman35893082008-09-18 23:23:44 +0000365
366 case Instruction::Alloca: {
367 // Do static allocas.
368 const AllocaInst *A = cast<AllocaInst>(V);
Dan Gohman0586d912008-09-10 20:11:02 +0000369 DenseMap<const AllocaInst*, int>::iterator SI = StaticAllocaMap.find(A);
Dan Gohman97135e12008-09-26 19:15:30 +0000370 if (SI != StaticAllocaMap.end()) {
371 AM.BaseType = X86AddressMode::FrameIndexBase;
372 AM.Base.FrameIndex = SI->second;
373 return true;
374 }
375 break;
Dan Gohman35893082008-09-18 23:23:44 +0000376 }
377
378 case Instruction::Add: {
379 // Adds of constants are common and easy enough.
Dan Gohman46510a72010-04-15 01:51:59 +0000380 if (const ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman09aae462008-09-26 20:04:15 +0000381 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
382 // They have to fit in the 32-bit signed displacement field though.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000383 if (isInt<32>(Disp)) {
Dan Gohman09aae462008-09-26 20:04:15 +0000384 AM.Disp = (uint32_t)Disp;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000385 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman09aae462008-09-26 20:04:15 +0000386 }
Dan Gohman0586d912008-09-10 20:11:02 +0000387 }
Dan Gohman35893082008-09-18 23:23:44 +0000388 break;
389 }
390
391 case Instruction::GetElementPtr: {
Chris Lattnerbfcc8e02010-03-04 19:54:45 +0000392 X86AddressMode SavedAM = AM;
393
Dan Gohman35893082008-09-18 23:23:44 +0000394 // Pattern-match simple GEPs.
Dan Gohman09aae462008-09-26 20:04:15 +0000395 uint64_t Disp = (int32_t)AM.Disp;
Dan Gohman35893082008-09-18 23:23:44 +0000396 unsigned IndexReg = AM.IndexReg;
397 unsigned Scale = AM.Scale;
398 gep_type_iterator GTI = gep_type_begin(U);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000399 // Iterate through the indices, folding what we can. Constants can be
400 // folded, and one dynamic index can be handled, if the scale is supported.
Dan Gohman46510a72010-04-15 01:51:59 +0000401 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
Dan Gohman35893082008-09-18 23:23:44 +0000402 i != e; ++i, ++GTI) {
Dan Gohman46510a72010-04-15 01:51:59 +0000403 const Value *Op = *i;
Dan Gohman35893082008-09-18 23:23:44 +0000404 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
405 const StructLayout *SL = TD.getStructLayout(STy);
406 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
407 Disp += SL->getElementOffset(Idx);
408 } else {
Duncan Sands777d2302009-05-09 07:06:46 +0000409 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
Dan Gohman46510a72010-04-15 01:51:59 +0000410 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
Dan Gohman35893082008-09-18 23:23:44 +0000411 // Constant-offset addressing.
Dan Gohman09aae462008-09-26 20:04:15 +0000412 Disp += CI->getSExtValue() * S;
Dan Gohman35893082008-09-18 23:23:44 +0000413 } else if (IndexReg == 0 &&
Chris Lattner4c1b6062009-06-27 05:24:12 +0000414 (!AM.GV || !Subtarget->isPICStyleRIPRel()) &&
Dan Gohman35893082008-09-18 23:23:44 +0000415 (S == 1 || S == 2 || S == 4 || S == 8)) {
416 // Scaled-index addressing.
417 Scale = S;
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000418 IndexReg = getRegForGEPIndex(Op);
Dan Gohman35893082008-09-18 23:23:44 +0000419 if (IndexReg == 0)
420 return false;
421 } else
422 // Unsupported.
423 goto unsupported_gep;
424 }
425 }
Dan Gohman09aae462008-09-26 20:04:15 +0000426 // Check for displacement overflow.
Benjamin Kramer34247a02010-03-29 21:13:41 +0000427 if (!isInt<32>(Disp))
Dan Gohman09aae462008-09-26 20:04:15 +0000428 break;
Dan Gohman35893082008-09-18 23:23:44 +0000429 // Ok, the GEP indices were covered by constant-offset and scaled-index
430 // addressing. Update the address state and move on to examining the base.
431 AM.IndexReg = IndexReg;
432 AM.Scale = Scale;
Dan Gohman09aae462008-09-26 20:04:15 +0000433 AM.Disp = (uint32_t)Disp;
Chris Lattner225d4ca2010-03-04 19:48:19 +0000434 if (X86SelectAddress(U->getOperand(0), AM))
435 return true;
436
437 // If we couldn't merge the sub value into this addr mode, revert back to
438 // our address and just match the value instead of completely failing.
439 AM = SavedAM;
440 break;
Dan Gohman35893082008-09-18 23:23:44 +0000441 unsupported_gep:
442 // Ok, the GEP indices weren't all covered.
443 break;
444 }
445 }
446
447 // Handle constant address.
Dan Gohman46510a72010-04-15 01:51:59 +0000448 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000449 // Can't handle alternate code models yet.
Chris Lattnerf1d6bd52009-07-10 21:03:06 +0000450 if (TM.getCodeModel() != CodeModel::Small)
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000451 return false;
452
Dan Gohman97135e12008-09-26 19:15:30 +0000453 // RIP-relative addresses can't have additional register operands.
Chris Lattner4c1b6062009-06-27 05:24:12 +0000454 if (Subtarget->isPICStyleRIPRel() &&
Dan Gohman97135e12008-09-26 19:15:30 +0000455 (AM.Base.Reg != 0 || AM.IndexReg != 0))
456 return false;
457
Dan Gohmane9865942009-02-23 22:03:08 +0000458 // Can't handle TLS yet.
Dan Gohman46510a72010-04-15 01:51:59 +0000459 if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
Dan Gohmane9865942009-02-23 22:03:08 +0000460 if (GVar->isThreadLocal())
461 return false;
462
Chris Lattnerff7727f2009-07-09 06:41:35 +0000463 // Okay, we've committed to selecting this global. Set up the basic address.
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000464 AM.GV = GV;
Chris Lattner18c59872009-06-27 04:16:01 +0000465
Chris Lattner0d786dd2009-07-10 07:48:51 +0000466 // Allow the subtarget to classify the global.
467 unsigned char GVFlags = Subtarget->ClassifyGlobalReference(GV, TM);
468
469 // If this reference is relative to the pic base, set it now.
470 if (isGlobalRelativeToPICBase(GVFlags)) {
Chris Lattner75cdf272009-07-09 06:59:17 +0000471 // FIXME: How do we know Base.Reg is free??
Dan Gohman57c3dac2008-09-30 00:58:23 +0000472 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(&MF);
Chris Lattner75cdf272009-07-09 06:59:17 +0000473 }
Chris Lattner0d786dd2009-07-10 07:48:51 +0000474
475 // Unless the ABI requires an extra load, return a direct reference to
Chris Lattnerff7727f2009-07-09 06:41:35 +0000476 // the global.
Chris Lattner0d786dd2009-07-10 07:48:51 +0000477 if (!isGlobalStubReference(GVFlags)) {
Chris Lattnerff7727f2009-07-09 06:41:35 +0000478 if (Subtarget->isPICStyleRIPRel()) {
479 // Use rip-relative addressing if we can. Above we verified that the
480 // base and index registers are unused.
481 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
482 AM.Base.Reg = X86::RIP;
Dan Gohman7e8ef602008-09-19 23:42:04 +0000483 }
Chris Lattner0d786dd2009-07-10 07:48:51 +0000484 AM.GVOpFlags = GVFlags;
Chris Lattnerff7727f2009-07-09 06:41:35 +0000485 return true;
486 }
487
Chris Lattner0d786dd2009-07-10 07:48:51 +0000488 // Ok, we need to do a load from a stub. If we've already loaded from this
489 // stub, reuse the loaded pointer, otherwise emit the load now.
Chris Lattnerff7727f2009-07-09 06:41:35 +0000490 DenseMap<const Value*, unsigned>::iterator I = LocalValueMap.find(V);
491 unsigned LoadReg;
492 if (I != LocalValueMap.end() && I->second != 0) {
493 LoadReg = I->second;
494 } else {
Chris Lattner35c28ec2009-07-01 03:27:19 +0000495 // Issue load from stub.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000496 unsigned Opc = 0;
497 const TargetRegisterClass *RC = NULL;
Dan Gohman789ce772008-09-25 23:34:02 +0000498 X86AddressMode StubAM;
499 StubAM.Base.Reg = AM.Base.Reg;
Chris Lattner75cdf272009-07-09 06:59:17 +0000500 StubAM.GV = GV;
Chris Lattner0d786dd2009-07-10 07:48:51 +0000501 StubAM.GVOpFlags = GVFlags;
502
Owen Anderson825b72b2009-08-11 20:47:22 +0000503 if (TLI.getPointerTy() == MVT::i64) {
Chris Lattner75cdf272009-07-09 06:59:17 +0000504 Opc = X86::MOV64rm;
505 RC = X86::GR64RegisterClass;
506
Chris Lattner0d786dd2009-07-10 07:48:51 +0000507 if (Subtarget->isPICStyleRIPRel())
Chris Lattner75cdf272009-07-09 06:59:17 +0000508 StubAM.Base.Reg = X86::RIP;
Chris Lattner75cdf272009-07-09 06:59:17 +0000509 } else {
Chris Lattner35c28ec2009-07-01 03:27:19 +0000510 Opc = X86::MOV32rm;
511 RC = X86::GR32RegisterClass;
Chris Lattner35c28ec2009-07-01 03:27:19 +0000512 }
Chris Lattnerff7727f2009-07-09 06:41:35 +0000513
514 LoadReg = createResultReg(RC);
515 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), LoadReg), StubAM);
516
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000517 // Prevent loading GV stub multiple times in same MBB.
Chris Lattnerff7727f2009-07-09 06:41:35 +0000518 LocalValueMap[V] = LoadReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000519 }
Chris Lattner18c59872009-06-27 04:16:01 +0000520
Chris Lattnerff7727f2009-07-09 06:41:35 +0000521 // Now construct the final address. Note that the Disp, Scale,
522 // and Index values may already be set here.
523 AM.Base.Reg = LoadReg;
524 AM.GV = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000525 return true;
Dan Gohman0586d912008-09-10 20:11:02 +0000526 }
527
Dan Gohman97135e12008-09-26 19:15:30 +0000528 // If all else fails, try to materialize the value in a register.
Chris Lattner4c1b6062009-06-27 05:24:12 +0000529 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
Dan Gohman97135e12008-09-26 19:15:30 +0000530 if (AM.Base.Reg == 0) {
531 AM.Base.Reg = getRegForValue(V);
532 return AM.Base.Reg != 0;
533 }
534 if (AM.IndexReg == 0) {
535 assert(AM.Scale == 1 && "Scale with no index!");
536 AM.IndexReg = getRegForValue(V);
537 return AM.IndexReg != 0;
538 }
539 }
540
541 return false;
Dan Gohman0586d912008-09-10 20:11:02 +0000542}
543
Chris Lattner0aa43de2009-07-10 05:33:42 +0000544/// X86SelectCallAddress - Attempt to fill in an address from the given value.
545///
Dan Gohman46510a72010-04-15 01:51:59 +0000546bool X86FastISel::X86SelectCallAddress(const Value *V, X86AddressMode &AM) {
547 const User *U = NULL;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000548 unsigned Opcode = Instruction::UserOp1;
Dan Gohman46510a72010-04-15 01:51:59 +0000549 if (const Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattner0aa43de2009-07-10 05:33:42 +0000550 Opcode = I->getOpcode();
551 U = I;
Dan Gohman46510a72010-04-15 01:51:59 +0000552 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
Chris Lattner0aa43de2009-07-10 05:33:42 +0000553 Opcode = C->getOpcode();
554 U = C;
555 }
556
557 switch (Opcode) {
558 default: break;
559 case Instruction::BitCast:
560 // Look past bitcasts.
561 return X86SelectCallAddress(U->getOperand(0), AM);
562
563 case Instruction::IntToPtr:
564 // Look past no-op inttoptrs.
565 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
566 return X86SelectCallAddress(U->getOperand(0), AM);
567 break;
568
569 case Instruction::PtrToInt:
570 // Look past no-op ptrtoints.
571 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
572 return X86SelectCallAddress(U->getOperand(0), AM);
573 break;
574 }
575
576 // Handle constant address.
Dan Gohman46510a72010-04-15 01:51:59 +0000577 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Chris Lattner0aa43de2009-07-10 05:33:42 +0000578 // Can't handle alternate code models yet.
Chris Lattnerf1d6bd52009-07-10 21:03:06 +0000579 if (TM.getCodeModel() != CodeModel::Small)
Chris Lattner0aa43de2009-07-10 05:33:42 +0000580 return false;
581
582 // RIP-relative addresses can't have additional register operands.
583 if (Subtarget->isPICStyleRIPRel() &&
584 (AM.Base.Reg != 0 || AM.IndexReg != 0))
585 return false;
586
Chris Lattner754b7652009-07-10 05:48:03 +0000587 // Can't handle TLS or DLLImport.
Dan Gohman46510a72010-04-15 01:51:59 +0000588 if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
Chris Lattnere6c07b52009-07-10 05:45:15 +0000589 if (GVar->isThreadLocal() || GVar->hasDLLImportLinkage())
Chris Lattner0aa43de2009-07-10 05:33:42 +0000590 return false;
591
592 // Okay, we've committed to selecting this global. Set up the basic address.
593 AM.GV = GV;
594
Chris Lattnere6c07b52009-07-10 05:45:15 +0000595 // No ABI requires an extra load for anything other than DLLImport, which
596 // we rejected above. Return a direct reference to the global.
Chris Lattnere6c07b52009-07-10 05:45:15 +0000597 if (Subtarget->isPICStyleRIPRel()) {
598 // Use rip-relative addressing if we can. Above we verified that the
599 // base and index registers are unused.
600 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
601 AM.Base.Reg = X86::RIP;
Chris Lattnere2c92082009-07-10 21:00:45 +0000602 } else if (Subtarget->isPICStyleStubPIC()) {
Chris Lattnere6c07b52009-07-10 05:45:15 +0000603 AM.GVOpFlags = X86II::MO_PIC_BASE_OFFSET;
604 } else if (Subtarget->isPICStyleGOT()) {
605 AM.GVOpFlags = X86II::MO_GOTOFF;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000606 }
607
Chris Lattner0aa43de2009-07-10 05:33:42 +0000608 return true;
609 }
610
611 // If all else fails, try to materialize the value in a register.
612 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
613 if (AM.Base.Reg == 0) {
614 AM.Base.Reg = getRegForValue(V);
615 return AM.Base.Reg != 0;
616 }
617 if (AM.IndexReg == 0) {
618 assert(AM.Scale == 1 && "Scale with no index!");
619 AM.IndexReg = getRegForValue(V);
620 return AM.IndexReg != 0;
621 }
622 }
623
624 return false;
625}
626
627
Owen Andersona3971df2008-09-04 07:08:58 +0000628/// X86SelectStore - Select and emit code to implement store instructions.
Dan Gohman46510a72010-04-15 01:51:59 +0000629bool X86FastISel::X86SelectStore(const Instruction *I) {
Owen Andersone50ed302009-08-10 22:56:29 +0000630 EVT VT;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000631 if (!isTypeLegal(I->getOperand(0)->getType(), VT, /*AllowI1=*/true))
Owen Andersona3971df2008-09-04 07:08:58 +0000632 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000633
Dan Gohman0586d912008-09-10 20:11:02 +0000634 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000635 if (!X86SelectAddress(I->getOperand(1), AM))
Dan Gohman0586d912008-09-10 20:11:02 +0000636 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000637
Chris Lattner438949a2008-10-15 05:30:52 +0000638 return X86FastEmitStore(VT, I->getOperand(0), AM);
Owen Andersona3971df2008-09-04 07:08:58 +0000639}
640
Evan Cheng8b19e562008-09-03 06:44:39 +0000641/// X86SelectLoad - Select and emit code to implement load instructions.
642///
Dan Gohman46510a72010-04-15 01:51:59 +0000643bool X86FastISel::X86SelectLoad(const Instruction *I) {
Owen Andersone50ed302009-08-10 22:56:29 +0000644 EVT VT;
Dan Gohman7e7f06e2009-08-27 00:31:47 +0000645 if (!isTypeLegal(I->getType(), VT, /*AllowI1=*/true))
Evan Cheng8b19e562008-09-03 06:44:39 +0000646 return false;
647
Dan Gohman0586d912008-09-10 20:11:02 +0000648 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000649 if (!X86SelectAddress(I->getOperand(0), AM))
Dan Gohman0586d912008-09-10 20:11:02 +0000650 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000651
Evan Cheng0de588f2008-09-05 21:00:03 +0000652 unsigned ResultReg = 0;
Dan Gohman0586d912008-09-10 20:11:02 +0000653 if (X86FastEmitLoad(VT, AM, ResultReg)) {
Evan Cheng0de588f2008-09-05 21:00:03 +0000654 UpdateValueMap(I, ResultReg);
655 return true;
Evan Cheng8b19e562008-09-03 06:44:39 +0000656 }
Evan Cheng0de588f2008-09-05 21:00:03 +0000657 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000658}
659
Owen Andersone50ed302009-08-10 22:56:29 +0000660static unsigned X86ChooseCmpOpcode(EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000661 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000662 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +0000663 case MVT::i8: return X86::CMP8rr;
664 case MVT::i16: return X86::CMP16rr;
665 case MVT::i32: return X86::CMP32rr;
666 case MVT::i64: return X86::CMP64rr;
667 case MVT::f32: return X86::UCOMISSrr;
668 case MVT::f64: return X86::UCOMISDrr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000669 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000670}
671
Chris Lattner0e13c782008-10-15 04:13:29 +0000672/// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS
673/// of the comparison, return an opcode that works for the compare (e.g.
674/// CMP32ri) otherwise return 0.
Dan Gohman46510a72010-04-15 01:51:59 +0000675static unsigned X86ChooseCmpImmediateOpcode(EVT VT, const ConstantInt *RHSC) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000676 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0e13c782008-10-15 04:13:29 +0000677 // Otherwise, we can't fold the immediate into this comparison.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000678 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +0000679 case MVT::i8: return X86::CMP8ri;
680 case MVT::i16: return X86::CMP16ri;
681 case MVT::i32: return X86::CMP32ri;
682 case MVT::i64:
Chris Lattner45ac17f2008-10-15 04:32:45 +0000683 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
684 // field.
Chris Lattner438949a2008-10-15 05:30:52 +0000685 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
Chris Lattner45ac17f2008-10-15 04:32:45 +0000686 return X86::CMP64ri32;
687 return 0;
688 }
Chris Lattner0e13c782008-10-15 04:13:29 +0000689}
690
Dan Gohman46510a72010-04-15 01:51:59 +0000691bool X86FastISel::X86FastEmitCompare(const Value *Op0, const Value *Op1,
692 EVT VT) {
Chris Lattner9a08a612008-10-15 04:26:38 +0000693 unsigned Op0Reg = getRegForValue(Op0);
694 if (Op0Reg == 0) return false;
695
Chris Lattnerd53886b2008-10-15 05:18:04 +0000696 // Handle 'null' like i32/i64 0.
697 if (isa<ConstantPointerNull>(Op1))
Owen Anderson1d0be152009-08-13 21:58:54 +0000698 Op1 = Constant::getNullValue(TD.getIntPtrType(Op0->getContext()));
Chris Lattnerd53886b2008-10-15 05:18:04 +0000699
Chris Lattner9a08a612008-10-15 04:26:38 +0000700 // We have two options: compare with register or immediate. If the RHS of
701 // the compare is an immediate that we can fold into this compare, use
702 // CMPri, otherwise use CMPrr.
Dan Gohman46510a72010-04-15 01:51:59 +0000703 if (const ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000704 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000705 BuildMI(MBB, DL, TII.get(CompareImmOpc)).addReg(Op0Reg)
Chris Lattner9a08a612008-10-15 04:26:38 +0000706 .addImm(Op1C->getSExtValue());
707 return true;
708 }
709 }
710
711 unsigned CompareOpc = X86ChooseCmpOpcode(VT);
712 if (CompareOpc == 0) return false;
713
714 unsigned Op1Reg = getRegForValue(Op1);
715 if (Op1Reg == 0) return false;
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000716 BuildMI(MBB, DL, TII.get(CompareOpc)).addReg(Op0Reg).addReg(Op1Reg);
Chris Lattner9a08a612008-10-15 04:26:38 +0000717
718 return true;
719}
720
Dan Gohman46510a72010-04-15 01:51:59 +0000721bool X86FastISel::X86SelectCmp(const Instruction *I) {
722 const CmpInst *CI = cast<CmpInst>(I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000723
Owen Andersone50ed302009-08-10 22:56:29 +0000724 EVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000725 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Dan Gohman4f22bb02008-09-05 01:33:56 +0000726 return false;
727
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000728 unsigned ResultReg = createResultReg(&X86::GR8RegClass);
Chris Lattner54aebde2008-10-15 03:47:17 +0000729 unsigned SetCCOpc;
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000730 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000731 switch (CI->getPredicate()) {
732 case CmpInst::FCMP_OEQ: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000733 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
734 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000735
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000736 unsigned EReg = createResultReg(&X86::GR8RegClass);
737 unsigned NPReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000738 BuildMI(MBB, DL, TII.get(X86::SETEr), EReg);
739 BuildMI(MBB, DL, TII.get(X86::SETNPr), NPReg);
740 BuildMI(MBB, DL,
741 TII.get(X86::AND8rr), ResultReg).addReg(NPReg).addReg(EReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000742 UpdateValueMap(I, ResultReg);
743 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000744 }
745 case CmpInst::FCMP_UNE: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000746 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
747 return false;
748
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000749 unsigned NEReg = createResultReg(&X86::GR8RegClass);
750 unsigned PReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000751 BuildMI(MBB, DL, TII.get(X86::SETNEr), NEReg);
752 BuildMI(MBB, DL, TII.get(X86::SETPr), PReg);
753 BuildMI(MBB, DL, TII.get(X86::OR8rr), ResultReg).addReg(PReg).addReg(NEReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000754 UpdateValueMap(I, ResultReg);
755 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000756 }
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000757 case CmpInst::FCMP_OGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
758 case CmpInst::FCMP_OGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
759 case CmpInst::FCMP_OLT: SwapArgs = true; SetCCOpc = X86::SETAr; break;
760 case CmpInst::FCMP_OLE: SwapArgs = true; SetCCOpc = X86::SETAEr; break;
761 case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
762 case CmpInst::FCMP_ORD: SwapArgs = false; SetCCOpc = X86::SETNPr; break;
763 case CmpInst::FCMP_UNO: SwapArgs = false; SetCCOpc = X86::SETPr; break;
764 case CmpInst::FCMP_UEQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
765 case CmpInst::FCMP_UGT: SwapArgs = true; SetCCOpc = X86::SETBr; break;
766 case CmpInst::FCMP_UGE: SwapArgs = true; SetCCOpc = X86::SETBEr; break;
767 case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
768 case CmpInst::FCMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
769
770 case CmpInst::ICMP_EQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
771 case CmpInst::ICMP_NE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
772 case CmpInst::ICMP_UGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
773 case CmpInst::ICMP_UGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
774 case CmpInst::ICMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
775 case CmpInst::ICMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
776 case CmpInst::ICMP_SGT: SwapArgs = false; SetCCOpc = X86::SETGr; break;
777 case CmpInst::ICMP_SGE: SwapArgs = false; SetCCOpc = X86::SETGEr; break;
778 case CmpInst::ICMP_SLT: SwapArgs = false; SetCCOpc = X86::SETLr; break;
779 case CmpInst::ICMP_SLE: SwapArgs = false; SetCCOpc = X86::SETLEr; break;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000780 default:
781 return false;
782 }
783
Dan Gohman46510a72010-04-15 01:51:59 +0000784 const Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000785 if (SwapArgs)
Chris Lattner9a08a612008-10-15 04:26:38 +0000786 std::swap(Op0, Op1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000787
Chris Lattner9a08a612008-10-15 04:26:38 +0000788 // Emit a compare of Op0/Op1.
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000789 if (!X86FastEmitCompare(Op0, Op1, VT))
790 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000791
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000792 BuildMI(MBB, DL, TII.get(SetCCOpc), ResultReg);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000793 UpdateValueMap(I, ResultReg);
794 return true;
795}
Evan Cheng8b19e562008-09-03 06:44:39 +0000796
Dan Gohman46510a72010-04-15 01:51:59 +0000797bool X86FastISel::X86SelectZExt(const Instruction *I) {
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000798 // Handle zero-extension from i1 to i8, which is common.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000799 if (I->getType()->isIntegerTy(8) &&
800 I->getOperand(0)->getType()->isIntegerTy(1)) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000801 unsigned ResultReg = getRegForValue(I->getOperand(0));
Dan Gohmanf52550b2008-09-05 01:15:35 +0000802 if (ResultReg == 0) return false;
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000803 // Set the high bits to zero.
Owen Anderson825b72b2009-08-11 20:47:22 +0000804 ResultReg = FastEmitZExtFromI1(MVT::i8, ResultReg);
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000805 if (ResultReg == 0) return false;
Dan Gohmand89ae992008-09-05 01:06:14 +0000806 UpdateValueMap(I, ResultReg);
807 return true;
808 }
809
810 return false;
811}
812
Chris Lattner9a08a612008-10-15 04:26:38 +0000813
Dan Gohman46510a72010-04-15 01:51:59 +0000814bool X86FastISel::X86SelectBranch(const Instruction *I) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000815 // Unconditional branches are selected by tablegen-generated code.
Dan Gohmand98d6202008-10-02 22:15:21 +0000816 // Handle a conditional branch.
Dan Gohman46510a72010-04-15 01:51:59 +0000817 const BranchInst *BI = cast<BranchInst>(I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000818 MachineBasicBlock *TrueMBB = MBBMap[BI->getSuccessor(0)];
819 MachineBasicBlock *FalseMBB = MBBMap[BI->getSuccessor(1)];
820
Dan Gohmand98d6202008-10-02 22:15:21 +0000821 // Fold the common case of a conditional branch with a comparison.
Dan Gohman46510a72010-04-15 01:51:59 +0000822 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
Dan Gohmand98d6202008-10-02 22:15:21 +0000823 if (CI->hasOneUse()) {
Owen Andersone50ed302009-08-10 22:56:29 +0000824 EVT VT = TLI.getValueType(CI->getOperand(0)->getType());
Dan Gohmand89ae992008-09-05 01:06:14 +0000825
Dan Gohmand98d6202008-10-02 22:15:21 +0000826 // Try to take advantage of fallthrough opportunities.
827 CmpInst::Predicate Predicate = CI->getPredicate();
828 if (MBB->isLayoutSuccessor(TrueMBB)) {
829 std::swap(TrueMBB, FalseMBB);
830 Predicate = CmpInst::getInversePredicate(Predicate);
831 }
832
Chris Lattner871d2462008-10-15 03:58:05 +0000833 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
834 unsigned BranchOpc; // Opcode to jump on, e.g. "X86::JA"
835
Dan Gohmand98d6202008-10-02 22:15:21 +0000836 switch (Predicate) {
Dan Gohman7b66e042008-10-21 18:24:51 +0000837 case CmpInst::FCMP_OEQ:
838 std::swap(TrueMBB, FalseMBB);
839 Predicate = CmpInst::FCMP_UNE;
840 // FALL THROUGH
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000841 case CmpInst::FCMP_UNE: SwapArgs = false; BranchOpc = X86::JNE_4; break;
842 case CmpInst::FCMP_OGT: SwapArgs = false; BranchOpc = X86::JA_4; break;
843 case CmpInst::FCMP_OGE: SwapArgs = false; BranchOpc = X86::JAE_4; break;
844 case CmpInst::FCMP_OLT: SwapArgs = true; BranchOpc = X86::JA_4; break;
845 case CmpInst::FCMP_OLE: SwapArgs = true; BranchOpc = X86::JAE_4; break;
846 case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE_4; break;
847 case CmpInst::FCMP_ORD: SwapArgs = false; BranchOpc = X86::JNP_4; break;
848 case CmpInst::FCMP_UNO: SwapArgs = false; BranchOpc = X86::JP_4; break;
849 case CmpInst::FCMP_UEQ: SwapArgs = false; BranchOpc = X86::JE_4; break;
850 case CmpInst::FCMP_UGT: SwapArgs = true; BranchOpc = X86::JB_4; break;
851 case CmpInst::FCMP_UGE: SwapArgs = true; BranchOpc = X86::JBE_4; break;
852 case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB_4; break;
853 case CmpInst::FCMP_ULE: SwapArgs = false; BranchOpc = X86::JBE_4; break;
Chris Lattner9a08a612008-10-15 04:26:38 +0000854
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000855 case CmpInst::ICMP_EQ: SwapArgs = false; BranchOpc = X86::JE_4; break;
856 case CmpInst::ICMP_NE: SwapArgs = false; BranchOpc = X86::JNE_4; break;
857 case CmpInst::ICMP_UGT: SwapArgs = false; BranchOpc = X86::JA_4; break;
858 case CmpInst::ICMP_UGE: SwapArgs = false; BranchOpc = X86::JAE_4; break;
859 case CmpInst::ICMP_ULT: SwapArgs = false; BranchOpc = X86::JB_4; break;
860 case CmpInst::ICMP_ULE: SwapArgs = false; BranchOpc = X86::JBE_4; break;
861 case CmpInst::ICMP_SGT: SwapArgs = false; BranchOpc = X86::JG_4; break;
862 case CmpInst::ICMP_SGE: SwapArgs = false; BranchOpc = X86::JGE_4; break;
863 case CmpInst::ICMP_SLT: SwapArgs = false; BranchOpc = X86::JL_4; break;
864 case CmpInst::ICMP_SLE: SwapArgs = false; BranchOpc = X86::JLE_4; break;
Dan Gohmand98d6202008-10-02 22:15:21 +0000865 default:
866 return false;
867 }
Chris Lattner54aebde2008-10-15 03:47:17 +0000868
Dan Gohman46510a72010-04-15 01:51:59 +0000869 const Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
Chris Lattner709d8292008-10-15 04:02:26 +0000870 if (SwapArgs)
871 std::swap(Op0, Op1);
872
Chris Lattner9a08a612008-10-15 04:26:38 +0000873 // Emit a compare of the LHS and RHS, setting the flags.
874 if (!X86FastEmitCompare(Op0, Op1, VT))
875 return false;
Chris Lattner0e13c782008-10-15 04:13:29 +0000876
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000877 BuildMI(MBB, DL, TII.get(BranchOpc)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000878
879 if (Predicate == CmpInst::FCMP_UNE) {
880 // X86 requires a second branch to handle UNE (and OEQ,
881 // which is mapped to UNE above).
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000882 BuildMI(MBB, DL, TII.get(X86::JP_4)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000883 }
884
Dan Gohmand98d6202008-10-02 22:15:21 +0000885 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000886 MBB->addSuccessor(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000887 return true;
888 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000889 } else if (ExtractValueInst *EI =
890 dyn_cast<ExtractValueInst>(BI->getCondition())) {
891 // Check to see if the branch instruction is from an "arithmetic with
892 // overflow" intrinsic. The main way these intrinsics are used is:
893 //
894 // %t = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2)
895 // %sum = extractvalue { i32, i1 } %t, 0
896 // %obit = extractvalue { i32, i1 } %t, 1
897 // br i1 %obit, label %overflow, label %normal
898 //
Dan Gohman653456c2009-01-07 00:15:08 +0000899 // The %sum and %obit are converted in an ADD and a SETO/SETB before
Bill Wendling30a64a72008-12-09 23:19:12 +0000900 // reaching the branch. Therefore, we search backwards through the MBB
Dan Gohman653456c2009-01-07 00:15:08 +0000901 // looking for the SETO/SETB instruction. If an instruction modifies the
902 // EFLAGS register before we reach the SETO/SETB instruction, then we can't
903 // convert the branch into a JO/JB instruction.
Dan Gohman46510a72010-04-15 01:51:59 +0000904 if (const IntrinsicInst *CI =
905 dyn_cast<IntrinsicInst>(EI->getAggregateOperand())){
Chris Lattnera9a42252009-04-12 07:36:01 +0000906 if (CI->getIntrinsicID() == Intrinsic::sadd_with_overflow ||
907 CI->getIntrinsicID() == Intrinsic::uadd_with_overflow) {
908 const MachineInstr *SetMI = 0;
909 unsigned Reg = lookUpRegForValue(EI);
Bill Wendling30a64a72008-12-09 23:19:12 +0000910
Chris Lattnera9a42252009-04-12 07:36:01 +0000911 for (MachineBasicBlock::const_reverse_iterator
912 RI = MBB->rbegin(), RE = MBB->rend(); RI != RE; ++RI) {
913 const MachineInstr &MI = *RI;
Bill Wendling30a64a72008-12-09 23:19:12 +0000914
Chris Lattnera9a42252009-04-12 07:36:01 +0000915 if (MI.modifiesRegister(Reg)) {
916 unsigned Src, Dst, SrcSR, DstSR;
Bill Wendling30a64a72008-12-09 23:19:12 +0000917
Chris Lattnera9a42252009-04-12 07:36:01 +0000918 if (getInstrInfo()->isMoveInstr(MI, Src, Dst, SrcSR, DstSR)) {
919 Reg = Src;
920 continue;
Bill Wendling9a901322008-12-10 19:44:24 +0000921 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000922
Chris Lattnera9a42252009-04-12 07:36:01 +0000923 SetMI = &MI;
924 break;
Bill Wendling30a64a72008-12-09 23:19:12 +0000925 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000926
Chris Lattnera9a42252009-04-12 07:36:01 +0000927 const TargetInstrDesc &TID = MI.getDesc();
928 if (TID.hasUnmodeledSideEffects() ||
929 TID.hasImplicitDefOfPhysReg(X86::EFLAGS))
930 break;
Bill Wendling9a901322008-12-10 19:44:24 +0000931 }
Chris Lattnera9a42252009-04-12 07:36:01 +0000932
933 if (SetMI) {
934 unsigned OpCode = SetMI->getOpcode();
935
936 if (OpCode == X86::SETOr || OpCode == X86::SETBr) {
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000937 BuildMI(MBB, DL, TII.get(OpCode == X86::SETOr ?
938 X86::JO_4 : X86::JB_4))
Chris Lattner8d57b772009-04-12 07:51:14 +0000939 .addMBB(TrueMBB);
Chris Lattnera9a42252009-04-12 07:36:01 +0000940 FastEmitBranch(FalseMBB);
941 MBB->addSuccessor(TrueMBB);
942 return true;
943 }
Bill Wendling9a901322008-12-10 19:44:24 +0000944 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000945 }
946 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000947 }
948
949 // Otherwise do a clumsy setcc and re-test it.
950 unsigned OpReg = getRegForValue(BI->getCondition());
951 if (OpReg == 0) return false;
952
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000953 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(OpReg).addReg(OpReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +0000954 BuildMI(MBB, DL, TII.get(X86::JNE_4)).addMBB(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000955 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000956 MBB->addSuccessor(TrueMBB);
Dan Gohmand89ae992008-09-05 01:06:14 +0000957 return true;
958}
959
Dan Gohman46510a72010-04-15 01:51:59 +0000960bool X86FastISel::X86SelectShift(const Instruction *I) {
Chris Lattner743922e2008-09-21 21:44:29 +0000961 unsigned CReg = 0, OpReg = 0, OpImm = 0;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000962 const TargetRegisterClass *RC = NULL;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000963 if (I->getType()->isIntegerTy(8)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000964 CReg = X86::CL;
965 RC = &X86::GR8RegClass;
966 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000967 case Instruction::LShr: OpReg = X86::SHR8rCL; OpImm = X86::SHR8ri; break;
968 case Instruction::AShr: OpReg = X86::SAR8rCL; OpImm = X86::SAR8ri; break;
969 case Instruction::Shl: OpReg = X86::SHL8rCL; OpImm = X86::SHL8ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000970 default: return false;
971 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000972 } else if (I->getType()->isIntegerTy(16)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000973 CReg = X86::CX;
974 RC = &X86::GR16RegClass;
975 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000976 case Instruction::LShr: OpReg = X86::SHR16rCL; OpImm = X86::SHR16ri; break;
977 case Instruction::AShr: OpReg = X86::SAR16rCL; OpImm = X86::SAR16ri; break;
978 case Instruction::Shl: OpReg = X86::SHL16rCL; OpImm = X86::SHL16ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000979 default: return false;
980 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000981 } else if (I->getType()->isIntegerTy(32)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000982 CReg = X86::ECX;
983 RC = &X86::GR32RegClass;
984 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000985 case Instruction::LShr: OpReg = X86::SHR32rCL; OpImm = X86::SHR32ri; break;
986 case Instruction::AShr: OpReg = X86::SAR32rCL; OpImm = X86::SAR32ri; break;
987 case Instruction::Shl: OpReg = X86::SHL32rCL; OpImm = X86::SHL32ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000988 default: return false;
989 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000990 } else if (I->getType()->isIntegerTy(64)) {
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000991 CReg = X86::RCX;
992 RC = &X86::GR64RegClass;
993 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000994 case Instruction::LShr: OpReg = X86::SHR64rCL; OpImm = X86::SHR64ri; break;
995 case Instruction::AShr: OpReg = X86::SAR64rCL; OpImm = X86::SAR64ri; break;
996 case Instruction::Shl: OpReg = X86::SHL64rCL; OpImm = X86::SHL64ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000997 default: return false;
998 }
999 } else {
1000 return false;
1001 }
1002
Owen Andersone50ed302009-08-10 22:56:29 +00001003 EVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00001004 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Dan Gohmanf58cb6d2008-09-05 21:27:34 +00001005 return false;
1006
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001007 unsigned Op0Reg = getRegForValue(I->getOperand(0));
1008 if (Op0Reg == 0) return false;
Chris Lattner743922e2008-09-21 21:44:29 +00001009
1010 // Fold immediate in shl(x,3).
Dan Gohman46510a72010-04-15 01:51:59 +00001011 if (const ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
Chris Lattner743922e2008-09-21 21:44:29 +00001012 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001013 BuildMI(MBB, DL, TII.get(OpImm),
Dan Gohmanb12b1a22008-12-20 17:19:40 +00001014 ResultReg).addReg(Op0Reg).addImm(CI->getZExtValue() & 0xff);
Chris Lattner743922e2008-09-21 21:44:29 +00001015 UpdateValueMap(I, ResultReg);
1016 return true;
1017 }
1018
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001019 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1020 if (Op1Reg == 0) return false;
1021 TII.copyRegToReg(*MBB, MBB->end(), CReg, Op1Reg, RC, RC);
Dan Gohman145b8282008-10-07 21:50:36 +00001022
1023 // The shift instruction uses X86::CL. If we defined a super-register
1024 // of X86::CL, emit an EXTRACT_SUBREG to precisely describe what
1025 // we're doing here.
1026 if (CReg != X86::CL)
Chris Lattner518bb532010-02-09 19:54:29 +00001027 BuildMI(MBB, DL, TII.get(TargetOpcode::EXTRACT_SUBREG), X86::CL)
Dan Gohman145b8282008-10-07 21:50:36 +00001028 .addReg(CReg).addImm(X86::SUBREG_8BIT);
1029
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001030 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001031 BuildMI(MBB, DL, TII.get(OpReg), ResultReg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001032 UpdateValueMap(I, ResultReg);
1033 return true;
1034}
1035
Dan Gohman46510a72010-04-15 01:51:59 +00001036bool X86FastISel::X86SelectSelect(const Instruction *I) {
Owen Andersone50ed302009-08-10 22:56:29 +00001037 EVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
Owen Anderson825b72b2009-08-11 20:47:22 +00001038 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Chris Lattner160f6cc2008-10-15 05:07:36 +00001039 return false;
1040
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001041 unsigned Opc = 0;
1042 const TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001043 if (VT.getSimpleVT() == MVT::i16) {
Dan Gohman31d26912008-09-05 21:13:04 +00001044 Opc = X86::CMOVE16rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001045 RC = &X86::GR16RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001046 } else if (VT.getSimpleVT() == MVT::i32) {
Dan Gohman31d26912008-09-05 21:13:04 +00001047 Opc = X86::CMOVE32rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001048 RC = &X86::GR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001049 } else if (VT.getSimpleVT() == MVT::i64) {
Dan Gohman31d26912008-09-05 21:13:04 +00001050 Opc = X86::CMOVE64rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001051 RC = &X86::GR64RegClass;
1052 } else {
1053 return false;
1054 }
1055
1056 unsigned Op0Reg = getRegForValue(I->getOperand(0));
1057 if (Op0Reg == 0) return false;
1058 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1059 if (Op1Reg == 0) return false;
1060 unsigned Op2Reg = getRegForValue(I->getOperand(2));
1061 if (Op2Reg == 0) return false;
1062
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001063 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(Op0Reg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001064 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001065 BuildMI(MBB, DL, TII.get(Opc), ResultReg).addReg(Op1Reg).addReg(Op2Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001066 UpdateValueMap(I, ResultReg);
1067 return true;
1068}
1069
Dan Gohman46510a72010-04-15 01:51:59 +00001070bool X86FastISel::X86SelectFPExt(const Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +00001071 // fpext from float to double.
Owen Anderson1d0be152009-08-13 21:58:54 +00001072 if (Subtarget->hasSSE2() &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001073 I->getType()->isDoubleTy()) {
Dan Gohman46510a72010-04-15 01:51:59 +00001074 const Value *V = I->getOperand(0);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001075 if (V->getType()->isFloatTy()) {
Chris Lattner160f6cc2008-10-15 05:07:36 +00001076 unsigned OpReg = getRegForValue(V);
1077 if (OpReg == 0) return false;
1078 unsigned ResultReg = createResultReg(X86::FR64RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001079 BuildMI(MBB, DL, TII.get(X86::CVTSS2SDrr), ResultReg).addReg(OpReg);
Chris Lattner160f6cc2008-10-15 05:07:36 +00001080 UpdateValueMap(I, ResultReg);
1081 return true;
Dan Gohman78efce62008-09-10 21:02:08 +00001082 }
1083 }
1084
1085 return false;
1086}
1087
Dan Gohman46510a72010-04-15 01:51:59 +00001088bool X86FastISel::X86SelectFPTrunc(const Instruction *I) {
Dan Gohman78efce62008-09-10 21:02:08 +00001089 if (Subtarget->hasSSE2()) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001090 if (I->getType()->isFloatTy()) {
Dan Gohman46510a72010-04-15 01:51:59 +00001091 const Value *V = I->getOperand(0);
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001092 if (V->getType()->isDoubleTy()) {
Dan Gohman78efce62008-09-10 21:02:08 +00001093 unsigned OpReg = getRegForValue(V);
1094 if (OpReg == 0) return false;
1095 unsigned ResultReg = createResultReg(X86::FR32RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001096 BuildMI(MBB, DL, TII.get(X86::CVTSD2SSrr), ResultReg).addReg(OpReg);
Dan Gohman78efce62008-09-10 21:02:08 +00001097 UpdateValueMap(I, ResultReg);
1098 return true;
1099 }
1100 }
1101 }
1102
1103 return false;
1104}
1105
Dan Gohman46510a72010-04-15 01:51:59 +00001106bool X86FastISel::X86SelectTrunc(const Instruction *I) {
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001107 if (Subtarget->is64Bit())
1108 // All other cases should be handled by the tblgen generated code.
1109 return false;
Owen Andersone50ed302009-08-10 22:56:29 +00001110 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1111 EVT DstVT = TLI.getValueType(I->getType());
Chris Lattner44ceb8a2009-03-13 16:36:42 +00001112
1113 // This code only handles truncation to byte right now.
Owen Anderson825b72b2009-08-11 20:47:22 +00001114 if (DstVT != MVT::i8 && DstVT != MVT::i1)
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001115 // All other cases should be handled by the tblgen generated code.
1116 return false;
Owen Anderson825b72b2009-08-11 20:47:22 +00001117 if (SrcVT != MVT::i16 && SrcVT != MVT::i32)
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001118 // All other cases should be handled by the tblgen generated code.
1119 return false;
1120
1121 unsigned InputReg = getRegForValue(I->getOperand(0));
1122 if (!InputReg)
1123 // Unhandled operand. Halt "fast" selection and bail.
1124 return false;
1125
Dan Gohman62417622009-04-27 16:33:14 +00001126 // First issue a copy to GR16_ABCD or GR32_ABCD.
Owen Anderson825b72b2009-08-11 20:47:22 +00001127 unsigned CopyOpc = (SrcVT == MVT::i16) ? X86::MOV16rr : X86::MOV32rr;
1128 const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16)
Dan Gohman62417622009-04-27 16:33:14 +00001129 ? X86::GR16_ABCDRegisterClass : X86::GR32_ABCDRegisterClass;
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001130 unsigned CopyReg = createResultReg(CopyRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001131 BuildMI(MBB, DL, TII.get(CopyOpc), CopyReg).addReg(InputReg);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001132
1133 // Then issue an extract_subreg.
Owen Anderson825b72b2009-08-11 20:47:22 +00001134 unsigned ResultReg = FastEmitInst_extractsubreg(MVT::i8,
Evan Cheng536ab132009-01-22 09:10:11 +00001135 CopyReg, X86::SUBREG_8BIT);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001136 if (!ResultReg)
1137 return false;
1138
1139 UpdateValueMap(I, ResultReg);
1140 return true;
1141}
1142
Dan Gohman46510a72010-04-15 01:51:59 +00001143bool X86FastISel::X86SelectExtractValue(const Instruction *I) {
1144 const ExtractValueInst *EI = cast<ExtractValueInst>(I);
1145 const Value *Agg = EI->getAggregateOperand();
Bill Wendling52370a12008-12-09 02:42:50 +00001146
Dan Gohman46510a72010-04-15 01:51:59 +00001147 if (const IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Agg)) {
Chris Lattnera9a42252009-04-12 07:36:01 +00001148 switch (CI->getIntrinsicID()) {
1149 default: break;
1150 case Intrinsic::sadd_with_overflow:
1151 case Intrinsic::uadd_with_overflow:
1152 // Cheat a little. We know that the registers for "add" and "seto" are
1153 // allocated sequentially. However, we only keep track of the register
1154 // for "add" in the value map. Use extractvalue's index to get the
1155 // correct register for "seto".
1156 UpdateValueMap(I, lookUpRegForValue(Agg) + *EI->idx_begin());
1157 return true;
Bill Wendling52370a12008-12-09 02:42:50 +00001158 }
1159 }
1160
1161 return false;
1162}
1163
Dan Gohman46510a72010-04-15 01:51:59 +00001164bool X86FastISel::X86VisitIntrinsicCall(const IntrinsicInst &I) {
Bill Wendling52370a12008-12-09 02:42:50 +00001165 // FIXME: Handle more intrinsics.
Chris Lattnera9a42252009-04-12 07:36:01 +00001166 switch (I.getIntrinsicID()) {
Bill Wendling52370a12008-12-09 02:42:50 +00001167 default: return false;
Eric Christopher07754c22010-03-18 20:27:26 +00001168 case Intrinsic::stackprotector: {
1169 // Emit code inline code to store the stack guard onto the stack.
1170 EVT PtrTy = TLI.getPointerTy();
1171
Eric Christopher551754c2010-04-16 23:37:20 +00001172 const Value *Op1 = I.getOperand(1); // The guard's value.
1173 const AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2));
Eric Christopher07754c22010-03-18 20:27:26 +00001174
1175 // Grab the frame index.
1176 X86AddressMode AM;
1177 if (!X86SelectAddress(Slot, AM)) return false;
1178
Eric Christopher88dee302010-03-18 21:58:33 +00001179 if (!X86FastEmitStore(PtrTy, Op1, AM)) return false;
1180
Eric Christopher07754c22010-03-18 20:27:26 +00001181 return true;
1182 }
Eric Christopherf27805b2010-03-11 06:20:22 +00001183 case Intrinsic::objectsize: {
Eric Christopher551754c2010-04-16 23:37:20 +00001184 ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(2));
Eric Christopherf27805b2010-03-11 06:20:22 +00001185 const Type *Ty = I.getCalledFunction()->getReturnType();
1186
1187 assert(CI && "Non-constant type in Intrinsic::objectsize?");
1188
1189 EVT VT;
1190 if (!isTypeLegal(Ty, VT))
1191 return false;
1192
1193 unsigned OpC = 0;
1194 if (VT == MVT::i32)
1195 OpC = X86::MOV32ri;
1196 else if (VT == MVT::i64)
1197 OpC = X86::MOV64ri;
1198 else
1199 return false;
1200
1201 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
1202 BuildMI(MBB, DL, TII.get(OpC), ResultReg).
1203 addImm(CI->getZExtValue() == 0 ? -1ULL : 0);
1204 UpdateValueMap(&I, ResultReg);
1205 return true;
1206 }
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001207 case Intrinsic::dbg_declare: {
Dan Gohman46510a72010-04-15 01:51:59 +00001208 const DbgDeclareInst *DI = cast<DbgDeclareInst>(&I);
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001209 X86AddressMode AM;
Dale Johannesen973f4672010-01-29 21:21:28 +00001210 assert(DI->getAddress() && "Null address should be checked earlier!");
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001211 if (!X86SelectAddress(DI->getAddress(), AM))
1212 return false;
Chris Lattner518bb532010-02-09 19:54:29 +00001213 const TargetInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE);
Dale Johannesen116b7992010-02-18 18:51:15 +00001214 // FIXME may need to add RegState::Debug to any registers produced,
1215 // although ESP/EBP should be the only ones at the moment.
Dale Johannesen5ed17ae2010-01-26 00:09:58 +00001216 addFullAddress(BuildMI(MBB, DL, II), AM).addImm(0).
1217 addMetadata(DI->getVariable());
1218 return true;
1219 }
Eric Christopher77f79892010-01-18 22:11:29 +00001220 case Intrinsic::trap: {
1221 BuildMI(MBB, DL, TII.get(X86::TRAP));
1222 return true;
1223 }
Bill Wendling52370a12008-12-09 02:42:50 +00001224 case Intrinsic::sadd_with_overflow:
1225 case Intrinsic::uadd_with_overflow: {
Bill Wendlingc065b3f2008-12-09 07:55:31 +00001226 // Replace "add with overflow" intrinsics with an "add" instruction followed
1227 // by a seto/setc instruction. Later on, when the "extractvalue"
1228 // instructions are encountered, we use the fact that two registers were
1229 // created sequentially to get the correct registers for the "sum" and the
1230 // "overflow bit".
Bill Wendling52370a12008-12-09 02:42:50 +00001231 const Function *Callee = I.getCalledFunction();
1232 const Type *RetTy =
1233 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(unsigned(0));
1234
Owen Andersone50ed302009-08-10 22:56:29 +00001235 EVT VT;
Bill Wendling52370a12008-12-09 02:42:50 +00001236 if (!isTypeLegal(RetTy, VT))
1237 return false;
1238
Eric Christopher551754c2010-04-16 23:37:20 +00001239 const Value *Op1 = I.getOperand(1);
1240 const Value *Op2 = I.getOperand(2);
Bill Wendling52370a12008-12-09 02:42:50 +00001241 unsigned Reg1 = getRegForValue(Op1);
1242 unsigned Reg2 = getRegForValue(Op2);
1243
1244 if (Reg1 == 0 || Reg2 == 0)
1245 // FIXME: Handle values *not* in registers.
1246 return false;
1247
1248 unsigned OpC = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001249 if (VT == MVT::i32)
Bill Wendling52370a12008-12-09 02:42:50 +00001250 OpC = X86::ADD32rr;
Owen Anderson825b72b2009-08-11 20:47:22 +00001251 else if (VT == MVT::i64)
Bill Wendling52370a12008-12-09 02:42:50 +00001252 OpC = X86::ADD64rr;
1253 else
1254 return false;
1255
1256 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001257 BuildMI(MBB, DL, TII.get(OpC), ResultReg).addReg(Reg1).addReg(Reg2);
Chris Lattner8d57b772009-04-12 07:51:14 +00001258 unsigned DestReg1 = UpdateValueMap(&I, ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001259
Chris Lattner8d57b772009-04-12 07:51:14 +00001260 // If the add with overflow is an intra-block value then we just want to
1261 // create temporaries for it like normal. If it is a cross-block value then
1262 // UpdateValueMap will return the cross-block register used. Since we
1263 // *really* want the value to be live in the register pair known by
1264 // UpdateValueMap, we have to use DestReg1+1 as the destination register in
1265 // the cross block case. In the non-cross-block case, we should just make
1266 // another register for the value.
1267 if (DestReg1 != ResultReg)
1268 ResultReg = DestReg1+1;
1269 else
Owen Anderson825b72b2009-08-11 20:47:22 +00001270 ResultReg = createResultReg(TLI.getRegClassFor(MVT::i8));
Chris Lattner8d57b772009-04-12 07:51:14 +00001271
Chris Lattnera9a42252009-04-12 07:36:01 +00001272 unsigned Opc = X86::SETBr;
1273 if (I.getIntrinsicID() == Intrinsic::sadd_with_overflow)
1274 Opc = X86::SETOr;
1275 BuildMI(MBB, DL, TII.get(Opc), ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001276 return true;
1277 }
1278 }
1279}
1280
Dan Gohman46510a72010-04-15 01:51:59 +00001281bool X86FastISel::X86SelectCall(const Instruction *I) {
1282 const CallInst *CI = cast<CallInst>(I);
Eric Christopher551754c2010-04-16 23:37:20 +00001283 const Value *Callee = I->getOperand(0);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001284
1285 // Can't handle inline asm yet.
1286 if (isa<InlineAsm>(Callee))
1287 return false;
1288
Bill Wendling52370a12008-12-09 02:42:50 +00001289 // Handle intrinsic calls.
Dan Gohman46510a72010-04-15 01:51:59 +00001290 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI))
Chris Lattnera9a42252009-04-12 07:36:01 +00001291 return X86VisitIntrinsicCall(*II);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001292
Evan Chengf3d4efe2008-09-07 09:09:33 +00001293 // Handle only C and fastcc calling conventions for now.
Dan Gohman46510a72010-04-15 01:51:59 +00001294 ImmutableCallSite CS(CI);
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001295 CallingConv::ID CC = CS.getCallingConv();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001296 if (CC != CallingConv::C &&
1297 CC != CallingConv::Fast &&
1298 CC != CallingConv::X86_FastCall)
1299 return false;
1300
Evan Cheng381993f2010-01-27 00:00:57 +00001301 // fastcc with -tailcallopt is intended to provide a guaranteed
1302 // tail call optimization. Fastisel doesn't know how to do that.
Dan Gohman1797ed52010-02-08 20:27:50 +00001303 if (CC == CallingConv::Fast && GuaranteedTailCallOpt)
Evan Cheng381993f2010-01-27 00:00:57 +00001304 return false;
1305
Evan Chengf3d4efe2008-09-07 09:09:33 +00001306 // Let SDISel handle vararg functions.
1307 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1308 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
1309 if (FTy->isVarArg())
1310 return false;
1311
1312 // Handle *simple* calls for now.
1313 const Type *RetTy = CS.getType();
Owen Andersone50ed302009-08-10 22:56:29 +00001314 EVT RetVT;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001315 if (RetTy->isVoidTy())
Owen Anderson825b72b2009-08-11 20:47:22 +00001316 RetVT = MVT::isVoid;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001317 else if (!isTypeLegal(RetTy, RetVT, true))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001318 return false;
1319
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001320 // Materialize callee address in a register. FIXME: GV address can be
1321 // handled with a CALLpcrel32 instead.
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001322 X86AddressMode CalleeAM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001323 if (!X86SelectCallAddress(Callee, CalleeAM))
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001324 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001325 unsigned CalleeOp = 0;
Dan Gohman46510a72010-04-15 01:51:59 +00001326 const GlobalValue *GV = 0;
Chris Lattner553e5712009-06-27 04:50:14 +00001327 if (CalleeAM.GV != 0) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001328 GV = CalleeAM.GV;
Chris Lattner553e5712009-06-27 04:50:14 +00001329 } else if (CalleeAM.Base.Reg != 0) {
1330 CalleeOp = CalleeAM.Base.Reg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001331 } else
1332 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001333
Evan Chengdebdea02008-09-08 17:15:42 +00001334 // Allow calls which produce i1 results.
1335 bool AndToI1 = false;
Owen Anderson825b72b2009-08-11 20:47:22 +00001336 if (RetVT == MVT::i1) {
1337 RetVT = MVT::i8;
Evan Chengdebdea02008-09-08 17:15:42 +00001338 AndToI1 = true;
1339 }
1340
Evan Chengf3d4efe2008-09-07 09:09:33 +00001341 // Deal with call operands first.
Dan Gohman46510a72010-04-15 01:51:59 +00001342 SmallVector<const Value *, 8> ArgVals;
Chris Lattner241ab472008-10-15 05:38:32 +00001343 SmallVector<unsigned, 8> Args;
Owen Andersone50ed302009-08-10 22:56:29 +00001344 SmallVector<EVT, 8> ArgVTs;
Chris Lattner241ab472008-10-15 05:38:32 +00001345 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001346 Args.reserve(CS.arg_size());
Chris Lattner241ab472008-10-15 05:38:32 +00001347 ArgVals.reserve(CS.arg_size());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001348 ArgVTs.reserve(CS.arg_size());
1349 ArgFlags.reserve(CS.arg_size());
Dan Gohman46510a72010-04-15 01:51:59 +00001350 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001351 i != e; ++i) {
1352 unsigned Arg = getRegForValue(*i);
1353 if (Arg == 0)
1354 return false;
1355 ISD::ArgFlagsTy Flags;
1356 unsigned AttrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00001357 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001358 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00001359 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001360 Flags.setZExt();
1361
1362 // FIXME: Only handle *easy* calls for now.
Devang Patel05988662008-09-25 21:00:45 +00001363 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1364 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1365 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1366 CS.paramHasAttr(AttrInd, Attribute::ByVal))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001367 return false;
1368
1369 const Type *ArgTy = (*i)->getType();
Owen Andersone50ed302009-08-10 22:56:29 +00001370 EVT ArgVT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001371 if (!isTypeLegal(ArgTy, ArgVT))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001372 return false;
1373 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1374 Flags.setOrigAlign(OriginalAlignment);
1375
1376 Args.push_back(Arg);
Chris Lattner241ab472008-10-15 05:38:32 +00001377 ArgVals.push_back(*i);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001378 ArgVTs.push_back(ArgVT);
1379 ArgFlags.push_back(Flags);
1380 }
1381
1382 // Analyze operands of the call, assigning locations to each operand.
1383 SmallVector<CCValAssign, 16> ArgLocs;
Owen Andersond1474d02009-07-09 17:57:24 +00001384 CCState CCInfo(CC, false, TM, ArgLocs, I->getParent()->getContext());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001385 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC));
1386
1387 // Get a count of how many bytes are to be pushed on the stack.
1388 unsigned NumBytes = CCInfo.getNextStackOffset();
1389
1390 // Issue CALLSEQ_START
Dan Gohman6d4b0522008-10-01 18:28:06 +00001391 unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001392 BuildMI(MBB, DL, TII.get(AdjStackDown)).addImm(NumBytes);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001393
Chris Lattner438949a2008-10-15 05:30:52 +00001394 // Process argument: walk the register/memloc assignments, inserting
Evan Chengf3d4efe2008-09-07 09:09:33 +00001395 // copies / loads.
1396 SmallVector<unsigned, 4> RegArgs;
1397 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1398 CCValAssign &VA = ArgLocs[i];
1399 unsigned Arg = Args[VA.getValNo()];
Owen Andersone50ed302009-08-10 22:56:29 +00001400 EVT ArgVT = ArgVTs[VA.getValNo()];
Evan Chengf3d4efe2008-09-07 09:09:33 +00001401
1402 // Promote the value if needed.
1403 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001404 default: llvm_unreachable("Unknown loc info!");
Evan Chengf3d4efe2008-09-07 09:09:33 +00001405 case CCValAssign::Full: break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001406 case CCValAssign::SExt: {
1407 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1408 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001409 assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001410 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001411 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001412 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001413 }
1414 case CCValAssign::ZExt: {
1415 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1416 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001417 assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001418 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001419 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001420 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001421 }
1422 case CCValAssign::AExt: {
1423 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1424 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001425 if (!Emitted)
1426 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
Chris Lattner160f6cc2008-10-15 05:07:36 +00001427 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001428 if (!Emitted)
1429 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1430 Arg, ArgVT, Arg);
1431
Chris Lattnera33649e2008-12-19 17:03:38 +00001432 assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted;
Evan Cheng24e3a902008-09-08 06:35:17 +00001433 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001434 break;
1435 }
Dan Gohmanc3c9c482009-08-05 05:33:42 +00001436 case CCValAssign::BCvt: {
1437 unsigned BC = FastEmit_r(ArgVT.getSimpleVT(), VA.getLocVT().getSimpleVT(),
1438 ISD::BIT_CONVERT, Arg);
1439 assert(BC != 0 && "Failed to emit a bitcast!");
1440 Arg = BC;
1441 ArgVT = VA.getLocVT();
1442 break;
1443 }
Evan Cheng24e3a902008-09-08 06:35:17 +00001444 }
Evan Chengf3d4efe2008-09-07 09:09:33 +00001445
1446 if (VA.isRegLoc()) {
1447 TargetRegisterClass* RC = TLI.getRegClassFor(ArgVT);
1448 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), VA.getLocReg(),
1449 Arg, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001450 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001451 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001452 RegArgs.push_back(VA.getLocReg());
1453 } else {
1454 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman0586d912008-09-10 20:11:02 +00001455 X86AddressMode AM;
1456 AM.Base.Reg = StackPtr;
1457 AM.Disp = LocMemOffset;
Dan Gohman46510a72010-04-15 01:51:59 +00001458 const Value *ArgVal = ArgVals[VA.getValNo()];
Chris Lattner241ab472008-10-15 05:38:32 +00001459
1460 // If this is a really simple value, emit this with the Value* version of
1461 // X86FastEmitStore. If it isn't simple, we don't want to do this, as it
1462 // can cause us to reevaluate the argument.
1463 if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal))
1464 X86FastEmitStore(ArgVT, ArgVal, AM);
1465 else
1466 X86FastEmitStore(ArgVT, Arg, AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001467 }
1468 }
1469
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001470 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1471 // GOT pointer.
Chris Lattner15a380a2009-07-09 04:39:06 +00001472 if (Subtarget->isPICStyleGOT()) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001473 TargetRegisterClass *RC = X86::GR32RegisterClass;
Dan Gohman57c3dac2008-09-30 00:58:23 +00001474 unsigned Base = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001475 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), X86::EBX, Base, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001476 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001477 Emitted = true;
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001478 }
Chris Lattner51e8eab2009-07-09 06:34:26 +00001479
Evan Chengf3d4efe2008-09-07 09:09:33 +00001480 // Issue the call.
Chris Lattner51e8eab2009-07-09 06:34:26 +00001481 MachineInstrBuilder MIB;
1482 if (CalleeOp) {
1483 // Register-indirect call.
1484 unsigned CallOpc = Subtarget->is64Bit() ? X86::CALL64r : X86::CALL32r;
1485 MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addReg(CalleeOp);
1486
1487 } else {
1488 // Direct call.
1489 assert(GV && "Not a direct call");
1490 unsigned CallOpc =
1491 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
1492
1493 // See if we need any target-specific flags on the GV operand.
1494 unsigned char OpFlags = 0;
1495
1496 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
1497 // external symbols most go through the PLT in PIC mode. If the symbol
1498 // has hidden or protected visibility, or if it is static or local, then
1499 // we don't need to use the PLT - we can directly call it.
1500 if (Subtarget->isTargetELF() &&
1501 TM.getRelocationModel() == Reloc::PIC_ &&
1502 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
1503 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00001504 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner51e8eab2009-07-09 06:34:26 +00001505 (GV->isDeclaration() || GV->isWeakForLinker()) &&
1506 Subtarget->getDarwinVers() < 9) {
1507 // PC-relative references to external symbols should go through $stub,
1508 // unless we're building with the leopard linker or later, which
1509 // automatically synthesizes these stubs.
1510 OpFlags = X86II::MO_DARWIN_STUB;
1511 }
1512
1513
1514 MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addGlobalAddress(GV, 0, OpFlags);
1515 }
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001516
1517 // Add an implicit use GOT pointer in EBX.
Chris Lattner15a380a2009-07-09 04:39:06 +00001518 if (Subtarget->isPICStyleGOT())
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001519 MIB.addReg(X86::EBX);
1520
Evan Chengf3d4efe2008-09-07 09:09:33 +00001521 // Add implicit physical register uses to the call.
Dan Gohman8c3f8b62008-10-07 22:10:33 +00001522 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1523 MIB.addReg(RegArgs[i]);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001524
1525 // Issue CALLSEQ_END
Dan Gohman6d4b0522008-10-01 18:28:06 +00001526 unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001527 BuildMI(MBB, DL, TII.get(AdjStackUp)).addImm(NumBytes).addImm(0);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001528
1529 // Now handle call return value (if any).
Owen Anderson825b72b2009-08-11 20:47:22 +00001530 if (RetVT.getSimpleVT().SimpleTy != MVT::isVoid) {
Evan Chengf3d4efe2008-09-07 09:09:33 +00001531 SmallVector<CCValAssign, 16> RVLocs;
Owen Andersond1474d02009-07-09 17:57:24 +00001532 CCState CCInfo(CC, false, TM, RVLocs, I->getParent()->getContext());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001533 CCInfo.AnalyzeCallResult(RetVT, RetCC_X86);
1534
1535 // Copy all of the result registers out of their specified physreg.
1536 assert(RVLocs.size() == 1 && "Can't handle multi-value calls!");
Owen Andersone50ed302009-08-10 22:56:29 +00001537 EVT CopyVT = RVLocs[0].getValVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001538 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
1539 TargetRegisterClass *SrcRC = DstRC;
1540
1541 // If this is a call to a function that returns an fp value on the x87 fp
1542 // stack, but where we prefer to use the value in xmm registers, copy it
1543 // out as F80 and use a truncate to move it from fp stack reg to xmm reg.
1544 if ((RVLocs[0].getLocReg() == X86::ST0 ||
1545 RVLocs[0].getLocReg() == X86::ST1) &&
1546 isScalarFPTypeInSSEReg(RVLocs[0].getValVT())) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001547 CopyVT = MVT::f80;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001548 SrcRC = X86::RSTRegisterClass;
1549 DstRC = X86::RFP80RegisterClass;
1550 }
1551
1552 unsigned ResultReg = createResultReg(DstRC);
1553 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
1554 RVLocs[0].getLocReg(), DstRC, SrcRC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001555 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001556 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001557 if (CopyVT != RVLocs[0].getValVT()) {
1558 // Round the F80 the right size, which also moves to the appropriate xmm
1559 // register. This is accomplished by storing the F80 value in memory and
1560 // then loading it back. Ewww...
Owen Andersone50ed302009-08-10 22:56:29 +00001561 EVT ResVT = RVLocs[0].getValVT();
Owen Anderson825b72b2009-08-11 20:47:22 +00001562 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001563 unsigned MemSize = ResVT.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00001564 int FI = MFI.CreateStackObject(MemSize, MemSize, false);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001565 addFrameReference(BuildMI(MBB, DL, TII.get(Opc)), FI).addReg(ResultReg);
Owen Anderson825b72b2009-08-11 20:47:22 +00001566 DstRC = ResVT == MVT::f32
Evan Chengf3d4efe2008-09-07 09:09:33 +00001567 ? X86::FR32RegisterClass : X86::FR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001568 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001569 ResultReg = createResultReg(DstRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001570 addFrameReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), FI);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001571 }
1572
Evan Chengdebdea02008-09-08 17:15:42 +00001573 if (AndToI1) {
1574 // Mask out all but lowest bit for some call which produces an i1.
1575 unsigned AndResult = createResultReg(X86::GR8RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001576 BuildMI(MBB, DL,
1577 TII.get(X86::AND8ri), AndResult).addReg(ResultReg).addImm(1);
Evan Chengdebdea02008-09-08 17:15:42 +00001578 ResultReg = AndResult;
1579 }
1580
Evan Chengf3d4efe2008-09-07 09:09:33 +00001581 UpdateValueMap(I, ResultReg);
1582 }
1583
1584 return true;
1585}
1586
1587
Dan Gohman99b21822008-08-28 23:21:34 +00001588bool
Dan Gohman46510a72010-04-15 01:51:59 +00001589X86FastISel::TargetSelectInstruction(const Instruction *I) {
Dan Gohman99b21822008-08-28 23:21:34 +00001590 switch (I->getOpcode()) {
1591 default: break;
Evan Cheng8b19e562008-09-03 06:44:39 +00001592 case Instruction::Load:
Dan Gohman3df24e62008-09-03 23:12:08 +00001593 return X86SelectLoad(I);
Owen Anderson79924eb2008-09-04 16:48:33 +00001594 case Instruction::Store:
1595 return X86SelectStore(I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +00001596 case Instruction::ICmp:
1597 case Instruction::FCmp:
1598 return X86SelectCmp(I);
Dan Gohmand89ae992008-09-05 01:06:14 +00001599 case Instruction::ZExt:
1600 return X86SelectZExt(I);
1601 case Instruction::Br:
1602 return X86SelectBranch(I);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001603 case Instruction::Call:
1604 return X86SelectCall(I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001605 case Instruction::LShr:
1606 case Instruction::AShr:
1607 case Instruction::Shl:
1608 return X86SelectShift(I);
1609 case Instruction::Select:
1610 return X86SelectSelect(I);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001611 case Instruction::Trunc:
1612 return X86SelectTrunc(I);
Dan Gohman78efce62008-09-10 21:02:08 +00001613 case Instruction::FPExt:
1614 return X86SelectFPExt(I);
1615 case Instruction::FPTrunc:
1616 return X86SelectFPTrunc(I);
Bill Wendling52370a12008-12-09 02:42:50 +00001617 case Instruction::ExtractValue:
1618 return X86SelectExtractValue(I);
Dan Gohman474d3b32009-03-13 23:53:06 +00001619 case Instruction::IntToPtr: // Deliberate fall-through.
1620 case Instruction::PtrToInt: {
Owen Andersone50ed302009-08-10 22:56:29 +00001621 EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1622 EVT DstVT = TLI.getValueType(I->getType());
Dan Gohman474d3b32009-03-13 23:53:06 +00001623 if (DstVT.bitsGT(SrcVT))
1624 return X86SelectZExt(I);
1625 if (DstVT.bitsLT(SrcVT))
1626 return X86SelectTrunc(I);
1627 unsigned Reg = getRegForValue(I->getOperand(0));
1628 if (Reg == 0) return false;
1629 UpdateValueMap(I, Reg);
1630 return true;
1631 }
Dan Gohman99b21822008-08-28 23:21:34 +00001632 }
1633
1634 return false;
1635}
1636
Dan Gohman46510a72010-04-15 01:51:59 +00001637unsigned X86FastISel::TargetMaterializeConstant(const Constant *C) {
Owen Andersone50ed302009-08-10 22:56:29 +00001638 EVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001639 if (!isTypeLegal(C->getType(), VT))
Owen Anderson95267a12008-09-05 00:06:23 +00001640 return false;
1641
1642 // Get opcode and regclass of the output for the given load instruction.
1643 unsigned Opc = 0;
1644 const TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001645 switch (VT.getSimpleVT().SimpleTy) {
Owen Anderson95267a12008-09-05 00:06:23 +00001646 default: return false;
Owen Anderson825b72b2009-08-11 20:47:22 +00001647 case MVT::i8:
Owen Anderson95267a12008-09-05 00:06:23 +00001648 Opc = X86::MOV8rm;
1649 RC = X86::GR8RegisterClass;
1650 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001651 case MVT::i16:
Owen Anderson95267a12008-09-05 00:06:23 +00001652 Opc = X86::MOV16rm;
1653 RC = X86::GR16RegisterClass;
1654 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001655 case MVT::i32:
Owen Anderson95267a12008-09-05 00:06:23 +00001656 Opc = X86::MOV32rm;
1657 RC = X86::GR32RegisterClass;
1658 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001659 case MVT::i64:
Owen Anderson95267a12008-09-05 00:06:23 +00001660 // Must be in x86-64 mode.
1661 Opc = X86::MOV64rm;
1662 RC = X86::GR64RegisterClass;
1663 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001664 case MVT::f32:
Owen Anderson95267a12008-09-05 00:06:23 +00001665 if (Subtarget->hasSSE1()) {
1666 Opc = X86::MOVSSrm;
1667 RC = X86::FR32RegisterClass;
1668 } else {
1669 Opc = X86::LD_Fp32m;
1670 RC = X86::RFP32RegisterClass;
1671 }
1672 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001673 case MVT::f64:
Owen Anderson95267a12008-09-05 00:06:23 +00001674 if (Subtarget->hasSSE2()) {
1675 Opc = X86::MOVSDrm;
1676 RC = X86::FR64RegisterClass;
1677 } else {
1678 Opc = X86::LD_Fp64m;
1679 RC = X86::RFP64RegisterClass;
1680 }
1681 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001682 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +00001683 // No f80 support yet.
1684 return false;
Owen Anderson95267a12008-09-05 00:06:23 +00001685 }
1686
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001687 // Materialize addresses with LEA instructions.
Owen Anderson95267a12008-09-05 00:06:23 +00001688 if (isa<GlobalValue>(C)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001689 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001690 if (X86SelectAddress(C, AM)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001691 if (TLI.getPointerTy() == MVT::i32)
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001692 Opc = X86::LEA32r;
1693 else
1694 Opc = X86::LEA64r;
1695 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001696 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Owen Anderson95267a12008-09-05 00:06:23 +00001697 return ResultReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001698 }
Evan Cheng0de588f2008-09-05 21:00:03 +00001699 return 0;
Owen Anderson95267a12008-09-05 00:06:23 +00001700 }
1701
Owen Anderson3b217c62008-09-06 01:11:01 +00001702 // MachineConstantPool wants an explicit alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +00001703 unsigned Align = TD.getPrefTypeAlignment(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001704 if (Align == 0) {
1705 // Alignment of vector types. FIXME!
Duncan Sands777d2302009-05-09 07:06:46 +00001706 Align = TD.getTypeAllocSize(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001707 }
Owen Anderson95267a12008-09-05 00:06:23 +00001708
Dan Gohman5396c992008-09-30 01:21:32 +00001709 // x86-32 PIC requires a PIC base register for constant pools.
1710 unsigned PICBase = 0;
Chris Lattner89da6992009-06-27 01:31:51 +00001711 unsigned char OpFlag = 0;
Chris Lattnere2c92082009-07-10 21:00:45 +00001712 if (Subtarget->isPICStyleStubPIC()) { // Not dynamic-no-pic
Chris Lattner15a380a2009-07-09 04:39:06 +00001713 OpFlag = X86II::MO_PIC_BASE_OFFSET;
1714 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1715 } else if (Subtarget->isPICStyleGOT()) {
1716 OpFlag = X86II::MO_GOTOFF;
1717 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1718 } else if (Subtarget->isPICStyleRIPRel() &&
1719 TM.getCodeModel() == CodeModel::Small) {
1720 PICBase = X86::RIP;
Chris Lattner89da6992009-06-27 01:31:51 +00001721 }
Dan Gohman5396c992008-09-30 01:21:32 +00001722
1723 // Create the load from the constant pool.
Dan Gohman0586d912008-09-10 20:11:02 +00001724 unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align);
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001725 unsigned ResultReg = createResultReg(RC);
Chris Lattner89da6992009-06-27 01:31:51 +00001726 addConstantPoolReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg),
1727 MCPOffset, PICBase, OpFlag);
Dan Gohman5396c992008-09-30 01:21:32 +00001728
Owen Anderson95267a12008-09-05 00:06:23 +00001729 return ResultReg;
1730}
1731
Dan Gohman46510a72010-04-15 01:51:59 +00001732unsigned X86FastISel::TargetMaterializeAlloca(const AllocaInst *C) {
Dan Gohman4e6ed5e2008-10-03 01:27:49 +00001733 // Fail on dynamic allocas. At this point, getRegForValue has already
1734 // checked its CSE maps, so if we're here trying to handle a dynamic
1735 // alloca, we're not going to succeed. X86SelectAddress has a
1736 // check for dynamic allocas, because it's called directly from
1737 // various places, but TargetMaterializeAlloca also needs a check
1738 // in order to avoid recursion between getRegForValue,
1739 // X86SelectAddrss, and TargetMaterializeAlloca.
1740 if (!StaticAllocaMap.count(C))
1741 return 0;
1742
Dan Gohman0586d912008-09-10 20:11:02 +00001743 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001744 if (!X86SelectAddress(C, AM))
Dan Gohman0586d912008-09-10 20:11:02 +00001745 return 0;
1746 unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
1747 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
1748 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001749 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Dan Gohman0586d912008-09-10 20:11:02 +00001750 return ResultReg;
1751}
1752
Evan Chengc3f44b02008-09-03 00:03:49 +00001753namespace llvm {
Dan Gohman3df24e62008-09-03 23:12:08 +00001754 llvm::FastISel *X86::createFastISel(MachineFunction &mf,
1755 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +00001756 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001757 DenseMap<const AllocaInst *, int> &am
1758#ifndef NDEBUG
Dan Gohman25208642010-04-14 19:53:31 +00001759 , SmallSet<const Instruction *, 8> &cil
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001760#endif
1761 ) {
Chris Lattnered3a8062010-04-05 06:05:26 +00001762 return new X86FastISel(mf, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001763#ifndef NDEBUG
1764 , cil
1765#endif
1766 );
Evan Chengc3f44b02008-09-03 00:03:49 +00001767 }
Dan Gohman99b21822008-08-28 23:21:34 +00001768}