blob: 4b0ff7b114f34d72df6e9b50d8d4a91efc8d13b8 [file] [log] [blame]
Dan Gohman1adf1b02008-08-19 21:45:35 +00001//===-- X86FastISel.cpp - X86 FastISel implementation ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the X86-specific support for the FastISel class. Much
11// of the target-specific code is generated by tablegen in the file
12// X86GenFastISel.inc, which is #included here.
13//
14//===----------------------------------------------------------------------===//
15
16#include "X86.h"
Evan Cheng8b19e562008-09-03 06:44:39 +000017#include "X86InstrBuilder.h"
Dan Gohman1adf1b02008-08-19 21:45:35 +000018#include "X86ISelLowering.h"
Evan Cheng88e30412008-09-03 01:04:47 +000019#include "X86RegisterInfo.h"
20#include "X86Subtarget.h"
Dan Gohman22bb3112008-08-22 00:20:26 +000021#include "X86TargetMachine.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000022#include "llvm/CallingConv.h"
Dan Gohman6e3f05f2008-09-04 23:26:51 +000023#include "llvm/DerivedTypes.h"
Dan Gohmane9865942009-02-23 22:03:08 +000024#include "llvm/GlobalVariable.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000025#include "llvm/Instructions.h"
Chris Lattnera9a42252009-04-12 07:36:01 +000026#include "llvm/IntrinsicInst.h"
Evan Chengc3f44b02008-09-03 00:03:49 +000027#include "llvm/CodeGen/FastISel.h"
Owen Anderson95267a12008-09-05 00:06:23 +000028#include "llvm/CodeGen/MachineConstantPool.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000029#include "llvm/CodeGen/MachineFrameInfo.h"
Owen Anderson667d8f72008-08-29 17:45:56 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Chengf3d4efe2008-09-07 09:09:33 +000031#include "llvm/Support/CallSite.h"
Dan Gohman35893082008-09-18 23:23:44 +000032#include "llvm/Support/GetElementPtrTypeIterator.h"
Dan Gohman7d04e4a2009-05-04 19:50:33 +000033#include "llvm/Target/TargetOptions.h"
Evan Chengc3f44b02008-09-03 00:03:49 +000034using namespace llvm;
35
Chris Lattner087fcf32009-03-08 18:44:31 +000036namespace {
37
Evan Chengc3f44b02008-09-03 00:03:49 +000038class X86FastISel : public FastISel {
39 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
40 /// make the right decision when generating code for different targets.
41 const X86Subtarget *Subtarget;
Evan Chengf3d4efe2008-09-07 09:09:33 +000042
43 /// StackPtr - Register used as the stack pointer.
44 ///
45 unsigned StackPtr;
46
47 /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87
48 /// floating point ops.
49 /// When SSE is available, use it for f32 operations.
50 /// When SSE2 is available, use it for f64 operations.
51 bool X86ScalarSSEf64;
52 bool X86ScalarSSEf32;
53
Evan Cheng8b19e562008-09-03 06:44:39 +000054public:
Dan Gohman3df24e62008-09-03 23:12:08 +000055 explicit X86FastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +000056 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +000057 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +000058 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +000059 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +000060 DenseMap<const AllocaInst *, int> &am
61#ifndef NDEBUG
62 , SmallSet<Instruction*, 8> &cil
63#endif
64 )
Devang Patel83489bb2009-01-13 00:35:13 +000065 : FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +000066#ifndef NDEBUG
67 , cil
68#endif
69 ) {
Evan Cheng88e30412008-09-03 01:04:47 +000070 Subtarget = &TM.getSubtarget<X86Subtarget>();
Evan Chengf3d4efe2008-09-07 09:09:33 +000071 StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
72 X86ScalarSSEf64 = Subtarget->hasSSE2();
73 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng88e30412008-09-03 01:04:47 +000074 }
Evan Chengc3f44b02008-09-03 00:03:49 +000075
Dan Gohman3df24e62008-09-03 23:12:08 +000076 virtual bool TargetSelectInstruction(Instruction *I);
Evan Chengc3f44b02008-09-03 00:03:49 +000077
Dan Gohman1adf1b02008-08-19 21:45:35 +000078#include "X86GenFastISel.inc"
Evan Cheng8b19e562008-09-03 06:44:39 +000079
80private:
Chris Lattner9a08a612008-10-15 04:26:38 +000081 bool X86FastEmitCompare(Value *LHS, Value *RHS, MVT VT);
82
Dan Gohman0586d912008-09-10 20:11:02 +000083 bool X86FastEmitLoad(MVT VT, const X86AddressMode &AM, unsigned &RR);
Evan Cheng0de588f2008-09-05 21:00:03 +000084
Chris Lattner438949a2008-10-15 05:30:52 +000085 bool X86FastEmitStore(MVT VT, Value *Val,
86 const X86AddressMode &AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +000087 bool X86FastEmitStore(MVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +000088 const X86AddressMode &AM);
Evan Cheng24e3a902008-09-08 06:35:17 +000089
90 bool X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT, unsigned Src, MVT SrcVT,
91 unsigned &ResultReg);
Evan Cheng0de588f2008-09-05 21:00:03 +000092
Chris Lattner0aa43de2009-07-10 05:33:42 +000093 bool X86SelectAddress(Value *V, X86AddressMode &AM);
94 bool X86SelectCallAddress(Value *V, X86AddressMode &AM);
Dan Gohman0586d912008-09-10 20:11:02 +000095
Dan Gohman3df24e62008-09-03 23:12:08 +000096 bool X86SelectLoad(Instruction *I);
Owen Andersona3971df2008-09-04 07:08:58 +000097
98 bool X86SelectStore(Instruction *I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +000099
100 bool X86SelectCmp(Instruction *I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000101
102 bool X86SelectZExt(Instruction *I);
103
104 bool X86SelectBranch(Instruction *I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000105
106 bool X86SelectShift(Instruction *I);
107
108 bool X86SelectSelect(Instruction *I);
Evan Cheng0de588f2008-09-05 21:00:03 +0000109
Evan Cheng10a8d9c2008-09-07 08:47:42 +0000110 bool X86SelectTrunc(Instruction *I);
Dan Gohmand98d6202008-10-02 22:15:21 +0000111
Dan Gohman78efce62008-09-10 21:02:08 +0000112 bool X86SelectFPExt(Instruction *I);
113 bool X86SelectFPTrunc(Instruction *I);
114
Bill Wendling52370a12008-12-09 02:42:50 +0000115 bool X86SelectExtractValue(Instruction *I);
116
Chris Lattnera9a42252009-04-12 07:36:01 +0000117 bool X86VisitIntrinsicCall(IntrinsicInst &I);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000118 bool X86SelectCall(Instruction *I);
119
120 CCAssignFn *CCAssignFnForCall(unsigned CC, bool isTailCall = false);
121
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000122 const X86InstrInfo *getInstrInfo() const {
Dan Gohman97135e12008-09-26 19:15:30 +0000123 return getTargetMachine()->getInstrInfo();
124 }
125 const X86TargetMachine *getTargetMachine() const {
126 return static_cast<const X86TargetMachine *>(&TM);
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000127 }
128
Dan Gohman0586d912008-09-10 20:11:02 +0000129 unsigned TargetMaterializeConstant(Constant *C);
130
131 unsigned TargetMaterializeAlloca(AllocaInst *C);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000132
133 /// isScalarFPTypeInSSEReg - Return true if the specified scalar FP type is
134 /// computed in an SSE register, not on the X87 floating point stack.
135 bool isScalarFPTypeInSSEReg(MVT VT) const {
136 return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2
137 (VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1
138 }
139
Chris Lattner160f6cc2008-10-15 05:07:36 +0000140 bool isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1 = false);
Evan Chengc3f44b02008-09-03 00:03:49 +0000141};
Chris Lattner087fcf32009-03-08 18:44:31 +0000142
143} // end anonymous namespace.
Dan Gohman99b21822008-08-28 23:21:34 +0000144
Chris Lattner160f6cc2008-10-15 05:07:36 +0000145bool X86FastISel::isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1) {
146 VT = TLI.getValueType(Ty, /*HandleUnknown=*/true);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000147 if (VT == MVT::Other || !VT.isSimple())
148 // Unhandled type. Halt "fast" selection and bail.
149 return false;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000150
Dan Gohman9b66d732008-09-30 00:48:39 +0000151 // For now, require SSE/SSE2 for performing floating-point operations,
152 // since x87 requires additional work.
153 if (VT == MVT::f64 && !X86ScalarSSEf64)
154 return false;
155 if (VT == MVT::f32 && !X86ScalarSSEf32)
156 return false;
157 // Similarly, no f80 support yet.
158 if (VT == MVT::f80)
159 return false;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000160 // We only handle legal types. For example, on x86-32 the instruction
161 // selector contains all of the 64-bit instructions from x86-64,
162 // under the assumption that i64 won't be used if the target doesn't
163 // support it.
Evan Chengdebdea02008-09-08 17:15:42 +0000164 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000165}
166
167#include "X86GenCallingConv.inc"
168
169/// CCAssignFnForCall - Selects the correct CCAssignFn for a given calling
170/// convention.
171CCAssignFn *X86FastISel::CCAssignFnForCall(unsigned CC, bool isTaillCall) {
172 if (Subtarget->is64Bit()) {
173 if (Subtarget->isTargetWin64())
174 return CC_X86_Win64_C;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000175 else
176 return CC_X86_64_C;
177 }
178
179 if (CC == CallingConv::X86_FastCall)
180 return CC_X86_32_FastCall;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000181 else if (CC == CallingConv::Fast)
182 return CC_X86_32_FastCC;
183 else
184 return CC_X86_32_C;
185}
186
Evan Cheng0de588f2008-09-05 21:00:03 +0000187/// X86FastEmitLoad - Emit a machine instruction to load a value of type VT.
Evan Chengf3d4efe2008-09-07 09:09:33 +0000188/// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
Evan Cheng0de588f2008-09-05 21:00:03 +0000189/// Return true and the result register by reference if it is possible.
Dan Gohman0586d912008-09-10 20:11:02 +0000190bool X86FastISel::X86FastEmitLoad(MVT VT, const X86AddressMode &AM,
Evan Cheng0de588f2008-09-05 21:00:03 +0000191 unsigned &ResultReg) {
192 // Get opcode and regclass of the output for the given load instruction.
193 unsigned Opc = 0;
194 const TargetRegisterClass *RC = NULL;
195 switch (VT.getSimpleVT()) {
196 default: return false;
197 case MVT::i8:
198 Opc = X86::MOV8rm;
199 RC = X86::GR8RegisterClass;
200 break;
201 case MVT::i16:
202 Opc = X86::MOV16rm;
203 RC = X86::GR16RegisterClass;
204 break;
205 case MVT::i32:
206 Opc = X86::MOV32rm;
207 RC = X86::GR32RegisterClass;
208 break;
209 case MVT::i64:
210 // Must be in x86-64 mode.
211 Opc = X86::MOV64rm;
212 RC = X86::GR64RegisterClass;
213 break;
214 case MVT::f32:
215 if (Subtarget->hasSSE1()) {
216 Opc = X86::MOVSSrm;
217 RC = X86::FR32RegisterClass;
218 } else {
219 Opc = X86::LD_Fp32m;
220 RC = X86::RFP32RegisterClass;
221 }
222 break;
223 case MVT::f64:
224 if (Subtarget->hasSSE2()) {
225 Opc = X86::MOVSDrm;
226 RC = X86::FR64RegisterClass;
227 } else {
228 Opc = X86::LD_Fp64m;
229 RC = X86::RFP64RegisterClass;
230 }
231 break;
232 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +0000233 // No f80 support yet.
234 return false;
Evan Cheng0de588f2008-09-05 21:00:03 +0000235 }
236
237 ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000238 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Evan Cheng0de588f2008-09-05 21:00:03 +0000239 return true;
240}
241
Evan Chengf3d4efe2008-09-07 09:09:33 +0000242/// X86FastEmitStore - Emit a machine instruction to store a value Val of
243/// type VT. The address is either pre-computed, consisted of a base ptr, Ptr
244/// and a displacement offset, or a GlobalAddress,
Evan Cheng0de588f2008-09-05 21:00:03 +0000245/// i.e. V. Return true if it is possible.
246bool
Evan Chengf3d4efe2008-09-07 09:09:33 +0000247X86FastISel::X86FastEmitStore(MVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +0000248 const X86AddressMode &AM) {
Dan Gohman863890e2008-09-08 16:31:35 +0000249 // Get opcode and regclass of the output for the given store instruction.
Evan Cheng0de588f2008-09-05 21:00:03 +0000250 unsigned Opc = 0;
Evan Cheng0de588f2008-09-05 21:00:03 +0000251 switch (VT.getSimpleVT()) {
Chris Lattner241ab472008-10-15 05:38:32 +0000252 case MVT::f80: // No f80 support yet.
Evan Cheng0de588f2008-09-05 21:00:03 +0000253 default: return false;
Chris Lattner241ab472008-10-15 05:38:32 +0000254 case MVT::i8: Opc = X86::MOV8mr; break;
255 case MVT::i16: Opc = X86::MOV16mr; break;
256 case MVT::i32: Opc = X86::MOV32mr; break;
257 case MVT::i64: Opc = X86::MOV64mr; break; // Must be in x86-64 mode.
Evan Cheng0de588f2008-09-05 21:00:03 +0000258 case MVT::f32:
Chris Lattner438949a2008-10-15 05:30:52 +0000259 Opc = Subtarget->hasSSE1() ? X86::MOVSSmr : X86::ST_Fp32m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000260 break;
261 case MVT::f64:
Chris Lattner438949a2008-10-15 05:30:52 +0000262 Opc = Subtarget->hasSSE2() ? X86::MOVSDmr : X86::ST_Fp64m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000263 break;
Evan Cheng0de588f2008-09-05 21:00:03 +0000264 }
Chris Lattner438949a2008-10-15 05:30:52 +0000265
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000266 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM).addReg(Val);
Evan Cheng0de588f2008-09-05 21:00:03 +0000267 return true;
268}
269
Chris Lattner438949a2008-10-15 05:30:52 +0000270bool X86FastISel::X86FastEmitStore(MVT VT, Value *Val,
271 const X86AddressMode &AM) {
272 // Handle 'null' like i32/i64 0.
273 if (isa<ConstantPointerNull>(Val))
274 Val = Constant::getNullValue(TD.getIntPtrType());
275
276 // If this is a store of a simple constant, fold the constant into the store.
277 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
278 unsigned Opc = 0;
279 switch (VT.getSimpleVT()) {
280 default: break;
281 case MVT::i8: Opc = X86::MOV8mi; break;
282 case MVT::i16: Opc = X86::MOV16mi; break;
283 case MVT::i32: Opc = X86::MOV32mi; break;
284 case MVT::i64:
285 // Must be a 32-bit sign extended value.
286 if ((int)CI->getSExtValue() == CI->getSExtValue())
287 Opc = X86::MOV64mi32;
288 break;
289 }
290
291 if (Opc) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000292 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM)
293 .addImm(CI->getSExtValue());
Chris Lattner438949a2008-10-15 05:30:52 +0000294 return true;
295 }
296 }
297
298 unsigned ValReg = getRegForValue(Val);
299 if (ValReg == 0)
Chris Lattner438949a2008-10-15 05:30:52 +0000300 return false;
301
302 return X86FastEmitStore(VT, ValReg, AM);
303}
304
Evan Cheng24e3a902008-09-08 06:35:17 +0000305/// X86FastEmitExtend - Emit a machine instruction to extend a value Src of
306/// type SrcVT to type DstVT using the specified extension opcode Opc (e.g.
307/// ISD::SIGN_EXTEND).
308bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT,
309 unsigned Src, MVT SrcVT,
310 unsigned &ResultReg) {
Owen Andersonac34a002008-09-11 19:44:55 +0000311 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, Src);
312
313 if (RR != 0) {
314 ResultReg = RR;
315 return true;
316 } else
317 return false;
Evan Cheng24e3a902008-09-08 06:35:17 +0000318}
319
Dan Gohman0586d912008-09-10 20:11:02 +0000320/// X86SelectAddress - Attempt to fill in an address from the given value.
321///
Chris Lattner0aa43de2009-07-10 05:33:42 +0000322bool X86FastISel::X86SelectAddress(Value *V, X86AddressMode &AM) {
Duncan Sands12513882009-06-03 12:05:18 +0000323 User *U = NULL;
Dan Gohman35893082008-09-18 23:23:44 +0000324 unsigned Opcode = Instruction::UserOp1;
325 if (Instruction *I = dyn_cast<Instruction>(V)) {
326 Opcode = I->getOpcode();
327 U = I;
328 } else if (ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
329 Opcode = C->getOpcode();
330 U = C;
331 }
Dan Gohman0586d912008-09-10 20:11:02 +0000332
Dan Gohman35893082008-09-18 23:23:44 +0000333 switch (Opcode) {
334 default: break;
335 case Instruction::BitCast:
336 // Look past bitcasts.
Chris Lattner0aa43de2009-07-10 05:33:42 +0000337 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman35893082008-09-18 23:23:44 +0000338
339 case Instruction::IntToPtr:
340 // Look past no-op inttoptrs.
341 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Chris Lattner0aa43de2009-07-10 05:33:42 +0000342 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000343 break;
Dan Gohman35893082008-09-18 23:23:44 +0000344
345 case Instruction::PtrToInt:
346 // Look past no-op ptrtoints.
347 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Chris Lattner0aa43de2009-07-10 05:33:42 +0000348 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000349 break;
Dan Gohman35893082008-09-18 23:23:44 +0000350
351 case Instruction::Alloca: {
352 // Do static allocas.
353 const AllocaInst *A = cast<AllocaInst>(V);
Dan Gohman0586d912008-09-10 20:11:02 +0000354 DenseMap<const AllocaInst*, int>::iterator SI = StaticAllocaMap.find(A);
Dan Gohman97135e12008-09-26 19:15:30 +0000355 if (SI != StaticAllocaMap.end()) {
356 AM.BaseType = X86AddressMode::FrameIndexBase;
357 AM.Base.FrameIndex = SI->second;
358 return true;
359 }
360 break;
Dan Gohman35893082008-09-18 23:23:44 +0000361 }
362
363 case Instruction::Add: {
364 // Adds of constants are common and easy enough.
365 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman09aae462008-09-26 20:04:15 +0000366 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
367 // They have to fit in the 32-bit signed displacement field though.
368 if (isInt32(Disp)) {
369 AM.Disp = (uint32_t)Disp;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000370 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman09aae462008-09-26 20:04:15 +0000371 }
Dan Gohman0586d912008-09-10 20:11:02 +0000372 }
Dan Gohman35893082008-09-18 23:23:44 +0000373 break;
374 }
375
376 case Instruction::GetElementPtr: {
377 // Pattern-match simple GEPs.
Dan Gohman09aae462008-09-26 20:04:15 +0000378 uint64_t Disp = (int32_t)AM.Disp;
Dan Gohman35893082008-09-18 23:23:44 +0000379 unsigned IndexReg = AM.IndexReg;
380 unsigned Scale = AM.Scale;
381 gep_type_iterator GTI = gep_type_begin(U);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000382 // Iterate through the indices, folding what we can. Constants can be
383 // folded, and one dynamic index can be handled, if the scale is supported.
Dan Gohman35893082008-09-18 23:23:44 +0000384 for (User::op_iterator i = U->op_begin() + 1, e = U->op_end();
385 i != e; ++i, ++GTI) {
386 Value *Op = *i;
387 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
388 const StructLayout *SL = TD.getStructLayout(STy);
389 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
390 Disp += SL->getElementOffset(Idx);
391 } else {
Duncan Sands777d2302009-05-09 07:06:46 +0000392 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
Dan Gohman35893082008-09-18 23:23:44 +0000393 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
394 // Constant-offset addressing.
Dan Gohman09aae462008-09-26 20:04:15 +0000395 Disp += CI->getSExtValue() * S;
Dan Gohman35893082008-09-18 23:23:44 +0000396 } else if (IndexReg == 0 &&
Chris Lattner4c1b6062009-06-27 05:24:12 +0000397 (!AM.GV || !Subtarget->isPICStyleRIPRel()) &&
Dan Gohman35893082008-09-18 23:23:44 +0000398 (S == 1 || S == 2 || S == 4 || S == 8)) {
399 // Scaled-index addressing.
400 Scale = S;
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000401 IndexReg = getRegForGEPIndex(Op);
Dan Gohman35893082008-09-18 23:23:44 +0000402 if (IndexReg == 0)
403 return false;
404 } else
405 // Unsupported.
406 goto unsupported_gep;
407 }
408 }
Dan Gohman09aae462008-09-26 20:04:15 +0000409 // Check for displacement overflow.
410 if (!isInt32(Disp))
411 break;
Dan Gohman35893082008-09-18 23:23:44 +0000412 // Ok, the GEP indices were covered by constant-offset and scaled-index
413 // addressing. Update the address state and move on to examining the base.
414 AM.IndexReg = IndexReg;
415 AM.Scale = Scale;
Dan Gohman09aae462008-09-26 20:04:15 +0000416 AM.Disp = (uint32_t)Disp;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000417 return X86SelectAddress(U->getOperand(0), AM);
Dan Gohman35893082008-09-18 23:23:44 +0000418 unsupported_gep:
419 // Ok, the GEP indices weren't all covered.
420 break;
421 }
422 }
423
424 // Handle constant address.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000425 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000426 // Can't handle alternate code models yet.
427 if (TM.getCodeModel() != CodeModel::Default &&
428 TM.getCodeModel() != CodeModel::Small)
429 return false;
430
Dan Gohman97135e12008-09-26 19:15:30 +0000431 // RIP-relative addresses can't have additional register operands.
Chris Lattner4c1b6062009-06-27 05:24:12 +0000432 if (Subtarget->isPICStyleRIPRel() &&
Dan Gohman97135e12008-09-26 19:15:30 +0000433 (AM.Base.Reg != 0 || AM.IndexReg != 0))
434 return false;
435
Dan Gohmane9865942009-02-23 22:03:08 +0000436 // Can't handle TLS yet.
437 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
438 if (GVar->isThreadLocal())
439 return false;
440
Chris Lattnerff7727f2009-07-09 06:41:35 +0000441 // Okay, we've committed to selecting this global. Set up the basic address.
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000442 AM.GV = GV;
Chris Lattner18c59872009-06-27 04:16:01 +0000443
Chris Lattner0d786dd2009-07-10 07:48:51 +0000444 // Allow the subtarget to classify the global.
445 unsigned char GVFlags = Subtarget->ClassifyGlobalReference(GV, TM);
446
447 // If this reference is relative to the pic base, set it now.
448 if (isGlobalRelativeToPICBase(GVFlags)) {
Chris Lattner75cdf272009-07-09 06:59:17 +0000449 // FIXME: How do we know Base.Reg is free??
Dan Gohman57c3dac2008-09-30 00:58:23 +0000450 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(&MF);
Chris Lattner75cdf272009-07-09 06:59:17 +0000451 }
Chris Lattner0d786dd2009-07-10 07:48:51 +0000452
453 // Unless the ABI requires an extra load, return a direct reference to
Chris Lattnerff7727f2009-07-09 06:41:35 +0000454 // the global.
Chris Lattner0d786dd2009-07-10 07:48:51 +0000455 if (!isGlobalStubReference(GVFlags)) {
Chris Lattnerff7727f2009-07-09 06:41:35 +0000456 if (Subtarget->isPICStyleRIPRel()) {
457 // Use rip-relative addressing if we can. Above we verified that the
458 // base and index registers are unused.
459 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
460 AM.Base.Reg = X86::RIP;
Dan Gohman7e8ef602008-09-19 23:42:04 +0000461 }
Chris Lattner0d786dd2009-07-10 07:48:51 +0000462 AM.GVOpFlags = GVFlags;
Chris Lattnerff7727f2009-07-09 06:41:35 +0000463 return true;
464 }
465
Chris Lattner0d786dd2009-07-10 07:48:51 +0000466 // Ok, we need to do a load from a stub. If we've already loaded from this
467 // stub, reuse the loaded pointer, otherwise emit the load now.
Chris Lattnerff7727f2009-07-09 06:41:35 +0000468 DenseMap<const Value*, unsigned>::iterator I = LocalValueMap.find(V);
469 unsigned LoadReg;
470 if (I != LocalValueMap.end() && I->second != 0) {
471 LoadReg = I->second;
472 } else {
Chris Lattner35c28ec2009-07-01 03:27:19 +0000473 // Issue load from stub.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000474 unsigned Opc = 0;
475 const TargetRegisterClass *RC = NULL;
Dan Gohman789ce772008-09-25 23:34:02 +0000476 X86AddressMode StubAM;
477 StubAM.Base.Reg = AM.Base.Reg;
Chris Lattner75cdf272009-07-09 06:59:17 +0000478 StubAM.GV = GV;
Chris Lattner0d786dd2009-07-10 07:48:51 +0000479 StubAM.GVOpFlags = GVFlags;
480
Chris Lattner75cdf272009-07-09 06:59:17 +0000481 if (TLI.getPointerTy() == MVT::i64) {
482 Opc = X86::MOV64rm;
483 RC = X86::GR64RegisterClass;
484
Chris Lattner0d786dd2009-07-10 07:48:51 +0000485 if (Subtarget->isPICStyleRIPRel())
Chris Lattner75cdf272009-07-09 06:59:17 +0000486 StubAM.Base.Reg = X86::RIP;
Chris Lattner75cdf272009-07-09 06:59:17 +0000487 } else {
Chris Lattner35c28ec2009-07-01 03:27:19 +0000488 Opc = X86::MOV32rm;
489 RC = X86::GR32RegisterClass;
Chris Lattner35c28ec2009-07-01 03:27:19 +0000490 }
Chris Lattnerff7727f2009-07-09 06:41:35 +0000491
492 LoadReg = createResultReg(RC);
493 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), LoadReg), StubAM);
494
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000495 // Prevent loading GV stub multiple times in same MBB.
Chris Lattnerff7727f2009-07-09 06:41:35 +0000496 LocalValueMap[V] = LoadReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000497 }
Chris Lattner18c59872009-06-27 04:16:01 +0000498
Chris Lattnerff7727f2009-07-09 06:41:35 +0000499 // Now construct the final address. Note that the Disp, Scale,
500 // and Index values may already be set here.
501 AM.Base.Reg = LoadReg;
502 AM.GV = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000503 return true;
Dan Gohman0586d912008-09-10 20:11:02 +0000504 }
505
Dan Gohman97135e12008-09-26 19:15:30 +0000506 // If all else fails, try to materialize the value in a register.
Chris Lattner4c1b6062009-06-27 05:24:12 +0000507 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
Dan Gohman97135e12008-09-26 19:15:30 +0000508 if (AM.Base.Reg == 0) {
509 AM.Base.Reg = getRegForValue(V);
510 return AM.Base.Reg != 0;
511 }
512 if (AM.IndexReg == 0) {
513 assert(AM.Scale == 1 && "Scale with no index!");
514 AM.IndexReg = getRegForValue(V);
515 return AM.IndexReg != 0;
516 }
517 }
518
519 return false;
Dan Gohman0586d912008-09-10 20:11:02 +0000520}
521
Chris Lattner0aa43de2009-07-10 05:33:42 +0000522/// X86SelectCallAddress - Attempt to fill in an address from the given value.
523///
524bool X86FastISel::X86SelectCallAddress(Value *V, X86AddressMode &AM) {
525 User *U = NULL;
526 unsigned Opcode = Instruction::UserOp1;
527 if (Instruction *I = dyn_cast<Instruction>(V)) {
528 Opcode = I->getOpcode();
529 U = I;
530 } else if (ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
531 Opcode = C->getOpcode();
532 U = C;
533 }
534
535 switch (Opcode) {
536 default: break;
537 case Instruction::BitCast:
538 // Look past bitcasts.
539 return X86SelectCallAddress(U->getOperand(0), AM);
540
541 case Instruction::IntToPtr:
542 // Look past no-op inttoptrs.
543 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
544 return X86SelectCallAddress(U->getOperand(0), AM);
545 break;
546
547 case Instruction::PtrToInt:
548 // Look past no-op ptrtoints.
549 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
550 return X86SelectCallAddress(U->getOperand(0), AM);
551 break;
552 }
553
554 // Handle constant address.
555 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
556 // Can't handle alternate code models yet.
557 if (TM.getCodeModel() != CodeModel::Default &&
558 TM.getCodeModel() != CodeModel::Small)
559 return false;
560
561 // RIP-relative addresses can't have additional register operands.
562 if (Subtarget->isPICStyleRIPRel() &&
563 (AM.Base.Reg != 0 || AM.IndexReg != 0))
564 return false;
565
Chris Lattner754b7652009-07-10 05:48:03 +0000566 // Can't handle TLS or DLLImport.
Chris Lattner0aa43de2009-07-10 05:33:42 +0000567 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
Chris Lattnere6c07b52009-07-10 05:45:15 +0000568 if (GVar->isThreadLocal() || GVar->hasDLLImportLinkage())
Chris Lattner0aa43de2009-07-10 05:33:42 +0000569 return false;
570
571 // Okay, we've committed to selecting this global. Set up the basic address.
572 AM.GV = GV;
573
Chris Lattnere6c07b52009-07-10 05:45:15 +0000574 // No ABI requires an extra load for anything other than DLLImport, which
575 // we rejected above. Return a direct reference to the global.
Chris Lattnere6c07b52009-07-10 05:45:15 +0000576 if (Subtarget->isPICStyleRIPRel()) {
577 // Use rip-relative addressing if we can. Above we verified that the
578 // base and index registers are unused.
579 assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
580 AM.Base.Reg = X86::RIP;
581 } else if (Subtarget->isPICStyleStub() &&
582 TM.getRelocationModel() == Reloc::PIC_) {
583 AM.GVOpFlags = X86II::MO_PIC_BASE_OFFSET;
584 } else if (Subtarget->isPICStyleGOT()) {
585 AM.GVOpFlags = X86II::MO_GOTOFF;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000586 }
587
Chris Lattner0aa43de2009-07-10 05:33:42 +0000588 return true;
589 }
590
591 // If all else fails, try to materialize the value in a register.
592 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
593 if (AM.Base.Reg == 0) {
594 AM.Base.Reg = getRegForValue(V);
595 return AM.Base.Reg != 0;
596 }
597 if (AM.IndexReg == 0) {
598 assert(AM.Scale == 1 && "Scale with no index!");
599 AM.IndexReg = getRegForValue(V);
600 return AM.IndexReg != 0;
601 }
602 }
603
604 return false;
605}
606
607
Owen Andersona3971df2008-09-04 07:08:58 +0000608/// X86SelectStore - Select and emit code to implement store instructions.
609bool X86FastISel::X86SelectStore(Instruction* I) {
Evan Cheng24e3a902008-09-08 06:35:17 +0000610 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000611 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Owen Andersona3971df2008-09-04 07:08:58 +0000612 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000613
Dan Gohman0586d912008-09-10 20:11:02 +0000614 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000615 if (!X86SelectAddress(I->getOperand(1), AM))
Dan Gohman0586d912008-09-10 20:11:02 +0000616 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000617
Chris Lattner438949a2008-10-15 05:30:52 +0000618 return X86FastEmitStore(VT, I->getOperand(0), AM);
Owen Andersona3971df2008-09-04 07:08:58 +0000619}
620
Evan Cheng8b19e562008-09-03 06:44:39 +0000621/// X86SelectLoad - Select and emit code to implement load instructions.
622///
Dan Gohman3df24e62008-09-03 23:12:08 +0000623bool X86FastISel::X86SelectLoad(Instruction *I) {
Evan Chengf3d4efe2008-09-07 09:09:33 +0000624 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000625 if (!isTypeLegal(I->getType(), VT))
Evan Cheng8b19e562008-09-03 06:44:39 +0000626 return false;
627
Dan Gohman0586d912008-09-10 20:11:02 +0000628 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +0000629 if (!X86SelectAddress(I->getOperand(0), AM))
Dan Gohman0586d912008-09-10 20:11:02 +0000630 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000631
Evan Cheng0de588f2008-09-05 21:00:03 +0000632 unsigned ResultReg = 0;
Dan Gohman0586d912008-09-10 20:11:02 +0000633 if (X86FastEmitLoad(VT, AM, ResultReg)) {
Evan Cheng0de588f2008-09-05 21:00:03 +0000634 UpdateValueMap(I, ResultReg);
635 return true;
Evan Cheng8b19e562008-09-03 06:44:39 +0000636 }
Evan Cheng0de588f2008-09-05 21:00:03 +0000637 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000638}
639
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000640static unsigned X86ChooseCmpOpcode(MVT VT) {
Dan Gohmand98d6202008-10-02 22:15:21 +0000641 switch (VT.getSimpleVT()) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000642 default: return 0;
643 case MVT::i8: return X86::CMP8rr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000644 case MVT::i16: return X86::CMP16rr;
645 case MVT::i32: return X86::CMP32rr;
646 case MVT::i64: return X86::CMP64rr;
647 case MVT::f32: return X86::UCOMISSrr;
648 case MVT::f64: return X86::UCOMISDrr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000649 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000650}
651
Chris Lattner0e13c782008-10-15 04:13:29 +0000652/// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS
653/// of the comparison, return an opcode that works for the compare (e.g.
654/// CMP32ri) otherwise return 0.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000655static unsigned X86ChooseCmpImmediateOpcode(MVT VT, ConstantInt *RHSC) {
656 switch (VT.getSimpleVT()) {
Chris Lattner0e13c782008-10-15 04:13:29 +0000657 // Otherwise, we can't fold the immediate into this comparison.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000658 default: return 0;
659 case MVT::i8: return X86::CMP8ri;
660 case MVT::i16: return X86::CMP16ri;
661 case MVT::i32: return X86::CMP32ri;
662 case MVT::i64:
663 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
664 // field.
Chris Lattner438949a2008-10-15 05:30:52 +0000665 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
Chris Lattner45ac17f2008-10-15 04:32:45 +0000666 return X86::CMP64ri32;
667 return 0;
668 }
Chris Lattner0e13c782008-10-15 04:13:29 +0000669}
670
Chris Lattner9a08a612008-10-15 04:26:38 +0000671bool X86FastISel::X86FastEmitCompare(Value *Op0, Value *Op1, MVT VT) {
672 unsigned Op0Reg = getRegForValue(Op0);
673 if (Op0Reg == 0) return false;
674
Chris Lattnerd53886b2008-10-15 05:18:04 +0000675 // Handle 'null' like i32/i64 0.
676 if (isa<ConstantPointerNull>(Op1))
677 Op1 = Constant::getNullValue(TD.getIntPtrType());
678
Chris Lattner9a08a612008-10-15 04:26:38 +0000679 // We have two options: compare with register or immediate. If the RHS of
680 // the compare is an immediate that we can fold into this compare, use
681 // CMPri, otherwise use CMPrr.
682 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000683 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000684 BuildMI(MBB, DL, TII.get(CompareImmOpc)).addReg(Op0Reg)
Chris Lattner9a08a612008-10-15 04:26:38 +0000685 .addImm(Op1C->getSExtValue());
686 return true;
687 }
688 }
689
690 unsigned CompareOpc = X86ChooseCmpOpcode(VT);
691 if (CompareOpc == 0) return false;
692
693 unsigned Op1Reg = getRegForValue(Op1);
694 if (Op1Reg == 0) return false;
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000695 BuildMI(MBB, DL, TII.get(CompareOpc)).addReg(Op0Reg).addReg(Op1Reg);
Chris Lattner9a08a612008-10-15 04:26:38 +0000696
697 return true;
698}
699
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000700bool X86FastISel::X86SelectCmp(Instruction *I) {
701 CmpInst *CI = cast<CmpInst>(I);
702
Dan Gohman9b66d732008-09-30 00:48:39 +0000703 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000704 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Dan Gohman4f22bb02008-09-05 01:33:56 +0000705 return false;
706
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000707 unsigned ResultReg = createResultReg(&X86::GR8RegClass);
Chris Lattner54aebde2008-10-15 03:47:17 +0000708 unsigned SetCCOpc;
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000709 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000710 switch (CI->getPredicate()) {
711 case CmpInst::FCMP_OEQ: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000712 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
713 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000714
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000715 unsigned EReg = createResultReg(&X86::GR8RegClass);
716 unsigned NPReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000717 BuildMI(MBB, DL, TII.get(X86::SETEr), EReg);
718 BuildMI(MBB, DL, TII.get(X86::SETNPr), NPReg);
719 BuildMI(MBB, DL,
720 TII.get(X86::AND8rr), ResultReg).addReg(NPReg).addReg(EReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000721 UpdateValueMap(I, ResultReg);
722 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000723 }
724 case CmpInst::FCMP_UNE: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000725 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
726 return false;
727
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000728 unsigned NEReg = createResultReg(&X86::GR8RegClass);
729 unsigned PReg = createResultReg(&X86::GR8RegClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000730 BuildMI(MBB, DL, TII.get(X86::SETNEr), NEReg);
731 BuildMI(MBB, DL, TII.get(X86::SETPr), PReg);
732 BuildMI(MBB, DL, TII.get(X86::OR8rr), ResultReg).addReg(PReg).addReg(NEReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000733 UpdateValueMap(I, ResultReg);
734 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000735 }
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000736 case CmpInst::FCMP_OGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
737 case CmpInst::FCMP_OGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
738 case CmpInst::FCMP_OLT: SwapArgs = true; SetCCOpc = X86::SETAr; break;
739 case CmpInst::FCMP_OLE: SwapArgs = true; SetCCOpc = X86::SETAEr; break;
740 case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
741 case CmpInst::FCMP_ORD: SwapArgs = false; SetCCOpc = X86::SETNPr; break;
742 case CmpInst::FCMP_UNO: SwapArgs = false; SetCCOpc = X86::SETPr; break;
743 case CmpInst::FCMP_UEQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
744 case CmpInst::FCMP_UGT: SwapArgs = true; SetCCOpc = X86::SETBr; break;
745 case CmpInst::FCMP_UGE: SwapArgs = true; SetCCOpc = X86::SETBEr; break;
746 case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
747 case CmpInst::FCMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
748
749 case CmpInst::ICMP_EQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
750 case CmpInst::ICMP_NE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
751 case CmpInst::ICMP_UGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
752 case CmpInst::ICMP_UGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
753 case CmpInst::ICMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
754 case CmpInst::ICMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
755 case CmpInst::ICMP_SGT: SwapArgs = false; SetCCOpc = X86::SETGr; break;
756 case CmpInst::ICMP_SGE: SwapArgs = false; SetCCOpc = X86::SETGEr; break;
757 case CmpInst::ICMP_SLT: SwapArgs = false; SetCCOpc = X86::SETLr; break;
758 case CmpInst::ICMP_SLE: SwapArgs = false; SetCCOpc = X86::SETLEr; break;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000759 default:
760 return false;
761 }
762
Chris Lattner9a08a612008-10-15 04:26:38 +0000763 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000764 if (SwapArgs)
Chris Lattner9a08a612008-10-15 04:26:38 +0000765 std::swap(Op0, Op1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000766
Chris Lattner9a08a612008-10-15 04:26:38 +0000767 // Emit a compare of Op0/Op1.
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000768 if (!X86FastEmitCompare(Op0, Op1, VT))
769 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000770
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000771 BuildMI(MBB, DL, TII.get(SetCCOpc), ResultReg);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000772 UpdateValueMap(I, ResultReg);
773 return true;
774}
Evan Cheng8b19e562008-09-03 06:44:39 +0000775
Dan Gohmand89ae992008-09-05 01:06:14 +0000776bool X86FastISel::X86SelectZExt(Instruction *I) {
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000777 // Handle zero-extension from i1 to i8, which is common.
Dan Gohmand89ae992008-09-05 01:06:14 +0000778 if (I->getType() == Type::Int8Ty &&
779 I->getOperand(0)->getType() == Type::Int1Ty) {
780 unsigned ResultReg = getRegForValue(I->getOperand(0));
Dan Gohmanf52550b2008-09-05 01:15:35 +0000781 if (ResultReg == 0) return false;
Dan Gohman14ea1ec2009-03-13 20:42:20 +0000782 // Set the high bits to zero.
783 ResultReg = FastEmitZExtFromI1(MVT::i8, ResultReg);
784 if (ResultReg == 0) return false;
Dan Gohmand89ae992008-09-05 01:06:14 +0000785 UpdateValueMap(I, ResultReg);
786 return true;
787 }
788
789 return false;
790}
791
Chris Lattner9a08a612008-10-15 04:26:38 +0000792
Dan Gohmand89ae992008-09-05 01:06:14 +0000793bool X86FastISel::X86SelectBranch(Instruction *I) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000794 // Unconditional branches are selected by tablegen-generated code.
Dan Gohmand98d6202008-10-02 22:15:21 +0000795 // Handle a conditional branch.
796 BranchInst *BI = cast<BranchInst>(I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000797 MachineBasicBlock *TrueMBB = MBBMap[BI->getSuccessor(0)];
798 MachineBasicBlock *FalseMBB = MBBMap[BI->getSuccessor(1)];
799
Dan Gohmand98d6202008-10-02 22:15:21 +0000800 // Fold the common case of a conditional branch with a comparison.
801 if (CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
802 if (CI->hasOneUse()) {
803 MVT VT = TLI.getValueType(CI->getOperand(0)->getType());
Dan Gohmand89ae992008-09-05 01:06:14 +0000804
Dan Gohmand98d6202008-10-02 22:15:21 +0000805 // Try to take advantage of fallthrough opportunities.
806 CmpInst::Predicate Predicate = CI->getPredicate();
807 if (MBB->isLayoutSuccessor(TrueMBB)) {
808 std::swap(TrueMBB, FalseMBB);
809 Predicate = CmpInst::getInversePredicate(Predicate);
810 }
811
Chris Lattner871d2462008-10-15 03:58:05 +0000812 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
813 unsigned BranchOpc; // Opcode to jump on, e.g. "X86::JA"
814
Dan Gohmand98d6202008-10-02 22:15:21 +0000815 switch (Predicate) {
Dan Gohman7b66e042008-10-21 18:24:51 +0000816 case CmpInst::FCMP_OEQ:
817 std::swap(TrueMBB, FalseMBB);
818 Predicate = CmpInst::FCMP_UNE;
819 // FALL THROUGH
820 case CmpInst::FCMP_UNE: SwapArgs = false; BranchOpc = X86::JNE; break;
Chris Lattner871d2462008-10-15 03:58:05 +0000821 case CmpInst::FCMP_OGT: SwapArgs = false; BranchOpc = X86::JA; break;
822 case CmpInst::FCMP_OGE: SwapArgs = false; BranchOpc = X86::JAE; break;
823 case CmpInst::FCMP_OLT: SwapArgs = true; BranchOpc = X86::JA; break;
824 case CmpInst::FCMP_OLE: SwapArgs = true; BranchOpc = X86::JAE; break;
825 case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE; break;
826 case CmpInst::FCMP_ORD: SwapArgs = false; BranchOpc = X86::JNP; break;
827 case CmpInst::FCMP_UNO: SwapArgs = false; BranchOpc = X86::JP; break;
828 case CmpInst::FCMP_UEQ: SwapArgs = false; BranchOpc = X86::JE; break;
829 case CmpInst::FCMP_UGT: SwapArgs = true; BranchOpc = X86::JB; break;
830 case CmpInst::FCMP_UGE: SwapArgs = true; BranchOpc = X86::JBE; break;
831 case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break;
832 case CmpInst::FCMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break;
Chris Lattner9a08a612008-10-15 04:26:38 +0000833
Chris Lattner871d2462008-10-15 03:58:05 +0000834 case CmpInst::ICMP_EQ: SwapArgs = false; BranchOpc = X86::JE; break;
835 case CmpInst::ICMP_NE: SwapArgs = false; BranchOpc = X86::JNE; break;
836 case CmpInst::ICMP_UGT: SwapArgs = false; BranchOpc = X86::JA; break;
837 case CmpInst::ICMP_UGE: SwapArgs = false; BranchOpc = X86::JAE; break;
838 case CmpInst::ICMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break;
839 case CmpInst::ICMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break;
840 case CmpInst::ICMP_SGT: SwapArgs = false; BranchOpc = X86::JG; break;
841 case CmpInst::ICMP_SGE: SwapArgs = false; BranchOpc = X86::JGE; break;
842 case CmpInst::ICMP_SLT: SwapArgs = false; BranchOpc = X86::JL; break;
843 case CmpInst::ICMP_SLE: SwapArgs = false; BranchOpc = X86::JLE; break;
Dan Gohmand98d6202008-10-02 22:15:21 +0000844 default:
845 return false;
846 }
Chris Lattner54aebde2008-10-15 03:47:17 +0000847
Chris Lattner709d8292008-10-15 04:02:26 +0000848 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
849 if (SwapArgs)
850 std::swap(Op0, Op1);
851
Chris Lattner9a08a612008-10-15 04:26:38 +0000852 // Emit a compare of the LHS and RHS, setting the flags.
853 if (!X86FastEmitCompare(Op0, Op1, VT))
854 return false;
Chris Lattner0e13c782008-10-15 04:13:29 +0000855
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000856 BuildMI(MBB, DL, TII.get(BranchOpc)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000857
858 if (Predicate == CmpInst::FCMP_UNE) {
859 // X86 requires a second branch to handle UNE (and OEQ,
860 // which is mapped to UNE above).
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000861 BuildMI(MBB, DL, TII.get(X86::JP)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000862 }
863
Dan Gohmand98d6202008-10-02 22:15:21 +0000864 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000865 MBB->addSuccessor(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000866 return true;
867 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000868 } else if (ExtractValueInst *EI =
869 dyn_cast<ExtractValueInst>(BI->getCondition())) {
870 // Check to see if the branch instruction is from an "arithmetic with
871 // overflow" intrinsic. The main way these intrinsics are used is:
872 //
873 // %t = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2)
874 // %sum = extractvalue { i32, i1 } %t, 0
875 // %obit = extractvalue { i32, i1 } %t, 1
876 // br i1 %obit, label %overflow, label %normal
877 //
Dan Gohman653456c2009-01-07 00:15:08 +0000878 // The %sum and %obit are converted in an ADD and a SETO/SETB before
Bill Wendling30a64a72008-12-09 23:19:12 +0000879 // reaching the branch. Therefore, we search backwards through the MBB
Dan Gohman653456c2009-01-07 00:15:08 +0000880 // looking for the SETO/SETB instruction. If an instruction modifies the
881 // EFLAGS register before we reach the SETO/SETB instruction, then we can't
882 // convert the branch into a JO/JB instruction.
Chris Lattnera9a42252009-04-12 07:36:01 +0000883 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(EI->getAggregateOperand())){
884 if (CI->getIntrinsicID() == Intrinsic::sadd_with_overflow ||
885 CI->getIntrinsicID() == Intrinsic::uadd_with_overflow) {
886 const MachineInstr *SetMI = 0;
887 unsigned Reg = lookUpRegForValue(EI);
Bill Wendling30a64a72008-12-09 23:19:12 +0000888
Chris Lattnera9a42252009-04-12 07:36:01 +0000889 for (MachineBasicBlock::const_reverse_iterator
890 RI = MBB->rbegin(), RE = MBB->rend(); RI != RE; ++RI) {
891 const MachineInstr &MI = *RI;
Bill Wendling30a64a72008-12-09 23:19:12 +0000892
Chris Lattnera9a42252009-04-12 07:36:01 +0000893 if (MI.modifiesRegister(Reg)) {
894 unsigned Src, Dst, SrcSR, DstSR;
Bill Wendling30a64a72008-12-09 23:19:12 +0000895
Chris Lattnera9a42252009-04-12 07:36:01 +0000896 if (getInstrInfo()->isMoveInstr(MI, Src, Dst, SrcSR, DstSR)) {
897 Reg = Src;
898 continue;
Bill Wendling9a901322008-12-10 19:44:24 +0000899 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000900
Chris Lattnera9a42252009-04-12 07:36:01 +0000901 SetMI = &MI;
902 break;
Bill Wendling30a64a72008-12-09 23:19:12 +0000903 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000904
Chris Lattnera9a42252009-04-12 07:36:01 +0000905 const TargetInstrDesc &TID = MI.getDesc();
906 if (TID.hasUnmodeledSideEffects() ||
907 TID.hasImplicitDefOfPhysReg(X86::EFLAGS))
908 break;
Bill Wendling9a901322008-12-10 19:44:24 +0000909 }
Chris Lattnera9a42252009-04-12 07:36:01 +0000910
911 if (SetMI) {
912 unsigned OpCode = SetMI->getOpcode();
913
914 if (OpCode == X86::SETOr || OpCode == X86::SETBr) {
Chris Lattner8d57b772009-04-12 07:51:14 +0000915 BuildMI(MBB, DL, TII.get(OpCode == X86::SETOr ? X86::JO : X86::JB))
916 .addMBB(TrueMBB);
Chris Lattnera9a42252009-04-12 07:36:01 +0000917 FastEmitBranch(FalseMBB);
918 MBB->addSuccessor(TrueMBB);
919 return true;
920 }
Bill Wendling9a901322008-12-10 19:44:24 +0000921 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000922 }
923 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000924 }
925
926 // Otherwise do a clumsy setcc and re-test it.
927 unsigned OpReg = getRegForValue(BI->getCondition());
928 if (OpReg == 0) return false;
929
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000930 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(OpReg).addReg(OpReg);
931 BuildMI(MBB, DL, TII.get(X86::JNE)).addMBB(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000932 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000933 MBB->addSuccessor(TrueMBB);
Dan Gohmand89ae992008-09-05 01:06:14 +0000934 return true;
935}
936
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000937bool X86FastISel::X86SelectShift(Instruction *I) {
Chris Lattner743922e2008-09-21 21:44:29 +0000938 unsigned CReg = 0, OpReg = 0, OpImm = 0;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000939 const TargetRegisterClass *RC = NULL;
940 if (I->getType() == Type::Int8Ty) {
941 CReg = X86::CL;
942 RC = &X86::GR8RegClass;
943 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000944 case Instruction::LShr: OpReg = X86::SHR8rCL; OpImm = X86::SHR8ri; break;
945 case Instruction::AShr: OpReg = X86::SAR8rCL; OpImm = X86::SAR8ri; break;
946 case Instruction::Shl: OpReg = X86::SHL8rCL; OpImm = X86::SHL8ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000947 default: return false;
948 }
949 } else if (I->getType() == Type::Int16Ty) {
950 CReg = X86::CX;
951 RC = &X86::GR16RegClass;
952 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000953 case Instruction::LShr: OpReg = X86::SHR16rCL; OpImm = X86::SHR16ri; break;
954 case Instruction::AShr: OpReg = X86::SAR16rCL; OpImm = X86::SAR16ri; break;
955 case Instruction::Shl: OpReg = X86::SHL16rCL; OpImm = X86::SHL16ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000956 default: return false;
957 }
958 } else if (I->getType() == Type::Int32Ty) {
959 CReg = X86::ECX;
960 RC = &X86::GR32RegClass;
961 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000962 case Instruction::LShr: OpReg = X86::SHR32rCL; OpImm = X86::SHR32ri; break;
963 case Instruction::AShr: OpReg = X86::SAR32rCL; OpImm = X86::SAR32ri; break;
964 case Instruction::Shl: OpReg = X86::SHL32rCL; OpImm = X86::SHL32ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000965 default: return false;
966 }
967 } else if (I->getType() == Type::Int64Ty) {
968 CReg = X86::RCX;
969 RC = &X86::GR64RegClass;
970 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000971 case Instruction::LShr: OpReg = X86::SHR64rCL; OpImm = X86::SHR64ri; break;
972 case Instruction::AShr: OpReg = X86::SAR64rCL; OpImm = X86::SAR64ri; break;
973 case Instruction::Shl: OpReg = X86::SHL64rCL; OpImm = X86::SHL64ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000974 default: return false;
975 }
976 } else {
977 return false;
978 }
979
Chris Lattner160f6cc2008-10-15 05:07:36 +0000980 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
981 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Dan Gohmanf58cb6d2008-09-05 21:27:34 +0000982 return false;
983
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000984 unsigned Op0Reg = getRegForValue(I->getOperand(0));
985 if (Op0Reg == 0) return false;
Chris Lattner743922e2008-09-21 21:44:29 +0000986
987 // Fold immediate in shl(x,3).
988 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
989 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000990 BuildMI(MBB, DL, TII.get(OpImm),
Dan Gohmanb12b1a22008-12-20 17:19:40 +0000991 ResultReg).addReg(Op0Reg).addImm(CI->getZExtValue() & 0xff);
Chris Lattner743922e2008-09-21 21:44:29 +0000992 UpdateValueMap(I, ResultReg);
993 return true;
994 }
995
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000996 unsigned Op1Reg = getRegForValue(I->getOperand(1));
997 if (Op1Reg == 0) return false;
998 TII.copyRegToReg(*MBB, MBB->end(), CReg, Op1Reg, RC, RC);
Dan Gohman145b8282008-10-07 21:50:36 +0000999
1000 // The shift instruction uses X86::CL. If we defined a super-register
1001 // of X86::CL, emit an EXTRACT_SUBREG to precisely describe what
1002 // we're doing here.
1003 if (CReg != X86::CL)
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001004 BuildMI(MBB, DL, TII.get(TargetInstrInfo::EXTRACT_SUBREG), X86::CL)
Dan Gohman145b8282008-10-07 21:50:36 +00001005 .addReg(CReg).addImm(X86::SUBREG_8BIT);
1006
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001007 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001008 BuildMI(MBB, DL, TII.get(OpReg), ResultReg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001009 UpdateValueMap(I, ResultReg);
1010 return true;
1011}
1012
1013bool X86FastISel::X86SelectSelect(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +00001014 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
1015 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
1016 return false;
1017
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001018 unsigned Opc = 0;
1019 const TargetRegisterClass *RC = NULL;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001020 if (VT.getSimpleVT() == MVT::i16) {
Dan Gohman31d26912008-09-05 21:13:04 +00001021 Opc = X86::CMOVE16rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001022 RC = &X86::GR16RegClass;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001023 } else if (VT.getSimpleVT() == MVT::i32) {
Dan Gohman31d26912008-09-05 21:13:04 +00001024 Opc = X86::CMOVE32rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001025 RC = &X86::GR32RegClass;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001026 } else if (VT.getSimpleVT() == MVT::i64) {
Dan Gohman31d26912008-09-05 21:13:04 +00001027 Opc = X86::CMOVE64rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001028 RC = &X86::GR64RegClass;
1029 } else {
1030 return false;
1031 }
1032
1033 unsigned Op0Reg = getRegForValue(I->getOperand(0));
1034 if (Op0Reg == 0) return false;
1035 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1036 if (Op1Reg == 0) return false;
1037 unsigned Op2Reg = getRegForValue(I->getOperand(2));
1038 if (Op2Reg == 0) return false;
1039
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001040 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(Op0Reg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001041 unsigned ResultReg = createResultReg(RC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001042 BuildMI(MBB, DL, TII.get(Opc), ResultReg).addReg(Op1Reg).addReg(Op2Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001043 UpdateValueMap(I, ResultReg);
1044 return true;
1045}
1046
Dan Gohman78efce62008-09-10 21:02:08 +00001047bool X86FastISel::X86SelectFPExt(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +00001048 // fpext from float to double.
1049 if (Subtarget->hasSSE2() && I->getType() == Type::DoubleTy) {
1050 Value *V = I->getOperand(0);
1051 if (V->getType() == Type::FloatTy) {
1052 unsigned OpReg = getRegForValue(V);
1053 if (OpReg == 0) return false;
1054 unsigned ResultReg = createResultReg(X86::FR64RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001055 BuildMI(MBB, DL, TII.get(X86::CVTSS2SDrr), ResultReg).addReg(OpReg);
Chris Lattner160f6cc2008-10-15 05:07:36 +00001056 UpdateValueMap(I, ResultReg);
1057 return true;
Dan Gohman78efce62008-09-10 21:02:08 +00001058 }
1059 }
1060
1061 return false;
1062}
1063
1064bool X86FastISel::X86SelectFPTrunc(Instruction *I) {
1065 if (Subtarget->hasSSE2()) {
1066 if (I->getType() == Type::FloatTy) {
1067 Value *V = I->getOperand(0);
1068 if (V->getType() == Type::DoubleTy) {
1069 unsigned OpReg = getRegForValue(V);
1070 if (OpReg == 0) return false;
1071 unsigned ResultReg = createResultReg(X86::FR32RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001072 BuildMI(MBB, DL, TII.get(X86::CVTSD2SSrr), ResultReg).addReg(OpReg);
Dan Gohman78efce62008-09-10 21:02:08 +00001073 UpdateValueMap(I, ResultReg);
1074 return true;
1075 }
1076 }
1077 }
1078
1079 return false;
1080}
1081
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001082bool X86FastISel::X86SelectTrunc(Instruction *I) {
1083 if (Subtarget->is64Bit())
1084 // All other cases should be handled by the tblgen generated code.
1085 return false;
1086 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1087 MVT DstVT = TLI.getValueType(I->getType());
Chris Lattner44ceb8a2009-03-13 16:36:42 +00001088
1089 // This code only handles truncation to byte right now.
1090 if (DstVT != MVT::i8 && DstVT != MVT::i1)
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001091 // All other cases should be handled by the tblgen generated code.
1092 return false;
1093 if (SrcVT != MVT::i16 && SrcVT != MVT::i32)
1094 // All other cases should be handled by the tblgen generated code.
1095 return false;
1096
1097 unsigned InputReg = getRegForValue(I->getOperand(0));
1098 if (!InputReg)
1099 // Unhandled operand. Halt "fast" selection and bail.
1100 return false;
1101
Dan Gohman62417622009-04-27 16:33:14 +00001102 // First issue a copy to GR16_ABCD or GR32_ABCD.
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001103 unsigned CopyOpc = (SrcVT == MVT::i16) ? X86::MOV16rr : X86::MOV32rr;
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001104 const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16)
Dan Gohman62417622009-04-27 16:33:14 +00001105 ? X86::GR16_ABCDRegisterClass : X86::GR32_ABCDRegisterClass;
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001106 unsigned CopyReg = createResultReg(CopyRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001107 BuildMI(MBB, DL, TII.get(CopyOpc), CopyReg).addReg(InputReg);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001108
1109 // Then issue an extract_subreg.
Chris Lattner44ceb8a2009-03-13 16:36:42 +00001110 unsigned ResultReg = FastEmitInst_extractsubreg(MVT::i8,
Evan Cheng536ab132009-01-22 09:10:11 +00001111 CopyReg, X86::SUBREG_8BIT);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001112 if (!ResultReg)
1113 return false;
1114
1115 UpdateValueMap(I, ResultReg);
1116 return true;
1117}
1118
Bill Wendling52370a12008-12-09 02:42:50 +00001119bool X86FastISel::X86SelectExtractValue(Instruction *I) {
1120 ExtractValueInst *EI = cast<ExtractValueInst>(I);
1121 Value *Agg = EI->getAggregateOperand();
1122
Chris Lattnera9a42252009-04-12 07:36:01 +00001123 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Agg)) {
1124 switch (CI->getIntrinsicID()) {
1125 default: break;
1126 case Intrinsic::sadd_with_overflow:
1127 case Intrinsic::uadd_with_overflow:
1128 // Cheat a little. We know that the registers for "add" and "seto" are
1129 // allocated sequentially. However, we only keep track of the register
1130 // for "add" in the value map. Use extractvalue's index to get the
1131 // correct register for "seto".
1132 UpdateValueMap(I, lookUpRegForValue(Agg) + *EI->idx_begin());
1133 return true;
Bill Wendling52370a12008-12-09 02:42:50 +00001134 }
1135 }
1136
1137 return false;
1138}
1139
Chris Lattnera9a42252009-04-12 07:36:01 +00001140bool X86FastISel::X86VisitIntrinsicCall(IntrinsicInst &I) {
Bill Wendling52370a12008-12-09 02:42:50 +00001141 // FIXME: Handle more intrinsics.
Chris Lattnera9a42252009-04-12 07:36:01 +00001142 switch (I.getIntrinsicID()) {
Bill Wendling52370a12008-12-09 02:42:50 +00001143 default: return false;
1144 case Intrinsic::sadd_with_overflow:
1145 case Intrinsic::uadd_with_overflow: {
Bill Wendlingc065b3f2008-12-09 07:55:31 +00001146 // Replace "add with overflow" intrinsics with an "add" instruction followed
1147 // by a seto/setc instruction. Later on, when the "extractvalue"
1148 // instructions are encountered, we use the fact that two registers were
1149 // created sequentially to get the correct registers for the "sum" and the
1150 // "overflow bit".
Bill Wendling52370a12008-12-09 02:42:50 +00001151 const Function *Callee = I.getCalledFunction();
1152 const Type *RetTy =
1153 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(unsigned(0));
1154
Chris Lattnera9a42252009-04-12 07:36:01 +00001155 MVT VT;
Bill Wendling52370a12008-12-09 02:42:50 +00001156 if (!isTypeLegal(RetTy, VT))
1157 return false;
1158
1159 Value *Op1 = I.getOperand(1);
1160 Value *Op2 = I.getOperand(2);
1161 unsigned Reg1 = getRegForValue(Op1);
1162 unsigned Reg2 = getRegForValue(Op2);
1163
1164 if (Reg1 == 0 || Reg2 == 0)
1165 // FIXME: Handle values *not* in registers.
1166 return false;
1167
1168 unsigned OpC = 0;
Bill Wendling52370a12008-12-09 02:42:50 +00001169 if (VT == MVT::i32)
1170 OpC = X86::ADD32rr;
1171 else if (VT == MVT::i64)
1172 OpC = X86::ADD64rr;
1173 else
1174 return false;
1175
1176 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001177 BuildMI(MBB, DL, TII.get(OpC), ResultReg).addReg(Reg1).addReg(Reg2);
Chris Lattner8d57b772009-04-12 07:51:14 +00001178 unsigned DestReg1 = UpdateValueMap(&I, ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001179
Chris Lattner8d57b772009-04-12 07:51:14 +00001180 // If the add with overflow is an intra-block value then we just want to
1181 // create temporaries for it like normal. If it is a cross-block value then
1182 // UpdateValueMap will return the cross-block register used. Since we
1183 // *really* want the value to be live in the register pair known by
1184 // UpdateValueMap, we have to use DestReg1+1 as the destination register in
1185 // the cross block case. In the non-cross-block case, we should just make
1186 // another register for the value.
1187 if (DestReg1 != ResultReg)
1188 ResultReg = DestReg1+1;
1189 else
1190 ResultReg = createResultReg(TLI.getRegClassFor(MVT::i8));
1191
Chris Lattnera9a42252009-04-12 07:36:01 +00001192 unsigned Opc = X86::SETBr;
1193 if (I.getIntrinsicID() == Intrinsic::sadd_with_overflow)
1194 Opc = X86::SETOr;
1195 BuildMI(MBB, DL, TII.get(Opc), ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001196 return true;
1197 }
1198 }
1199}
1200
Evan Chengf3d4efe2008-09-07 09:09:33 +00001201bool X86FastISel::X86SelectCall(Instruction *I) {
1202 CallInst *CI = cast<CallInst>(I);
1203 Value *Callee = I->getOperand(0);
1204
1205 // Can't handle inline asm yet.
1206 if (isa<InlineAsm>(Callee))
1207 return false;
1208
Bill Wendling52370a12008-12-09 02:42:50 +00001209 // Handle intrinsic calls.
Chris Lattnera9a42252009-04-12 07:36:01 +00001210 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI))
1211 return X86VisitIntrinsicCall(*II);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001212
Evan Chengf3d4efe2008-09-07 09:09:33 +00001213 // Handle only C and fastcc calling conventions for now.
1214 CallSite CS(CI);
1215 unsigned CC = CS.getCallingConv();
1216 if (CC != CallingConv::C &&
1217 CC != CallingConv::Fast &&
1218 CC != CallingConv::X86_FastCall)
1219 return false;
1220
Dan Gohman7d04e4a2009-05-04 19:50:33 +00001221 // On X86, -tailcallopt changes the fastcc ABI. FastISel doesn't
1222 // handle this for now.
1223 if (CC == CallingConv::Fast && PerformTailCallOpt)
1224 return false;
1225
Evan Chengf3d4efe2008-09-07 09:09:33 +00001226 // Let SDISel handle vararg functions.
1227 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1228 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
1229 if (FTy->isVarArg())
1230 return false;
1231
1232 // Handle *simple* calls for now.
1233 const Type *RetTy = CS.getType();
1234 MVT RetVT;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001235 if (RetTy == Type::VoidTy)
1236 RetVT = MVT::isVoid;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001237 else if (!isTypeLegal(RetTy, RetVT, true))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001238 return false;
1239
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001240 // Materialize callee address in a register. FIXME: GV address can be
1241 // handled with a CALLpcrel32 instead.
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001242 X86AddressMode CalleeAM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001243 if (!X86SelectCallAddress(Callee, CalleeAM))
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001244 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001245 unsigned CalleeOp = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001246 GlobalValue *GV = 0;
Chris Lattner553e5712009-06-27 04:50:14 +00001247 if (CalleeAM.GV != 0) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001248 GV = CalleeAM.GV;
Chris Lattner553e5712009-06-27 04:50:14 +00001249 } else if (CalleeAM.Base.Reg != 0) {
1250 CalleeOp = CalleeAM.Base.Reg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001251 } else
1252 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001253
Evan Chengdebdea02008-09-08 17:15:42 +00001254 // Allow calls which produce i1 results.
1255 bool AndToI1 = false;
1256 if (RetVT == MVT::i1) {
1257 RetVT = MVT::i8;
1258 AndToI1 = true;
1259 }
1260
Evan Chengf3d4efe2008-09-07 09:09:33 +00001261 // Deal with call operands first.
Chris Lattner241ab472008-10-15 05:38:32 +00001262 SmallVector<Value*, 8> ArgVals;
1263 SmallVector<unsigned, 8> Args;
1264 SmallVector<MVT, 8> ArgVTs;
1265 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001266 Args.reserve(CS.arg_size());
Chris Lattner241ab472008-10-15 05:38:32 +00001267 ArgVals.reserve(CS.arg_size());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001268 ArgVTs.reserve(CS.arg_size());
1269 ArgFlags.reserve(CS.arg_size());
1270 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1271 i != e; ++i) {
1272 unsigned Arg = getRegForValue(*i);
1273 if (Arg == 0)
1274 return false;
1275 ISD::ArgFlagsTy Flags;
1276 unsigned AttrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00001277 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001278 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00001279 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001280 Flags.setZExt();
1281
1282 // FIXME: Only handle *easy* calls for now.
Devang Patel05988662008-09-25 21:00:45 +00001283 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1284 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1285 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1286 CS.paramHasAttr(AttrInd, Attribute::ByVal))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001287 return false;
1288
1289 const Type *ArgTy = (*i)->getType();
1290 MVT ArgVT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001291 if (!isTypeLegal(ArgTy, ArgVT))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001292 return false;
1293 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1294 Flags.setOrigAlign(OriginalAlignment);
1295
1296 Args.push_back(Arg);
Chris Lattner241ab472008-10-15 05:38:32 +00001297 ArgVals.push_back(*i);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001298 ArgVTs.push_back(ArgVT);
1299 ArgFlags.push_back(Flags);
1300 }
1301
1302 // Analyze operands of the call, assigning locations to each operand.
1303 SmallVector<CCValAssign, 16> ArgLocs;
Owen Andersond1474d02009-07-09 17:57:24 +00001304 CCState CCInfo(CC, false, TM, ArgLocs, I->getParent()->getContext());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001305 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC));
1306
1307 // Get a count of how many bytes are to be pushed on the stack.
1308 unsigned NumBytes = CCInfo.getNextStackOffset();
1309
1310 // Issue CALLSEQ_START
Dan Gohman6d4b0522008-10-01 18:28:06 +00001311 unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001312 BuildMI(MBB, DL, TII.get(AdjStackDown)).addImm(NumBytes);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001313
Chris Lattner438949a2008-10-15 05:30:52 +00001314 // Process argument: walk the register/memloc assignments, inserting
Evan Chengf3d4efe2008-09-07 09:09:33 +00001315 // copies / loads.
1316 SmallVector<unsigned, 4> RegArgs;
1317 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1318 CCValAssign &VA = ArgLocs[i];
1319 unsigned Arg = Args[VA.getValNo()];
1320 MVT ArgVT = ArgVTs[VA.getValNo()];
1321
1322 // Promote the value if needed.
1323 switch (VA.getLocInfo()) {
1324 default: assert(0 && "Unknown loc info!");
1325 case CCValAssign::Full: break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001326 case CCValAssign::SExt: {
1327 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1328 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001329 assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001330 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001331 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001332 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001333 }
1334 case CCValAssign::ZExt: {
1335 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1336 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001337 assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001338 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001339 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001340 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001341 }
1342 case CCValAssign::AExt: {
1343 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1344 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001345 if (!Emitted)
1346 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
Chris Lattner160f6cc2008-10-15 05:07:36 +00001347 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001348 if (!Emitted)
1349 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1350 Arg, ArgVT, Arg);
1351
Chris Lattnera33649e2008-12-19 17:03:38 +00001352 assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted;
Evan Cheng24e3a902008-09-08 06:35:17 +00001353 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001354 break;
1355 }
Evan Cheng24e3a902008-09-08 06:35:17 +00001356 }
Evan Chengf3d4efe2008-09-07 09:09:33 +00001357
1358 if (VA.isRegLoc()) {
1359 TargetRegisterClass* RC = TLI.getRegClassFor(ArgVT);
1360 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), VA.getLocReg(),
1361 Arg, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001362 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001363 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001364 RegArgs.push_back(VA.getLocReg());
1365 } else {
1366 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman0586d912008-09-10 20:11:02 +00001367 X86AddressMode AM;
1368 AM.Base.Reg = StackPtr;
1369 AM.Disp = LocMemOffset;
Chris Lattner241ab472008-10-15 05:38:32 +00001370 Value *ArgVal = ArgVals[VA.getValNo()];
1371
1372 // If this is a really simple value, emit this with the Value* version of
1373 // X86FastEmitStore. If it isn't simple, we don't want to do this, as it
1374 // can cause us to reevaluate the argument.
1375 if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal))
1376 X86FastEmitStore(ArgVT, ArgVal, AM);
1377 else
1378 X86FastEmitStore(ArgVT, Arg, AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001379 }
1380 }
1381
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001382 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1383 // GOT pointer.
Chris Lattner15a380a2009-07-09 04:39:06 +00001384 if (Subtarget->isPICStyleGOT()) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001385 TargetRegisterClass *RC = X86::GR32RegisterClass;
Dan Gohman57c3dac2008-09-30 00:58:23 +00001386 unsigned Base = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001387 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), X86::EBX, Base, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001388 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001389 Emitted = true;
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001390 }
Chris Lattner51e8eab2009-07-09 06:34:26 +00001391
Evan Chengf3d4efe2008-09-07 09:09:33 +00001392 // Issue the call.
Chris Lattner51e8eab2009-07-09 06:34:26 +00001393 MachineInstrBuilder MIB;
1394 if (CalleeOp) {
1395 // Register-indirect call.
1396 unsigned CallOpc = Subtarget->is64Bit() ? X86::CALL64r : X86::CALL32r;
1397 MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addReg(CalleeOp);
1398
1399 } else {
1400 // Direct call.
1401 assert(GV && "Not a direct call");
1402 unsigned CallOpc =
1403 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
1404
1405 // See if we need any target-specific flags on the GV operand.
1406 unsigned char OpFlags = 0;
1407
1408 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
1409 // external symbols most go through the PLT in PIC mode. If the symbol
1410 // has hidden or protected visibility, or if it is static or local, then
1411 // we don't need to use the PLT - we can directly call it.
1412 if (Subtarget->isTargetELF() &&
1413 TM.getRelocationModel() == Reloc::PIC_ &&
1414 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
1415 OpFlags = X86II::MO_PLT;
1416 } else if (Subtarget->isPICStyleStub() &&
1417 (GV->isDeclaration() || GV->isWeakForLinker()) &&
1418 Subtarget->getDarwinVers() < 9) {
1419 // PC-relative references to external symbols should go through $stub,
1420 // unless we're building with the leopard linker or later, which
1421 // automatically synthesizes these stubs.
1422 OpFlags = X86II::MO_DARWIN_STUB;
1423 }
1424
1425
1426 MIB = BuildMI(MBB, DL, TII.get(CallOpc)).addGlobalAddress(GV, 0, OpFlags);
1427 }
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001428
1429 // Add an implicit use GOT pointer in EBX.
Chris Lattner15a380a2009-07-09 04:39:06 +00001430 if (Subtarget->isPICStyleGOT())
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001431 MIB.addReg(X86::EBX);
1432
Evan Chengf3d4efe2008-09-07 09:09:33 +00001433 // Add implicit physical register uses to the call.
Dan Gohman8c3f8b62008-10-07 22:10:33 +00001434 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1435 MIB.addReg(RegArgs[i]);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001436
1437 // Issue CALLSEQ_END
Dan Gohman6d4b0522008-10-01 18:28:06 +00001438 unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode();
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001439 BuildMI(MBB, DL, TII.get(AdjStackUp)).addImm(NumBytes).addImm(0);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001440
1441 // Now handle call return value (if any).
Evan Chengf3d4efe2008-09-07 09:09:33 +00001442 if (RetVT.getSimpleVT() != MVT::isVoid) {
1443 SmallVector<CCValAssign, 16> RVLocs;
Owen Andersond1474d02009-07-09 17:57:24 +00001444 CCState CCInfo(CC, false, TM, RVLocs, I->getParent()->getContext());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001445 CCInfo.AnalyzeCallResult(RetVT, RetCC_X86);
1446
1447 // Copy all of the result registers out of their specified physreg.
1448 assert(RVLocs.size() == 1 && "Can't handle multi-value calls!");
1449 MVT CopyVT = RVLocs[0].getValVT();
1450 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
1451 TargetRegisterClass *SrcRC = DstRC;
1452
1453 // If this is a call to a function that returns an fp value on the x87 fp
1454 // stack, but where we prefer to use the value in xmm registers, copy it
1455 // out as F80 and use a truncate to move it from fp stack reg to xmm reg.
1456 if ((RVLocs[0].getLocReg() == X86::ST0 ||
1457 RVLocs[0].getLocReg() == X86::ST1) &&
1458 isScalarFPTypeInSSEReg(RVLocs[0].getValVT())) {
1459 CopyVT = MVT::f80;
1460 SrcRC = X86::RSTRegisterClass;
1461 DstRC = X86::RFP80RegisterClass;
1462 }
1463
1464 unsigned ResultReg = createResultReg(DstRC);
1465 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
1466 RVLocs[0].getLocReg(), DstRC, SrcRC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001467 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001468 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001469 if (CopyVT != RVLocs[0].getValVT()) {
1470 // Round the F80 the right size, which also moves to the appropriate xmm
1471 // register. This is accomplished by storing the F80 value in memory and
1472 // then loading it back. Ewww...
1473 MVT ResVT = RVLocs[0].getValVT();
1474 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
1475 unsigned MemSize = ResVT.getSizeInBits()/8;
Dan Gohman0586d912008-09-10 20:11:02 +00001476 int FI = MFI.CreateStackObject(MemSize, MemSize);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001477 addFrameReference(BuildMI(MBB, DL, TII.get(Opc)), FI).addReg(ResultReg);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001478 DstRC = ResVT == MVT::f32
1479 ? X86::FR32RegisterClass : X86::FR64RegisterClass;
1480 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
1481 ResultReg = createResultReg(DstRC);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001482 addFrameReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), FI);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001483 }
1484
Evan Chengdebdea02008-09-08 17:15:42 +00001485 if (AndToI1) {
1486 // Mask out all but lowest bit for some call which produces an i1.
1487 unsigned AndResult = createResultReg(X86::GR8RegisterClass);
Dale Johannesen8d13f8f2009-02-13 02:33:27 +00001488 BuildMI(MBB, DL,
1489 TII.get(X86::AND8ri), AndResult).addReg(ResultReg).addImm(1);
Evan Chengdebdea02008-09-08 17:15:42 +00001490 ResultReg = AndResult;
1491 }
1492
Evan Chengf3d4efe2008-09-07 09:09:33 +00001493 UpdateValueMap(I, ResultReg);
1494 }
1495
1496 return true;
1497}
1498
1499
Dan Gohman99b21822008-08-28 23:21:34 +00001500bool
Dan Gohman3df24e62008-09-03 23:12:08 +00001501X86FastISel::TargetSelectInstruction(Instruction *I) {
Dan Gohman99b21822008-08-28 23:21:34 +00001502 switch (I->getOpcode()) {
1503 default: break;
Evan Cheng8b19e562008-09-03 06:44:39 +00001504 case Instruction::Load:
Dan Gohman3df24e62008-09-03 23:12:08 +00001505 return X86SelectLoad(I);
Owen Anderson79924eb2008-09-04 16:48:33 +00001506 case Instruction::Store:
1507 return X86SelectStore(I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +00001508 case Instruction::ICmp:
1509 case Instruction::FCmp:
1510 return X86SelectCmp(I);
Dan Gohmand89ae992008-09-05 01:06:14 +00001511 case Instruction::ZExt:
1512 return X86SelectZExt(I);
1513 case Instruction::Br:
1514 return X86SelectBranch(I);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001515 case Instruction::Call:
1516 return X86SelectCall(I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001517 case Instruction::LShr:
1518 case Instruction::AShr:
1519 case Instruction::Shl:
1520 return X86SelectShift(I);
1521 case Instruction::Select:
1522 return X86SelectSelect(I);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001523 case Instruction::Trunc:
1524 return X86SelectTrunc(I);
Dan Gohman78efce62008-09-10 21:02:08 +00001525 case Instruction::FPExt:
1526 return X86SelectFPExt(I);
1527 case Instruction::FPTrunc:
1528 return X86SelectFPTrunc(I);
Bill Wendling52370a12008-12-09 02:42:50 +00001529 case Instruction::ExtractValue:
1530 return X86SelectExtractValue(I);
Dan Gohman474d3b32009-03-13 23:53:06 +00001531 case Instruction::IntToPtr: // Deliberate fall-through.
1532 case Instruction::PtrToInt: {
1533 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1534 MVT DstVT = TLI.getValueType(I->getType());
1535 if (DstVT.bitsGT(SrcVT))
1536 return X86SelectZExt(I);
1537 if (DstVT.bitsLT(SrcVT))
1538 return X86SelectTrunc(I);
1539 unsigned Reg = getRegForValue(I->getOperand(0));
1540 if (Reg == 0) return false;
1541 UpdateValueMap(I, Reg);
1542 return true;
1543 }
Dan Gohman99b21822008-08-28 23:21:34 +00001544 }
1545
1546 return false;
1547}
1548
Dan Gohman0586d912008-09-10 20:11:02 +00001549unsigned X86FastISel::TargetMaterializeConstant(Constant *C) {
Evan Cheng59fbc802008-09-09 01:26:59 +00001550 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001551 if (!isTypeLegal(C->getType(), VT))
Owen Anderson95267a12008-09-05 00:06:23 +00001552 return false;
1553
1554 // Get opcode and regclass of the output for the given load instruction.
1555 unsigned Opc = 0;
1556 const TargetRegisterClass *RC = NULL;
1557 switch (VT.getSimpleVT()) {
1558 default: return false;
1559 case MVT::i8:
1560 Opc = X86::MOV8rm;
1561 RC = X86::GR8RegisterClass;
1562 break;
1563 case MVT::i16:
1564 Opc = X86::MOV16rm;
1565 RC = X86::GR16RegisterClass;
1566 break;
1567 case MVT::i32:
1568 Opc = X86::MOV32rm;
1569 RC = X86::GR32RegisterClass;
1570 break;
1571 case MVT::i64:
1572 // Must be in x86-64 mode.
1573 Opc = X86::MOV64rm;
1574 RC = X86::GR64RegisterClass;
1575 break;
1576 case MVT::f32:
1577 if (Subtarget->hasSSE1()) {
1578 Opc = X86::MOVSSrm;
1579 RC = X86::FR32RegisterClass;
1580 } else {
1581 Opc = X86::LD_Fp32m;
1582 RC = X86::RFP32RegisterClass;
1583 }
1584 break;
1585 case MVT::f64:
1586 if (Subtarget->hasSSE2()) {
1587 Opc = X86::MOVSDrm;
1588 RC = X86::FR64RegisterClass;
1589 } else {
1590 Opc = X86::LD_Fp64m;
1591 RC = X86::RFP64RegisterClass;
1592 }
1593 break;
1594 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +00001595 // No f80 support yet.
1596 return false;
Owen Anderson95267a12008-09-05 00:06:23 +00001597 }
1598
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001599 // Materialize addresses with LEA instructions.
Owen Anderson95267a12008-09-05 00:06:23 +00001600 if (isa<GlobalValue>(C)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001601 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001602 if (X86SelectAddress(C, AM)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001603 if (TLI.getPointerTy() == MVT::i32)
1604 Opc = X86::LEA32r;
1605 else
1606 Opc = X86::LEA64r;
1607 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001608 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Owen Anderson95267a12008-09-05 00:06:23 +00001609 return ResultReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001610 }
Evan Cheng0de588f2008-09-05 21:00:03 +00001611 return 0;
Owen Anderson95267a12008-09-05 00:06:23 +00001612 }
1613
Owen Anderson3b217c62008-09-06 01:11:01 +00001614 // MachineConstantPool wants an explicit alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +00001615 unsigned Align = TD.getPrefTypeAlignment(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001616 if (Align == 0) {
1617 // Alignment of vector types. FIXME!
Duncan Sands777d2302009-05-09 07:06:46 +00001618 Align = TD.getTypeAllocSize(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001619 }
Owen Anderson95267a12008-09-05 00:06:23 +00001620
Dan Gohman5396c992008-09-30 01:21:32 +00001621 // x86-32 PIC requires a PIC base register for constant pools.
1622 unsigned PICBase = 0;
Chris Lattner89da6992009-06-27 01:31:51 +00001623 unsigned char OpFlag = 0;
Chris Lattner15a380a2009-07-09 04:39:06 +00001624 if (Subtarget->isPICStyleStub() &&
1625 TM.getRelocationModel() == Reloc::PIC_) { // Not dynamic-no-pic
1626 OpFlag = X86II::MO_PIC_BASE_OFFSET;
1627 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1628 } else if (Subtarget->isPICStyleGOT()) {
1629 OpFlag = X86II::MO_GOTOFF;
1630 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1631 } else if (Subtarget->isPICStyleRIPRel() &&
1632 TM.getCodeModel() == CodeModel::Small) {
1633 PICBase = X86::RIP;
Chris Lattner89da6992009-06-27 01:31:51 +00001634 }
Dan Gohman5396c992008-09-30 01:21:32 +00001635
1636 // Create the load from the constant pool.
Dan Gohman0586d912008-09-10 20:11:02 +00001637 unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align);
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001638 unsigned ResultReg = createResultReg(RC);
Chris Lattner89da6992009-06-27 01:31:51 +00001639 addConstantPoolReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg),
1640 MCPOffset, PICBase, OpFlag);
Dan Gohman5396c992008-09-30 01:21:32 +00001641
Owen Anderson95267a12008-09-05 00:06:23 +00001642 return ResultReg;
1643}
1644
Dan Gohman0586d912008-09-10 20:11:02 +00001645unsigned X86FastISel::TargetMaterializeAlloca(AllocaInst *C) {
Dan Gohman4e6ed5e2008-10-03 01:27:49 +00001646 // Fail on dynamic allocas. At this point, getRegForValue has already
1647 // checked its CSE maps, so if we're here trying to handle a dynamic
1648 // alloca, we're not going to succeed. X86SelectAddress has a
1649 // check for dynamic allocas, because it's called directly from
1650 // various places, but TargetMaterializeAlloca also needs a check
1651 // in order to avoid recursion between getRegForValue,
1652 // X86SelectAddrss, and TargetMaterializeAlloca.
1653 if (!StaticAllocaMap.count(C))
1654 return 0;
1655
Dan Gohman0586d912008-09-10 20:11:02 +00001656 X86AddressMode AM;
Chris Lattner0aa43de2009-07-10 05:33:42 +00001657 if (!X86SelectAddress(C, AM))
Dan Gohman0586d912008-09-10 20:11:02 +00001658 return 0;
1659 unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
1660 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
1661 unsigned ResultReg = createResultReg(RC);
Rafael Espindola094fad32009-04-08 21:14:34 +00001662 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM);
Dan Gohman0586d912008-09-10 20:11:02 +00001663 return ResultReg;
1664}
1665
Evan Chengc3f44b02008-09-03 00:03:49 +00001666namespace llvm {
Dan Gohman3df24e62008-09-03 23:12:08 +00001667 llvm::FastISel *X86::createFastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +00001668 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +00001669 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +00001670 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +00001671 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001672 DenseMap<const AllocaInst *, int> &am
1673#ifndef NDEBUG
1674 , SmallSet<Instruction*, 8> &cil
1675#endif
1676 ) {
Devang Patel83489bb2009-01-13 00:35:13 +00001677 return new X86FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001678#ifndef NDEBUG
1679 , cil
1680#endif
1681 );
Evan Chengc3f44b02008-09-03 00:03:49 +00001682 }
Dan Gohman99b21822008-08-28 23:21:34 +00001683}