blob: d85d2fbea3fcfb18d87e699ec48ae42140569147 [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"
Evan Chengf3d4efe2008-09-07 09:09:33 +000024#include "llvm/Instructions.h"
Bill Wendling52370a12008-12-09 02:42:50 +000025#include "llvm/Intrinsics.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"
Dan Gohman35893082008-09-18 23:23:44 +000031#include "llvm/Support/GetElementPtrTypeIterator.h"
Evan Chengc3f44b02008-09-03 00:03:49 +000032
33using namespace llvm;
34
35class X86FastISel : public FastISel {
36 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
37 /// make the right decision when generating code for different targets.
38 const X86Subtarget *Subtarget;
Evan Chengf3d4efe2008-09-07 09:09:33 +000039
40 /// StackPtr - Register used as the stack pointer.
41 ///
42 unsigned StackPtr;
43
44 /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87
45 /// floating point ops.
46 /// When SSE is available, use it for f32 operations.
47 /// When SSE2 is available, use it for f64 operations.
48 bool X86ScalarSSEf64;
49 bool X86ScalarSSEf32;
50
Evan Cheng8b19e562008-09-03 06:44:39 +000051public:
Dan Gohman3df24e62008-09-03 23:12:08 +000052 explicit X86FastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +000053 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +000054 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +000055 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +000056 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +000057 DenseMap<const AllocaInst *, int> &am
58#ifndef NDEBUG
59 , SmallSet<Instruction*, 8> &cil
60#endif
61 )
Devang Patel83489bb2009-01-13 00:35:13 +000062 : FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +000063#ifndef NDEBUG
64 , cil
65#endif
66 ) {
Evan Cheng88e30412008-09-03 01:04:47 +000067 Subtarget = &TM.getSubtarget<X86Subtarget>();
Evan Chengf3d4efe2008-09-07 09:09:33 +000068 StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
69 X86ScalarSSEf64 = Subtarget->hasSSE2();
70 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng88e30412008-09-03 01:04:47 +000071 }
Evan Chengc3f44b02008-09-03 00:03:49 +000072
Dan Gohman3df24e62008-09-03 23:12:08 +000073 virtual bool TargetSelectInstruction(Instruction *I);
Evan Chengc3f44b02008-09-03 00:03:49 +000074
Dan Gohman1adf1b02008-08-19 21:45:35 +000075#include "X86GenFastISel.inc"
Evan Cheng8b19e562008-09-03 06:44:39 +000076
77private:
Chris Lattner9a08a612008-10-15 04:26:38 +000078 bool X86FastEmitCompare(Value *LHS, Value *RHS, MVT VT);
79
Dan Gohman0586d912008-09-10 20:11:02 +000080 bool X86FastEmitLoad(MVT VT, const X86AddressMode &AM, unsigned &RR);
Evan Cheng0de588f2008-09-05 21:00:03 +000081
Chris Lattner438949a2008-10-15 05:30:52 +000082 bool X86FastEmitStore(MVT VT, Value *Val,
83 const X86AddressMode &AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +000084 bool X86FastEmitStore(MVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +000085 const X86AddressMode &AM);
Evan Cheng24e3a902008-09-08 06:35:17 +000086
87 bool X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT, unsigned Src, MVT SrcVT,
88 unsigned &ResultReg);
Evan Cheng0de588f2008-09-05 21:00:03 +000089
Dan Gohman2ff7fd12008-09-19 22:16:54 +000090 bool X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall);
Dan Gohman0586d912008-09-10 20:11:02 +000091
Dan Gohman3df24e62008-09-03 23:12:08 +000092 bool X86SelectLoad(Instruction *I);
Owen Andersona3971df2008-09-04 07:08:58 +000093
94 bool X86SelectStore(Instruction *I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +000095
96 bool X86SelectCmp(Instruction *I);
Dan Gohmand89ae992008-09-05 01:06:14 +000097
98 bool X86SelectZExt(Instruction *I);
99
100 bool X86SelectBranch(Instruction *I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000101
102 bool X86SelectShift(Instruction *I);
103
104 bool X86SelectSelect(Instruction *I);
Evan Cheng0de588f2008-09-05 21:00:03 +0000105
Evan Cheng10a8d9c2008-09-07 08:47:42 +0000106 bool X86SelectTrunc(Instruction *I);
Dan Gohmand98d6202008-10-02 22:15:21 +0000107
Dan Gohman78efce62008-09-10 21:02:08 +0000108 bool X86SelectFPExt(Instruction *I);
109 bool X86SelectFPTrunc(Instruction *I);
110
Bill Wendling52370a12008-12-09 02:42:50 +0000111 bool X86SelectExtractValue(Instruction *I);
112
113 bool X86VisitIntrinsicCall(CallInst &I, unsigned Intrinsic);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000114 bool X86SelectCall(Instruction *I);
115
116 CCAssignFn *CCAssignFnForCall(unsigned CC, bool isTailCall = false);
117
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000118 const X86InstrInfo *getInstrInfo() const {
Dan Gohman97135e12008-09-26 19:15:30 +0000119 return getTargetMachine()->getInstrInfo();
120 }
121 const X86TargetMachine *getTargetMachine() const {
122 return static_cast<const X86TargetMachine *>(&TM);
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000123 }
124
Dan Gohman0586d912008-09-10 20:11:02 +0000125 unsigned TargetMaterializeConstant(Constant *C);
126
127 unsigned TargetMaterializeAlloca(AllocaInst *C);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000128
129 /// isScalarFPTypeInSSEReg - Return true if the specified scalar FP type is
130 /// computed in an SSE register, not on the X87 floating point stack.
131 bool isScalarFPTypeInSSEReg(MVT VT) const {
132 return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2
133 (VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1
134 }
135
Chris Lattner160f6cc2008-10-15 05:07:36 +0000136 bool isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1 = false);
Evan Chengc3f44b02008-09-03 00:03:49 +0000137};
Dan Gohman99b21822008-08-28 23:21:34 +0000138
Chris Lattner160f6cc2008-10-15 05:07:36 +0000139bool X86FastISel::isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1) {
140 VT = TLI.getValueType(Ty, /*HandleUnknown=*/true);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000141 if (VT == MVT::Other || !VT.isSimple())
142 // Unhandled type. Halt "fast" selection and bail.
143 return false;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000144
Dan Gohman9b66d732008-09-30 00:48:39 +0000145 // For now, require SSE/SSE2 for performing floating-point operations,
146 // since x87 requires additional work.
147 if (VT == MVT::f64 && !X86ScalarSSEf64)
148 return false;
149 if (VT == MVT::f32 && !X86ScalarSSEf32)
150 return false;
151 // Similarly, no f80 support yet.
152 if (VT == MVT::f80)
153 return false;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000154 // We only handle legal types. For example, on x86-32 the instruction
155 // selector contains all of the 64-bit instructions from x86-64,
156 // under the assumption that i64 won't be used if the target doesn't
157 // support it.
Evan Chengdebdea02008-09-08 17:15:42 +0000158 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
Evan Chengf3d4efe2008-09-07 09:09:33 +0000159}
160
161#include "X86GenCallingConv.inc"
162
163/// CCAssignFnForCall - Selects the correct CCAssignFn for a given calling
164/// convention.
165CCAssignFn *X86FastISel::CCAssignFnForCall(unsigned CC, bool isTaillCall) {
166 if (Subtarget->is64Bit()) {
167 if (Subtarget->isTargetWin64())
168 return CC_X86_Win64_C;
169 else if (CC == CallingConv::Fast && isTaillCall)
170 return CC_X86_64_TailCall;
171 else
172 return CC_X86_64_C;
173 }
174
175 if (CC == CallingConv::X86_FastCall)
176 return CC_X86_32_FastCall;
Evan Chengf3d4efe2008-09-07 09:09:33 +0000177 else if (CC == CallingConv::Fast)
178 return CC_X86_32_FastCC;
179 else
180 return CC_X86_32_C;
181}
182
Evan Cheng0de588f2008-09-05 21:00:03 +0000183/// X86FastEmitLoad - Emit a machine instruction to load a value of type VT.
Evan Chengf3d4efe2008-09-07 09:09:33 +0000184/// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
Evan Cheng0de588f2008-09-05 21:00:03 +0000185/// Return true and the result register by reference if it is possible.
Dan Gohman0586d912008-09-10 20:11:02 +0000186bool X86FastISel::X86FastEmitLoad(MVT VT, const X86AddressMode &AM,
Evan Cheng0de588f2008-09-05 21:00:03 +0000187 unsigned &ResultReg) {
188 // Get opcode and regclass of the output for the given load instruction.
189 unsigned Opc = 0;
190 const TargetRegisterClass *RC = NULL;
191 switch (VT.getSimpleVT()) {
192 default: return false;
193 case MVT::i8:
194 Opc = X86::MOV8rm;
195 RC = X86::GR8RegisterClass;
196 break;
197 case MVT::i16:
198 Opc = X86::MOV16rm;
199 RC = X86::GR16RegisterClass;
200 break;
201 case MVT::i32:
202 Opc = X86::MOV32rm;
203 RC = X86::GR32RegisterClass;
204 break;
205 case MVT::i64:
206 // Must be in x86-64 mode.
207 Opc = X86::MOV64rm;
208 RC = X86::GR64RegisterClass;
209 break;
210 case MVT::f32:
211 if (Subtarget->hasSSE1()) {
212 Opc = X86::MOVSSrm;
213 RC = X86::FR32RegisterClass;
214 } else {
215 Opc = X86::LD_Fp32m;
216 RC = X86::RFP32RegisterClass;
217 }
218 break;
219 case MVT::f64:
220 if (Subtarget->hasSSE2()) {
221 Opc = X86::MOVSDrm;
222 RC = X86::FR64RegisterClass;
223 } else {
224 Opc = X86::LD_Fp64m;
225 RC = X86::RFP64RegisterClass;
226 }
227 break;
228 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +0000229 // No f80 support yet.
230 return false;
Evan Cheng0de588f2008-09-05 21:00:03 +0000231 }
232
233 ResultReg = createResultReg(RC);
Evan Cheng0de588f2008-09-05 21:00:03 +0000234 addFullAddress(BuildMI(MBB, TII.get(Opc), ResultReg), AM);
235 return true;
236}
237
Evan Chengf3d4efe2008-09-07 09:09:33 +0000238/// X86FastEmitStore - Emit a machine instruction to store a value Val of
239/// type VT. The address is either pre-computed, consisted of a base ptr, Ptr
240/// and a displacement offset, or a GlobalAddress,
Evan Cheng0de588f2008-09-05 21:00:03 +0000241/// i.e. V. Return true if it is possible.
242bool
Evan Chengf3d4efe2008-09-07 09:09:33 +0000243X86FastISel::X86FastEmitStore(MVT VT, unsigned Val,
Dan Gohman0586d912008-09-10 20:11:02 +0000244 const X86AddressMode &AM) {
Dan Gohman863890e2008-09-08 16:31:35 +0000245 // Get opcode and regclass of the output for the given store instruction.
Evan Cheng0de588f2008-09-05 21:00:03 +0000246 unsigned Opc = 0;
Evan Cheng0de588f2008-09-05 21:00:03 +0000247 switch (VT.getSimpleVT()) {
Chris Lattner241ab472008-10-15 05:38:32 +0000248 case MVT::f80: // No f80 support yet.
Evan Cheng0de588f2008-09-05 21:00:03 +0000249 default: return false;
Chris Lattner241ab472008-10-15 05:38:32 +0000250 case MVT::i8: Opc = X86::MOV8mr; break;
251 case MVT::i16: Opc = X86::MOV16mr; break;
252 case MVT::i32: Opc = X86::MOV32mr; break;
253 case MVT::i64: Opc = X86::MOV64mr; break; // Must be in x86-64 mode.
Evan Cheng0de588f2008-09-05 21:00:03 +0000254 case MVT::f32:
Chris Lattner438949a2008-10-15 05:30:52 +0000255 Opc = Subtarget->hasSSE1() ? X86::MOVSSmr : X86::ST_Fp32m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000256 break;
257 case MVT::f64:
Chris Lattner438949a2008-10-15 05:30:52 +0000258 Opc = Subtarget->hasSSE2() ? X86::MOVSDmr : X86::ST_Fp64m;
Evan Cheng0de588f2008-09-05 21:00:03 +0000259 break;
Evan Cheng0de588f2008-09-05 21:00:03 +0000260 }
Chris Lattner438949a2008-10-15 05:30:52 +0000261
Evan Chengf3d4efe2008-09-07 09:09:33 +0000262 addFullAddress(BuildMI(MBB, TII.get(Opc)), AM).addReg(Val);
Evan Cheng0de588f2008-09-05 21:00:03 +0000263 return true;
264}
265
Chris Lattner438949a2008-10-15 05:30:52 +0000266bool X86FastISel::X86FastEmitStore(MVT VT, Value *Val,
267 const X86AddressMode &AM) {
268 // Handle 'null' like i32/i64 0.
269 if (isa<ConstantPointerNull>(Val))
270 Val = Constant::getNullValue(TD.getIntPtrType());
271
272 // If this is a store of a simple constant, fold the constant into the store.
273 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
274 unsigned Opc = 0;
275 switch (VT.getSimpleVT()) {
276 default: break;
277 case MVT::i8: Opc = X86::MOV8mi; break;
278 case MVT::i16: Opc = X86::MOV16mi; break;
279 case MVT::i32: Opc = X86::MOV32mi; break;
280 case MVT::i64:
281 // Must be a 32-bit sign extended value.
282 if ((int)CI->getSExtValue() == CI->getSExtValue())
283 Opc = X86::MOV64mi32;
284 break;
285 }
286
287 if (Opc) {
288 addFullAddress(BuildMI(MBB, TII.get(Opc)), AM).addImm(CI->getSExtValue());
289 return true;
290 }
291 }
292
293 unsigned ValReg = getRegForValue(Val);
294 if (ValReg == 0)
Chris Lattner438949a2008-10-15 05:30:52 +0000295 return false;
296
297 return X86FastEmitStore(VT, ValReg, AM);
298}
299
Evan Cheng24e3a902008-09-08 06:35:17 +0000300/// X86FastEmitExtend - Emit a machine instruction to extend a value Src of
301/// type SrcVT to type DstVT using the specified extension opcode Opc (e.g.
302/// ISD::SIGN_EXTEND).
303bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT,
304 unsigned Src, MVT SrcVT,
305 unsigned &ResultReg) {
Owen Andersonac34a002008-09-11 19:44:55 +0000306 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, Src);
307
308 if (RR != 0) {
309 ResultReg = RR;
310 return true;
311 } else
312 return false;
Evan Cheng24e3a902008-09-08 06:35:17 +0000313}
314
Dan Gohman0586d912008-09-10 20:11:02 +0000315/// X86SelectAddress - Attempt to fill in an address from the given value.
316///
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000317bool X86FastISel::X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall) {
Dan Gohman35893082008-09-18 23:23:44 +0000318 User *U;
319 unsigned Opcode = Instruction::UserOp1;
320 if (Instruction *I = dyn_cast<Instruction>(V)) {
321 Opcode = I->getOpcode();
322 U = I;
323 } else if (ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
324 Opcode = C->getOpcode();
325 U = C;
326 }
Dan Gohman0586d912008-09-10 20:11:02 +0000327
Dan Gohman35893082008-09-18 23:23:44 +0000328 switch (Opcode) {
329 default: break;
330 case Instruction::BitCast:
331 // Look past bitcasts.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000332 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman35893082008-09-18 23:23:44 +0000333
334 case Instruction::IntToPtr:
335 // Look past no-op inttoptrs.
336 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000337 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000338 break;
Dan Gohman35893082008-09-18 23:23:44 +0000339
340 case Instruction::PtrToInt:
341 // Look past no-op ptrtoints.
342 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000343 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman55fdaec2008-12-08 23:50:06 +0000344 break;
Dan Gohman35893082008-09-18 23:23:44 +0000345
346 case Instruction::Alloca: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000347 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000348 // Do static allocas.
349 const AllocaInst *A = cast<AllocaInst>(V);
Dan Gohman0586d912008-09-10 20:11:02 +0000350 DenseMap<const AllocaInst*, int>::iterator SI = StaticAllocaMap.find(A);
Dan Gohman97135e12008-09-26 19:15:30 +0000351 if (SI != StaticAllocaMap.end()) {
352 AM.BaseType = X86AddressMode::FrameIndexBase;
353 AM.Base.FrameIndex = SI->second;
354 return true;
355 }
356 break;
Dan Gohman35893082008-09-18 23:23:44 +0000357 }
358
359 case Instruction::Add: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000360 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000361 // Adds of constants are common and easy enough.
362 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman09aae462008-09-26 20:04:15 +0000363 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
364 // They have to fit in the 32-bit signed displacement field though.
365 if (isInt32(Disp)) {
366 AM.Disp = (uint32_t)Disp;
367 return X86SelectAddress(U->getOperand(0), AM, isCall);
368 }
Dan Gohman0586d912008-09-10 20:11:02 +0000369 }
Dan Gohman35893082008-09-18 23:23:44 +0000370 break;
371 }
372
373 case Instruction::GetElementPtr: {
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000374 if (isCall) break;
Dan Gohman35893082008-09-18 23:23:44 +0000375 // Pattern-match simple GEPs.
Dan Gohman09aae462008-09-26 20:04:15 +0000376 uint64_t Disp = (int32_t)AM.Disp;
Dan Gohman35893082008-09-18 23:23:44 +0000377 unsigned IndexReg = AM.IndexReg;
378 unsigned Scale = AM.Scale;
379 gep_type_iterator GTI = gep_type_begin(U);
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000380 // Iterate through the indices, folding what we can. Constants can be
381 // folded, and one dynamic index can be handled, if the scale is supported.
Dan Gohman35893082008-09-18 23:23:44 +0000382 for (User::op_iterator i = U->op_begin() + 1, e = U->op_end();
383 i != e; ++i, ++GTI) {
384 Value *Op = *i;
385 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
386 const StructLayout *SL = TD.getStructLayout(STy);
387 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
388 Disp += SL->getElementOffset(Idx);
389 } else {
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000390 uint64_t S = TD.getTypePaddedSize(GTI.getIndexedType());
Dan Gohman35893082008-09-18 23:23:44 +0000391 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
392 // Constant-offset addressing.
Dan Gohman09aae462008-09-26 20:04:15 +0000393 Disp += CI->getSExtValue() * S;
Dan Gohman35893082008-09-18 23:23:44 +0000394 } else if (IndexReg == 0 &&
Dan Gohman97135e12008-09-26 19:15:30 +0000395 (!AM.GV ||
396 !getTargetMachine()->symbolicAddressesAreRIPRel()) &&
Dan Gohman35893082008-09-18 23:23:44 +0000397 (S == 1 || S == 2 || S == 4 || S == 8)) {
398 // Scaled-index addressing.
399 Scale = S;
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +0000400 IndexReg = getRegForGEPIndex(Op);
Dan Gohman35893082008-09-18 23:23:44 +0000401 if (IndexReg == 0)
402 return false;
403 } else
404 // Unsupported.
405 goto unsupported_gep;
406 }
407 }
Dan Gohman09aae462008-09-26 20:04:15 +0000408 // Check for displacement overflow.
409 if (!isInt32(Disp))
410 break;
Dan Gohman35893082008-09-18 23:23:44 +0000411 // Ok, the GEP indices were covered by constant-offset and scaled-index
412 // addressing. Update the address state and move on to examining the base.
413 AM.IndexReg = IndexReg;
414 AM.Scale = Scale;
Dan Gohman09aae462008-09-26 20:04:15 +0000415 AM.Disp = (uint32_t)Disp;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000416 return X86SelectAddress(U->getOperand(0), AM, isCall);
Dan Gohman35893082008-09-18 23:23:44 +0000417 unsupported_gep:
418 // Ok, the GEP indices weren't all covered.
419 break;
420 }
421 }
422
423 // Handle constant address.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000424 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000425 // Can't handle alternate code models yet.
426 if (TM.getCodeModel() != CodeModel::Default &&
427 TM.getCodeModel() != CodeModel::Small)
428 return false;
429
Dan Gohman97135e12008-09-26 19:15:30 +0000430 // RIP-relative addresses can't have additional register operands.
431 if (getTargetMachine()->symbolicAddressesAreRIPRel() &&
432 (AM.Base.Reg != 0 || AM.IndexReg != 0))
433 return false;
434
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000435 // Set up the basic address.
436 AM.GV = GV;
437 if (!isCall &&
438 TM.getRelocationModel() == Reloc::PIC_ &&
439 !Subtarget->is64Bit())
Dan Gohman57c3dac2008-09-30 00:58:23 +0000440 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000441
442 // Emit an extra load if the ABI requires it.
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000443 if (Subtarget->GVRequiresExtraLoad(GV, TM, isCall)) {
444 // Check to see if we've already materialized this
445 // value in a register in this block.
Dan Gohman7e8ef602008-09-19 23:42:04 +0000446 if (unsigned Reg = LocalValueMap[V]) {
447 AM.Base.Reg = Reg;
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000448 AM.GV = 0;
Dan Gohman7e8ef602008-09-19 23:42:04 +0000449 return true;
450 }
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000451 // Issue load from stub if necessary.
452 unsigned Opc = 0;
453 const TargetRegisterClass *RC = NULL;
454 if (TLI.getPointerTy() == MVT::i32) {
455 Opc = X86::MOV32rm;
456 RC = X86::GR32RegisterClass;
457 } else {
458 Opc = X86::MOV64rm;
459 RC = X86::GR64RegisterClass;
460 }
Dan Gohman789ce772008-09-25 23:34:02 +0000461
462 X86AddressMode StubAM;
463 StubAM.Base.Reg = AM.Base.Reg;
464 StubAM.GV = AM.GV;
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000465 unsigned ResultReg = createResultReg(RC);
Dan Gohman789ce772008-09-25 23:34:02 +0000466 addFullAddress(BuildMI(MBB, TII.get(Opc), ResultReg), StubAM);
467
468 // Now construct the final address. Note that the Disp, Scale,
469 // and Index values may already be set here.
Dan Gohman2cc3aa42008-09-25 15:24:26 +0000470 AM.Base.Reg = ResultReg;
471 AM.GV = 0;
Dan Gohman789ce772008-09-25 23:34:02 +0000472
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000473 // Prevent loading GV stub multiple times in same MBB.
474 LocalValueMap[V] = AM.Base.Reg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000475 }
476 return true;
Dan Gohman0586d912008-09-10 20:11:02 +0000477 }
478
Dan Gohman97135e12008-09-26 19:15:30 +0000479 // If all else fails, try to materialize the value in a register.
Dan Gohman7962e852008-09-29 21:13:15 +0000480 if (!AM.GV || !getTargetMachine()->symbolicAddressesAreRIPRel()) {
Dan Gohman97135e12008-09-26 19:15:30 +0000481 if (AM.Base.Reg == 0) {
482 AM.Base.Reg = getRegForValue(V);
483 return AM.Base.Reg != 0;
484 }
485 if (AM.IndexReg == 0) {
486 assert(AM.Scale == 1 && "Scale with no index!");
487 AM.IndexReg = getRegForValue(V);
488 return AM.IndexReg != 0;
489 }
490 }
491
492 return false;
Dan Gohman0586d912008-09-10 20:11:02 +0000493}
494
Owen Andersona3971df2008-09-04 07:08:58 +0000495/// X86SelectStore - Select and emit code to implement store instructions.
496bool X86FastISel::X86SelectStore(Instruction* I) {
Evan Cheng24e3a902008-09-08 06:35:17 +0000497 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000498 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Owen Andersona3971df2008-09-04 07:08:58 +0000499 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000500
Dan Gohman0586d912008-09-10 20:11:02 +0000501 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000502 if (!X86SelectAddress(I->getOperand(1), AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +0000503 return false;
Owen Andersona3971df2008-09-04 07:08:58 +0000504
Chris Lattner438949a2008-10-15 05:30:52 +0000505 return X86FastEmitStore(VT, I->getOperand(0), AM);
Owen Andersona3971df2008-09-04 07:08:58 +0000506}
507
Evan Cheng8b19e562008-09-03 06:44:39 +0000508/// X86SelectLoad - Select and emit code to implement load instructions.
509///
Dan Gohman3df24e62008-09-03 23:12:08 +0000510bool X86FastISel::X86SelectLoad(Instruction *I) {
Evan Chengf3d4efe2008-09-07 09:09:33 +0000511 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000512 if (!isTypeLegal(I->getType(), VT))
Evan Cheng8b19e562008-09-03 06:44:39 +0000513 return false;
514
Dan Gohman0586d912008-09-10 20:11:02 +0000515 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +0000516 if (!X86SelectAddress(I->getOperand(0), AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +0000517 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000518
Evan Cheng0de588f2008-09-05 21:00:03 +0000519 unsigned ResultReg = 0;
Dan Gohman0586d912008-09-10 20:11:02 +0000520 if (X86FastEmitLoad(VT, AM, ResultReg)) {
Evan Cheng0de588f2008-09-05 21:00:03 +0000521 UpdateValueMap(I, ResultReg);
522 return true;
Evan Cheng8b19e562008-09-03 06:44:39 +0000523 }
Evan Cheng0de588f2008-09-05 21:00:03 +0000524 return false;
Evan Cheng8b19e562008-09-03 06:44:39 +0000525}
526
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000527static unsigned X86ChooseCmpOpcode(MVT VT) {
Dan Gohmand98d6202008-10-02 22:15:21 +0000528 switch (VT.getSimpleVT()) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000529 default: return 0;
530 case MVT::i8: return X86::CMP8rr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000531 case MVT::i16: return X86::CMP16rr;
532 case MVT::i32: return X86::CMP32rr;
533 case MVT::i64: return X86::CMP64rr;
534 case MVT::f32: return X86::UCOMISSrr;
535 case MVT::f64: return X86::UCOMISDrr;
Dan Gohmand98d6202008-10-02 22:15:21 +0000536 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000537}
538
Chris Lattner0e13c782008-10-15 04:13:29 +0000539/// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS
540/// of the comparison, return an opcode that works for the compare (e.g.
541/// CMP32ri) otherwise return 0.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000542static unsigned X86ChooseCmpImmediateOpcode(MVT VT, ConstantInt *RHSC) {
543 switch (VT.getSimpleVT()) {
Chris Lattner0e13c782008-10-15 04:13:29 +0000544 // Otherwise, we can't fold the immediate into this comparison.
Chris Lattner45ac17f2008-10-15 04:32:45 +0000545 default: return 0;
546 case MVT::i8: return X86::CMP8ri;
547 case MVT::i16: return X86::CMP16ri;
548 case MVT::i32: return X86::CMP32ri;
549 case MVT::i64:
550 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
551 // field.
Chris Lattner438949a2008-10-15 05:30:52 +0000552 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
Chris Lattner45ac17f2008-10-15 04:32:45 +0000553 return X86::CMP64ri32;
554 return 0;
555 }
Chris Lattner0e13c782008-10-15 04:13:29 +0000556}
557
Chris Lattner9a08a612008-10-15 04:26:38 +0000558bool X86FastISel::X86FastEmitCompare(Value *Op0, Value *Op1, MVT VT) {
559 unsigned Op0Reg = getRegForValue(Op0);
560 if (Op0Reg == 0) return false;
561
Chris Lattnerd53886b2008-10-15 05:18:04 +0000562 // Handle 'null' like i32/i64 0.
563 if (isa<ConstantPointerNull>(Op1))
564 Op1 = Constant::getNullValue(TD.getIntPtrType());
565
Chris Lattner9a08a612008-10-15 04:26:38 +0000566 // We have two options: compare with register or immediate. If the RHS of
567 // the compare is an immediate that we can fold into this compare, use
568 // CMPri, otherwise use CMPrr.
569 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
Chris Lattner45ac17f2008-10-15 04:32:45 +0000570 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
Chris Lattner9a08a612008-10-15 04:26:38 +0000571 BuildMI(MBB, TII.get(CompareImmOpc)).addReg(Op0Reg)
572 .addImm(Op1C->getSExtValue());
573 return true;
574 }
575 }
576
577 unsigned CompareOpc = X86ChooseCmpOpcode(VT);
578 if (CompareOpc == 0) return false;
579
580 unsigned Op1Reg = getRegForValue(Op1);
581 if (Op1Reg == 0) return false;
582 BuildMI(MBB, TII.get(CompareOpc)).addReg(Op0Reg).addReg(Op1Reg);
583
584 return true;
585}
586
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000587bool X86FastISel::X86SelectCmp(Instruction *I) {
588 CmpInst *CI = cast<CmpInst>(I);
589
Dan Gohman9b66d732008-09-30 00:48:39 +0000590 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000591 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
Dan Gohman4f22bb02008-09-05 01:33:56 +0000592 return false;
593
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000594 unsigned ResultReg = createResultReg(&X86::GR8RegClass);
Chris Lattner54aebde2008-10-15 03:47:17 +0000595 unsigned SetCCOpc;
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000596 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000597 switch (CI->getPredicate()) {
598 case CmpInst::FCMP_OEQ: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000599 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
600 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000601
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000602 unsigned EReg = createResultReg(&X86::GR8RegClass);
603 unsigned NPReg = createResultReg(&X86::GR8RegClass);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000604 BuildMI(MBB, TII.get(X86::SETEr), EReg);
605 BuildMI(MBB, TII.get(X86::SETNPr), NPReg);
606 BuildMI(MBB, TII.get(X86::AND8rr), ResultReg).addReg(NPReg).addReg(EReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000607 UpdateValueMap(I, ResultReg);
608 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000609 }
610 case CmpInst::FCMP_UNE: {
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000611 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT))
612 return false;
613
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000614 unsigned NEReg = createResultReg(&X86::GR8RegClass);
615 unsigned PReg = createResultReg(&X86::GR8RegClass);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000616 BuildMI(MBB, TII.get(X86::SETNEr), NEReg);
617 BuildMI(MBB, TII.get(X86::SETPr), PReg);
618 BuildMI(MBB, TII.get(X86::OR8rr), ResultReg).addReg(PReg).addReg(NEReg);
Chris Lattner54aebde2008-10-15 03:47:17 +0000619 UpdateValueMap(I, ResultReg);
620 return true;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000621 }
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000622 case CmpInst::FCMP_OGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
623 case CmpInst::FCMP_OGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
624 case CmpInst::FCMP_OLT: SwapArgs = true; SetCCOpc = X86::SETAr; break;
625 case CmpInst::FCMP_OLE: SwapArgs = true; SetCCOpc = X86::SETAEr; break;
626 case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
627 case CmpInst::FCMP_ORD: SwapArgs = false; SetCCOpc = X86::SETNPr; break;
628 case CmpInst::FCMP_UNO: SwapArgs = false; SetCCOpc = X86::SETPr; break;
629 case CmpInst::FCMP_UEQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
630 case CmpInst::FCMP_UGT: SwapArgs = true; SetCCOpc = X86::SETBr; break;
631 case CmpInst::FCMP_UGE: SwapArgs = true; SetCCOpc = X86::SETBEr; break;
632 case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
633 case CmpInst::FCMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
634
635 case CmpInst::ICMP_EQ: SwapArgs = false; SetCCOpc = X86::SETEr; break;
636 case CmpInst::ICMP_NE: SwapArgs = false; SetCCOpc = X86::SETNEr; break;
637 case CmpInst::ICMP_UGT: SwapArgs = false; SetCCOpc = X86::SETAr; break;
638 case CmpInst::ICMP_UGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break;
639 case CmpInst::ICMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
640 case CmpInst::ICMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break;
641 case CmpInst::ICMP_SGT: SwapArgs = false; SetCCOpc = X86::SETGr; break;
642 case CmpInst::ICMP_SGE: SwapArgs = false; SetCCOpc = X86::SETGEr; break;
643 case CmpInst::ICMP_SLT: SwapArgs = false; SetCCOpc = X86::SETLr; break;
644 case CmpInst::ICMP_SLE: SwapArgs = false; SetCCOpc = X86::SETLEr; break;
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000645 default:
646 return false;
647 }
648
Chris Lattner9a08a612008-10-15 04:26:38 +0000649 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000650 if (SwapArgs)
Chris Lattner9a08a612008-10-15 04:26:38 +0000651 std::swap(Op0, Op1);
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000652
Chris Lattner9a08a612008-10-15 04:26:38 +0000653 // Emit a compare of Op0/Op1.
Chris Lattner51ccb3d2008-10-15 04:29:23 +0000654 if (!X86FastEmitCompare(Op0, Op1, VT))
655 return false;
Chris Lattner9a08a612008-10-15 04:26:38 +0000656
Chris Lattner8aeeeb92008-10-15 03:52:54 +0000657 BuildMI(MBB, TII.get(SetCCOpc), ResultReg);
Dan Gohman6e3f05f2008-09-04 23:26:51 +0000658 UpdateValueMap(I, ResultReg);
659 return true;
660}
Evan Cheng8b19e562008-09-03 06:44:39 +0000661
Dan Gohmand89ae992008-09-05 01:06:14 +0000662bool X86FastISel::X86SelectZExt(Instruction *I) {
663 // Special-case hack: The only i1 values we know how to produce currently
664 // set the upper bits of an i8 value to zero.
665 if (I->getType() == Type::Int8Ty &&
666 I->getOperand(0)->getType() == Type::Int1Ty) {
667 unsigned ResultReg = getRegForValue(I->getOperand(0));
Dan Gohmanf52550b2008-09-05 01:15:35 +0000668 if (ResultReg == 0) return false;
Dan Gohmand89ae992008-09-05 01:06:14 +0000669 UpdateValueMap(I, ResultReg);
670 return true;
671 }
672
673 return false;
674}
675
Chris Lattner9a08a612008-10-15 04:26:38 +0000676
Dan Gohmand89ae992008-09-05 01:06:14 +0000677bool X86FastISel::X86SelectBranch(Instruction *I) {
Dan Gohmand89ae992008-09-05 01:06:14 +0000678 // Unconditional branches are selected by tablegen-generated code.
Dan Gohmand98d6202008-10-02 22:15:21 +0000679 // Handle a conditional branch.
680 BranchInst *BI = cast<BranchInst>(I);
Dan Gohmand89ae992008-09-05 01:06:14 +0000681 MachineBasicBlock *TrueMBB = MBBMap[BI->getSuccessor(0)];
682 MachineBasicBlock *FalseMBB = MBBMap[BI->getSuccessor(1)];
683
Dan Gohmand98d6202008-10-02 22:15:21 +0000684 // Fold the common case of a conditional branch with a comparison.
685 if (CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
686 if (CI->hasOneUse()) {
687 MVT VT = TLI.getValueType(CI->getOperand(0)->getType());
Dan Gohmand89ae992008-09-05 01:06:14 +0000688
Dan Gohmand98d6202008-10-02 22:15:21 +0000689 // Try to take advantage of fallthrough opportunities.
690 CmpInst::Predicate Predicate = CI->getPredicate();
691 if (MBB->isLayoutSuccessor(TrueMBB)) {
692 std::swap(TrueMBB, FalseMBB);
693 Predicate = CmpInst::getInversePredicate(Predicate);
694 }
695
Chris Lattner871d2462008-10-15 03:58:05 +0000696 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0.
697 unsigned BranchOpc; // Opcode to jump on, e.g. "X86::JA"
698
Dan Gohmand98d6202008-10-02 22:15:21 +0000699 switch (Predicate) {
Dan Gohman7b66e042008-10-21 18:24:51 +0000700 case CmpInst::FCMP_OEQ:
701 std::swap(TrueMBB, FalseMBB);
702 Predicate = CmpInst::FCMP_UNE;
703 // FALL THROUGH
704 case CmpInst::FCMP_UNE: SwapArgs = false; BranchOpc = X86::JNE; break;
Chris Lattner871d2462008-10-15 03:58:05 +0000705 case CmpInst::FCMP_OGT: SwapArgs = false; BranchOpc = X86::JA; break;
706 case CmpInst::FCMP_OGE: SwapArgs = false; BranchOpc = X86::JAE; break;
707 case CmpInst::FCMP_OLT: SwapArgs = true; BranchOpc = X86::JA; break;
708 case CmpInst::FCMP_OLE: SwapArgs = true; BranchOpc = X86::JAE; break;
709 case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE; break;
710 case CmpInst::FCMP_ORD: SwapArgs = false; BranchOpc = X86::JNP; break;
711 case CmpInst::FCMP_UNO: SwapArgs = false; BranchOpc = X86::JP; break;
712 case CmpInst::FCMP_UEQ: SwapArgs = false; BranchOpc = X86::JE; break;
713 case CmpInst::FCMP_UGT: SwapArgs = true; BranchOpc = X86::JB; break;
714 case CmpInst::FCMP_UGE: SwapArgs = true; BranchOpc = X86::JBE; break;
715 case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break;
716 case CmpInst::FCMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break;
Chris Lattner9a08a612008-10-15 04:26:38 +0000717
Chris Lattner871d2462008-10-15 03:58:05 +0000718 case CmpInst::ICMP_EQ: SwapArgs = false; BranchOpc = X86::JE; break;
719 case CmpInst::ICMP_NE: SwapArgs = false; BranchOpc = X86::JNE; break;
720 case CmpInst::ICMP_UGT: SwapArgs = false; BranchOpc = X86::JA; break;
721 case CmpInst::ICMP_UGE: SwapArgs = false; BranchOpc = X86::JAE; break;
722 case CmpInst::ICMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break;
723 case CmpInst::ICMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break;
724 case CmpInst::ICMP_SGT: SwapArgs = false; BranchOpc = X86::JG; break;
725 case CmpInst::ICMP_SGE: SwapArgs = false; BranchOpc = X86::JGE; break;
726 case CmpInst::ICMP_SLT: SwapArgs = false; BranchOpc = X86::JL; break;
727 case CmpInst::ICMP_SLE: SwapArgs = false; BranchOpc = X86::JLE; break;
Dan Gohmand98d6202008-10-02 22:15:21 +0000728 default:
729 return false;
730 }
Chris Lattner54aebde2008-10-15 03:47:17 +0000731
Chris Lattner709d8292008-10-15 04:02:26 +0000732 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1);
733 if (SwapArgs)
734 std::swap(Op0, Op1);
735
Chris Lattner9a08a612008-10-15 04:26:38 +0000736 // Emit a compare of the LHS and RHS, setting the flags.
737 if (!X86FastEmitCompare(Op0, Op1, VT))
738 return false;
Chris Lattner0e13c782008-10-15 04:13:29 +0000739
Chris Lattner54aebde2008-10-15 03:47:17 +0000740 BuildMI(MBB, TII.get(BranchOpc)).addMBB(TrueMBB);
Dan Gohman7b66e042008-10-21 18:24:51 +0000741
742 if (Predicate == CmpInst::FCMP_UNE) {
743 // X86 requires a second branch to handle UNE (and OEQ,
744 // which is mapped to UNE above).
745 BuildMI(MBB, TII.get(X86::JP)).addMBB(TrueMBB);
746 }
747
Dan Gohmand98d6202008-10-02 22:15:21 +0000748 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000749 MBB->addSuccessor(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000750 return true;
751 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000752 } else if (ExtractValueInst *EI =
753 dyn_cast<ExtractValueInst>(BI->getCondition())) {
754 // Check to see if the branch instruction is from an "arithmetic with
755 // overflow" intrinsic. The main way these intrinsics are used is:
756 //
757 // %t = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2)
758 // %sum = extractvalue { i32, i1 } %t, 0
759 // %obit = extractvalue { i32, i1 } %t, 1
760 // br i1 %obit, label %overflow, label %normal
761 //
Dan Gohman653456c2009-01-07 00:15:08 +0000762 // The %sum and %obit are converted in an ADD and a SETO/SETB before
Bill Wendling30a64a72008-12-09 23:19:12 +0000763 // reaching the branch. Therefore, we search backwards through the MBB
Dan Gohman653456c2009-01-07 00:15:08 +0000764 // looking for the SETO/SETB instruction. If an instruction modifies the
765 // EFLAGS register before we reach the SETO/SETB instruction, then we can't
766 // convert the branch into a JO/JB instruction.
Bill Wendling30a64a72008-12-09 23:19:12 +0000767
Bill Wendling9a901322008-12-10 19:44:24 +0000768 Value *Agg = EI->getAggregateOperand();
Bill Wendling30a64a72008-12-09 23:19:12 +0000769
Bill Wendling9a901322008-12-10 19:44:24 +0000770 if (CallInst *CI = dyn_cast<CallInst>(Agg)) {
771 Function *F = CI->getCalledFunction();
Bill Wendling30a64a72008-12-09 23:19:12 +0000772
Bill Wendling9a901322008-12-10 19:44:24 +0000773 if (F && F->isDeclaration()) {
774 switch (F->getIntrinsicID()) {
775 default: break;
776 case Intrinsic::sadd_with_overflow:
777 case Intrinsic::uadd_with_overflow: {
778 const MachineInstr *SetMI = 0;
779 unsigned Reg = lookUpRegForValue(EI);
Bill Wendling30a64a72008-12-09 23:19:12 +0000780
Bill Wendling9a901322008-12-10 19:44:24 +0000781 for (MachineBasicBlock::const_reverse_iterator
782 RI = MBB->rbegin(), RE = MBB->rend(); RI != RE; ++RI) {
783 const MachineInstr &MI = *RI;
Bill Wendling30a64a72008-12-09 23:19:12 +0000784
Bill Wendling9a901322008-12-10 19:44:24 +0000785 if (MI.modifiesRegister(Reg)) {
Evan Cheng04ee5a12009-01-20 19:12:24 +0000786 unsigned Src, Dst, SrcSR, DstSR;
Bill Wendling30a64a72008-12-09 23:19:12 +0000787
Evan Cheng04ee5a12009-01-20 19:12:24 +0000788 if (getInstrInfo()->isMoveInstr(MI, Src, Dst, SrcSR, DstSR)) {
Bill Wendling9a901322008-12-10 19:44:24 +0000789 Reg = Src;
790 continue;
791 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000792
Bill Wendling9a901322008-12-10 19:44:24 +0000793 SetMI = &MI;
794 break;
795 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000796
Bill Wendling9a901322008-12-10 19:44:24 +0000797 const TargetInstrDesc &TID = MI.getDesc();
798 const unsigned *ImpDefs = TID.getImplicitDefs();
799
800 if (TID.hasUnmodeledSideEffects()) break;
801
802 bool ModifiesEFlags = false;
803
804 if (ImpDefs) {
805 for (unsigned u = 0; ImpDefs[u]; ++u)
806 if (ImpDefs[u] == X86::EFLAGS) {
807 ModifiesEFlags = true;
808 break;
809 }
810 }
811
812 if (ModifiesEFlags) break;
Bill Wendling30a64a72008-12-09 23:19:12 +0000813 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000814
Bill Wendling9a901322008-12-10 19:44:24 +0000815 if (SetMI) {
816 unsigned OpCode = SetMI->getOpcode();
Bill Wendling30a64a72008-12-09 23:19:12 +0000817
Dan Gohman653456c2009-01-07 00:15:08 +0000818 if (OpCode == X86::SETOr || OpCode == X86::SETBr) {
Bill Wendling9a901322008-12-10 19:44:24 +0000819 BuildMI(MBB, TII.get((OpCode == X86::SETOr) ?
Dan Gohman653456c2009-01-07 00:15:08 +0000820 X86::JO : X86::JB)).addMBB(TrueMBB);
Bill Wendling9a901322008-12-10 19:44:24 +0000821 FastEmitBranch(FalseMBB);
822 MBB->addSuccessor(TrueMBB);
823 return true;
824 }
825 }
826 }
827 }
Bill Wendling30a64a72008-12-09 23:19:12 +0000828 }
829 }
Dan Gohmand98d6202008-10-02 22:15:21 +0000830 }
831
832 // Otherwise do a clumsy setcc and re-test it.
833 unsigned OpReg = getRegForValue(BI->getCondition());
834 if (OpReg == 0) return false;
835
836 BuildMI(MBB, TII.get(X86::TEST8rr)).addReg(OpReg).addReg(OpReg);
Dan Gohmand98d6202008-10-02 22:15:21 +0000837 BuildMI(MBB, TII.get(X86::JNE)).addMBB(TrueMBB);
Dan Gohmand98d6202008-10-02 22:15:21 +0000838 FastEmitBranch(FalseMBB);
Dan Gohman8c3f8b62008-10-07 22:10:33 +0000839 MBB->addSuccessor(TrueMBB);
Dan Gohmand89ae992008-09-05 01:06:14 +0000840 return true;
841}
842
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000843bool X86FastISel::X86SelectShift(Instruction *I) {
Chris Lattner743922e2008-09-21 21:44:29 +0000844 unsigned CReg = 0, OpReg = 0, OpImm = 0;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000845 const TargetRegisterClass *RC = NULL;
846 if (I->getType() == Type::Int8Ty) {
847 CReg = X86::CL;
848 RC = &X86::GR8RegClass;
849 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000850 case Instruction::LShr: OpReg = X86::SHR8rCL; OpImm = X86::SHR8ri; break;
851 case Instruction::AShr: OpReg = X86::SAR8rCL; OpImm = X86::SAR8ri; break;
852 case Instruction::Shl: OpReg = X86::SHL8rCL; OpImm = X86::SHL8ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000853 default: return false;
854 }
855 } else if (I->getType() == Type::Int16Ty) {
856 CReg = X86::CX;
857 RC = &X86::GR16RegClass;
858 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000859 case Instruction::LShr: OpReg = X86::SHR16rCL; OpImm = X86::SHR16ri; break;
860 case Instruction::AShr: OpReg = X86::SAR16rCL; OpImm = X86::SAR16ri; break;
861 case Instruction::Shl: OpReg = X86::SHL16rCL; OpImm = X86::SHL16ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000862 default: return false;
863 }
864 } else if (I->getType() == Type::Int32Ty) {
865 CReg = X86::ECX;
866 RC = &X86::GR32RegClass;
867 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000868 case Instruction::LShr: OpReg = X86::SHR32rCL; OpImm = X86::SHR32ri; break;
869 case Instruction::AShr: OpReg = X86::SAR32rCL; OpImm = X86::SAR32ri; break;
870 case Instruction::Shl: OpReg = X86::SHL32rCL; OpImm = X86::SHL32ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000871 default: return false;
872 }
873 } else if (I->getType() == Type::Int64Ty) {
874 CReg = X86::RCX;
875 RC = &X86::GR64RegClass;
876 switch (I->getOpcode()) {
Chris Lattner743922e2008-09-21 21:44:29 +0000877 case Instruction::LShr: OpReg = X86::SHR64rCL; OpImm = X86::SHR64ri; break;
878 case Instruction::AShr: OpReg = X86::SAR64rCL; OpImm = X86::SAR64ri; break;
879 case Instruction::Shl: OpReg = X86::SHL64rCL; OpImm = X86::SHL64ri; break;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000880 default: return false;
881 }
882 } else {
883 return false;
884 }
885
Chris Lattner160f6cc2008-10-15 05:07:36 +0000886 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
887 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
Dan Gohmanf58cb6d2008-09-05 21:27:34 +0000888 return false;
889
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000890 unsigned Op0Reg = getRegForValue(I->getOperand(0));
891 if (Op0Reg == 0) return false;
Chris Lattner743922e2008-09-21 21:44:29 +0000892
893 // Fold immediate in shl(x,3).
894 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
895 unsigned ResultReg = createResultReg(RC);
896 BuildMI(MBB, TII.get(OpImm),
Dan Gohmanb12b1a22008-12-20 17:19:40 +0000897 ResultReg).addReg(Op0Reg).addImm(CI->getZExtValue() & 0xff);
Chris Lattner743922e2008-09-21 21:44:29 +0000898 UpdateValueMap(I, ResultReg);
899 return true;
900 }
901
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000902 unsigned Op1Reg = getRegForValue(I->getOperand(1));
903 if (Op1Reg == 0) return false;
904 TII.copyRegToReg(*MBB, MBB->end(), CReg, Op1Reg, RC, RC);
Dan Gohman145b8282008-10-07 21:50:36 +0000905
906 // The shift instruction uses X86::CL. If we defined a super-register
907 // of X86::CL, emit an EXTRACT_SUBREG to precisely describe what
908 // we're doing here.
909 if (CReg != X86::CL)
910 BuildMI(MBB, TII.get(TargetInstrInfo::EXTRACT_SUBREG), X86::CL)
911 .addReg(CReg).addImm(X86::SUBREG_8BIT);
912
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000913 unsigned ResultReg = createResultReg(RC);
Dan Gohman145b8282008-10-07 21:50:36 +0000914 BuildMI(MBB, TII.get(OpReg), ResultReg).addReg(Op0Reg);
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000915 UpdateValueMap(I, ResultReg);
916 return true;
917}
918
919bool X86FastISel::X86SelectSelect(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +0000920 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true);
921 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT))
922 return false;
923
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000924 unsigned Opc = 0;
925 const TargetRegisterClass *RC = NULL;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000926 if (VT.getSimpleVT() == MVT::i16) {
Dan Gohman31d26912008-09-05 21:13:04 +0000927 Opc = X86::CMOVE16rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000928 RC = &X86::GR16RegClass;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000929 } else if (VT.getSimpleVT() == MVT::i32) {
Dan Gohman31d26912008-09-05 21:13:04 +0000930 Opc = X86::CMOVE32rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000931 RC = &X86::GR32RegClass;
Chris Lattner160f6cc2008-10-15 05:07:36 +0000932 } else if (VT.getSimpleVT() == MVT::i64) {
Dan Gohman31d26912008-09-05 21:13:04 +0000933 Opc = X86::CMOVE64rr;
Dan Gohmanc39f4db2008-09-05 18:30:08 +0000934 RC = &X86::GR64RegClass;
935 } else {
936 return false;
937 }
938
939 unsigned Op0Reg = getRegForValue(I->getOperand(0));
940 if (Op0Reg == 0) return false;
941 unsigned Op1Reg = getRegForValue(I->getOperand(1));
942 if (Op1Reg == 0) return false;
943 unsigned Op2Reg = getRegForValue(I->getOperand(2));
944 if (Op2Reg == 0) return false;
945
946 BuildMI(MBB, TII.get(X86::TEST8rr)).addReg(Op0Reg).addReg(Op0Reg);
947 unsigned ResultReg = createResultReg(RC);
948 BuildMI(MBB, TII.get(Opc), ResultReg).addReg(Op1Reg).addReg(Op2Reg);
949 UpdateValueMap(I, ResultReg);
950 return true;
951}
952
Dan Gohman78efce62008-09-10 21:02:08 +0000953bool X86FastISel::X86SelectFPExt(Instruction *I) {
Chris Lattner160f6cc2008-10-15 05:07:36 +0000954 // fpext from float to double.
955 if (Subtarget->hasSSE2() && I->getType() == Type::DoubleTy) {
956 Value *V = I->getOperand(0);
957 if (V->getType() == Type::FloatTy) {
958 unsigned OpReg = getRegForValue(V);
959 if (OpReg == 0) return false;
960 unsigned ResultReg = createResultReg(X86::FR64RegisterClass);
961 BuildMI(MBB, TII.get(X86::CVTSS2SDrr), ResultReg).addReg(OpReg);
962 UpdateValueMap(I, ResultReg);
963 return true;
Dan Gohman78efce62008-09-10 21:02:08 +0000964 }
965 }
966
967 return false;
968}
969
970bool X86FastISel::X86SelectFPTrunc(Instruction *I) {
971 if (Subtarget->hasSSE2()) {
972 if (I->getType() == Type::FloatTy) {
973 Value *V = I->getOperand(0);
974 if (V->getType() == Type::DoubleTy) {
975 unsigned OpReg = getRegForValue(V);
976 if (OpReg == 0) return false;
977 unsigned ResultReg = createResultReg(X86::FR32RegisterClass);
978 BuildMI(MBB, TII.get(X86::CVTSD2SSrr), ResultReg).addReg(OpReg);
979 UpdateValueMap(I, ResultReg);
980 return true;
981 }
982 }
983 }
984
985 return false;
986}
987
Evan Cheng10a8d9c2008-09-07 08:47:42 +0000988bool X86FastISel::X86SelectTrunc(Instruction *I) {
989 if (Subtarget->is64Bit())
990 // All other cases should be handled by the tblgen generated code.
991 return false;
992 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
993 MVT DstVT = TLI.getValueType(I->getType());
994 if (DstVT != MVT::i8)
995 // All other cases should be handled by the tblgen generated code.
996 return false;
997 if (SrcVT != MVT::i16 && SrcVT != MVT::i32)
998 // All other cases should be handled by the tblgen generated code.
999 return false;
1000
1001 unsigned InputReg = getRegForValue(I->getOperand(0));
1002 if (!InputReg)
1003 // Unhandled operand. Halt "fast" selection and bail.
1004 return false;
1005
1006 // First issue a copy to GR16_ or GR32_.
1007 unsigned CopyOpc = (SrcVT == MVT::i16) ? X86::MOV16to16_ : X86::MOV32to32_;
1008 const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16)
1009 ? X86::GR16_RegisterClass : X86::GR32_RegisterClass;
1010 unsigned CopyReg = createResultReg(CopyRC);
1011 BuildMI(MBB, TII.get(CopyOpc), CopyReg).addReg(InputReg);
1012
1013 // Then issue an extract_subreg.
Evan Cheng536ab132009-01-22 09:10:11 +00001014 unsigned ResultReg = FastEmitInst_extractsubreg(DstVT.getSimpleVT(),
1015 CopyReg, X86::SUBREG_8BIT);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001016 if (!ResultReg)
1017 return false;
1018
1019 UpdateValueMap(I, ResultReg);
1020 return true;
1021}
1022
Bill Wendling52370a12008-12-09 02:42:50 +00001023bool X86FastISel::X86SelectExtractValue(Instruction *I) {
1024 ExtractValueInst *EI = cast<ExtractValueInst>(I);
1025 Value *Agg = EI->getAggregateOperand();
1026
1027 if (CallInst *CI = dyn_cast<CallInst>(Agg)) {
1028 Function *F = CI->getCalledFunction();
1029
1030 if (F && F->isDeclaration()) {
1031 switch (F->getIntrinsicID()) {
1032 default: break;
1033 case Intrinsic::sadd_with_overflow:
1034 case Intrinsic::uadd_with_overflow:
Bill Wendlingc065b3f2008-12-09 07:55:31 +00001035 // Cheat a little. We know that the registers for "add" and "seto" are
1036 // allocated sequentially. However, we only keep track of the register
1037 // for "add" in the value map. Use extractvalue's index to get the
1038 // correct register for "seto".
Bill Wendling52370a12008-12-09 02:42:50 +00001039 UpdateValueMap(I, lookUpRegForValue(Agg) + *EI->idx_begin());
1040 return true;
1041 }
1042 }
1043 }
1044
1045 return false;
1046}
1047
1048bool X86FastISel::X86VisitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
1049 // FIXME: Handle more intrinsics.
1050 switch (Intrinsic) {
1051 default: return false;
1052 case Intrinsic::sadd_with_overflow:
1053 case Intrinsic::uadd_with_overflow: {
Bill Wendlingc065b3f2008-12-09 07:55:31 +00001054 // Replace "add with overflow" intrinsics with an "add" instruction followed
1055 // by a seto/setc instruction. Later on, when the "extractvalue"
1056 // instructions are encountered, we use the fact that two registers were
1057 // created sequentially to get the correct registers for the "sum" and the
1058 // "overflow bit".
Bill Wendling52370a12008-12-09 02:42:50 +00001059 MVT VT;
1060 const Function *Callee = I.getCalledFunction();
1061 const Type *RetTy =
1062 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(unsigned(0));
1063
1064 if (!isTypeLegal(RetTy, VT))
1065 return false;
1066
1067 Value *Op1 = I.getOperand(1);
1068 Value *Op2 = I.getOperand(2);
1069 unsigned Reg1 = getRegForValue(Op1);
1070 unsigned Reg2 = getRegForValue(Op2);
1071
1072 if (Reg1 == 0 || Reg2 == 0)
1073 // FIXME: Handle values *not* in registers.
1074 return false;
1075
1076 unsigned OpC = 0;
1077
1078 if (VT == MVT::i32)
1079 OpC = X86::ADD32rr;
1080 else if (VT == MVT::i64)
1081 OpC = X86::ADD64rr;
1082 else
1083 return false;
1084
1085 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
1086 BuildMI(MBB, TII.get(OpC), ResultReg).addReg(Reg1).addReg(Reg2);
1087 UpdateValueMap(&I, ResultReg);
1088
1089 ResultReg = createResultReg(TLI.getRegClassFor(MVT::i8));
1090 BuildMI(MBB, TII.get((Intrinsic == Intrinsic::sadd_with_overflow) ?
Dan Gohman653456c2009-01-07 00:15:08 +00001091 X86::SETOr : X86::SETBr), ResultReg);
Bill Wendling52370a12008-12-09 02:42:50 +00001092 return true;
1093 }
1094 }
1095}
1096
Evan Chengf3d4efe2008-09-07 09:09:33 +00001097bool X86FastISel::X86SelectCall(Instruction *I) {
1098 CallInst *CI = cast<CallInst>(I);
1099 Value *Callee = I->getOperand(0);
1100
1101 // Can't handle inline asm yet.
1102 if (isa<InlineAsm>(Callee))
1103 return false;
1104
Bill Wendling52370a12008-12-09 02:42:50 +00001105 // Handle intrinsic calls.
1106 if (Function *F = CI->getCalledFunction())
1107 if (F->isDeclaration())
1108 if (unsigned IID = F->getIntrinsicID())
1109 return X86VisitIntrinsicCall(*CI, IID);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001110
Evan Chengf3d4efe2008-09-07 09:09:33 +00001111 // Handle only C and fastcc calling conventions for now.
1112 CallSite CS(CI);
1113 unsigned CC = CS.getCallingConv();
1114 if (CC != CallingConv::C &&
1115 CC != CallingConv::Fast &&
1116 CC != CallingConv::X86_FastCall)
1117 return false;
1118
1119 // Let SDISel handle vararg functions.
1120 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1121 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
1122 if (FTy->isVarArg())
1123 return false;
1124
1125 // Handle *simple* calls for now.
1126 const Type *RetTy = CS.getType();
1127 MVT RetVT;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001128 if (RetTy == Type::VoidTy)
1129 RetVT = MVT::isVoid;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001130 else if (!isTypeLegal(RetTy, RetVT, true))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001131 return false;
1132
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001133 // Materialize callee address in a register. FIXME: GV address can be
1134 // handled with a CALLpcrel32 instead.
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001135 X86AddressMode CalleeAM;
1136 if (!X86SelectAddress(Callee, CalleeAM, true))
1137 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001138 unsigned CalleeOp = 0;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001139 GlobalValue *GV = 0;
1140 if (CalleeAM.Base.Reg != 0) {
1141 assert(CalleeAM.GV == 0);
1142 CalleeOp = CalleeAM.Base.Reg;
1143 } else if (CalleeAM.GV != 0) {
1144 assert(CalleeAM.GV != 0);
1145 GV = CalleeAM.GV;
1146 } else
1147 return false;
Dan Gohmanb5b6ec62008-09-17 21:18:49 +00001148
Evan Chengdebdea02008-09-08 17:15:42 +00001149 // Allow calls which produce i1 results.
1150 bool AndToI1 = false;
1151 if (RetVT == MVT::i1) {
1152 RetVT = MVT::i8;
1153 AndToI1 = true;
1154 }
1155
Evan Chengf3d4efe2008-09-07 09:09:33 +00001156 // Deal with call operands first.
Chris Lattner241ab472008-10-15 05:38:32 +00001157 SmallVector<Value*, 8> ArgVals;
1158 SmallVector<unsigned, 8> Args;
1159 SmallVector<MVT, 8> ArgVTs;
1160 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001161 Args.reserve(CS.arg_size());
Chris Lattner241ab472008-10-15 05:38:32 +00001162 ArgVals.reserve(CS.arg_size());
Evan Chengf3d4efe2008-09-07 09:09:33 +00001163 ArgVTs.reserve(CS.arg_size());
1164 ArgFlags.reserve(CS.arg_size());
1165 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1166 i != e; ++i) {
1167 unsigned Arg = getRegForValue(*i);
1168 if (Arg == 0)
1169 return false;
1170 ISD::ArgFlagsTy Flags;
1171 unsigned AttrInd = i - CS.arg_begin() + 1;
Devang Patel05988662008-09-25 21:00:45 +00001172 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001173 Flags.setSExt();
Devang Patel05988662008-09-25 21:00:45 +00001174 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001175 Flags.setZExt();
1176
1177 // FIXME: Only handle *easy* calls for now.
Devang Patel05988662008-09-25 21:00:45 +00001178 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1179 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1180 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1181 CS.paramHasAttr(AttrInd, Attribute::ByVal))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001182 return false;
1183
1184 const Type *ArgTy = (*i)->getType();
1185 MVT ArgVT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001186 if (!isTypeLegal(ArgTy, ArgVT))
Evan Chengf3d4efe2008-09-07 09:09:33 +00001187 return false;
1188 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1189 Flags.setOrigAlign(OriginalAlignment);
1190
1191 Args.push_back(Arg);
Chris Lattner241ab472008-10-15 05:38:32 +00001192 ArgVals.push_back(*i);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001193 ArgVTs.push_back(ArgVT);
1194 ArgFlags.push_back(Flags);
1195 }
1196
1197 // Analyze operands of the call, assigning locations to each operand.
1198 SmallVector<CCValAssign, 16> ArgLocs;
1199 CCState CCInfo(CC, false, TM, ArgLocs);
1200 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC));
1201
1202 // Get a count of how many bytes are to be pushed on the stack.
1203 unsigned NumBytes = CCInfo.getNextStackOffset();
1204
1205 // Issue CALLSEQ_START
Dan Gohman6d4b0522008-10-01 18:28:06 +00001206 unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode();
1207 BuildMI(MBB, TII.get(AdjStackDown)).addImm(NumBytes);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001208
Chris Lattner438949a2008-10-15 05:30:52 +00001209 // Process argument: walk the register/memloc assignments, inserting
Evan Chengf3d4efe2008-09-07 09:09:33 +00001210 // copies / loads.
1211 SmallVector<unsigned, 4> RegArgs;
1212 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1213 CCValAssign &VA = ArgLocs[i];
1214 unsigned Arg = Args[VA.getValNo()];
1215 MVT ArgVT = ArgVTs[VA.getValNo()];
1216
1217 // Promote the value if needed.
1218 switch (VA.getLocInfo()) {
1219 default: assert(0 && "Unknown loc info!");
1220 case CCValAssign::Full: break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001221 case CCValAssign::SExt: {
1222 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1223 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001224 assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001225 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001226 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001227 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001228 }
1229 case CCValAssign::ZExt: {
1230 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1231 Arg, ArgVT, Arg);
Chris Lattnera33649e2008-12-19 17:03:38 +00001232 assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001233 Emitted = true;
Evan Cheng24e3a902008-09-08 06:35:17 +00001234 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001235 break;
Evan Cheng24e3a902008-09-08 06:35:17 +00001236 }
1237 case CCValAssign::AExt: {
1238 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1239 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001240 if (!Emitted)
1241 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
Chris Lattner160f6cc2008-10-15 05:07:36 +00001242 Arg, ArgVT, Arg);
Owen Andersonb6369132008-09-11 02:41:37 +00001243 if (!Emitted)
1244 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1245 Arg, ArgVT, Arg);
1246
Chris Lattnera33649e2008-12-19 17:03:38 +00001247 assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted;
Evan Cheng24e3a902008-09-08 06:35:17 +00001248 ArgVT = VA.getLocVT();
Evan Chengf3d4efe2008-09-07 09:09:33 +00001249 break;
1250 }
Evan Cheng24e3a902008-09-08 06:35:17 +00001251 }
Evan Chengf3d4efe2008-09-07 09:09:33 +00001252
1253 if (VA.isRegLoc()) {
1254 TargetRegisterClass* RC = TLI.getRegClassFor(ArgVT);
1255 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), VA.getLocReg(),
1256 Arg, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001257 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001258 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001259 RegArgs.push_back(VA.getLocReg());
1260 } else {
1261 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman0586d912008-09-10 20:11:02 +00001262 X86AddressMode AM;
1263 AM.Base.Reg = StackPtr;
1264 AM.Disp = LocMemOffset;
Chris Lattner241ab472008-10-15 05:38:32 +00001265 Value *ArgVal = ArgVals[VA.getValNo()];
1266
1267 // If this is a really simple value, emit this with the Value* version of
1268 // X86FastEmitStore. If it isn't simple, we don't want to do this, as it
1269 // can cause us to reevaluate the argument.
1270 if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal))
1271 X86FastEmitStore(ArgVT, ArgVal, AM);
1272 else
1273 X86FastEmitStore(ArgVT, Arg, AM);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001274 }
1275 }
1276
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001277 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1278 // GOT pointer.
1279 if (!Subtarget->is64Bit() &&
1280 TM.getRelocationModel() == Reloc::PIC_ &&
1281 Subtarget->isPICStyleGOT()) {
1282 TargetRegisterClass *RC = X86::GR32RegisterClass;
Dan Gohman57c3dac2008-09-30 00:58:23 +00001283 unsigned Base = getInstrInfo()->getGlobalBaseReg(&MF);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001284 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), X86::EBX, Base, RC, RC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001285 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001286 Emitted = true;
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001287 }
1288
Evan Chengf3d4efe2008-09-07 09:09:33 +00001289 // Issue the call.
1290 unsigned CallOpc = CalleeOp
1291 ? (Subtarget->is64Bit() ? X86::CALL64r : X86::CALL32r)
1292 : (Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32);
1293 MachineInstrBuilder MIB = CalleeOp
1294 ? BuildMI(MBB, TII.get(CallOpc)).addReg(CalleeOp)
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001295 : BuildMI(MBB, TII.get(CallOpc)).addGlobalAddress(GV);
Dan Gohman2cc3aa42008-09-25 15:24:26 +00001296
1297 // Add an implicit use GOT pointer in EBX.
1298 if (!Subtarget->is64Bit() &&
1299 TM.getRelocationModel() == Reloc::PIC_ &&
1300 Subtarget->isPICStyleGOT())
1301 MIB.addReg(X86::EBX);
1302
Evan Chengf3d4efe2008-09-07 09:09:33 +00001303 // Add implicit physical register uses to the call.
Dan Gohman8c3f8b62008-10-07 22:10:33 +00001304 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1305 MIB.addReg(RegArgs[i]);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001306
1307 // Issue CALLSEQ_END
Dan Gohman6d4b0522008-10-01 18:28:06 +00001308 unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode();
1309 BuildMI(MBB, TII.get(AdjStackUp)).addImm(NumBytes).addImm(0);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001310
1311 // Now handle call return value (if any).
Evan Chengf3d4efe2008-09-07 09:09:33 +00001312 if (RetVT.getSimpleVT() != MVT::isVoid) {
1313 SmallVector<CCValAssign, 16> RVLocs;
1314 CCState CCInfo(CC, false, TM, RVLocs);
1315 CCInfo.AnalyzeCallResult(RetVT, RetCC_X86);
1316
1317 // Copy all of the result registers out of their specified physreg.
1318 assert(RVLocs.size() == 1 && "Can't handle multi-value calls!");
1319 MVT CopyVT = RVLocs[0].getValVT();
1320 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
1321 TargetRegisterClass *SrcRC = DstRC;
1322
1323 // If this is a call to a function that returns an fp value on the x87 fp
1324 // stack, but where we prefer to use the value in xmm registers, copy it
1325 // out as F80 and use a truncate to move it from fp stack reg to xmm reg.
1326 if ((RVLocs[0].getLocReg() == X86::ST0 ||
1327 RVLocs[0].getLocReg() == X86::ST1) &&
1328 isScalarFPTypeInSSEReg(RVLocs[0].getValVT())) {
1329 CopyVT = MVT::f80;
1330 SrcRC = X86::RSTRegisterClass;
1331 DstRC = X86::RFP80RegisterClass;
1332 }
1333
1334 unsigned ResultReg = createResultReg(DstRC);
1335 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), ResultReg,
1336 RVLocs[0].getLocReg(), DstRC, SrcRC);
Chris Lattnera33649e2008-12-19 17:03:38 +00001337 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted;
Devang Patelfd1c6c32008-12-23 21:56:28 +00001338 Emitted = true;
Evan Chengf3d4efe2008-09-07 09:09:33 +00001339 if (CopyVT != RVLocs[0].getValVT()) {
1340 // Round the F80 the right size, which also moves to the appropriate xmm
1341 // register. This is accomplished by storing the F80 value in memory and
1342 // then loading it back. Ewww...
1343 MVT ResVT = RVLocs[0].getValVT();
1344 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
1345 unsigned MemSize = ResVT.getSizeInBits()/8;
Dan Gohman0586d912008-09-10 20:11:02 +00001346 int FI = MFI.CreateStackObject(MemSize, MemSize);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001347 addFrameReference(BuildMI(MBB, TII.get(Opc)), FI).addReg(ResultReg);
1348 DstRC = ResVT == MVT::f32
1349 ? X86::FR32RegisterClass : X86::FR64RegisterClass;
1350 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
1351 ResultReg = createResultReg(DstRC);
1352 addFrameReference(BuildMI(MBB, TII.get(Opc), ResultReg), FI);
1353 }
1354
Evan Chengdebdea02008-09-08 17:15:42 +00001355 if (AndToI1) {
1356 // Mask out all but lowest bit for some call which produces an i1.
1357 unsigned AndResult = createResultReg(X86::GR8RegisterClass);
1358 BuildMI(MBB, TII.get(X86::AND8ri), AndResult).addReg(ResultReg).addImm(1);
1359 ResultReg = AndResult;
1360 }
1361
Evan Chengf3d4efe2008-09-07 09:09:33 +00001362 UpdateValueMap(I, ResultReg);
1363 }
1364
1365 return true;
1366}
1367
1368
Dan Gohman99b21822008-08-28 23:21:34 +00001369bool
Dan Gohman3df24e62008-09-03 23:12:08 +00001370X86FastISel::TargetSelectInstruction(Instruction *I) {
Dan Gohman99b21822008-08-28 23:21:34 +00001371 switch (I->getOpcode()) {
1372 default: break;
Evan Cheng8b19e562008-09-03 06:44:39 +00001373 case Instruction::Load:
Dan Gohman3df24e62008-09-03 23:12:08 +00001374 return X86SelectLoad(I);
Owen Anderson79924eb2008-09-04 16:48:33 +00001375 case Instruction::Store:
1376 return X86SelectStore(I);
Dan Gohman6e3f05f2008-09-04 23:26:51 +00001377 case Instruction::ICmp:
1378 case Instruction::FCmp:
1379 return X86SelectCmp(I);
Dan Gohmand89ae992008-09-05 01:06:14 +00001380 case Instruction::ZExt:
1381 return X86SelectZExt(I);
1382 case Instruction::Br:
1383 return X86SelectBranch(I);
Evan Chengf3d4efe2008-09-07 09:09:33 +00001384 case Instruction::Call:
1385 return X86SelectCall(I);
Dan Gohmanc39f4db2008-09-05 18:30:08 +00001386 case Instruction::LShr:
1387 case Instruction::AShr:
1388 case Instruction::Shl:
1389 return X86SelectShift(I);
1390 case Instruction::Select:
1391 return X86SelectSelect(I);
Evan Cheng10a8d9c2008-09-07 08:47:42 +00001392 case Instruction::Trunc:
1393 return X86SelectTrunc(I);
Dan Gohman78efce62008-09-10 21:02:08 +00001394 case Instruction::FPExt:
1395 return X86SelectFPExt(I);
1396 case Instruction::FPTrunc:
1397 return X86SelectFPTrunc(I);
Bill Wendling52370a12008-12-09 02:42:50 +00001398 case Instruction::ExtractValue:
1399 return X86SelectExtractValue(I);
Dan Gohman99b21822008-08-28 23:21:34 +00001400 }
1401
1402 return false;
1403}
1404
Dan Gohman0586d912008-09-10 20:11:02 +00001405unsigned X86FastISel::TargetMaterializeConstant(Constant *C) {
Evan Cheng59fbc802008-09-09 01:26:59 +00001406 MVT VT;
Chris Lattner160f6cc2008-10-15 05:07:36 +00001407 if (!isTypeLegal(C->getType(), VT))
Owen Anderson95267a12008-09-05 00:06:23 +00001408 return false;
1409
1410 // Get opcode and regclass of the output for the given load instruction.
1411 unsigned Opc = 0;
1412 const TargetRegisterClass *RC = NULL;
1413 switch (VT.getSimpleVT()) {
1414 default: return false;
1415 case MVT::i8:
1416 Opc = X86::MOV8rm;
1417 RC = X86::GR8RegisterClass;
1418 break;
1419 case MVT::i16:
1420 Opc = X86::MOV16rm;
1421 RC = X86::GR16RegisterClass;
1422 break;
1423 case MVT::i32:
1424 Opc = X86::MOV32rm;
1425 RC = X86::GR32RegisterClass;
1426 break;
1427 case MVT::i64:
1428 // Must be in x86-64 mode.
1429 Opc = X86::MOV64rm;
1430 RC = X86::GR64RegisterClass;
1431 break;
1432 case MVT::f32:
1433 if (Subtarget->hasSSE1()) {
1434 Opc = X86::MOVSSrm;
1435 RC = X86::FR32RegisterClass;
1436 } else {
1437 Opc = X86::LD_Fp32m;
1438 RC = X86::RFP32RegisterClass;
1439 }
1440 break;
1441 case MVT::f64:
1442 if (Subtarget->hasSSE2()) {
1443 Opc = X86::MOVSDrm;
1444 RC = X86::FR64RegisterClass;
1445 } else {
1446 Opc = X86::LD_Fp64m;
1447 RC = X86::RFP64RegisterClass;
1448 }
1449 break;
1450 case MVT::f80:
Dan Gohman5af29c22008-09-26 01:39:32 +00001451 // No f80 support yet.
1452 return false;
Owen Anderson95267a12008-09-05 00:06:23 +00001453 }
1454
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001455 // Materialize addresses with LEA instructions.
Owen Anderson95267a12008-09-05 00:06:23 +00001456 if (isa<GlobalValue>(C)) {
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001457 X86AddressMode AM;
1458 if (X86SelectAddress(C, AM, false)) {
1459 if (TLI.getPointerTy() == MVT::i32)
1460 Opc = X86::LEA32r;
1461 else
1462 Opc = X86::LEA64r;
1463 unsigned ResultReg = createResultReg(RC);
1464 addFullAddress(BuildMI(MBB, TII.get(Opc), ResultReg), AM);
Owen Anderson95267a12008-09-05 00:06:23 +00001465 return ResultReg;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001466 }
Evan Cheng0de588f2008-09-05 21:00:03 +00001467 return 0;
Owen Anderson95267a12008-09-05 00:06:23 +00001468 }
1469
Owen Anderson3b217c62008-09-06 01:11:01 +00001470 // MachineConstantPool wants an explicit alignment.
Dan Gohman1fbc3cd2008-09-18 18:26:43 +00001471 unsigned Align = TD.getPreferredTypeAlignmentShift(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001472 if (Align == 0) {
1473 // Alignment of vector types. FIXME!
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00001474 Align = TD.getTypePaddedSize(C->getType());
Owen Anderson3b217c62008-09-06 01:11:01 +00001475 Align = Log2_64(Align);
1476 }
Owen Anderson95267a12008-09-05 00:06:23 +00001477
Dan Gohman5396c992008-09-30 01:21:32 +00001478 // x86-32 PIC requires a PIC base register for constant pools.
1479 unsigned PICBase = 0;
1480 if (TM.getRelocationModel() == Reloc::PIC_ &&
1481 !Subtarget->is64Bit())
1482 PICBase = getInstrInfo()->getGlobalBaseReg(&MF);
1483
1484 // Create the load from the constant pool.
Dan Gohman0586d912008-09-10 20:11:02 +00001485 unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align);
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001486 unsigned ResultReg = createResultReg(RC);
Dan Gohman5396c992008-09-30 01:21:32 +00001487 addConstantPoolReference(BuildMI(MBB, TII.get(Opc), ResultReg), MCPOffset,
1488 PICBase);
1489
Owen Anderson95267a12008-09-05 00:06:23 +00001490 return ResultReg;
1491}
1492
Dan Gohman0586d912008-09-10 20:11:02 +00001493unsigned X86FastISel::TargetMaterializeAlloca(AllocaInst *C) {
Dan Gohman4e6ed5e2008-10-03 01:27:49 +00001494 // Fail on dynamic allocas. At this point, getRegForValue has already
1495 // checked its CSE maps, so if we're here trying to handle a dynamic
1496 // alloca, we're not going to succeed. X86SelectAddress has a
1497 // check for dynamic allocas, because it's called directly from
1498 // various places, but TargetMaterializeAlloca also needs a check
1499 // in order to avoid recursion between getRegForValue,
1500 // X86SelectAddrss, and TargetMaterializeAlloca.
1501 if (!StaticAllocaMap.count(C))
1502 return 0;
1503
Dan Gohman0586d912008-09-10 20:11:02 +00001504 X86AddressMode AM;
Dan Gohman2ff7fd12008-09-19 22:16:54 +00001505 if (!X86SelectAddress(C, AM, false))
Dan Gohman0586d912008-09-10 20:11:02 +00001506 return 0;
1507 unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
1508 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
1509 unsigned ResultReg = createResultReg(RC);
1510 addFullAddress(BuildMI(MBB, TII.get(Opc), ResultReg), AM);
1511 return ResultReg;
1512}
1513
Evan Chengc3f44b02008-09-03 00:03:49 +00001514namespace llvm {
Dan Gohman3df24e62008-09-03 23:12:08 +00001515 llvm::FastISel *X86::createFastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +00001516 MachineModuleInfo *mmi,
Devang Patel83489bb2009-01-13 00:35:13 +00001517 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +00001518 DenseMap<const Value *, unsigned> &vm,
Dan Gohman0586d912008-09-10 20:11:02 +00001519 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001520 DenseMap<const AllocaInst *, int> &am
1521#ifndef NDEBUG
1522 , SmallSet<Instruction*, 8> &cil
1523#endif
1524 ) {
Devang Patel83489bb2009-01-13 00:35:13 +00001525 return new X86FastISel(mf, mmi, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001526#ifndef NDEBUG
1527 , cil
1528#endif
1529 );
Evan Chengc3f44b02008-09-03 00:03:49 +00001530 }
Dan Gohman99b21822008-08-28 23:21:34 +00001531}