blob: caa81c4c5fc99fed1b48f44010c2ee85143a94e8 [file] [log] [blame]
Arnold Schwaighofera70fe792007-10-12 21:53:12 +00001//===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that X86 uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#include "X86.h"
16#include "X86InstrBuilder.h"
17#include "X86ISelLowering.h"
18#include "X86MachineFunctionInfo.h"
19#include "X86TargetMachine.h"
20#include "llvm/CallingConv.h"
21#include "llvm/Constants.h"
22#include "llvm/DerivedTypes.h"
23#include "llvm/GlobalVariable.h"
24#include "llvm/Function.h"
25#include "llvm/Intrinsics.h"
Evan Cheng75184a92007-12-11 01:46:18 +000026#include "llvm/ADT/BitVector.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027#include "llvm/ADT/VectorExtras.h"
28#include "llvm/Analysis/ScalarEvolutionExpressions.h"
29#include "llvm/CodeGen/CallingConvLower.h"
30#include "llvm/CodeGen/MachineFrameInfo.h"
31#include "llvm/CodeGen/MachineFunction.h"
32#include "llvm/CodeGen/MachineInstrBuilder.h"
Evan Cheng2e28d622008-02-02 04:07:54 +000033#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner1b989192007-12-31 04:13:23 +000034#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman12a9c082008-02-06 22:27:42 +000035#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037#include "llvm/Support/MathExtras.h"
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +000038#include "llvm/Support/Debug.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039#include "llvm/Target/TargetOptions.h"
Evan Cheng75184a92007-12-11 01:46:18 +000040#include "llvm/ADT/SmallSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041#include "llvm/ADT/StringExtras.h"
42using namespace llvm;
43
Evan Cheng2aea0b42008-04-25 19:11:04 +000044// Forward declarations.
45static SDOperand getMOVLMask(unsigned NumElems, SelectionDAG &DAG);
46
Dan Gohmanb41dfba2008-05-14 01:58:56 +000047X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000048 : TargetLowering(TM) {
49 Subtarget = &TM.getSubtarget<X86Subtarget>();
Dale Johannesene0e0fd02007-09-23 14:52:20 +000050 X86ScalarSSEf64 = Subtarget->hasSSE2();
51 X86ScalarSSEf32 = Subtarget->hasSSE1();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000052 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +000053
Chris Lattnerdec9cb52008-01-24 08:07:48 +000054 bool Fast = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055
56 RegInfo = TM.getRegisterInfo();
57
58 // Set up the TargetLowering object.
59
60 // X86 is weird, it always uses i8 for shift amounts and setcc results.
61 setShiftAmountType(MVT::i8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062 setSetCCResultContents(ZeroOrOneSetCCResult);
63 setSchedulingPreference(SchedulingForRegPressure);
64 setShiftAmountFlavor(Mask); // shl X, 32 == shl X, 0
65 setStackPointerRegisterToSaveRestore(X86StackPtr);
66
67 if (Subtarget->isTargetDarwin()) {
68 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
69 setUseUnderscoreSetJmp(false);
70 setUseUnderscoreLongJmp(false);
71 } else if (Subtarget->isTargetMingw()) {
72 // MS runtime is weird: it exports _setjmp, but longjmp!
73 setUseUnderscoreSetJmp(true);
74 setUseUnderscoreLongJmp(false);
75 } else {
76 setUseUnderscoreSetJmp(true);
77 setUseUnderscoreLongJmp(true);
78 }
79
80 // Set up the register classes.
81 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
82 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
83 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
84 if (Subtarget->is64Bit())
85 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
86
Duncan Sands082524c2008-01-23 20:39:46 +000087 setLoadXAction(ISD::SEXTLOAD, MVT::i1, Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000088
Chris Lattner3bc08502008-01-17 19:59:44 +000089 // We don't accept any truncstore of integer registers.
90 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
91 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
92 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
93 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
94 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
95 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
96
Dan Gohmanf17a25c2007-07-18 16:29:46 +000097 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
98 // operation.
99 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
100 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
101 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
102
103 if (Subtarget->is64Bit()) {
104 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
105 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
106 } else {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000107 if (X86ScalarSSEf64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108 // If SSE i64 SINT_TO_FP is not available, expand i32 UINT_TO_FP.
109 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Expand);
110 else
111 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
112 }
113
114 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
115 // this operation.
116 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
117 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
118 // SSE has no i16 to fp conversion, only i32
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000119 if (X86ScalarSSEf32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000121 // f32 and f64 cases are Legal, f80 case is not
122 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
123 } else {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
125 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
126 }
127
Dale Johannesen958b08b2007-09-19 23:55:34 +0000128 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
129 // are Legal, f80 is custom lowered.
130 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
131 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132
133 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
134 // this operation.
135 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
136 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
137
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000138 if (X86ScalarSSEf32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000140 // f32 and f64 cases are Legal, f80 case is not
141 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 } else {
143 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
144 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
145 }
146
147 // Handle FP_TO_UINT by promoting the destination to a larger signed
148 // conversion.
149 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
150 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
151 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
152
153 if (Subtarget->is64Bit()) {
154 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
155 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
156 } else {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000157 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000158 // Expand FP_TO_UINT into a select.
159 // FIXME: We would like to use a Custom expander here eventually to do
160 // the optimal thing for SSE vs. the default expansion in the legalizer.
161 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
162 else
163 // With SSE3 we can use fisttpll to convert to a signed i64.
164 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
165 }
166
167 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000168 if (!X86ScalarSSEf64) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000169 setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand);
170 setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand);
171 }
172
Dan Gohman8450d862008-02-18 19:34:53 +0000173 // Scalar integer divide and remainder are lowered to use operations that
174 // produce two results, to match the available instructions. This exposes
175 // the two-result form to trivial CSE, which is able to combine x/y and x%y
176 // into a single instruction.
177 //
178 // Scalar integer multiply-high is also lowered to use two-result
179 // operations, to match the available instructions. However, plain multiply
180 // (low) operations are left as Legal, as there are single-result
181 // instructions for this in x86. Using the two-result multiply instructions
182 // when both high and low results are needed must be arranged by dagcombine.
Dan Gohman5a199552007-10-08 18:33:35 +0000183 setOperationAction(ISD::MULHS , MVT::i8 , Expand);
184 setOperationAction(ISD::MULHU , MVT::i8 , Expand);
185 setOperationAction(ISD::SDIV , MVT::i8 , Expand);
186 setOperationAction(ISD::UDIV , MVT::i8 , Expand);
187 setOperationAction(ISD::SREM , MVT::i8 , Expand);
188 setOperationAction(ISD::UREM , MVT::i8 , Expand);
Dan Gohman5a199552007-10-08 18:33:35 +0000189 setOperationAction(ISD::MULHS , MVT::i16 , Expand);
190 setOperationAction(ISD::MULHU , MVT::i16 , Expand);
191 setOperationAction(ISD::SDIV , MVT::i16 , Expand);
192 setOperationAction(ISD::UDIV , MVT::i16 , Expand);
193 setOperationAction(ISD::SREM , MVT::i16 , Expand);
194 setOperationAction(ISD::UREM , MVT::i16 , Expand);
Dan Gohman5a199552007-10-08 18:33:35 +0000195 setOperationAction(ISD::MULHS , MVT::i32 , Expand);
196 setOperationAction(ISD::MULHU , MVT::i32 , Expand);
197 setOperationAction(ISD::SDIV , MVT::i32 , Expand);
198 setOperationAction(ISD::UDIV , MVT::i32 , Expand);
199 setOperationAction(ISD::SREM , MVT::i32 , Expand);
200 setOperationAction(ISD::UREM , MVT::i32 , Expand);
Dan Gohman5a199552007-10-08 18:33:35 +0000201 setOperationAction(ISD::MULHS , MVT::i64 , Expand);
202 setOperationAction(ISD::MULHU , MVT::i64 , Expand);
203 setOperationAction(ISD::SDIV , MVT::i64 , Expand);
204 setOperationAction(ISD::UDIV , MVT::i64 , Expand);
205 setOperationAction(ISD::SREM , MVT::i64 , Expand);
206 setOperationAction(ISD::UREM , MVT::i64 , Expand);
Dan Gohman242a5ba2007-09-25 18:23:27 +0000207
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
209 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
210 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
211 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 if (Subtarget->is64Bit())
Christopher Lamb0a7c8662007-08-10 21:48:46 +0000213 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
214 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
215 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
217 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
Chris Lattnerb7a5cca2008-03-07 06:36:32 +0000218 setOperationAction(ISD::FREM , MVT::f32 , Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219 setOperationAction(ISD::FREM , MVT::f64 , Expand);
Chris Lattnerb7a5cca2008-03-07 06:36:32 +0000220 setOperationAction(ISD::FREM , MVT::f80 , Expand);
Dan Gohman819574c2008-01-31 00:41:03 +0000221 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +0000222
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000223 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000224 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
225 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000226 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000227 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
228 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000229 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000230 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
231 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000232 if (Subtarget->is64Bit()) {
233 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000234 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
235 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000236 }
237
238 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
239 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
240
241 // These should be promoted to a larger select which is supported.
242 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
243 setOperationAction(ISD::SELECT , MVT::i8 , Promote);
244 // X86 wants to expand cmov itself.
245 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
246 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
247 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
248 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000249 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000250 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
251 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
252 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
253 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
254 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000255 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000256 if (Subtarget->is64Bit()) {
257 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
258 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
259 }
260 // X86 ret instruction may pop stack.
261 setOperationAction(ISD::RET , MVT::Other, Custom);
262 if (!Subtarget->is64Bit())
263 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
264
265 // Darwin ABI issue.
266 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
267 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
268 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
269 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +0000270 if (Subtarget->is64Bit())
271 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000272 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
273 if (Subtarget->is64Bit()) {
274 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
275 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
276 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
277 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
278 }
279 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
280 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
281 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
282 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman092014e2008-03-03 22:22:09 +0000283 if (Subtarget->is64Bit()) {
284 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
285 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
286 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
287 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000288
Evan Cheng8d51ab32008-03-10 19:38:10 +0000289 if (Subtarget->hasSSE1())
290 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Chengd1d68072008-03-08 00:58:38 +0000291
Andrew Lenharth0531ec52008-02-16 14:46:26 +0000292 if (!Subtarget->hasSSE2())
293 setOperationAction(ISD::MEMBARRIER , MVT::Other, Expand);
294
Mon P Wang078a62d2008-05-05 19:05:59 +0000295 // Expand certain atomics
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +0000296 setOperationAction(ISD::ATOMIC_LCS , MVT::i8, Custom);
297 setOperationAction(ISD::ATOMIC_LCS , MVT::i16, Custom);
298 setOperationAction(ISD::ATOMIC_LCS , MVT::i32, Custom);
Andrew Lenharthbd7d3262008-03-04 21:13:33 +0000299 setOperationAction(ISD::ATOMIC_LCS , MVT::i64, Custom);
Mon P Wang078a62d2008-05-05 19:05:59 +0000300 setOperationAction(ISD::ATOMIC_LSS , MVT::i32, Expand);
Andrew Lenharth0531ec52008-02-16 14:46:26 +0000301
Evan Cheng2e28d622008-02-02 04:07:54 +0000302 // Use the default ISD::LOCATION, ISD::DECLARE expansion.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000303 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000304 // FIXME - use subtarget debug flags
305 if (!Subtarget->isTargetDarwin() &&
306 !Subtarget->isTargetELF() &&
307 !Subtarget->isTargetCygMing())
308 setOperationAction(ISD::LABEL, MVT::Other, Expand);
309
310 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
311 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
312 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
313 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
314 if (Subtarget->is64Bit()) {
315 // FIXME: Verify
316 setExceptionPointerRegister(X86::RAX);
317 setExceptionSelectorRegister(X86::RDX);
318 } else {
319 setExceptionPointerRegister(X86::EAX);
320 setExceptionSelectorRegister(X86::EDX);
321 }
Anton Korobeynikov23ca9c52007-09-03 00:36:06 +0000322 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000323
Duncan Sands7407a9f2007-09-11 14:10:23 +0000324 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsd8455ca2007-07-27 20:02:49 +0000325
Chris Lattner56b941f2008-01-15 21:58:22 +0000326 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +0000327
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000328 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
329 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000330 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000331 if (Subtarget->is64Bit()) {
332 setOperationAction(ISD::VAARG , MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000333 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000334 } else {
335 setOperationAction(ISD::VAARG , MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000336 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000337 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000338
339 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
340 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
341 if (Subtarget->is64Bit())
342 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
343 if (Subtarget->isTargetCygMing())
344 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
345 else
346 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
347
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000348 if (X86ScalarSSEf64) {
349 // f32 and f64 use SSE.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000350 // Set up the FP register classes.
351 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
352 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
353
354 // Use ANDPD to simulate FABS.
355 setOperationAction(ISD::FABS , MVT::f64, Custom);
356 setOperationAction(ISD::FABS , MVT::f32, Custom);
357
358 // Use XORP to simulate FNEG.
359 setOperationAction(ISD::FNEG , MVT::f64, Custom);
360 setOperationAction(ISD::FNEG , MVT::f32, Custom);
361
362 // Use ANDPD and ORPD to simulate FCOPYSIGN.
363 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
364 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
365
366 // We don't support sin/cos/fmod
367 setOperationAction(ISD::FSIN , MVT::f64, Expand);
368 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369 setOperationAction(ISD::FSIN , MVT::f32, Expand);
370 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371
372 // Expand FP immediates into loads from the stack, except for the special
373 // cases we handle.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000374 addLegalFPImmediate(APFloat(+0.0)); // xorpd
375 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Dale Johannesen8f83a6b2007-08-09 01:04:01 +0000376
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000377 // Floating truncations from f80 and extensions to f80 go through memory.
378 // If optimizing, we lie about this though and handle it in
379 // InstructionSelectPreprocess so that dagcombine2 can hack on these.
380 if (Fast) {
381 setConvertAction(MVT::f32, MVT::f80, Expand);
382 setConvertAction(MVT::f64, MVT::f80, Expand);
383 setConvertAction(MVT::f80, MVT::f32, Expand);
384 setConvertAction(MVT::f80, MVT::f64, Expand);
385 }
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000386 } else if (X86ScalarSSEf32) {
387 // Use SSE for f32, x87 for f64.
388 // Set up the FP register classes.
389 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
390 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
391
392 // Use ANDPS to simulate FABS.
393 setOperationAction(ISD::FABS , MVT::f32, Custom);
394
395 // Use XORP to simulate FNEG.
396 setOperationAction(ISD::FNEG , MVT::f32, Custom);
397
398 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
399
400 // Use ANDPS and ORPS to simulate FCOPYSIGN.
401 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
402 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
403
404 // We don't support sin/cos/fmod
405 setOperationAction(ISD::FSIN , MVT::f32, Expand);
406 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000407
Nate Begemane2ba64f2008-02-14 08:57:00 +0000408 // Special cases we handle for FP constants.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000409 addLegalFPImmediate(APFloat(+0.0f)); // xorps
410 addLegalFPImmediate(APFloat(+0.0)); // FLD0
411 addLegalFPImmediate(APFloat(+1.0)); // FLD1
412 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
413 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
414
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000415 // SSE <-> X87 conversions go through memory. If optimizing, we lie about
416 // this though and handle it in InstructionSelectPreprocess so that
417 // dagcombine2 can hack on these.
418 if (Fast) {
419 setConvertAction(MVT::f32, MVT::f64, Expand);
420 setConvertAction(MVT::f32, MVT::f80, Expand);
421 setConvertAction(MVT::f80, MVT::f32, Expand);
422 setConvertAction(MVT::f64, MVT::f32, Expand);
423 // And x87->x87 truncations also.
424 setConvertAction(MVT::f80, MVT::f64, Expand);
425 }
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000426
427 if (!UnsafeFPMath) {
428 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
429 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
430 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000431 } else {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000432 // f32 and f64 in x87.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433 // Set up the FP register classes.
434 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
435 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
436
437 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
438 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
439 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
440 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen8f83a6b2007-08-09 01:04:01 +0000441
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000442 // Floating truncations go through memory. If optimizing, we lie about
443 // this though and handle it in InstructionSelectPreprocess so that
444 // dagcombine2 can hack on these.
445 if (Fast) {
446 setConvertAction(MVT::f80, MVT::f32, Expand);
447 setConvertAction(MVT::f64, MVT::f32, Expand);
448 setConvertAction(MVT::f80, MVT::f64, Expand);
449 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450
451 if (!UnsafeFPMath) {
452 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
453 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
454 }
Dale Johannesenbbe2b702007-08-30 00:23:21 +0000455 addLegalFPImmediate(APFloat(+0.0)); // FLD0
456 addLegalFPImmediate(APFloat(+1.0)); // FLD1
457 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
458 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000459 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
460 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
461 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
462 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000463 }
464
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000465 // Long double always uses X87.
466 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000467 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
468 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Chris Lattnerdd867392008-01-27 06:19:31 +0000469 {
Chris Lattnerdd867392008-01-27 06:19:31 +0000470 APFloat TmpFlt(+0.0);
471 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven);
472 addLegalFPImmediate(TmpFlt); // FLD0
473 TmpFlt.changeSign();
474 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
475 APFloat TmpFlt2(+1.0);
476 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven);
477 addLegalFPImmediate(TmpFlt2); // FLD1
478 TmpFlt2.changeSign();
479 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
480 }
481
Dale Johannesen7f1076b2007-09-26 21:10:55 +0000482 if (!UnsafeFPMath) {
483 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
484 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
485 }
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000486
Dan Gohman2f7b1982007-10-11 23:21:31 +0000487 // Always use a library call for pow.
488 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
489 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
490 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
491
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000492 // First set operation action for all vector types to expand. Then we
493 // will selectively turn on ones that can be effectively codegen'd.
494 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
495 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
496 setOperationAction(ISD::ADD , (MVT::ValueType)VT, Expand);
497 setOperationAction(ISD::SUB , (MVT::ValueType)VT, Expand);
498 setOperationAction(ISD::FADD, (MVT::ValueType)VT, Expand);
499 setOperationAction(ISD::FNEG, (MVT::ValueType)VT, Expand);
500 setOperationAction(ISD::FSUB, (MVT::ValueType)VT, Expand);
501 setOperationAction(ISD::MUL , (MVT::ValueType)VT, Expand);
502 setOperationAction(ISD::FMUL, (MVT::ValueType)VT, Expand);
503 setOperationAction(ISD::SDIV, (MVT::ValueType)VT, Expand);
504 setOperationAction(ISD::UDIV, (MVT::ValueType)VT, Expand);
505 setOperationAction(ISD::FDIV, (MVT::ValueType)VT, Expand);
506 setOperationAction(ISD::SREM, (MVT::ValueType)VT, Expand);
507 setOperationAction(ISD::UREM, (MVT::ValueType)VT, Expand);
508 setOperationAction(ISD::LOAD, (MVT::ValueType)VT, Expand);
509 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::ValueType)VT, Expand);
510 setOperationAction(ISD::EXTRACT_VECTOR_ELT, (MVT::ValueType)VT, Expand);
511 setOperationAction(ISD::INSERT_VECTOR_ELT, (MVT::ValueType)VT, Expand);
512 setOperationAction(ISD::FABS, (MVT::ValueType)VT, Expand);
513 setOperationAction(ISD::FSIN, (MVT::ValueType)VT, Expand);
514 setOperationAction(ISD::FCOS, (MVT::ValueType)VT, Expand);
515 setOperationAction(ISD::FREM, (MVT::ValueType)VT, Expand);
516 setOperationAction(ISD::FPOWI, (MVT::ValueType)VT, Expand);
517 setOperationAction(ISD::FSQRT, (MVT::ValueType)VT, Expand);
518 setOperationAction(ISD::FCOPYSIGN, (MVT::ValueType)VT, Expand);
Dan Gohman5a199552007-10-08 18:33:35 +0000519 setOperationAction(ISD::SMUL_LOHI, (MVT::ValueType)VT, Expand);
520 setOperationAction(ISD::UMUL_LOHI, (MVT::ValueType)VT, Expand);
521 setOperationAction(ISD::SDIVREM, (MVT::ValueType)VT, Expand);
522 setOperationAction(ISD::UDIVREM, (MVT::ValueType)VT, Expand);
Dan Gohman2f7b1982007-10-11 23:21:31 +0000523 setOperationAction(ISD::FPOW, (MVT::ValueType)VT, Expand);
Dan Gohman1d2dc2c2007-10-12 14:09:42 +0000524 setOperationAction(ISD::CTPOP, (MVT::ValueType)VT, Expand);
525 setOperationAction(ISD::CTTZ, (MVT::ValueType)VT, Expand);
526 setOperationAction(ISD::CTLZ, (MVT::ValueType)VT, Expand);
Dan Gohman5b9d6412007-12-12 22:21:26 +0000527 setOperationAction(ISD::SHL, (MVT::ValueType)VT, Expand);
528 setOperationAction(ISD::SRA, (MVT::ValueType)VT, Expand);
529 setOperationAction(ISD::SRL, (MVT::ValueType)VT, Expand);
530 setOperationAction(ISD::ROTL, (MVT::ValueType)VT, Expand);
531 setOperationAction(ISD::ROTR, (MVT::ValueType)VT, Expand);
532 setOperationAction(ISD::BSWAP, (MVT::ValueType)VT, Expand);
Nate Begeman061db5f2008-05-12 20:34:32 +0000533 setOperationAction(ISD::VSETCC, (MVT::ValueType)VT, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534 }
535
536 if (Subtarget->hasMMX()) {
537 addRegisterClass(MVT::v8i8, X86::VR64RegisterClass);
538 addRegisterClass(MVT::v4i16, X86::VR64RegisterClass);
539 addRegisterClass(MVT::v2i32, X86::VR64RegisterClass);
540 addRegisterClass(MVT::v1i64, X86::VR64RegisterClass);
541
542 // FIXME: add MMX packed arithmetics
543
544 setOperationAction(ISD::ADD, MVT::v8i8, Legal);
545 setOperationAction(ISD::ADD, MVT::v4i16, Legal);
546 setOperationAction(ISD::ADD, MVT::v2i32, Legal);
547 setOperationAction(ISD::ADD, MVT::v1i64, Legal);
548
549 setOperationAction(ISD::SUB, MVT::v8i8, Legal);
550 setOperationAction(ISD::SUB, MVT::v4i16, Legal);
551 setOperationAction(ISD::SUB, MVT::v2i32, Legal);
Dale Johannesen6b65c332007-10-30 01:18:38 +0000552 setOperationAction(ISD::SUB, MVT::v1i64, Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000553
554 setOperationAction(ISD::MULHS, MVT::v4i16, Legal);
555 setOperationAction(ISD::MUL, MVT::v4i16, Legal);
556
557 setOperationAction(ISD::AND, MVT::v8i8, Promote);
558 AddPromotedToType (ISD::AND, MVT::v8i8, MVT::v1i64);
559 setOperationAction(ISD::AND, MVT::v4i16, Promote);
560 AddPromotedToType (ISD::AND, MVT::v4i16, MVT::v1i64);
561 setOperationAction(ISD::AND, MVT::v2i32, Promote);
562 AddPromotedToType (ISD::AND, MVT::v2i32, MVT::v1i64);
563 setOperationAction(ISD::AND, MVT::v1i64, Legal);
564
565 setOperationAction(ISD::OR, MVT::v8i8, Promote);
566 AddPromotedToType (ISD::OR, MVT::v8i8, MVT::v1i64);
567 setOperationAction(ISD::OR, MVT::v4i16, Promote);
568 AddPromotedToType (ISD::OR, MVT::v4i16, MVT::v1i64);
569 setOperationAction(ISD::OR, MVT::v2i32, Promote);
570 AddPromotedToType (ISD::OR, MVT::v2i32, MVT::v1i64);
571 setOperationAction(ISD::OR, MVT::v1i64, Legal);
572
573 setOperationAction(ISD::XOR, MVT::v8i8, Promote);
574 AddPromotedToType (ISD::XOR, MVT::v8i8, MVT::v1i64);
575 setOperationAction(ISD::XOR, MVT::v4i16, Promote);
576 AddPromotedToType (ISD::XOR, MVT::v4i16, MVT::v1i64);
577 setOperationAction(ISD::XOR, MVT::v2i32, Promote);
578 AddPromotedToType (ISD::XOR, MVT::v2i32, MVT::v1i64);
579 setOperationAction(ISD::XOR, MVT::v1i64, Legal);
580
581 setOperationAction(ISD::LOAD, MVT::v8i8, Promote);
582 AddPromotedToType (ISD::LOAD, MVT::v8i8, MVT::v1i64);
583 setOperationAction(ISD::LOAD, MVT::v4i16, Promote);
584 AddPromotedToType (ISD::LOAD, MVT::v4i16, MVT::v1i64);
585 setOperationAction(ISD::LOAD, MVT::v2i32, Promote);
586 AddPromotedToType (ISD::LOAD, MVT::v2i32, MVT::v1i64);
587 setOperationAction(ISD::LOAD, MVT::v1i64, Legal);
588
589 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i8, Custom);
590 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i16, Custom);
591 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i32, Custom);
592 setOperationAction(ISD::BUILD_VECTOR, MVT::v1i64, Custom);
593
594 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
595 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
596 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i32, Custom);
597 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v1i64, Custom);
598
599 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Custom);
600 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000601 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Custom);
602 }
603
604 if (Subtarget->hasSSE1()) {
605 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
606
607 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
608 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
609 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
610 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
611 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
612 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
614 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
615 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
616 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
617 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Nate Begeman061db5f2008-05-12 20:34:32 +0000618 setOperationAction(ISD::VSETCC, MVT::v4f32, Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000619 }
620
621 if (Subtarget->hasSSE2()) {
622 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
623 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
624 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
625 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
626 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
627
628 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
629 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
630 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
631 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
632 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
633 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
634 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
635 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
636 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
637 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
638 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
639 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
640 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
641 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
642 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000643
Nate Begeman061db5f2008-05-12 20:34:32 +0000644 setOperationAction(ISD::VSETCC, MVT::v2f64, Legal);
645 setOperationAction(ISD::VSETCC, MVT::v16i8, Legal);
646 setOperationAction(ISD::VSETCC, MVT::v8i16, Legal);
647 setOperationAction(ISD::VSETCC, MVT::v4i32, Legal);
648 setOperationAction(ISD::VSETCC, MVT::v2i64, Legal);
649
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000650 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
651 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
652 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
653 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000654 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
655
656 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
657 for (unsigned VT = (unsigned)MVT::v16i8; VT != (unsigned)MVT::v2i64; VT++) {
Nate Begemanc16406d2007-12-11 01:41:33 +0000658 // Do not attempt to custom lower non-power-of-2 vectors
659 if (!isPowerOf2_32(MVT::getVectorNumElements(VT)))
660 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000661 setOperationAction(ISD::BUILD_VECTOR, (MVT::ValueType)VT, Custom);
662 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::ValueType)VT, Custom);
663 setOperationAction(ISD::EXTRACT_VECTOR_ELT, (MVT::ValueType)VT, Custom);
664 }
665 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
666 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
667 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
668 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000669 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000670 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000671 if (Subtarget->is64Bit()) {
672 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
Dale Johannesen2ff963d2007-10-31 00:32:36 +0000673 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000674 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000675
676 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
677 for (unsigned VT = (unsigned)MVT::v16i8; VT != (unsigned)MVT::v2i64; VT++) {
678 setOperationAction(ISD::AND, (MVT::ValueType)VT, Promote);
679 AddPromotedToType (ISD::AND, (MVT::ValueType)VT, MVT::v2i64);
680 setOperationAction(ISD::OR, (MVT::ValueType)VT, Promote);
681 AddPromotedToType (ISD::OR, (MVT::ValueType)VT, MVT::v2i64);
682 setOperationAction(ISD::XOR, (MVT::ValueType)VT, Promote);
683 AddPromotedToType (ISD::XOR, (MVT::ValueType)VT, MVT::v2i64);
684 setOperationAction(ISD::LOAD, (MVT::ValueType)VT, Promote);
685 AddPromotedToType (ISD::LOAD, (MVT::ValueType)VT, MVT::v2i64);
686 setOperationAction(ISD::SELECT, (MVT::ValueType)VT, Promote);
687 AddPromotedToType (ISD::SELECT, (MVT::ValueType)VT, MVT::v2i64);
688 }
689
Chris Lattner3bc08502008-01-17 19:59:44 +0000690 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000691
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000692 // Custom lower v2i64 and v2f64 selects.
693 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
694 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
695 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
696 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Nate Begeman061db5f2008-05-12 20:34:32 +0000697
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000698 }
Nate Begemand77e59e2008-02-11 04:19:36 +0000699
700 if (Subtarget->hasSSE41()) {
701 // FIXME: Do we need to handle scalar-to-vector here?
702 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
703
704 // i8 and i16 vectors are custom , because the source register and source
705 // source memory operand types are not the same width. f32 vectors are
706 // custom since the immediate controlling the insert encodes additional
707 // information.
708 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
709 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
710 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Legal);
711 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
712
713 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
714 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
715 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Legal);
Evan Cheng6c249332008-03-24 21:52:23 +0000716 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begemand77e59e2008-02-11 04:19:36 +0000717
718 if (Subtarget->is64Bit()) {
Nate Begeman4294c1f2008-02-12 22:51:28 +0000719 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
720 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begemand77e59e2008-02-11 04:19:36 +0000721 }
722 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000723
724 // We want to custom lower some of our intrinsics.
725 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
726
727 // We have target-specific dag combine patterns for the following nodes:
728 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Evan Chenge9b9c672008-05-09 21:53:03 +0000729 setTargetDAGCombine(ISD::BUILD_VECTOR);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000730 setTargetDAGCombine(ISD::SELECT);
Chris Lattnerce84ae42008-02-22 02:09:43 +0000731 setTargetDAGCombine(ISD::STORE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000732
733 computeRegisterProperties();
734
735 // FIXME: These should be based on subtarget info. Plus, the values should
736 // be smaller when we are in optimizing for size mode.
737 maxStoresPerMemset = 16; // For %llvm.memset -> sequence of stores
738 maxStoresPerMemcpy = 16; // For %llvm.memcpy -> sequence of stores
739 maxStoresPerMemmove = 16; // For %llvm.memmove -> sequence of stores
740 allowUnalignedMemoryAccesses = true; // x86 supports it!
Evan Cheng45c1edb2008-02-28 00:43:03 +0000741 setPrefLoopAlignment(16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000742}
743
Scott Michel502151f2008-03-10 15:42:14 +0000744
745MVT::ValueType
746X86TargetLowering::getSetCCResultType(const SDOperand &) const {
747 return MVT::i8;
748}
749
750
Evan Cheng5a67b812008-01-23 23:17:41 +0000751/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
752/// the desired ByVal argument alignment.
753static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
754 if (MaxAlign == 16)
755 return;
756 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
757 if (VTy->getBitWidth() == 128)
758 MaxAlign = 16;
Evan Cheng5a67b812008-01-23 23:17:41 +0000759 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
760 unsigned EltAlign = 0;
761 getMaxByValAlign(ATy->getElementType(), EltAlign);
762 if (EltAlign > MaxAlign)
763 MaxAlign = EltAlign;
764 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
765 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
766 unsigned EltAlign = 0;
767 getMaxByValAlign(STy->getElementType(i), EltAlign);
768 if (EltAlign > MaxAlign)
769 MaxAlign = EltAlign;
770 if (MaxAlign == 16)
771 break;
772 }
773 }
774 return;
775}
776
777/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
778/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesena58b8622008-02-08 19:48:20 +0000779/// that contain SSE vectors are placed at 16-byte boundaries while the rest
780/// are at 4-byte boundaries.
Evan Cheng5a67b812008-01-23 23:17:41 +0000781unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
782 if (Subtarget->is64Bit())
783 return getTargetData()->getABITypeAlignment(Ty);
784 unsigned Align = 4;
Dale Johannesena58b8622008-02-08 19:48:20 +0000785 if (Subtarget->hasSSE1())
786 getMaxByValAlign(Ty, Align);
Evan Cheng5a67b812008-01-23 23:17:41 +0000787 return Align;
788}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789
Evan Cheng8c590372008-05-15 08:39:06 +0000790/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng2f1033e2008-05-15 22:13:02 +0000791/// and store operations as a result of memset, memcpy, and memmove
792/// lowering. It returns MVT::iAny if SelectionDAG should be responsible for
Evan Cheng8c590372008-05-15 08:39:06 +0000793/// determining it.
794MVT::ValueType
795X86TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned Align,
796 bool isSrcConst, bool isSrcStr) const {
797 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE2() && Size >= 16)
798 return MVT::v4i32;
799 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE1() && Size >= 16)
800 return MVT::v4f32;
801 if (Subtarget->is64Bit() && Size >= 8)
802 return MVT::i64;
803 return MVT::i32;
804}
805
806
Evan Cheng6fb06762007-11-09 01:32:10 +0000807/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
808/// jumptable.
809SDOperand X86TargetLowering::getPICJumpTableRelocBase(SDOperand Table,
810 SelectionDAG &DAG) const {
811 if (usesGlobalOffsetTable())
812 return DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, getPointerTy());
813 if (!Subtarget->isPICStyleRIPRel())
814 return DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy());
815 return Table;
816}
817
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818//===----------------------------------------------------------------------===//
819// Return Value Calling Convention Implementation
820//===----------------------------------------------------------------------===//
821
822#include "X86GenCallingConv.inc"
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000823
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000824/// LowerRET - Lower an ISD::RET node.
825SDOperand X86TargetLowering::LowerRET(SDOperand Op, SelectionDAG &DAG) {
826 assert((Op.getNumOperands() & 1) == 1 && "ISD::RET should have odd # args");
827
828 SmallVector<CCValAssign, 16> RVLocs;
829 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
830 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
831 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
832 CCInfo.AnalyzeReturn(Op.Val, RetCC_X86);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000833
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000834 // If this is the first return lowered for this function, add the regs to the
835 // liveout set for the function.
Chris Lattner1b989192007-12-31 04:13:23 +0000836 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000837 for (unsigned i = 0; i != RVLocs.size(); ++i)
838 if (RVLocs[i].isRegLoc())
Chris Lattner1b989192007-12-31 04:13:23 +0000839 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000840 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000841 SDOperand Chain = Op.getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000842
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000843 // Handle tail call return.
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000844 Chain = GetPossiblePreceedingTailCall(Chain, X86ISD::TAILCALL);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000845 if (Chain.getOpcode() == X86ISD::TAILCALL) {
846 SDOperand TailCall = Chain;
847 SDOperand TargetAddress = TailCall.getOperand(1);
848 SDOperand StackAdjustment = TailCall.getOperand(2);
Chris Lattnerf8decf52008-01-16 05:52:18 +0000849 assert(((TargetAddress.getOpcode() == ISD::Register &&
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000850 (cast<RegisterSDNode>(TargetAddress)->getReg() == X86::ECX ||
851 cast<RegisterSDNode>(TargetAddress)->getReg() == X86::R9)) ||
852 TargetAddress.getOpcode() == ISD::TargetExternalSymbol ||
853 TargetAddress.getOpcode() == ISD::TargetGlobalAddress) &&
854 "Expecting an global address, external symbol, or register");
Chris Lattnerf8decf52008-01-16 05:52:18 +0000855 assert(StackAdjustment.getOpcode() == ISD::Constant &&
856 "Expecting a const value");
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000857
858 SmallVector<SDOperand,8> Operands;
859 Operands.push_back(Chain.getOperand(0));
860 Operands.push_back(TargetAddress);
861 Operands.push_back(StackAdjustment);
862 // Copy registers used by the call. Last operand is a flag so it is not
863 // copied.
Arnold Schwaighofer10202b32007-10-16 09:05:00 +0000864 for (unsigned i=3; i < TailCall.getNumOperands()-1; i++) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000865 Operands.push_back(Chain.getOperand(i));
866 }
Arnold Schwaighofer10202b32007-10-16 09:05:00 +0000867 return DAG.getNode(X86ISD::TC_RETURN, MVT::Other, &Operands[0],
868 Operands.size());
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000869 }
870
871 // Regular return.
872 SDOperand Flag;
873
Chris Lattnerb56cc342008-03-11 03:23:40 +0000874 SmallVector<SDOperand, 6> RetOps;
875 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
876 // Operand #1 = Bytes To Pop
877 RetOps.push_back(DAG.getConstant(getBytesToPopOnReturn(), MVT::i16));
878
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000879 // Copy the result values into the output registers.
Chris Lattnere22e1fb2008-03-10 21:08:41 +0000880 for (unsigned i = 0; i != RVLocs.size(); ++i) {
881 CCValAssign &VA = RVLocs[i];
882 assert(VA.isRegLoc() && "Can only return in registers!");
883 SDOperand ValToCopy = Op.getOperand(i*2+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000884
Chris Lattnerb56cc342008-03-11 03:23:40 +0000885 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
886 // the RET instruction and handled by the FP Stackifier.
887 if (RVLocs[i].getLocReg() == X86::ST0 ||
888 RVLocs[i].getLocReg() == X86::ST1) {
889 // If this is a copy from an xmm register to ST(0), use an FPExtend to
890 // change the value to the FP stack register class.
891 if (isScalarFPTypeInSSEReg(RVLocs[i].getValVT()))
892 ValToCopy = DAG.getNode(ISD::FP_EXTEND, MVT::f80, ValToCopy);
893 RetOps.push_back(ValToCopy);
894 // Don't emit a copytoreg.
895 continue;
896 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000897
Chris Lattnere22e1fb2008-03-10 21:08:41 +0000898 Chain = DAG.getCopyToReg(Chain, VA.getLocReg(), ValToCopy, Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000899 Flag = Chain.getValue(1);
900 }
Dan Gohmanb47dabd2008-04-21 23:59:07 +0000901
902 // The x86-64 ABI for returning structs by value requires that we copy
903 // the sret argument into %rax for the return. We saved the argument into
904 // a virtual register in the entry block, so now we copy the value out
905 // and into %rax.
906 if (Subtarget->is64Bit() &&
907 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
908 MachineFunction &MF = DAG.getMachineFunction();
909 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
910 unsigned Reg = FuncInfo->getSRetReturnReg();
911 if (!Reg) {
912 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
913 FuncInfo->setSRetReturnReg(Reg);
914 }
915 SDOperand Val = DAG.getCopyFromReg(Chain, Reg, getPointerTy());
916
917 Chain = DAG.getCopyToReg(Chain, X86::RAX, Val, Flag);
918 Flag = Chain.getValue(1);
919 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000920
Chris Lattnerb56cc342008-03-11 03:23:40 +0000921 RetOps[0] = Chain; // Update chain.
922
923 // Add the flag if we have it.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000924 if (Flag.Val)
Chris Lattnerb56cc342008-03-11 03:23:40 +0000925 RetOps.push_back(Flag);
926
927 return DAG.getNode(X86ISD::RET_FLAG, MVT::Other, &RetOps[0], RetOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000928}
929
930
931/// LowerCallResult - Lower the result values of an ISD::CALL into the
932/// appropriate copies out of appropriate physical registers. This assumes that
933/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
934/// being lowered. The returns a SDNode with the same number of values as the
935/// ISD::CALL.
936SDNode *X86TargetLowering::
937LowerCallResult(SDOperand Chain, SDOperand InFlag, SDNode *TheCall,
938 unsigned CallingConv, SelectionDAG &DAG) {
939
940 // Assign locations to each value returned by this call.
941 SmallVector<CCValAssign, 16> RVLocs;
942 bool isVarArg = cast<ConstantSDNode>(TheCall->getOperand(2))->getValue() != 0;
943 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
944 CCInfo.AnalyzeCallResult(TheCall, RetCC_X86);
945
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000946 SmallVector<SDOperand, 8> ResultVals;
947
948 // Copy all of the result registers out of their specified physreg.
Chris Lattnere22e1fb2008-03-10 21:08:41 +0000949 for (unsigned i = 0; i != RVLocs.size(); ++i) {
950 MVT::ValueType CopyVT = RVLocs[i].getValVT();
951
952 // If this is a call to a function that returns an fp value on the floating
953 // point stack, but where we prefer to use the value in xmm registers, copy
954 // it out as F80 and use a truncate to move it from fp stack reg to xmm reg.
955 if (RVLocs[i].getLocReg() == X86::ST0 &&
956 isScalarFPTypeInSSEReg(RVLocs[i].getValVT())) {
957 CopyVT = MVT::f80;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000958 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000959
Chris Lattnere22e1fb2008-03-10 21:08:41 +0000960 Chain = DAG.getCopyFromReg(Chain, RVLocs[i].getLocReg(),
961 CopyVT, InFlag).getValue(1);
962 SDOperand Val = Chain.getValue(0);
963 InFlag = Chain.getValue(2);
Chris Lattner40758732007-12-29 06:41:28 +0000964
Chris Lattnere22e1fb2008-03-10 21:08:41 +0000965 if (CopyVT != RVLocs[i].getValVT()) {
966 // Round the F80 the right size, which also moves to the appropriate xmm
967 // register.
968 Val = DAG.getNode(ISD::FP_ROUND, RVLocs[i].getValVT(), Val,
969 // This truncation won't change the value.
970 DAG.getIntPtrConstant(1));
971 }
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000972
Chris Lattnere22e1fb2008-03-10 21:08:41 +0000973 ResultVals.push_back(Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000974 }
975
976 // Merge everything together with a MERGE_VALUES node.
977 ResultVals.push_back(Chain);
978 return DAG.getNode(ISD::MERGE_VALUES, TheCall->getVTList(),
979 &ResultVals[0], ResultVals.size()).Val;
980}
981
982
983//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000984// C & StdCall & Fast Calling Convention implementation
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000985//===----------------------------------------------------------------------===//
986// StdCall calling convention seems to be standard for many Windows' API
987// routines and around. It differs from C calling convention just a little:
988// callee should clean up the stack, not caller. Symbols should be also
989// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000990// For info on fast calling convention see Fast Calling Convention (tail call)
991// implementation LowerX86_32FastCCCallTo.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000992
993/// AddLiveIn - This helper function adds the specified physical register to the
994/// MachineFunction as a live in value. It also creates a corresponding virtual
995/// register for it.
996static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
997 const TargetRegisterClass *RC) {
998 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner1b989192007-12-31 04:13:23 +0000999 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
1000 MF.getRegInfo().addLiveIn(PReg, VReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001001 return VReg;
1002}
1003
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001004/// CallIsStructReturn - Determines whether a CALL node uses struct return
1005/// semantics.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001006static bool CallIsStructReturn(SDOperand Op) {
1007 unsigned NumOps = (Op.getNumOperands() - 5) / 2;
1008 if (!NumOps)
1009 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001010
1011 return cast<ARG_FLAGSSDNode>(Op.getOperand(6))->getArgFlags().isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001012}
1013
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001014/// ArgsAreStructReturn - Determines whether a FORMAL_ARGUMENTS node uses struct
1015/// return semantics.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001016static bool ArgsAreStructReturn(SDOperand Op) {
1017 unsigned NumArgs = Op.Val->getNumValues() - 1;
1018 if (!NumArgs)
1019 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001020
1021 return cast<ARG_FLAGSSDNode>(Op.getOperand(3))->getArgFlags().isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001022}
1023
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001024/// IsCalleePop - Determines whether a CALL or FORMAL_ARGUMENTS node requires
1025/// the callee to pop its own arguments. Callee pop is necessary to support tail
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001026/// calls.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001027bool X86TargetLowering::IsCalleePop(SDOperand Op) {
1028 bool IsVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
1029 if (IsVarArg)
1030 return false;
1031
1032 switch (cast<ConstantSDNode>(Op.getOperand(1))->getValue()) {
1033 default:
1034 return false;
1035 case CallingConv::X86_StdCall:
1036 return !Subtarget->is64Bit();
1037 case CallingConv::X86_FastCall:
1038 return !Subtarget->is64Bit();
1039 case CallingConv::Fast:
1040 return PerformTailCallOpt;
1041 }
1042}
1043
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001044/// CCAssignFnForNode - Selects the correct CCAssignFn for a CALL or
1045/// FORMAL_ARGUMENTS node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001046CCAssignFn *X86TargetLowering::CCAssignFnForNode(SDOperand Op) const {
1047 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
1048
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001049 if (Subtarget->is64Bit()) {
Anton Korobeynikov06d49b02008-03-22 20:57:27 +00001050 if (Subtarget->isTargetWin64())
Anton Korobeynikov99bd1882008-03-22 20:37:30 +00001051 return CC_X86_Win64_C;
1052 else {
1053 if (CC == CallingConv::Fast && PerformTailCallOpt)
1054 return CC_X86_64_TailCall;
1055 else
1056 return CC_X86_64_C;
1057 }
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001058 }
1059
Gordon Henriksen18ace102008-01-05 16:56:59 +00001060 if (CC == CallingConv::X86_FastCall)
1061 return CC_X86_32_FastCall;
1062 else if (CC == CallingConv::Fast && PerformTailCallOpt)
1063 return CC_X86_32_TailCall;
1064 else
1065 return CC_X86_32_C;
1066}
1067
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001068/// NameDecorationForFORMAL_ARGUMENTS - Selects the appropriate decoration to
1069/// apply to a MachineFunction containing a given FORMAL_ARGUMENTS node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001070NameDecorationStyle
1071X86TargetLowering::NameDecorationForFORMAL_ARGUMENTS(SDOperand Op) {
1072 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
1073 if (CC == CallingConv::X86_FastCall)
1074 return FastCall;
1075 else if (CC == CallingConv::X86_StdCall)
1076 return StdCall;
1077 return None;
1078}
1079
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001080
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001081/// CallRequiresGOTInRegister - Check whether the call requires the GOT pointer
1082/// in a register before calling.
1083bool X86TargetLowering::CallRequiresGOTPtrInReg(bool Is64Bit, bool IsTailCall) {
1084 return !IsTailCall && !Is64Bit &&
1085 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1086 Subtarget->isPICStyleGOT();
1087}
1088
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001089/// CallRequiresFnAddressInReg - Check whether the call requires the function
1090/// address to be loaded in a register.
1091bool
1092X86TargetLowering::CallRequiresFnAddressInReg(bool Is64Bit, bool IsTailCall) {
1093 return !Is64Bit && IsTailCall &&
1094 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1095 Subtarget->isPICStyleGOT();
1096}
1097
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001098/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1099/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001100/// the specific parameter attribute. The copy will be passed as a byval
1101/// function parameter.
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001102static SDOperand
Evan Cheng5817a0e2008-01-12 01:08:07 +00001103CreateCopyOfByValArgument(SDOperand Src, SDOperand Dst, SDOperand Chain,
Duncan Sandsc93fae32008-03-21 09:14:45 +00001104 ISD::ArgFlagsTy Flags, SelectionDAG &DAG) {
Duncan Sandsc93fae32008-03-21 09:14:45 +00001105 SDOperand SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dan Gohmane8b391e2008-04-12 04:36:06 +00001106 return DAG.getMemcpy(Chain, Dst, Src, SizeNode, Flags.getByValAlign(),
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001107 /*AlwaysInline=*/true, NULL, 0, NULL, 0);
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001108}
1109
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001110SDOperand X86TargetLowering::LowerMemArgument(SDOperand Op, SelectionDAG &DAG,
1111 const CCValAssign &VA,
1112 MachineFrameInfo *MFI,
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001113 unsigned CC,
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001114 SDOperand Root, unsigned i) {
1115 // Create the nodes corresponding to a load from this parameter slot.
Duncan Sandsc93fae32008-03-21 09:14:45 +00001116 ISD::ArgFlagsTy Flags =
1117 cast<ARG_FLAGSSDNode>(Op.getOperand(3 + i))->getArgFlags();
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001118 bool AlwaysUseMutable = (CC==CallingConv::Fast) && PerformTailCallOpt;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001119 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Evan Cheng3e42a522008-01-10 02:24:25 +00001120
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001121 // FIXME: For now, all byval parameter objects are marked mutable. This can be
1122 // changed with more analysis.
1123 // In case of tail call optimization mark all arguments mutable. Since they
1124 // could be overwritten by lowering of arguments in case of a tail call.
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001125 int FI = MFI->CreateFixedObject(MVT::getSizeInBits(VA.getValVT())/8,
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001126 VA.getLocMemOffset(), isImmutable);
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001127 SDOperand FIN = DAG.getFrameIndex(FI, getPointerTy());
Duncan Sandsc93fae32008-03-21 09:14:45 +00001128 if (Flags.isByVal())
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001129 return FIN;
Dan Gohman12a9c082008-02-06 22:27:42 +00001130 return DAG.getLoad(VA.getValVT(), Root, FIN,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001131 PseudoSourceValue::getFixedStack(), FI);
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001132}
1133
Gordon Henriksen18ace102008-01-05 16:56:59 +00001134SDOperand
1135X86TargetLowering::LowerFORMAL_ARGUMENTS(SDOperand Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001136 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001137 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1138
1139 const Function* Fn = MF.getFunction();
1140 if (Fn->hasExternalLinkage() &&
1141 Subtarget->isTargetCygMing() &&
1142 Fn->getName() == "main")
1143 FuncInfo->setForceFramePointer(true);
1144
1145 // Decorate the function name.
1146 FuncInfo->setDecorationStyle(NameDecorationForFORMAL_ARGUMENTS(Op));
1147
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001148 MachineFrameInfo *MFI = MF.getFrameInfo();
1149 SDOperand Root = Op.getOperand(0);
1150 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001151 unsigned CC = MF.getFunction()->getCallingConv();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001152 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001153 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001154
1155 assert(!(isVarArg && CC == CallingConv::Fast) &&
1156 "Var args not supported with calling convention fastcc");
1157
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001158 // Assign locations to all of the incoming arguments.
1159 SmallVector<CCValAssign, 16> ArgLocs;
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001160 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001161 CCInfo.AnalyzeFormalArguments(Op.Val, CCAssignFnForNode(Op));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001162
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001163 SmallVector<SDOperand, 8> ArgValues;
1164 unsigned LastVal = ~0U;
1165 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1166 CCValAssign &VA = ArgLocs[i];
1167 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1168 // places.
1169 assert(VA.getValNo() != LastVal &&
1170 "Don't support value assigned to multiple locs yet");
1171 LastVal = VA.getValNo();
1172
1173 if (VA.isRegLoc()) {
1174 MVT::ValueType RegVT = VA.getLocVT();
1175 TargetRegisterClass *RC;
1176 if (RegVT == MVT::i32)
1177 RC = X86::GR32RegisterClass;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001178 else if (Is64Bit && RegVT == MVT::i64)
1179 RC = X86::GR64RegisterClass;
Dale Johannesen51552f62008-02-05 20:46:33 +00001180 else if (RegVT == MVT::f32)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001181 RC = X86::FR32RegisterClass;
Dale Johannesen51552f62008-02-05 20:46:33 +00001182 else if (RegVT == MVT::f64)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001183 RC = X86::FR64RegisterClass;
Evan Chengf5af6fe2008-04-25 07:56:45 +00001184 else if (MVT::isVector(RegVT) && MVT::getSizeInBits(RegVT) == 128)
1185 RC = X86::VR128RegisterClass;
1186 else if (MVT::isVector(RegVT)) {
1187 assert(MVT::getSizeInBits(RegVT) == 64);
1188 if (!Is64Bit)
1189 RC = X86::VR64RegisterClass; // MMX values are passed in MMXs.
1190 else {
1191 // Darwin calling convention passes MMX values in either GPRs or
1192 // XMMs in x86-64. Other targets pass them in memory.
1193 if (RegVT != MVT::v1i64 && Subtarget->hasSSE2()) {
1194 RC = X86::VR128RegisterClass; // MMX values are passed in XMMs.
1195 RegVT = MVT::v2i64;
1196 } else {
1197 RC = X86::GR64RegisterClass; // v1i64 values are passed in GPRs.
1198 RegVT = MVT::i64;
1199 }
1200 }
1201 } else {
1202 assert(0 && "Unknown argument type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001203 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001204
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001205 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
1206 SDOperand ArgValue = DAG.getCopyFromReg(Root, Reg, RegVT);
1207
1208 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1209 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1210 // right size.
1211 if (VA.getLocInfo() == CCValAssign::SExt)
1212 ArgValue = DAG.getNode(ISD::AssertSext, RegVT, ArgValue,
1213 DAG.getValueType(VA.getValVT()));
1214 else if (VA.getLocInfo() == CCValAssign::ZExt)
1215 ArgValue = DAG.getNode(ISD::AssertZext, RegVT, ArgValue,
1216 DAG.getValueType(VA.getValVT()));
1217
1218 if (VA.getLocInfo() != CCValAssign::Full)
1219 ArgValue = DAG.getNode(ISD::TRUNCATE, VA.getValVT(), ArgValue);
1220
Gordon Henriksen18ace102008-01-05 16:56:59 +00001221 // Handle MMX values passed in GPRs.
Evan Chengad6980b2008-04-25 20:13:28 +00001222 if (Is64Bit && RegVT != VA.getLocVT()) {
1223 if (MVT::getSizeInBits(RegVT) == 64 && RC == X86::GR64RegisterClass)
1224 ArgValue = DAG.getNode(ISD::BIT_CONVERT, VA.getLocVT(), ArgValue);
1225 else if (RC == X86::VR128RegisterClass) {
1226 ArgValue = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i64, ArgValue,
1227 DAG.getConstant(0, MVT::i64));
1228 ArgValue = DAG.getNode(ISD::BIT_CONVERT, VA.getLocVT(), ArgValue);
1229 }
1230 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001231
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001232 ArgValues.push_back(ArgValue);
1233 } else {
1234 assert(VA.isMemLoc());
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001235 ArgValues.push_back(LowerMemArgument(Op, DAG, VA, MFI, CC, Root, i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001236 }
1237 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001238
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001239 // The x86-64 ABI for returning structs by value requires that we copy
1240 // the sret argument into %rax for the return. Save the argument into
1241 // a virtual register so that we can access it from the return points.
1242 if (Is64Bit && DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1243 MachineFunction &MF = DAG.getMachineFunction();
1244 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1245 unsigned Reg = FuncInfo->getSRetReturnReg();
1246 if (!Reg) {
1247 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1248 FuncInfo->setSRetReturnReg(Reg);
1249 }
1250 SDOperand Copy = DAG.getCopyToReg(DAG.getEntryNode(), Reg, ArgValues[0]);
1251 Root = DAG.getNode(ISD::TokenFactor, MVT::Other, Copy, Root);
1252 }
1253
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001254 unsigned StackSize = CCInfo.getNextStackOffset();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001255 // align stack specially for tail calls
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001256 if (CC == CallingConv::Fast)
1257 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001258
1259 // If the function takes variable number of arguments, make a frame index for
1260 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001261 if (isVarArg) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001262 if (Is64Bit || CC != CallingConv::X86_FastCall) {
1263 VarArgsFrameIndex = MFI->CreateFixedObject(1, StackSize);
1264 }
1265 if (Is64Bit) {
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001266 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1267
1268 // FIXME: We should really autogenerate these arrays
1269 static const unsigned GPR64ArgRegsWin64[] = {
1270 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen18ace102008-01-05 16:56:59 +00001271 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001272 static const unsigned XMMArgRegsWin64[] = {
1273 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3
1274 };
1275 static const unsigned GPR64ArgRegs64Bit[] = {
1276 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1277 };
1278 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001279 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1280 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1281 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001282 const unsigned *GPR64ArgRegs, *XMMArgRegs;
1283
1284 if (IsWin64) {
1285 TotalNumIntRegs = 4; TotalNumXMMRegs = 4;
1286 GPR64ArgRegs = GPR64ArgRegsWin64;
1287 XMMArgRegs = XMMArgRegsWin64;
1288 } else {
1289 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1290 GPR64ArgRegs = GPR64ArgRegs64Bit;
1291 XMMArgRegs = XMMArgRegs64Bit;
1292 }
1293 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1294 TotalNumIntRegs);
1295 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs,
1296 TotalNumXMMRegs);
1297
Gordon Henriksen18ace102008-01-05 16:56:59 +00001298 // For X86-64, if there are vararg parameters that are passed via
1299 // registers, then we must store them to their spots on the stack so they
1300 // may be loaded by deferencing the result of va_next.
1301 VarArgsGPOffset = NumIntRegs * 8;
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001302 VarArgsFPOffset = TotalNumIntRegs * 8 + NumXMMRegs * 16;
1303 RegSaveFrameIndex = MFI->CreateStackObject(TotalNumIntRegs * 8 +
1304 TotalNumXMMRegs * 16, 16);
1305
Gordon Henriksen18ace102008-01-05 16:56:59 +00001306 // Store the integer parameter registers.
1307 SmallVector<SDOperand, 8> MemOps;
1308 SDOperand RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
1309 SDOperand FIN = DAG.getNode(ISD::ADD, getPointerTy(), RSFIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001310 DAG.getIntPtrConstant(VarArgsGPOffset));
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001311 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001312 unsigned VReg = AddLiveIn(MF, GPR64ArgRegs[NumIntRegs],
1313 X86::GR64RegisterClass);
1314 SDOperand Val = DAG.getCopyFromReg(Root, VReg, MVT::i64);
Dan Gohman12a9c082008-02-06 22:27:42 +00001315 SDOperand Store =
1316 DAG.getStore(Val.getValue(1), Val, FIN,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001317 PseudoSourceValue::getFixedStack(),
Dan Gohman12a9c082008-02-06 22:27:42 +00001318 RegSaveFrameIndex);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001319 MemOps.push_back(Store);
1320 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001321 DAG.getIntPtrConstant(8));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001322 }
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001323
Gordon Henriksen18ace102008-01-05 16:56:59 +00001324 // Now store the XMM (fp + vector) parameter registers.
1325 FIN = DAG.getNode(ISD::ADD, getPointerTy(), RSFIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001326 DAG.getIntPtrConstant(VarArgsFPOffset));
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001327 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001328 unsigned VReg = AddLiveIn(MF, XMMArgRegs[NumXMMRegs],
1329 X86::VR128RegisterClass);
1330 SDOperand Val = DAG.getCopyFromReg(Root, VReg, MVT::v4f32);
Dan Gohman12a9c082008-02-06 22:27:42 +00001331 SDOperand Store =
1332 DAG.getStore(Val.getValue(1), Val, FIN,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001333 PseudoSourceValue::getFixedStack(),
Dan Gohman12a9c082008-02-06 22:27:42 +00001334 RegSaveFrameIndex);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001335 MemOps.push_back(Store);
1336 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001337 DAG.getIntPtrConstant(16));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001338 }
1339 if (!MemOps.empty())
1340 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
1341 &MemOps[0], MemOps.size());
1342 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001343 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001344
1345 // Make sure the instruction takes 8n+4 bytes to make sure the start of the
1346 // arguments and the arguments after the retaddr has been pushed are
1347 // aligned.
1348 if (!Is64Bit && CC == CallingConv::X86_FastCall &&
1349 !Subtarget->isTargetCygMing() && !Subtarget->isTargetWindows() &&
1350 (StackSize & 7) == 0)
1351 StackSize += 4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001352
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001353 ArgValues.push_back(Root);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001354
Gordon Henriksen18ace102008-01-05 16:56:59 +00001355 // Some CCs need callee pop.
1356 if (IsCalleePop(Op)) {
1357 BytesToPopOnReturn = StackSize; // Callee pops everything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001358 BytesCallerReserves = 0;
1359 } else {
1360 BytesToPopOnReturn = 0; // Callee pops nothing.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001361 // If this is an sret function, the return should pop the hidden pointer.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001362 if (!Is64Bit && ArgsAreStructReturn(Op))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001363 BytesToPopOnReturn = 4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001364 BytesCallerReserves = StackSize;
1365 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001366
Gordon Henriksen18ace102008-01-05 16:56:59 +00001367 if (!Is64Bit) {
1368 RegSaveFrameIndex = 0xAAAAAAA; // RegSaveFrameIndex is X86-64 only.
1369 if (CC == CallingConv::X86_FastCall)
1370 VarArgsFrameIndex = 0xAAAAAAA; // fastcc functions can't have varargs.
1371 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001372
Anton Korobeynikove844e472007-08-15 17:12:32 +00001373 FuncInfo->setBytesToPopOnReturn(BytesToPopOnReturn);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001374
1375 // Return the new list of results.
1376 return DAG.getNode(ISD::MERGE_VALUES, Op.Val->getVTList(),
1377 &ArgValues[0], ArgValues.size()).getValue(Op.ResNo);
1378}
1379
Evan Chengbc077bf2008-01-10 00:09:10 +00001380SDOperand
1381X86TargetLowering::LowerMemOpCallTo(SDOperand Op, SelectionDAG &DAG,
1382 const SDOperand &StackPtr,
1383 const CCValAssign &VA,
1384 SDOperand Chain,
1385 SDOperand Arg) {
Dan Gohman1190f3a2008-02-07 16:28:05 +00001386 unsigned LocMemOffset = VA.getLocMemOffset();
1387 SDOperand PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Evan Chengbc077bf2008-01-10 00:09:10 +00001388 PtrOff = DAG.getNode(ISD::ADD, getPointerTy(), StackPtr, PtrOff);
Duncan Sandsc93fae32008-03-21 09:14:45 +00001389 ISD::ArgFlagsTy Flags =
1390 cast<ARG_FLAGSSDNode>(Op.getOperand(6+2*VA.getValNo()))->getArgFlags();
1391 if (Flags.isByVal()) {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001392 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG);
Evan Chengbc077bf2008-01-10 00:09:10 +00001393 }
Dan Gohman1190f3a2008-02-07 16:28:05 +00001394 return DAG.getStore(Chain, Arg, PtrOff,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001395 PseudoSourceValue::getStack(), LocMemOffset);
Evan Chengbc077bf2008-01-10 00:09:10 +00001396}
1397
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001398/// EmitTailCallLoadRetAddr - Emit a load of return adress if tail call
1399/// optimization is performed and it is required.
1400SDOperand
1401X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
1402 SDOperand &OutRetAddr,
1403 SDOperand Chain,
1404 bool IsTailCall,
1405 bool Is64Bit,
1406 int FPDiff) {
1407 if (!IsTailCall || FPDiff==0) return Chain;
1408
1409 // Adjust the Return address stack slot.
1410 MVT::ValueType VT = getPointerTy();
1411 OutRetAddr = getReturnAddressFrameIndex(DAG);
1412 // Load the "old" Return address.
1413 OutRetAddr = DAG.getLoad(VT, Chain,OutRetAddr, NULL, 0);
1414 return SDOperand(OutRetAddr.Val, 1);
1415}
1416
1417/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1418/// optimization is performed and it is required (FPDiff!=0).
1419static SDOperand
1420EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
1421 SDOperand Chain, SDOperand RetAddrFrIdx,
1422 bool Is64Bit, int FPDiff) {
1423 // Store the return address to the appropriate stack slot.
1424 if (!FPDiff) return Chain;
1425 // Calculate the new stack slot for the return address.
1426 int SlotSize = Is64Bit ? 8 : 4;
1427 int NewReturnAddrFI =
1428 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize);
1429 MVT::ValueType VT = Is64Bit ? MVT::i64 : MVT::i32;
1430 SDOperand NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
1431 Chain = DAG.getStore(Chain, RetAddrFrIdx, NewRetAddrFrIdx,
1432 PseudoSourceValue::getFixedStack(), NewReturnAddrFI);
1433 return Chain;
1434}
1435
Gordon Henriksen18ace102008-01-05 16:56:59 +00001436SDOperand X86TargetLowering::LowerCALL(SDOperand Op, SelectionDAG &DAG) {
1437 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001438 SDOperand Chain = Op.getOperand(0);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001439 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001440 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001441 bool IsTailCall = cast<ConstantSDNode>(Op.getOperand(3))->getValue() != 0
1442 && CC == CallingConv::Fast && PerformTailCallOpt;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001443 SDOperand Callee = Op.getOperand(4);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001444 bool Is64Bit = Subtarget->is64Bit();
Evan Cheng931a8f42008-01-29 19:34:22 +00001445 bool IsStructRet = CallIsStructReturn(Op);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001446
1447 assert(!(isVarArg && CC == CallingConv::Fast) &&
1448 "Var args not supported with calling convention fastcc");
1449
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001450 // Analyze operands of the call, assigning locations to each operand.
1451 SmallVector<CCValAssign, 16> ArgLocs;
1452 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Chris Lattnerc3838802008-03-21 06:50:21 +00001453 CCInfo.AnalyzeCallOperands(Op.Val, CCAssignFnForNode(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001454
1455 // Get a count of how many bytes are to be pushed on the stack.
1456 unsigned NumBytes = CCInfo.getNextStackOffset();
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001457 if (CC == CallingConv::Fast)
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001458 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001459
Gordon Henriksen18ace102008-01-05 16:56:59 +00001460 // Make sure the instruction takes 8n+4 bytes to make sure the start of the
1461 // arguments and the arguments after the retaddr has been pushed are aligned.
1462 if (!Is64Bit && CC == CallingConv::X86_FastCall &&
1463 !Subtarget->isTargetCygMing() && !Subtarget->isTargetWindows() &&
1464 (NumBytes & 7) == 0)
1465 NumBytes += 4;
1466
1467 int FPDiff = 0;
1468 if (IsTailCall) {
1469 // Lower arguments at fp - stackoffset + fpdiff.
1470 unsigned NumBytesCallerPushed =
1471 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1472 FPDiff = NumBytesCallerPushed - NumBytes;
1473
1474 // Set the delta of movement of the returnaddr stackslot.
1475 // But only set if delta is greater than previous delta.
1476 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1477 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1478 }
1479
Chris Lattner5872a362008-01-17 07:00:52 +00001480 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001481
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001482 SDOperand RetAddrFrIdx;
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001483 // Load return adress for tail calls.
1484 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, IsTailCall, Is64Bit,
1485 FPDiff);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001486
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001487 SmallVector<std::pair<unsigned, SDOperand>, 8> RegsToPass;
1488 SmallVector<SDOperand, 8> MemOpChains;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001489 SDOperand StackPtr;
1490
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001491 // Walk the register/memloc assignments, inserting copies/loads. In the case
1492 // of tail call optimization arguments are handle later.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001493 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1494 CCValAssign &VA = ArgLocs[i];
1495 SDOperand Arg = Op.getOperand(5+2*VA.getValNo());
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001496 bool isByVal = cast<ARG_FLAGSSDNode>(Op.getOperand(6+2*VA.getValNo()))->
1497 getArgFlags().isByVal();
1498
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001499 // Promote the value if needed.
1500 switch (VA.getLocInfo()) {
1501 default: assert(0 && "Unknown loc info!");
1502 case CCValAssign::Full: break;
1503 case CCValAssign::SExt:
1504 Arg = DAG.getNode(ISD::SIGN_EXTEND, VA.getLocVT(), Arg);
1505 break;
1506 case CCValAssign::ZExt:
1507 Arg = DAG.getNode(ISD::ZERO_EXTEND, VA.getLocVT(), Arg);
1508 break;
1509 case CCValAssign::AExt:
1510 Arg = DAG.getNode(ISD::ANY_EXTEND, VA.getLocVT(), Arg);
1511 break;
1512 }
1513
1514 if (VA.isRegLoc()) {
Evan Cheng2aea0b42008-04-25 19:11:04 +00001515 if (Is64Bit) {
1516 MVT::ValueType RegVT = VA.getLocVT();
1517 if (MVT::isVector(RegVT) && MVT::getSizeInBits(RegVT) == 64)
1518 switch (VA.getLocReg()) {
1519 default:
1520 break;
1521 case X86::RDI: case X86::RSI: case X86::RDX: case X86::RCX:
1522 case X86::R8: {
1523 // Special case: passing MMX values in GPR registers.
1524 Arg = DAG.getNode(ISD::BIT_CONVERT, MVT::i64, Arg);
1525 break;
1526 }
1527 case X86::XMM0: case X86::XMM1: case X86::XMM2: case X86::XMM3:
1528 case X86::XMM4: case X86::XMM5: case X86::XMM6: case X86::XMM7: {
1529 // Special case: passing MMX values in XMM registers.
1530 Arg = DAG.getNode(ISD::BIT_CONVERT, MVT::i64, Arg);
1531 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v2i64, Arg);
1532 Arg = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v2i64,
1533 DAG.getNode(ISD::UNDEF, MVT::v2i64), Arg,
1534 getMOVLMask(2, DAG));
1535 break;
1536 }
1537 }
1538 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001539 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1540 } else {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001541 if (!IsTailCall || (IsTailCall && isByVal)) {
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001542 assert(VA.isMemLoc());
1543 if (StackPtr.Val == 0)
1544 StackPtr = DAG.getCopyFromReg(Chain, X86StackPtr, getPointerTy());
1545
1546 MemOpChains.push_back(LowerMemOpCallTo(Op, DAG, StackPtr, VA, Chain,
1547 Arg));
1548 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001549 }
1550 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001551
1552 if (!MemOpChains.empty())
1553 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
1554 &MemOpChains[0], MemOpChains.size());
1555
1556 // Build a sequence of copy-to-reg nodes chained together with token chain
1557 // and flag operands which copy the outgoing args into registers.
1558 SDOperand InFlag;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001559 // Tail call byval lowering might overwrite argument registers so in case of
1560 // tail call optimization the copies to registers are lowered later.
1561 if (!IsTailCall)
1562 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1563 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second,
1564 InFlag);
1565 InFlag = Chain.getValue(1);
1566 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001567
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001568 // ELF / PIC requires GOT in the EBX register before function calls via PLT
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001569 // GOT pointer.
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001570 if (CallRequiresGOTPtrInReg(Is64Bit, IsTailCall)) {
1571 Chain = DAG.getCopyToReg(Chain, X86::EBX,
1572 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
1573 InFlag);
1574 InFlag = Chain.getValue(1);
1575 }
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001576 // If we are tail calling and generating PIC/GOT style code load the address
1577 // of the callee into ecx. The value in ecx is used as target of the tail
1578 // jump. This is done to circumvent the ebx/callee-saved problem for tail
1579 // calls on PIC/GOT architectures. Normally we would just put the address of
1580 // GOT into ebx and then call target@PLT. But for tail callss ebx would be
1581 // restored (since ebx is callee saved) before jumping to the target@PLT.
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001582 if (CallRequiresFnAddressInReg(Is64Bit, IsTailCall)) {
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001583 // Note: The actual moving to ecx is done further down.
1584 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
1585 if (G && !G->getGlobal()->hasHiddenVisibility() &&
1586 !G->getGlobal()->hasProtectedVisibility())
1587 Callee = LowerGlobalAddress(Callee, DAG);
1588 else if (isa<ExternalSymbolSDNode>(Callee))
1589 Callee = LowerExternalSymbol(Callee,DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001590 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001591
Gordon Henriksen18ace102008-01-05 16:56:59 +00001592 if (Is64Bit && isVarArg) {
1593 // From AMD64 ABI document:
1594 // For calls that may call functions that use varargs or stdargs
1595 // (prototype-less calls or calls to functions containing ellipsis (...) in
1596 // the declaration) %al is used as hidden argument to specify the number
1597 // of SSE registers used. The contents of %al do not need to match exactly
1598 // the number of registers, but must be an ubound on the number of SSE
1599 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001600
1601 // FIXME: Verify this on Win64
Gordon Henriksen18ace102008-01-05 16:56:59 +00001602 // Count the number of XMM registers allocated.
1603 static const unsigned XMMArgRegs[] = {
1604 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1605 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1606 };
1607 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
1608
1609 Chain = DAG.getCopyToReg(Chain, X86::AL,
1610 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
1611 InFlag = Chain.getValue(1);
1612 }
1613
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001614
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001615 // For tail calls lower the arguments to the 'real' stack slot.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001616 if (IsTailCall) {
1617 SmallVector<SDOperand, 8> MemOpChains2;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001618 SDOperand FIN;
1619 int FI = 0;
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001620 // Do not flag preceeding copytoreg stuff together with the following stuff.
1621 InFlag = SDOperand();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001622 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1623 CCValAssign &VA = ArgLocs[i];
1624 if (!VA.isRegLoc()) {
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001625 assert(VA.isMemLoc());
1626 SDOperand Arg = Op.getOperand(5+2*VA.getValNo());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001627 SDOperand FlagsOp = Op.getOperand(6+2*VA.getValNo());
Duncan Sandsc93fae32008-03-21 09:14:45 +00001628 ISD::ArgFlagsTy Flags =
1629 cast<ARG_FLAGSSDNode>(FlagsOp)->getArgFlags();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001630 // Create frame index.
1631 int32_t Offset = VA.getLocMemOffset()+FPDiff;
1632 uint32_t OpSize = (MVT::getSizeInBits(VA.getLocVT())+7)/8;
1633 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001634 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001635
Duncan Sandsc93fae32008-03-21 09:14:45 +00001636 if (Flags.isByVal()) {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001637 // Copy relative to framepointer.
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001638 SDOperand Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
1639 if (StackPtr.Val == 0)
1640 StackPtr = DAG.getCopyFromReg(Chain, X86StackPtr, getPointerTy());
1641 Source = DAG.getNode(ISD::ADD, getPointerTy(), StackPtr, Source);
1642
1643 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN, Chain,
Evan Cheng5817a0e2008-01-12 01:08:07 +00001644 Flags, DAG));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001645 } else {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001646 // Store relative to framepointer.
Dan Gohman12a9c082008-02-06 22:27:42 +00001647 MemOpChains2.push_back(
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001648 DAG.getStore(Chain, Arg, FIN,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001649 PseudoSourceValue::getFixedStack(), FI));
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001650 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001651 }
1652 }
1653
1654 if (!MemOpChains2.empty())
1655 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
Arnold Schwaighoferdfb21302008-01-11 14:34:56 +00001656 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001657
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001658 // Copy arguments to their registers.
1659 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1660 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second,
1661 InFlag);
1662 InFlag = Chain.getValue(1);
1663 }
1664 InFlag =SDOperand();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001665
Gordon Henriksen18ace102008-01-05 16:56:59 +00001666 // Store the return address to the appropriate stack slot.
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001667 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
1668 FPDiff);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001669 }
1670
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001671 // If the callee is a GlobalAddress node (quite common, every direct call is)
1672 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
1673 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1674 // We should use extra load for direct calls to dllimported functions in
1675 // non-JIT mode.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001676 if ((IsTailCall || !Is64Bit ||
1677 getTargetMachine().getCodeModel() != CodeModel::Large)
1678 && !Subtarget->GVRequiresExtraLoad(G->getGlobal(),
1679 getTargetMachine(), true))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001680 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy());
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001681 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001682 if (IsTailCall || !Is64Bit ||
1683 getTargetMachine().getCodeModel() != CodeModel::Large)
1684 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
1685 } else if (IsTailCall) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001686 unsigned Opc = Is64Bit ? X86::R9 : X86::ECX;
1687
1688 Chain = DAG.getCopyToReg(Chain,
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001689 DAG.getRegister(Opc, getPointerTy()),
Gordon Henriksen18ace102008-01-05 16:56:59 +00001690 Callee,InFlag);
1691 Callee = DAG.getRegister(Opc, getPointerTy());
1692 // Add register as live out.
1693 DAG.getMachineFunction().getRegInfo().addLiveOut(Opc);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001694 }
1695
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001696 // Returns a chain & a flag for retval copy to use.
1697 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1698 SmallVector<SDOperand, 8> Ops;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001699
1700 if (IsTailCall) {
1701 Ops.push_back(Chain);
Chris Lattner5872a362008-01-17 07:00:52 +00001702 Ops.push_back(DAG.getIntPtrConstant(NumBytes));
1703 Ops.push_back(DAG.getIntPtrConstant(0));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001704 if (InFlag.Val)
1705 Ops.push_back(InFlag);
1706 Chain = DAG.getNode(ISD::CALLSEQ_END, NodeTys, &Ops[0], Ops.size());
1707 InFlag = Chain.getValue(1);
1708
1709 // Returns a chain & a flag for retval copy to use.
1710 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1711 Ops.clear();
1712 }
1713
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001714 Ops.push_back(Chain);
1715 Ops.push_back(Callee);
1716
Gordon Henriksen18ace102008-01-05 16:56:59 +00001717 if (IsTailCall)
1718 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001719
Gordon Henriksen18ace102008-01-05 16:56:59 +00001720 // Add argument registers to the end of the list so that they are known live
1721 // into the call.
Evan Chenge14fc242008-01-07 23:08:23 +00001722 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1723 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1724 RegsToPass[i].second.getValueType()));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001725
Evan Cheng8ba45e62008-03-18 23:36:35 +00001726 // Add an implicit use GOT pointer in EBX.
1727 if (!IsTailCall && !Is64Bit &&
1728 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1729 Subtarget->isPICStyleGOT())
1730 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
1731
1732 // Add an implicit use of AL for x86 vararg functions.
1733 if (Is64Bit && isVarArg)
1734 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
1735
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001736 if (InFlag.Val)
1737 Ops.push_back(InFlag);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001738
Gordon Henriksen18ace102008-01-05 16:56:59 +00001739 if (IsTailCall) {
1740 assert(InFlag.Val &&
1741 "Flag must be set. Depend on flag being set in LowerRET");
1742 Chain = DAG.getNode(X86ISD::TAILCALL,
1743 Op.Val->getVTList(), &Ops[0], Ops.size());
1744
1745 return SDOperand(Chain.Val, Op.ResNo);
1746 }
1747
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001748 Chain = DAG.getNode(X86ISD::CALL, NodeTys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001749 InFlag = Chain.getValue(1);
1750
1751 // Create the CALLSEQ_END node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001752 unsigned NumBytesForCalleeToPush;
1753 if (IsCalleePop(Op))
1754 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Evan Cheng931a8f42008-01-29 19:34:22 +00001755 else if (!Is64Bit && IsStructRet)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001756 // If this is is a call to a struct-return function, the callee
1757 // pops the hidden struct pointer, so we have to push it back.
1758 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001759 NumBytesForCalleeToPush = 4;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001760 else
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001761 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001762
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001763 // Returns a flag for retval copy to use.
Bill Wendling22f8deb2007-11-13 00:44:25 +00001764 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattner5872a362008-01-17 07:00:52 +00001765 DAG.getIntPtrConstant(NumBytes),
1766 DAG.getIntPtrConstant(NumBytesForCalleeToPush),
Bill Wendling22f8deb2007-11-13 00:44:25 +00001767 InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001768 InFlag = Chain.getValue(1);
1769
1770 // Handle result values, copying them out of physregs into vregs that we
1771 // return.
Chris Lattnerc3838802008-03-21 06:50:21 +00001772 return SDOperand(LowerCallResult(Chain, InFlag, Op.Val, CC, DAG), Op.ResNo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001773}
1774
1775
1776//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001777// Fast Calling Convention (tail call) implementation
1778//===----------------------------------------------------------------------===//
1779
1780// Like std call, callee cleans arguments, convention except that ECX is
1781// reserved for storing the tail called function address. Only 2 registers are
1782// free for argument passing (inreg). Tail call optimization is performed
1783// provided:
1784// * tailcallopt is enabled
1785// * caller/callee are fastcc
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001786// On X86_64 architecture with GOT-style position independent code only local
1787// (within module) calls are supported at the moment.
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00001788// To keep the stack aligned according to platform abi the function
1789// GetAlignedArgumentStackSize ensures that argument delta is always multiples
1790// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001791// If a tail called function callee has more arguments than the caller the
1792// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00001793// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001794// original REtADDR, but before the saved framepointer or the spilled registers
1795// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
1796// stack layout:
1797// arg1
1798// arg2
1799// RETADDR
1800// [ new RETADDR
1801// move area ]
1802// (possible EBP)
1803// ESI
1804// EDI
1805// local1 ..
1806
1807/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
1808/// for a 16 byte align requirement.
1809unsigned X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
1810 SelectionDAG& DAG) {
1811 if (PerformTailCallOpt) {
1812 MachineFunction &MF = DAG.getMachineFunction();
1813 const TargetMachine &TM = MF.getTarget();
1814 const TargetFrameInfo &TFI = *TM.getFrameInfo();
1815 unsigned StackAlignment = TFI.getStackAlignment();
1816 uint64_t AlignMask = StackAlignment - 1;
1817 int64_t Offset = StackSize;
1818 unsigned SlotSize = Subtarget->is64Bit() ? 8 : 4;
1819 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
1820 // Number smaller than 12 so just add the difference.
1821 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
1822 } else {
1823 // Mask out lower bits, add stackalignment once plus the 12 bytes.
1824 Offset = ((~AlignMask) & Offset) + StackAlignment +
1825 (StackAlignment-SlotSize);
1826 }
1827 StackSize = Offset;
1828 }
1829 return StackSize;
1830}
1831
1832/// IsEligibleForTailCallElimination - Check to see whether the next instruction
Evan Chenge7a87392007-11-02 01:26:22 +00001833/// following the call is a return. A function is eligible if caller/callee
1834/// calling conventions match, currently only fastcc supports tail calls, and
1835/// the function CALL is immediatly followed by a RET.
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001836bool X86TargetLowering::IsEligibleForTailCallOptimization(SDOperand Call,
1837 SDOperand Ret,
1838 SelectionDAG& DAG) const {
Evan Chenge7a87392007-11-02 01:26:22 +00001839 if (!PerformTailCallOpt)
1840 return false;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001841
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001842 if (CheckTailCallReturnConstraints(Call, Ret)) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001843 MachineFunction &MF = DAG.getMachineFunction();
1844 unsigned CallerCC = MF.getFunction()->getCallingConv();
1845 unsigned CalleeCC = cast<ConstantSDNode>(Call.getOperand(1))->getValue();
1846 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
1847 SDOperand Callee = Call.getOperand(4);
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001848 // On x86/32Bit PIC/GOT tail calls are supported.
Evan Chenge7a87392007-11-02 01:26:22 +00001849 if (getTargetMachine().getRelocationModel() != Reloc::PIC_ ||
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001850 !Subtarget->isPICStyleGOT()|| !Subtarget->is64Bit())
Evan Chenge7a87392007-11-02 01:26:22 +00001851 return true;
1852
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001853 // Can only do local tail calls (in same module, hidden or protected) on
1854 // x86_64 PIC/GOT at the moment.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001855 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1856 return G->getGlobal()->hasHiddenVisibility()
1857 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001858 }
1859 }
Evan Chenge7a87392007-11-02 01:26:22 +00001860
1861 return false;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001862}
1863
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001864//===----------------------------------------------------------------------===//
1865// Other Lowering Hooks
1866//===----------------------------------------------------------------------===//
1867
1868
1869SDOperand X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
Anton Korobeynikove844e472007-08-15 17:12:32 +00001870 MachineFunction &MF = DAG.getMachineFunction();
1871 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1872 int ReturnAddrIndex = FuncInfo->getRAIndex();
1873
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001874 if (ReturnAddrIndex == 0) {
1875 // Set up a frame object for the return address.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001876 if (Subtarget->is64Bit())
1877 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(8, -8);
1878 else
1879 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(4, -4);
Anton Korobeynikove844e472007-08-15 17:12:32 +00001880
1881 FuncInfo->setRAIndex(ReturnAddrIndex);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001882 }
1883
1884 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
1885}
1886
1887
1888
1889/// translateX86CC - do a one to one translation of a ISD::CondCode to the X86
1890/// specific condition code. It returns a false if it cannot do a direct
1891/// translation. X86CC is the translated CondCode. LHS/RHS are modified as
1892/// needed.
1893static bool translateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
1894 unsigned &X86CC, SDOperand &LHS, SDOperand &RHS,
1895 SelectionDAG &DAG) {
1896 X86CC = X86::COND_INVALID;
1897 if (!isFP) {
1898 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
1899 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
1900 // X > -1 -> X == 0, jump !sign.
1901 RHS = DAG.getConstant(0, RHS.getValueType());
1902 X86CC = X86::COND_NS;
1903 return true;
1904 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
1905 // X < 0 -> X == 0, jump on sign.
1906 X86CC = X86::COND_S;
1907 return true;
Dan Gohman37b34262007-09-17 14:49:27 +00001908 } else if (SetCCOpcode == ISD::SETLT && RHSC->getValue() == 1) {
1909 // X < 1 -> X <= 0
1910 RHS = DAG.getConstant(0, RHS.getValueType());
1911 X86CC = X86::COND_LE;
1912 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001913 }
1914 }
1915
1916 switch (SetCCOpcode) {
1917 default: break;
1918 case ISD::SETEQ: X86CC = X86::COND_E; break;
1919 case ISD::SETGT: X86CC = X86::COND_G; break;
1920 case ISD::SETGE: X86CC = X86::COND_GE; break;
1921 case ISD::SETLT: X86CC = X86::COND_L; break;
1922 case ISD::SETLE: X86CC = X86::COND_LE; break;
1923 case ISD::SETNE: X86CC = X86::COND_NE; break;
1924 case ISD::SETULT: X86CC = X86::COND_B; break;
1925 case ISD::SETUGT: X86CC = X86::COND_A; break;
1926 case ISD::SETULE: X86CC = X86::COND_BE; break;
1927 case ISD::SETUGE: X86CC = X86::COND_AE; break;
1928 }
1929 } else {
1930 // On a floating point condition, the flags are set as follows:
1931 // ZF PF CF op
1932 // 0 | 0 | 0 | X > Y
1933 // 0 | 0 | 1 | X < Y
1934 // 1 | 0 | 0 | X == Y
1935 // 1 | 1 | 1 | unordered
1936 bool Flip = false;
1937 switch (SetCCOpcode) {
1938 default: break;
1939 case ISD::SETUEQ:
1940 case ISD::SETEQ: X86CC = X86::COND_E; break;
1941 case ISD::SETOLT: Flip = true; // Fallthrough
1942 case ISD::SETOGT:
1943 case ISD::SETGT: X86CC = X86::COND_A; break;
1944 case ISD::SETOLE: Flip = true; // Fallthrough
1945 case ISD::SETOGE:
1946 case ISD::SETGE: X86CC = X86::COND_AE; break;
1947 case ISD::SETUGT: Flip = true; // Fallthrough
1948 case ISD::SETULT:
1949 case ISD::SETLT: X86CC = X86::COND_B; break;
1950 case ISD::SETUGE: Flip = true; // Fallthrough
1951 case ISD::SETULE:
1952 case ISD::SETLE: X86CC = X86::COND_BE; break;
1953 case ISD::SETONE:
1954 case ISD::SETNE: X86CC = X86::COND_NE; break;
1955 case ISD::SETUO: X86CC = X86::COND_P; break;
1956 case ISD::SETO: X86CC = X86::COND_NP; break;
1957 }
1958 if (Flip)
1959 std::swap(LHS, RHS);
1960 }
1961
1962 return X86CC != X86::COND_INVALID;
1963}
1964
1965/// hasFPCMov - is there a floating point cmov for the specific X86 condition
1966/// code. Current x86 isa includes the following FP cmov instructions:
1967/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
1968static bool hasFPCMov(unsigned X86CC) {
1969 switch (X86CC) {
1970 default:
1971 return false;
1972 case X86::COND_B:
1973 case X86::COND_BE:
1974 case X86::COND_E:
1975 case X86::COND_P:
1976 case X86::COND_A:
1977 case X86::COND_AE:
1978 case X86::COND_NE:
1979 case X86::COND_NP:
1980 return true;
1981 }
1982}
1983
1984/// isUndefOrInRange - Op is either an undef node or a ConstantSDNode. Return
1985/// true if Op is undef or if its value falls within the specified range (L, H].
1986static bool isUndefOrInRange(SDOperand Op, unsigned Low, unsigned Hi) {
1987 if (Op.getOpcode() == ISD::UNDEF)
1988 return true;
1989
1990 unsigned Val = cast<ConstantSDNode>(Op)->getValue();
1991 return (Val >= Low && Val < Hi);
1992}
1993
1994/// isUndefOrEqual - Op is either an undef node or a ConstantSDNode. Return
1995/// true if Op is undef or if its value equal to the specified value.
1996static bool isUndefOrEqual(SDOperand Op, unsigned Val) {
1997 if (Op.getOpcode() == ISD::UNDEF)
1998 return true;
1999 return cast<ConstantSDNode>(Op)->getValue() == Val;
2000}
2001
2002/// isPSHUFDMask - Return true if the specified VECTOR_SHUFFLE operand
2003/// specifies a shuffle of elements that is suitable for input to PSHUFD.
2004bool X86::isPSHUFDMask(SDNode *N) {
2005 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2006
Dan Gohman7dc19012007-08-02 21:17:01 +00002007 if (N->getNumOperands() != 2 && N->getNumOperands() != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002008 return false;
2009
2010 // Check if the value doesn't reference the second vector.
2011 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
2012 SDOperand Arg = N->getOperand(i);
2013 if (Arg.getOpcode() == ISD::UNDEF) continue;
2014 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohman7dc19012007-08-02 21:17:01 +00002015 if (cast<ConstantSDNode>(Arg)->getValue() >= e)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002016 return false;
2017 }
2018
2019 return true;
2020}
2021
2022/// isPSHUFHWMask - Return true if the specified VECTOR_SHUFFLE operand
2023/// specifies a shuffle of elements that is suitable for input to PSHUFHW.
2024bool X86::isPSHUFHWMask(SDNode *N) {
2025 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2026
2027 if (N->getNumOperands() != 8)
2028 return false;
2029
2030 // Lower quadword copied in order.
2031 for (unsigned i = 0; i != 4; ++i) {
2032 SDOperand Arg = N->getOperand(i);
2033 if (Arg.getOpcode() == ISD::UNDEF) continue;
2034 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2035 if (cast<ConstantSDNode>(Arg)->getValue() != i)
2036 return false;
2037 }
2038
2039 // Upper quadword shuffled.
2040 for (unsigned i = 4; i != 8; ++i) {
2041 SDOperand Arg = N->getOperand(i);
2042 if (Arg.getOpcode() == ISD::UNDEF) continue;
2043 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2044 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2045 if (Val < 4 || Val > 7)
2046 return false;
2047 }
2048
2049 return true;
2050}
2051
2052/// isPSHUFLWMask - Return true if the specified VECTOR_SHUFFLE operand
2053/// specifies a shuffle of elements that is suitable for input to PSHUFLW.
2054bool X86::isPSHUFLWMask(SDNode *N) {
2055 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2056
2057 if (N->getNumOperands() != 8)
2058 return false;
2059
2060 // Upper quadword copied in order.
2061 for (unsigned i = 4; i != 8; ++i)
2062 if (!isUndefOrEqual(N->getOperand(i), i))
2063 return false;
2064
2065 // Lower quadword shuffled.
2066 for (unsigned i = 0; i != 4; ++i)
2067 if (!isUndefOrInRange(N->getOperand(i), 0, 4))
2068 return false;
2069
2070 return true;
2071}
2072
2073/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2074/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00002075static bool isSHUFPMask(SDOperandPtr Elems, unsigned NumElems) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002076 if (NumElems != 2 && NumElems != 4) return false;
2077
2078 unsigned Half = NumElems / 2;
2079 for (unsigned i = 0; i < Half; ++i)
2080 if (!isUndefOrInRange(Elems[i], 0, NumElems))
2081 return false;
2082 for (unsigned i = Half; i < NumElems; ++i)
2083 if (!isUndefOrInRange(Elems[i], NumElems, NumElems*2))
2084 return false;
2085
2086 return true;
2087}
2088
2089bool X86::isSHUFPMask(SDNode *N) {
2090 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2091 return ::isSHUFPMask(N->op_begin(), N->getNumOperands());
2092}
2093
2094/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
2095/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2096/// half elements to come from vector 1 (which would equal the dest.) and
2097/// the upper half to come from vector 2.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00002098static bool isCommutedSHUFP(SDOperandPtr Ops, unsigned NumOps) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002099 if (NumOps != 2 && NumOps != 4) return false;
2100
2101 unsigned Half = NumOps / 2;
2102 for (unsigned i = 0; i < Half; ++i)
2103 if (!isUndefOrInRange(Ops[i], NumOps, NumOps*2))
2104 return false;
2105 for (unsigned i = Half; i < NumOps; ++i)
2106 if (!isUndefOrInRange(Ops[i], 0, NumOps))
2107 return false;
2108 return true;
2109}
2110
2111static bool isCommutedSHUFP(SDNode *N) {
2112 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2113 return isCommutedSHUFP(N->op_begin(), N->getNumOperands());
2114}
2115
2116/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2117/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
2118bool X86::isMOVHLPSMask(SDNode *N) {
2119 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2120
2121 if (N->getNumOperands() != 4)
2122 return false;
2123
2124 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
2125 return isUndefOrEqual(N->getOperand(0), 6) &&
2126 isUndefOrEqual(N->getOperand(1), 7) &&
2127 isUndefOrEqual(N->getOperand(2), 2) &&
2128 isUndefOrEqual(N->getOperand(3), 3);
2129}
2130
2131/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2132/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2133/// <2, 3, 2, 3>
2134bool X86::isMOVHLPS_v_undef_Mask(SDNode *N) {
2135 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2136
2137 if (N->getNumOperands() != 4)
2138 return false;
2139
2140 // Expect bit0 == 2, bit1 == 3, bit2 == 2, bit3 == 3
2141 return isUndefOrEqual(N->getOperand(0), 2) &&
2142 isUndefOrEqual(N->getOperand(1), 3) &&
2143 isUndefOrEqual(N->getOperand(2), 2) &&
2144 isUndefOrEqual(N->getOperand(3), 3);
2145}
2146
2147/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
2148/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
2149bool X86::isMOVLPMask(SDNode *N) {
2150 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2151
2152 unsigned NumElems = N->getNumOperands();
2153 if (NumElems != 2 && NumElems != 4)
2154 return false;
2155
2156 for (unsigned i = 0; i < NumElems/2; ++i)
2157 if (!isUndefOrEqual(N->getOperand(i), i + NumElems))
2158 return false;
2159
2160 for (unsigned i = NumElems/2; i < NumElems; ++i)
2161 if (!isUndefOrEqual(N->getOperand(i), i))
2162 return false;
2163
2164 return true;
2165}
2166
2167/// isMOVHPMask - Return true if the specified VECTOR_SHUFFLE operand
2168/// specifies a shuffle of elements that is suitable for input to MOVHP{S|D}
2169/// and MOVLHPS.
2170bool X86::isMOVHPMask(SDNode *N) {
2171 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2172
2173 unsigned NumElems = N->getNumOperands();
2174 if (NumElems != 2 && NumElems != 4)
2175 return false;
2176
2177 for (unsigned i = 0; i < NumElems/2; ++i)
2178 if (!isUndefOrEqual(N->getOperand(i), i))
2179 return false;
2180
2181 for (unsigned i = 0; i < NumElems/2; ++i) {
2182 SDOperand Arg = N->getOperand(i + NumElems/2);
2183 if (!isUndefOrEqual(Arg, i + NumElems))
2184 return false;
2185 }
2186
2187 return true;
2188}
2189
2190/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
2191/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00002192bool static isUNPCKLMask(SDOperandPtr Elts, unsigned NumElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002193 bool V2IsSplat = false) {
2194 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2195 return false;
2196
2197 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
2198 SDOperand BitI = Elts[i];
2199 SDOperand BitI1 = Elts[i+1];
2200 if (!isUndefOrEqual(BitI, j))
2201 return false;
2202 if (V2IsSplat) {
2203 if (isUndefOrEqual(BitI1, NumElts))
2204 return false;
2205 } else {
2206 if (!isUndefOrEqual(BitI1, j + NumElts))
2207 return false;
2208 }
2209 }
2210
2211 return true;
2212}
2213
2214bool X86::isUNPCKLMask(SDNode *N, bool V2IsSplat) {
2215 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2216 return ::isUNPCKLMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
2217}
2218
2219/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
2220/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00002221bool static isUNPCKHMask(SDOperandPtr Elts, unsigned NumElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002222 bool V2IsSplat = false) {
2223 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2224 return false;
2225
2226 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
2227 SDOperand BitI = Elts[i];
2228 SDOperand BitI1 = Elts[i+1];
2229 if (!isUndefOrEqual(BitI, j + NumElts/2))
2230 return false;
2231 if (V2IsSplat) {
2232 if (isUndefOrEqual(BitI1, NumElts))
2233 return false;
2234 } else {
2235 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
2236 return false;
2237 }
2238 }
2239
2240 return true;
2241}
2242
2243bool X86::isUNPCKHMask(SDNode *N, bool V2IsSplat) {
2244 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2245 return ::isUNPCKHMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
2246}
2247
2248/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
2249/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
2250/// <0, 0, 1, 1>
2251bool X86::isUNPCKL_v_undef_Mask(SDNode *N) {
2252 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2253
2254 unsigned NumElems = N->getNumOperands();
2255 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2256 return false;
2257
2258 for (unsigned i = 0, j = 0; i != NumElems; i += 2, ++j) {
2259 SDOperand BitI = N->getOperand(i);
2260 SDOperand BitI1 = N->getOperand(i+1);
2261
2262 if (!isUndefOrEqual(BitI, j))
2263 return false;
2264 if (!isUndefOrEqual(BitI1, j))
2265 return false;
2266 }
2267
2268 return true;
2269}
2270
2271/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
2272/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
2273/// <2, 2, 3, 3>
2274bool X86::isUNPCKH_v_undef_Mask(SDNode *N) {
2275 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2276
2277 unsigned NumElems = N->getNumOperands();
2278 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2279 return false;
2280
2281 for (unsigned i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
2282 SDOperand BitI = N->getOperand(i);
2283 SDOperand BitI1 = N->getOperand(i + 1);
2284
2285 if (!isUndefOrEqual(BitI, j))
2286 return false;
2287 if (!isUndefOrEqual(BitI1, j))
2288 return false;
2289 }
2290
2291 return true;
2292}
2293
2294/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
2295/// specifies a shuffle of elements that is suitable for input to MOVSS,
2296/// MOVSD, and MOVD, i.e. setting the lowest element.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00002297static bool isMOVLMask(SDOperandPtr Elts, unsigned NumElts) {
Evan Cheng62cdc642007-12-06 22:14:22 +00002298 if (NumElts != 2 && NumElts != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002299 return false;
2300
2301 if (!isUndefOrEqual(Elts[0], NumElts))
2302 return false;
2303
2304 for (unsigned i = 1; i < NumElts; ++i) {
2305 if (!isUndefOrEqual(Elts[i], i))
2306 return false;
2307 }
2308
2309 return true;
2310}
2311
2312bool X86::isMOVLMask(SDNode *N) {
2313 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2314 return ::isMOVLMask(N->op_begin(), N->getNumOperands());
2315}
2316
2317/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
2318/// of what x86 movss want. X86 movs requires the lowest element to be lowest
2319/// element of vector 2 and the other elements to come from vector 1 in order.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00002320static bool isCommutedMOVL(SDOperandPtr Ops, unsigned NumOps,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002321 bool V2IsSplat = false,
2322 bool V2IsUndef = false) {
2323 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
2324 return false;
2325
2326 if (!isUndefOrEqual(Ops[0], 0))
2327 return false;
2328
2329 for (unsigned i = 1; i < NumOps; ++i) {
2330 SDOperand Arg = Ops[i];
2331 if (!(isUndefOrEqual(Arg, i+NumOps) ||
2332 (V2IsUndef && isUndefOrInRange(Arg, NumOps, NumOps*2)) ||
2333 (V2IsSplat && isUndefOrEqual(Arg, NumOps))))
2334 return false;
2335 }
2336
2337 return true;
2338}
2339
2340static bool isCommutedMOVL(SDNode *N, bool V2IsSplat = false,
2341 bool V2IsUndef = false) {
2342 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2343 return isCommutedMOVL(N->op_begin(), N->getNumOperands(),
2344 V2IsSplat, V2IsUndef);
2345}
2346
2347/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2348/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
2349bool X86::isMOVSHDUPMask(SDNode *N) {
2350 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2351
2352 if (N->getNumOperands() != 4)
2353 return false;
2354
2355 // Expect 1, 1, 3, 3
2356 for (unsigned i = 0; i < 2; ++i) {
2357 SDOperand Arg = N->getOperand(i);
2358 if (Arg.getOpcode() == ISD::UNDEF) continue;
2359 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2360 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2361 if (Val != 1) return false;
2362 }
2363
2364 bool HasHi = false;
2365 for (unsigned i = 2; i < 4; ++i) {
2366 SDOperand Arg = N->getOperand(i);
2367 if (Arg.getOpcode() == ISD::UNDEF) continue;
2368 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2369 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2370 if (Val != 3) return false;
2371 HasHi = true;
2372 }
2373
2374 // Don't use movshdup if it can be done with a shufps.
2375 return HasHi;
2376}
2377
2378/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2379/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
2380bool X86::isMOVSLDUPMask(SDNode *N) {
2381 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2382
2383 if (N->getNumOperands() != 4)
2384 return false;
2385
2386 // Expect 0, 0, 2, 2
2387 for (unsigned i = 0; i < 2; ++i) {
2388 SDOperand Arg = N->getOperand(i);
2389 if (Arg.getOpcode() == ISD::UNDEF) continue;
2390 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2391 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2392 if (Val != 0) return false;
2393 }
2394
2395 bool HasHi = false;
2396 for (unsigned i = 2; i < 4; ++i) {
2397 SDOperand Arg = N->getOperand(i);
2398 if (Arg.getOpcode() == ISD::UNDEF) continue;
2399 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2400 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2401 if (Val != 2) return false;
2402 HasHi = true;
2403 }
2404
2405 // Don't use movshdup if it can be done with a shufps.
2406 return HasHi;
2407}
2408
2409/// isIdentityMask - Return true if the specified VECTOR_SHUFFLE operand
2410/// specifies a identity operation on the LHS or RHS.
2411static bool isIdentityMask(SDNode *N, bool RHS = false) {
2412 unsigned NumElems = N->getNumOperands();
2413 for (unsigned i = 0; i < NumElems; ++i)
2414 if (!isUndefOrEqual(N->getOperand(i), i + (RHS ? NumElems : 0)))
2415 return false;
2416 return true;
2417}
2418
2419/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2420/// a splat of a single element.
2421static bool isSplatMask(SDNode *N) {
2422 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2423
2424 // This is a splat operation if each element of the permute is the same, and
2425 // if the value doesn't reference the second vector.
2426 unsigned NumElems = N->getNumOperands();
2427 SDOperand ElementBase;
2428 unsigned i = 0;
2429 for (; i != NumElems; ++i) {
2430 SDOperand Elt = N->getOperand(i);
2431 if (isa<ConstantSDNode>(Elt)) {
2432 ElementBase = Elt;
2433 break;
2434 }
2435 }
2436
2437 if (!ElementBase.Val)
2438 return false;
2439
2440 for (; i != NumElems; ++i) {
2441 SDOperand Arg = N->getOperand(i);
2442 if (Arg.getOpcode() == ISD::UNDEF) continue;
2443 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2444 if (Arg != ElementBase) return false;
2445 }
2446
2447 // Make sure it is a splat of the first vector operand.
2448 return cast<ConstantSDNode>(ElementBase)->getValue() < NumElems;
2449}
2450
2451/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2452/// a splat of a single element and it's a 2 or 4 element mask.
2453bool X86::isSplatMask(SDNode *N) {
2454 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2455
2456 // We can only splat 64-bit, and 32-bit quantities with a single instruction.
2457 if (N->getNumOperands() != 4 && N->getNumOperands() != 2)
2458 return false;
2459 return ::isSplatMask(N);
2460}
2461
2462/// isSplatLoMask - Return true if the specified VECTOR_SHUFFLE operand
2463/// specifies a splat of zero element.
2464bool X86::isSplatLoMask(SDNode *N) {
2465 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2466
2467 for (unsigned i = 0, e = N->getNumOperands(); i < e; ++i)
2468 if (!isUndefOrEqual(N->getOperand(i), 0))
2469 return false;
2470 return true;
2471}
2472
2473/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
2474/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUF* and SHUFP*
2475/// instructions.
2476unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
2477 unsigned NumOperands = N->getNumOperands();
2478 unsigned Shift = (NumOperands == 4) ? 2 : 1;
2479 unsigned Mask = 0;
2480 for (unsigned i = 0; i < NumOperands; ++i) {
2481 unsigned Val = 0;
2482 SDOperand Arg = N->getOperand(NumOperands-i-1);
2483 if (Arg.getOpcode() != ISD::UNDEF)
2484 Val = cast<ConstantSDNode>(Arg)->getValue();
2485 if (Val >= NumOperands) Val -= NumOperands;
2486 Mask |= Val;
2487 if (i != NumOperands - 1)
2488 Mask <<= Shift;
2489 }
2490
2491 return Mask;
2492}
2493
2494/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
2495/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFHW
2496/// instructions.
2497unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
2498 unsigned Mask = 0;
2499 // 8 nodes, but we only care about the last 4.
2500 for (unsigned i = 7; i >= 4; --i) {
2501 unsigned Val = 0;
2502 SDOperand Arg = N->getOperand(i);
2503 if (Arg.getOpcode() != ISD::UNDEF)
2504 Val = cast<ConstantSDNode>(Arg)->getValue();
2505 Mask |= (Val - 4);
2506 if (i != 4)
2507 Mask <<= 2;
2508 }
2509
2510 return Mask;
2511}
2512
2513/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
2514/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFLW
2515/// instructions.
2516unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
2517 unsigned Mask = 0;
2518 // 8 nodes, but we only care about the first 4.
2519 for (int i = 3; i >= 0; --i) {
2520 unsigned Val = 0;
2521 SDOperand Arg = N->getOperand(i);
2522 if (Arg.getOpcode() != ISD::UNDEF)
2523 Val = cast<ConstantSDNode>(Arg)->getValue();
2524 Mask |= Val;
2525 if (i != 0)
2526 Mask <<= 2;
2527 }
2528
2529 return Mask;
2530}
2531
2532/// isPSHUFHW_PSHUFLWMask - true if the specified VECTOR_SHUFFLE operand
2533/// specifies a 8 element shuffle that can be broken into a pair of
2534/// PSHUFHW and PSHUFLW.
2535static bool isPSHUFHW_PSHUFLWMask(SDNode *N) {
2536 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2537
2538 if (N->getNumOperands() != 8)
2539 return false;
2540
2541 // Lower quadword shuffled.
2542 for (unsigned i = 0; i != 4; ++i) {
2543 SDOperand Arg = N->getOperand(i);
2544 if (Arg.getOpcode() == ISD::UNDEF) continue;
2545 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2546 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
Evan Cheng75184a92007-12-11 01:46:18 +00002547 if (Val >= 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002548 return false;
2549 }
2550
2551 // Upper quadword shuffled.
2552 for (unsigned i = 4; i != 8; ++i) {
2553 SDOperand Arg = N->getOperand(i);
2554 if (Arg.getOpcode() == ISD::UNDEF) continue;
2555 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2556 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2557 if (Val < 4 || Val > 7)
2558 return false;
2559 }
2560
2561 return true;
2562}
2563
Chris Lattnere6aa3862007-11-25 00:24:49 +00002564/// CommuteVectorShuffle - Swap vector_shuffle operands as well as
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002565/// values in ther permute mask.
2566static SDOperand CommuteVectorShuffle(SDOperand Op, SDOperand &V1,
2567 SDOperand &V2, SDOperand &Mask,
2568 SelectionDAG &DAG) {
2569 MVT::ValueType VT = Op.getValueType();
2570 MVT::ValueType MaskVT = Mask.getValueType();
2571 MVT::ValueType EltVT = MVT::getVectorElementType(MaskVT);
2572 unsigned NumElems = Mask.getNumOperands();
2573 SmallVector<SDOperand, 8> MaskVec;
2574
2575 for (unsigned i = 0; i != NumElems; ++i) {
2576 SDOperand Arg = Mask.getOperand(i);
2577 if (Arg.getOpcode() == ISD::UNDEF) {
2578 MaskVec.push_back(DAG.getNode(ISD::UNDEF, EltVT));
2579 continue;
2580 }
2581 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2582 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2583 if (Val < NumElems)
2584 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2585 else
2586 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2587 }
2588
2589 std::swap(V1, V2);
Evan Chengfca29242007-12-07 08:07:39 +00002590 Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002591 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, Mask);
2592}
2593
Evan Chenga6769df2007-12-07 21:30:01 +00002594/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
2595/// the two vector operands have swapped position.
Evan Chengfca29242007-12-07 08:07:39 +00002596static
2597SDOperand CommuteVectorShuffleMask(SDOperand Mask, SelectionDAG &DAG) {
2598 MVT::ValueType MaskVT = Mask.getValueType();
2599 MVT::ValueType EltVT = MVT::getVectorElementType(MaskVT);
2600 unsigned NumElems = Mask.getNumOperands();
2601 SmallVector<SDOperand, 8> MaskVec;
2602 for (unsigned i = 0; i != NumElems; ++i) {
2603 SDOperand Arg = Mask.getOperand(i);
2604 if (Arg.getOpcode() == ISD::UNDEF) {
2605 MaskVec.push_back(DAG.getNode(ISD::UNDEF, EltVT));
2606 continue;
2607 }
2608 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2609 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2610 if (Val < NumElems)
2611 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2612 else
2613 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2614 }
2615 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], NumElems);
2616}
2617
2618
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002619/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
2620/// match movhlps. The lower half elements should come from upper half of
2621/// V1 (and in order), and the upper half elements should come from the upper
2622/// half of V2 (and in order).
2623static bool ShouldXformToMOVHLPS(SDNode *Mask) {
2624 unsigned NumElems = Mask->getNumOperands();
2625 if (NumElems != 4)
2626 return false;
2627 for (unsigned i = 0, e = 2; i != e; ++i)
2628 if (!isUndefOrEqual(Mask->getOperand(i), i+2))
2629 return false;
2630 for (unsigned i = 2; i != 4; ++i)
2631 if (!isUndefOrEqual(Mask->getOperand(i), i+4))
2632 return false;
2633 return true;
2634}
2635
2636/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng40ee6e52008-05-08 00:57:18 +00002637/// is promoted to a vector. It also returns the LoadSDNode by reference if
2638/// required.
2639static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002640 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR) {
2641 N = N->getOperand(0).Val;
Evan Cheng40ee6e52008-05-08 00:57:18 +00002642 if (ISD::isNON_EXTLoad(N)) {
2643 if (LD)
2644 *LD = cast<LoadSDNode>(N);
2645 return true;
2646 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002647 }
2648 return false;
2649}
2650
2651/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
2652/// match movlp{s|d}. The lower half elements should come from lower half of
2653/// V1 (and in order), and the upper half elements should come from the upper
2654/// half of V2 (and in order). And since V1 will become the source of the
2655/// MOVLP, it must be either a vector load or a scalar load to vector.
2656static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2, SDNode *Mask) {
2657 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
2658 return false;
2659 // Is V2 is a vector load, don't do this transformation. We will try to use
2660 // load folding shufps op.
2661 if (ISD::isNON_EXTLoad(V2))
2662 return false;
2663
2664 unsigned NumElems = Mask->getNumOperands();
2665 if (NumElems != 2 && NumElems != 4)
2666 return false;
2667 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
2668 if (!isUndefOrEqual(Mask->getOperand(i), i))
2669 return false;
2670 for (unsigned i = NumElems/2; i != NumElems; ++i)
2671 if (!isUndefOrEqual(Mask->getOperand(i), i+NumElems))
2672 return false;
2673 return true;
2674}
2675
2676/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
2677/// all the same.
2678static bool isSplatVector(SDNode *N) {
2679 if (N->getOpcode() != ISD::BUILD_VECTOR)
2680 return false;
2681
2682 SDOperand SplatValue = N->getOperand(0);
2683 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
2684 if (N->getOperand(i) != SplatValue)
2685 return false;
2686 return true;
2687}
2688
2689/// isUndefShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2690/// to an undef.
2691static bool isUndefShuffle(SDNode *N) {
2692 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2693 return false;
2694
2695 SDOperand V1 = N->getOperand(0);
2696 SDOperand V2 = N->getOperand(1);
2697 SDOperand Mask = N->getOperand(2);
2698 unsigned NumElems = Mask.getNumOperands();
2699 for (unsigned i = 0; i != NumElems; ++i) {
2700 SDOperand Arg = Mask.getOperand(i);
2701 if (Arg.getOpcode() != ISD::UNDEF) {
2702 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2703 if (Val < NumElems && V1.getOpcode() != ISD::UNDEF)
2704 return false;
2705 else if (Val >= NumElems && V2.getOpcode() != ISD::UNDEF)
2706 return false;
2707 }
2708 }
2709 return true;
2710}
2711
2712/// isZeroNode - Returns true if Elt is a constant zero or a floating point
2713/// constant +0.0.
2714static inline bool isZeroNode(SDOperand Elt) {
2715 return ((isa<ConstantSDNode>(Elt) &&
2716 cast<ConstantSDNode>(Elt)->getValue() == 0) ||
2717 (isa<ConstantFPSDNode>(Elt) &&
Dale Johannesendf8a8312007-08-31 04:03:46 +00002718 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002719}
2720
2721/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2722/// to an zero vector.
2723static bool isZeroShuffle(SDNode *N) {
2724 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2725 return false;
2726
2727 SDOperand V1 = N->getOperand(0);
2728 SDOperand V2 = N->getOperand(1);
2729 SDOperand Mask = N->getOperand(2);
2730 unsigned NumElems = Mask.getNumOperands();
2731 for (unsigned i = 0; i != NumElems; ++i) {
2732 SDOperand Arg = Mask.getOperand(i);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002733 if (Arg.getOpcode() == ISD::UNDEF)
2734 continue;
2735
2736 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
2737 if (Idx < NumElems) {
2738 unsigned Opc = V1.Val->getOpcode();
2739 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.Val))
2740 continue;
2741 if (Opc != ISD::BUILD_VECTOR ||
2742 !isZeroNode(V1.Val->getOperand(Idx)))
2743 return false;
2744 } else if (Idx >= NumElems) {
2745 unsigned Opc = V2.Val->getOpcode();
2746 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.Val))
2747 continue;
2748 if (Opc != ISD::BUILD_VECTOR ||
2749 !isZeroNode(V2.Val->getOperand(Idx - NumElems)))
2750 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002751 }
2752 }
2753 return true;
2754}
2755
2756/// getZeroVector - Returns a vector of specified type with all zero elements.
2757///
Evan Cheng8c590372008-05-15 08:39:06 +00002758static SDOperand getZeroVector(MVT::ValueType VT, bool HasSSE2,
2759 SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002760 assert(MVT::isVector(VT) && "Expected a vector type");
Chris Lattnere6aa3862007-11-25 00:24:49 +00002761
2762 // Always build zero vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2763 // type. This ensures they get CSE'd.
Chris Lattnere6aa3862007-11-25 00:24:49 +00002764 SDOperand Vec;
Evan Cheng8c590372008-05-15 08:39:06 +00002765 if (MVT::getSizeInBits(VT) == 64) { // MMX
2766 SDOperand Cst = DAG.getTargetConstant(0, MVT::i32);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002767 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i32, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002768 } else if (HasSSE2) { // SSE2
2769 SDOperand Cst = DAG.getTargetConstant(0, MVT::i32);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002770 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002771 } else { // SSE1
2772 SDOperand Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
2773 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4f32, Cst, Cst, Cst, Cst);
2774 }
Chris Lattnere6aa3862007-11-25 00:24:49 +00002775 return DAG.getNode(ISD::BIT_CONVERT, VT, Vec);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002776}
2777
Chris Lattnere6aa3862007-11-25 00:24:49 +00002778/// getOnesVector - Returns a vector of specified type with all bits set.
2779///
2780static SDOperand getOnesVector(MVT::ValueType VT, SelectionDAG &DAG) {
2781 assert(MVT::isVector(VT) && "Expected a vector type");
2782
2783 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2784 // type. This ensures they get CSE'd.
2785 SDOperand Cst = DAG.getTargetConstant(~0U, MVT::i32);
2786 SDOperand Vec;
2787 if (MVT::getSizeInBits(VT) == 64) // MMX
2788 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i32, Cst, Cst);
2789 else // SSE
2790 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, Cst, Cst, Cst, Cst);
2791 return DAG.getNode(ISD::BIT_CONVERT, VT, Vec);
2792}
2793
2794
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002795/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
2796/// that point to V2 points to its first element.
2797static SDOperand NormalizeMask(SDOperand Mask, SelectionDAG &DAG) {
2798 assert(Mask.getOpcode() == ISD::BUILD_VECTOR);
2799
2800 bool Changed = false;
2801 SmallVector<SDOperand, 8> MaskVec;
2802 unsigned NumElems = Mask.getNumOperands();
2803 for (unsigned i = 0; i != NumElems; ++i) {
2804 SDOperand Arg = Mask.getOperand(i);
2805 if (Arg.getOpcode() != ISD::UNDEF) {
2806 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2807 if (Val > NumElems) {
2808 Arg = DAG.getConstant(NumElems, Arg.getValueType());
2809 Changed = true;
2810 }
2811 }
2812 MaskVec.push_back(Arg);
2813 }
2814
2815 if (Changed)
2816 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getValueType(),
2817 &MaskVec[0], MaskVec.size());
2818 return Mask;
2819}
2820
2821/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
2822/// operation of specified width.
2823static SDOperand getMOVLMask(unsigned NumElems, SelectionDAG &DAG) {
2824 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2825 MVT::ValueType BaseVT = MVT::getVectorElementType(MaskVT);
2826
2827 SmallVector<SDOperand, 8> MaskVec;
2828 MaskVec.push_back(DAG.getConstant(NumElems, BaseVT));
2829 for (unsigned i = 1; i != NumElems; ++i)
2830 MaskVec.push_back(DAG.getConstant(i, BaseVT));
2831 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
2832}
2833
2834/// getUnpacklMask - Returns a vector_shuffle mask for an unpackl operation
2835/// of specified width.
2836static SDOperand getUnpacklMask(unsigned NumElems, SelectionDAG &DAG) {
2837 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2838 MVT::ValueType BaseVT = MVT::getVectorElementType(MaskVT);
2839 SmallVector<SDOperand, 8> MaskVec;
2840 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
2841 MaskVec.push_back(DAG.getConstant(i, BaseVT));
2842 MaskVec.push_back(DAG.getConstant(i + NumElems, BaseVT));
2843 }
2844 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
2845}
2846
2847/// getUnpackhMask - Returns a vector_shuffle mask for an unpackh operation
2848/// of specified width.
2849static SDOperand getUnpackhMask(unsigned NumElems, SelectionDAG &DAG) {
2850 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2851 MVT::ValueType BaseVT = MVT::getVectorElementType(MaskVT);
2852 unsigned Half = NumElems/2;
2853 SmallVector<SDOperand, 8> MaskVec;
2854 for (unsigned i = 0; i != Half; ++i) {
2855 MaskVec.push_back(DAG.getConstant(i + Half, BaseVT));
2856 MaskVec.push_back(DAG.getConstant(i + NumElems + Half, BaseVT));
2857 }
2858 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
2859}
2860
Chris Lattner2d91b962008-03-09 01:05:04 +00002861/// getSwapEltZeroMask - Returns a vector_shuffle mask for a shuffle that swaps
2862/// element #0 of a vector with the specified index, leaving the rest of the
2863/// elements in place.
2864static SDOperand getSwapEltZeroMask(unsigned NumElems, unsigned DestElt,
2865 SelectionDAG &DAG) {
2866 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2867 MVT::ValueType BaseVT = MVT::getVectorElementType(MaskVT);
2868 SmallVector<SDOperand, 8> MaskVec;
2869 // Element #0 of the result gets the elt we are replacing.
2870 MaskVec.push_back(DAG.getConstant(DestElt, BaseVT));
2871 for (unsigned i = 1; i != NumElems; ++i)
2872 MaskVec.push_back(DAG.getConstant(i == DestElt ? 0 : i, BaseVT));
2873 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
2874}
2875
Evan Chengbf8b2c52008-04-05 00:30:36 +00002876/// PromoteSplat - Promote a splat of v4f32, v8i16 or v16i8 to v4i32.
2877static SDOperand PromoteSplat(SDOperand Op, SelectionDAG &DAG, bool HasSSE2) {
2878 MVT::ValueType PVT = HasSSE2 ? MVT::v4i32 : MVT::v4f32;
2879 MVT::ValueType VT = Op.getValueType();
2880 if (PVT == VT)
2881 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002882 SDOperand V1 = Op.getOperand(0);
2883 SDOperand Mask = Op.getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002884 unsigned NumElems = Mask.getNumOperands();
Evan Chengbf8b2c52008-04-05 00:30:36 +00002885 // Special handling of v4f32 -> v4i32.
2886 if (VT != MVT::v4f32) {
2887 Mask = getUnpacklMask(NumElems, DAG);
2888 while (NumElems > 4) {
2889 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V1, Mask);
2890 NumElems >>= 1;
2891 }
Evan Cheng8c590372008-05-15 08:39:06 +00002892 Mask = getZeroVector(MVT::v4i32, true, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002893 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002894
Evan Chengbf8b2c52008-04-05 00:30:36 +00002895 V1 = DAG.getNode(ISD::BIT_CONVERT, PVT, V1);
2896 SDOperand Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, PVT, V1,
2897 DAG.getNode(ISD::UNDEF, PVT), Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002898 return DAG.getNode(ISD::BIT_CONVERT, VT, Shuffle);
2899}
2900
2901/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattnere6aa3862007-11-25 00:24:49 +00002902/// vector of zero or undef vector. This produces a shuffle where the low
2903/// element of V2 is swizzled into the zero/undef vector, landing at element
2904/// Idx. This produces a shuffle mask like 4,1,2,3 (idx=0) or 0,1,2,4 (idx=3).
Chris Lattner2d91b962008-03-09 01:05:04 +00002905static SDOperand getShuffleVectorZeroOrUndef(SDOperand V2, unsigned Idx,
Evan Cheng8c590372008-05-15 08:39:06 +00002906 bool isZero, bool HasSSE2,
2907 SelectionDAG &DAG) {
Chris Lattner2d91b962008-03-09 01:05:04 +00002908 MVT::ValueType VT = V2.getValueType();
Evan Cheng8c590372008-05-15 08:39:06 +00002909 SDOperand V1 = isZero
2910 ? getZeroVector(VT, HasSSE2, DAG) : DAG.getNode(ISD::UNDEF, VT);
Chris Lattner2d91b962008-03-09 01:05:04 +00002911 unsigned NumElems = MVT::getVectorNumElements(V2.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002912 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2913 MVT::ValueType EVT = MVT::getVectorElementType(MaskVT);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002914 SmallVector<SDOperand, 16> MaskVec;
2915 for (unsigned i = 0; i != NumElems; ++i)
2916 if (i == Idx) // If this is the insertion idx, put the low elt of V2 here.
2917 MaskVec.push_back(DAG.getConstant(NumElems, EVT));
2918 else
2919 MaskVec.push_back(DAG.getConstant(i, EVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002920 SDOperand Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
2921 &MaskVec[0], MaskVec.size());
2922 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, Mask);
2923}
2924
2925/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
2926///
2927static SDOperand LowerBuildVectorv16i8(SDOperand Op, unsigned NonZeros,
2928 unsigned NumNonZero, unsigned NumZero,
2929 SelectionDAG &DAG, TargetLowering &TLI) {
2930 if (NumNonZero > 8)
2931 return SDOperand();
2932
2933 SDOperand V(0, 0);
2934 bool First = true;
2935 for (unsigned i = 0; i < 16; ++i) {
2936 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
2937 if (ThisIsNonZero && First) {
2938 if (NumZero)
Evan Cheng8c590372008-05-15 08:39:06 +00002939 V = getZeroVector(MVT::v8i16, true, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002940 else
2941 V = DAG.getNode(ISD::UNDEF, MVT::v8i16);
2942 First = false;
2943 }
2944
2945 if ((i & 1) != 0) {
2946 SDOperand ThisElt(0, 0), LastElt(0, 0);
2947 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
2948 if (LastIsNonZero) {
2949 LastElt = DAG.getNode(ISD::ZERO_EXTEND, MVT::i16, Op.getOperand(i-1));
2950 }
2951 if (ThisIsNonZero) {
2952 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, MVT::i16, Op.getOperand(i));
2953 ThisElt = DAG.getNode(ISD::SHL, MVT::i16,
2954 ThisElt, DAG.getConstant(8, MVT::i8));
2955 if (LastIsNonZero)
2956 ThisElt = DAG.getNode(ISD::OR, MVT::i16, ThisElt, LastElt);
2957 } else
2958 ThisElt = LastElt;
2959
2960 if (ThisElt.Val)
2961 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, V, ThisElt,
Chris Lattner5872a362008-01-17 07:00:52 +00002962 DAG.getIntPtrConstant(i/2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002963 }
2964 }
2965
2966 return DAG.getNode(ISD::BIT_CONVERT, MVT::v16i8, V);
2967}
2968
2969/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
2970///
2971static SDOperand LowerBuildVectorv8i16(SDOperand Op, unsigned NonZeros,
2972 unsigned NumNonZero, unsigned NumZero,
2973 SelectionDAG &DAG, TargetLowering &TLI) {
2974 if (NumNonZero > 4)
2975 return SDOperand();
2976
2977 SDOperand V(0, 0);
2978 bool First = true;
2979 for (unsigned i = 0; i < 8; ++i) {
2980 bool isNonZero = (NonZeros & (1 << i)) != 0;
2981 if (isNonZero) {
2982 if (First) {
2983 if (NumZero)
Evan Cheng8c590372008-05-15 08:39:06 +00002984 V = getZeroVector(MVT::v8i16, true, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002985 else
2986 V = DAG.getNode(ISD::UNDEF, MVT::v8i16);
2987 First = false;
2988 }
2989 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, V, Op.getOperand(i),
Chris Lattner5872a362008-01-17 07:00:52 +00002990 DAG.getIntPtrConstant(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002991 }
2992 }
2993
2994 return V;
2995}
2996
2997SDOperand
2998X86TargetLowering::LowerBUILD_VECTOR(SDOperand Op, SelectionDAG &DAG) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00002999 // All zero's are handled with pxor, all one's are handled with pcmpeqd.
3000 if (ISD::isBuildVectorAllZeros(Op.Val) || ISD::isBuildVectorAllOnes(Op.Val)) {
3001 // Canonicalize this to either <4 x i32> or <2 x i32> (SSE vs MMX) to
3002 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
3003 // eliminated on x86-32 hosts.
3004 if (Op.getValueType() == MVT::v4i32 || Op.getValueType() == MVT::v2i32)
3005 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003006
Chris Lattnere6aa3862007-11-25 00:24:49 +00003007 if (ISD::isBuildVectorAllOnes(Op.Val))
3008 return getOnesVector(Op.getValueType(), DAG);
Evan Cheng8c590372008-05-15 08:39:06 +00003009 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG);
Chris Lattnere6aa3862007-11-25 00:24:49 +00003010 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003011
3012 MVT::ValueType VT = Op.getValueType();
3013 MVT::ValueType EVT = MVT::getVectorElementType(VT);
3014 unsigned EVTBits = MVT::getSizeInBits(EVT);
3015
3016 unsigned NumElems = Op.getNumOperands();
3017 unsigned NumZero = 0;
3018 unsigned NumNonZero = 0;
3019 unsigned NonZeros = 0;
Chris Lattner92bdcb52008-03-08 22:48:29 +00003020 bool IsAllConstants = true;
Evan Cheng75184a92007-12-11 01:46:18 +00003021 SmallSet<SDOperand, 8> Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003022 for (unsigned i = 0; i < NumElems; ++i) {
3023 SDOperand Elt = Op.getOperand(i);
Evan Chengc1073492007-12-12 06:45:40 +00003024 if (Elt.getOpcode() == ISD::UNDEF)
3025 continue;
3026 Values.insert(Elt);
3027 if (Elt.getOpcode() != ISD::Constant &&
3028 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattner92bdcb52008-03-08 22:48:29 +00003029 IsAllConstants = false;
Evan Chengc1073492007-12-12 06:45:40 +00003030 if (isZeroNode(Elt))
3031 NumZero++;
3032 else {
3033 NonZeros |= (1 << i);
3034 NumNonZero++;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003035 }
3036 }
3037
3038 if (NumNonZero == 0) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003039 // All undef vector. Return an UNDEF. All zero vectors were handled above.
3040 return DAG.getNode(ISD::UNDEF, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003041 }
3042
Chris Lattner66a4dda2008-03-09 05:42:06 +00003043 // Special case for single non-zero, non-undef, element.
Evan Chengc1073492007-12-12 06:45:40 +00003044 if (NumNonZero == 1 && NumElems <= 4) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003045 unsigned Idx = CountTrailingZeros_32(NonZeros);
3046 SDOperand Item = Op.getOperand(Idx);
Chris Lattnerac914892008-03-08 22:59:52 +00003047
Chris Lattner2d91b962008-03-09 01:05:04 +00003048 // If this is an insertion of an i64 value on x86-32, and if the top bits of
3049 // the value are obviously zero, truncate the value to i32 and do the
3050 // insertion that way. Only do this if the value is non-constant or if the
3051 // value is a constant being inserted into element 0. It is cheaper to do
3052 // a constant pool load than it is to do a movd + shuffle.
3053 if (EVT == MVT::i64 && !Subtarget->is64Bit() &&
3054 (!IsAllConstants || Idx == 0)) {
3055 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
3056 // Handle MMX and SSE both.
3057 MVT::ValueType VecVT = VT == MVT::v2i64 ? MVT::v4i32 : MVT::v2i32;
3058 MVT::ValueType VecElts = VT == MVT::v2i64 ? 4 : 2;
3059
3060 // Truncate the value (which may itself be a constant) to i32, and
3061 // convert it to a vector with movd (S2V+shuffle to zero extend).
3062 Item = DAG.getNode(ISD::TRUNCATE, MVT::i32, Item);
3063 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, VecVT, Item);
Evan Cheng8c590372008-05-15 08:39:06 +00003064 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3065 Subtarget->hasSSE2(), DAG);
Chris Lattner2d91b962008-03-09 01:05:04 +00003066
3067 // Now we have our 32-bit value zero extended in the low element of
3068 // a vector. If Idx != 0, swizzle it into place.
3069 if (Idx != 0) {
3070 SDOperand Ops[] = {
3071 Item, DAG.getNode(ISD::UNDEF, Item.getValueType()),
3072 getSwapEltZeroMask(VecElts, Idx, DAG)
3073 };
3074 Item = DAG.getNode(ISD::VECTOR_SHUFFLE, VecVT, Ops, 3);
3075 }
3076 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(), Item);
3077 }
3078 }
3079
Chris Lattnerac914892008-03-08 22:59:52 +00003080 // If we have a constant or non-constant insertion into the low element of
3081 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
3082 // the rest of the elements. This will be matched as movd/movq/movss/movsd
3083 // depending on what the source datatype is. Because we can only get here
3084 // when NumElems <= 4, this only needs to handle i32/f32/i64/f64.
3085 if (Idx == 0 &&
3086 // Don't do this for i64 values on x86-32.
3087 (EVT != MVT::i64 || Subtarget->is64Bit())) {
Chris Lattner92bdcb52008-03-08 22:48:29 +00003088 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Item);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003089 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Evan Cheng8c590372008-05-15 08:39:06 +00003090 return getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3091 Subtarget->hasSSE2(), DAG);
Chris Lattner92bdcb52008-03-08 22:48:29 +00003092 }
3093
3094 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Evan Chengc1073492007-12-12 06:45:40 +00003095 return SDOperand();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003096
Chris Lattnerac914892008-03-08 22:59:52 +00003097 // Otherwise, if this is a vector with i32 or f32 elements, and the element
3098 // is a non-constant being inserted into an element other than the low one,
3099 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
3100 // movd/movss) to move this into the low element, then shuffle it into
3101 // place.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003102 if (EVTBits == 32) {
Chris Lattner92bdcb52008-03-08 22:48:29 +00003103 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Item);
3104
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003105 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Cheng8c590372008-05-15 08:39:06 +00003106 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3107 Subtarget->hasSSE2(), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003108 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3109 MVT::ValueType MaskEVT = MVT::getVectorElementType(MaskVT);
3110 SmallVector<SDOperand, 8> MaskVec;
3111 for (unsigned i = 0; i < NumElems; i++)
3112 MaskVec.push_back(DAG.getConstant((i == Idx) ? 0 : 1, MaskEVT));
3113 SDOperand Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3114 &MaskVec[0], MaskVec.size());
3115 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, Item,
3116 DAG.getNode(ISD::UNDEF, VT), Mask);
3117 }
3118 }
3119
Chris Lattner66a4dda2008-03-09 05:42:06 +00003120 // Splat is obviously ok. Let legalizer expand it to a shuffle.
3121 if (Values.size() == 1)
3122 return SDOperand();
3123
Dan Gohman21463242007-07-24 22:55:08 +00003124 // A vector full of immediates; various special cases are already
3125 // handled, so this is best done with a single constant-pool load.
Chris Lattner92bdcb52008-03-08 22:48:29 +00003126 if (IsAllConstants)
Dan Gohman21463242007-07-24 22:55:08 +00003127 return SDOperand();
3128
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003129 // Let legalizer expand 2-wide build_vectors.
Evan Cheng40ee6e52008-05-08 00:57:18 +00003130 if (EVTBits == 64) {
3131 if (NumNonZero == 1) {
3132 // One half is zero or undef.
3133 unsigned Idx = CountTrailingZeros_32(NonZeros);
3134 SDOperand V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT,
3135 Op.getOperand(Idx));
Evan Cheng8c590372008-05-15 08:39:06 +00003136 return getShuffleVectorZeroOrUndef(V2, Idx, true,
3137 Subtarget->hasSSE2(), DAG);
Evan Cheng40ee6e52008-05-08 00:57:18 +00003138 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003139 return SDOperand();
Evan Cheng40ee6e52008-05-08 00:57:18 +00003140 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003141
3142 // If element VT is < 32 bits, convert it to inserts into a zero vector.
3143 if (EVTBits == 8 && NumElems == 16) {
3144 SDOperand V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
3145 *this);
3146 if (V.Val) return V;
3147 }
3148
3149 if (EVTBits == 16 && NumElems == 8) {
3150 SDOperand V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
3151 *this);
3152 if (V.Val) return V;
3153 }
3154
3155 // If element VT is == 32 bits, turn it into a number of shuffles.
3156 SmallVector<SDOperand, 8> V;
3157 V.resize(NumElems);
3158 if (NumElems == 4 && NumZero > 0) {
3159 for (unsigned i = 0; i < 4; ++i) {
3160 bool isZero = !(NonZeros & (1 << i));
3161 if (isZero)
Evan Cheng8c590372008-05-15 08:39:06 +00003162 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003163 else
3164 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Op.getOperand(i));
3165 }
3166
3167 for (unsigned i = 0; i < 2; ++i) {
3168 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
3169 default: break;
3170 case 0:
3171 V[i] = V[i*2]; // Must be a zero vector.
3172 break;
3173 case 1:
3174 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i*2+1], V[i*2],
3175 getMOVLMask(NumElems, DAG));
3176 break;
3177 case 2:
3178 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i*2], V[i*2+1],
3179 getMOVLMask(NumElems, DAG));
3180 break;
3181 case 3:
3182 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i*2], V[i*2+1],
3183 getUnpacklMask(NumElems, DAG));
3184 break;
3185 }
3186 }
3187
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003188 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3189 MVT::ValueType EVT = MVT::getVectorElementType(MaskVT);
3190 SmallVector<SDOperand, 8> MaskVec;
3191 bool Reverse = (NonZeros & 0x3) == 2;
3192 for (unsigned i = 0; i < 2; ++i)
3193 if (Reverse)
3194 MaskVec.push_back(DAG.getConstant(1-i, EVT));
3195 else
3196 MaskVec.push_back(DAG.getConstant(i, EVT));
3197 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
3198 for (unsigned i = 0; i < 2; ++i)
3199 if (Reverse)
3200 MaskVec.push_back(DAG.getConstant(1-i+NumElems, EVT));
3201 else
3202 MaskVec.push_back(DAG.getConstant(i+NumElems, EVT));
3203 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3204 &MaskVec[0], MaskVec.size());
3205 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[0], V[1], ShufMask);
3206 }
3207
3208 if (Values.size() > 2) {
3209 // Expand into a number of unpckl*.
3210 // e.g. for v4f32
3211 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
3212 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
3213 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
3214 SDOperand UnpckMask = getUnpacklMask(NumElems, DAG);
3215 for (unsigned i = 0; i < NumElems; ++i)
3216 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Op.getOperand(i));
3217 NumElems >>= 1;
3218 while (NumElems != 0) {
3219 for (unsigned i = 0; i < NumElems; ++i)
3220 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i], V[i + NumElems],
3221 UnpckMask);
3222 NumElems >>= 1;
3223 }
3224 return V[0];
3225 }
3226
3227 return SDOperand();
3228}
3229
Evan Chengfca29242007-12-07 08:07:39 +00003230static
3231SDOperand LowerVECTOR_SHUFFLEv8i16(SDOperand V1, SDOperand V2,
3232 SDOperand PermMask, SelectionDAG &DAG,
3233 TargetLowering &TLI) {
Evan Cheng75184a92007-12-11 01:46:18 +00003234 SDOperand NewV;
Evan Chengfca29242007-12-07 08:07:39 +00003235 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(8);
3236 MVT::ValueType MaskEVT = MVT::getVectorElementType(MaskVT);
Evan Cheng75184a92007-12-11 01:46:18 +00003237 MVT::ValueType PtrVT = TLI.getPointerTy();
3238 SmallVector<SDOperand, 8> MaskElts(PermMask.Val->op_begin(),
3239 PermMask.Val->op_end());
3240
3241 // First record which half of which vector the low elements come from.
3242 SmallVector<unsigned, 4> LowQuad(4);
3243 for (unsigned i = 0; i < 4; ++i) {
3244 SDOperand Elt = MaskElts[i];
3245 if (Elt.getOpcode() == ISD::UNDEF)
3246 continue;
3247 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getValue();
3248 int QuadIdx = EltIdx / 4;
3249 ++LowQuad[QuadIdx];
3250 }
3251 int BestLowQuad = -1;
3252 unsigned MaxQuad = 1;
3253 for (unsigned i = 0; i < 4; ++i) {
3254 if (LowQuad[i] > MaxQuad) {
3255 BestLowQuad = i;
3256 MaxQuad = LowQuad[i];
3257 }
Evan Chengfca29242007-12-07 08:07:39 +00003258 }
3259
Evan Cheng75184a92007-12-11 01:46:18 +00003260 // Record which half of which vector the high elements come from.
3261 SmallVector<unsigned, 4> HighQuad(4);
3262 for (unsigned i = 4; i < 8; ++i) {
3263 SDOperand Elt = MaskElts[i];
3264 if (Elt.getOpcode() == ISD::UNDEF)
3265 continue;
3266 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getValue();
3267 int QuadIdx = EltIdx / 4;
3268 ++HighQuad[QuadIdx];
3269 }
3270 int BestHighQuad = -1;
3271 MaxQuad = 1;
3272 for (unsigned i = 0; i < 4; ++i) {
3273 if (HighQuad[i] > MaxQuad) {
3274 BestHighQuad = i;
3275 MaxQuad = HighQuad[i];
3276 }
3277 }
3278
3279 // If it's possible to sort parts of either half with PSHUF{H|L}W, then do it.
3280 if (BestLowQuad != -1 || BestHighQuad != -1) {
3281 // First sort the 4 chunks in order using shufpd.
3282 SmallVector<SDOperand, 8> MaskVec;
3283 if (BestLowQuad != -1)
3284 MaskVec.push_back(DAG.getConstant(BestLowQuad, MVT::i32));
3285 else
3286 MaskVec.push_back(DAG.getConstant(0, MVT::i32));
3287 if (BestHighQuad != -1)
3288 MaskVec.push_back(DAG.getConstant(BestHighQuad, MVT::i32));
3289 else
3290 MaskVec.push_back(DAG.getConstant(1, MVT::i32));
3291 SDOperand Mask= DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i32, &MaskVec[0],2);
3292 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v2i64,
3293 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64, V1),
3294 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64, V2), Mask);
3295 NewV = DAG.getNode(ISD::BIT_CONVERT, MVT::v8i16, NewV);
3296
3297 // Now sort high and low parts separately.
3298 BitVector InOrder(8);
3299 if (BestLowQuad != -1) {
3300 // Sort lower half in order using PSHUFLW.
3301 MaskVec.clear();
3302 bool AnyOutOrder = false;
3303 for (unsigned i = 0; i != 4; ++i) {
3304 SDOperand Elt = MaskElts[i];
3305 if (Elt.getOpcode() == ISD::UNDEF) {
3306 MaskVec.push_back(Elt);
3307 InOrder.set(i);
3308 } else {
3309 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getValue();
3310 if (EltIdx != i)
3311 AnyOutOrder = true;
3312 MaskVec.push_back(DAG.getConstant(EltIdx % 4, MaskEVT));
3313 // If this element is in the right place after this shuffle, then
3314 // remember it.
3315 if ((int)(EltIdx / 4) == BestLowQuad)
3316 InOrder.set(i);
3317 }
3318 }
3319 if (AnyOutOrder) {
3320 for (unsigned i = 4; i != 8; ++i)
3321 MaskVec.push_back(DAG.getConstant(i, MaskEVT));
3322 SDOperand Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], 8);
3323 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v8i16, NewV, NewV, Mask);
3324 }
3325 }
3326
3327 if (BestHighQuad != -1) {
3328 // Sort high half in order using PSHUFHW if possible.
3329 MaskVec.clear();
3330 for (unsigned i = 0; i != 4; ++i)
3331 MaskVec.push_back(DAG.getConstant(i, MaskEVT));
3332 bool AnyOutOrder = false;
3333 for (unsigned i = 4; i != 8; ++i) {
3334 SDOperand Elt = MaskElts[i];
3335 if (Elt.getOpcode() == ISD::UNDEF) {
3336 MaskVec.push_back(Elt);
3337 InOrder.set(i);
3338 } else {
3339 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getValue();
3340 if (EltIdx != i)
3341 AnyOutOrder = true;
3342 MaskVec.push_back(DAG.getConstant((EltIdx % 4) + 4, MaskEVT));
3343 // If this element is in the right place after this shuffle, then
3344 // remember it.
3345 if ((int)(EltIdx / 4) == BestHighQuad)
3346 InOrder.set(i);
3347 }
3348 }
3349 if (AnyOutOrder) {
3350 SDOperand Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], 8);
3351 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v8i16, NewV, NewV, Mask);
3352 }
3353 }
3354
3355 // The other elements are put in the right place using pextrw and pinsrw.
3356 for (unsigned i = 0; i != 8; ++i) {
3357 if (InOrder[i])
3358 continue;
3359 SDOperand Elt = MaskElts[i];
3360 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getValue();
3361 if (EltIdx == i)
3362 continue;
3363 SDOperand ExtOp = (EltIdx < 8)
3364 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i16, V1,
3365 DAG.getConstant(EltIdx, PtrVT))
3366 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i16, V2,
3367 DAG.getConstant(EltIdx - 8, PtrVT));
3368 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, NewV, ExtOp,
3369 DAG.getConstant(i, PtrVT));
3370 }
3371 return NewV;
3372 }
3373
3374 // PSHUF{H|L}W are not used. Lower into extracts and inserts but try to use
3375 ///as few as possible.
Evan Chengfca29242007-12-07 08:07:39 +00003376 // First, let's find out how many elements are already in the right order.
3377 unsigned V1InOrder = 0;
3378 unsigned V1FromV1 = 0;
3379 unsigned V2InOrder = 0;
3380 unsigned V2FromV2 = 0;
Evan Cheng75184a92007-12-11 01:46:18 +00003381 SmallVector<SDOperand, 8> V1Elts;
3382 SmallVector<SDOperand, 8> V2Elts;
Evan Chengfca29242007-12-07 08:07:39 +00003383 for (unsigned i = 0; i < 8; ++i) {
Evan Cheng75184a92007-12-11 01:46:18 +00003384 SDOperand Elt = MaskElts[i];
Evan Chengfca29242007-12-07 08:07:39 +00003385 if (Elt.getOpcode() == ISD::UNDEF) {
Evan Cheng75184a92007-12-11 01:46:18 +00003386 V1Elts.push_back(Elt);
3387 V2Elts.push_back(Elt);
Evan Chengfca29242007-12-07 08:07:39 +00003388 ++V1InOrder;
3389 ++V2InOrder;
Evan Cheng75184a92007-12-11 01:46:18 +00003390 continue;
3391 }
3392 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getValue();
3393 if (EltIdx == i) {
3394 V1Elts.push_back(Elt);
3395 V2Elts.push_back(DAG.getConstant(i+8, MaskEVT));
3396 ++V1InOrder;
3397 } else if (EltIdx == i+8) {
3398 V1Elts.push_back(Elt);
3399 V2Elts.push_back(DAG.getConstant(i, MaskEVT));
3400 ++V2InOrder;
3401 } else if (EltIdx < 8) {
3402 V1Elts.push_back(Elt);
3403 ++V1FromV1;
Evan Chengfca29242007-12-07 08:07:39 +00003404 } else {
Evan Cheng75184a92007-12-11 01:46:18 +00003405 V2Elts.push_back(DAG.getConstant(EltIdx-8, MaskEVT));
3406 ++V2FromV2;
Evan Chengfca29242007-12-07 08:07:39 +00003407 }
3408 }
3409
3410 if (V2InOrder > V1InOrder) {
3411 PermMask = CommuteVectorShuffleMask(PermMask, DAG);
3412 std::swap(V1, V2);
3413 std::swap(V1Elts, V2Elts);
3414 std::swap(V1FromV1, V2FromV2);
3415 }
3416
Evan Cheng75184a92007-12-11 01:46:18 +00003417 if ((V1FromV1 + V1InOrder) != 8) {
3418 // Some elements are from V2.
3419 if (V1FromV1) {
3420 // If there are elements that are from V1 but out of place,
3421 // then first sort them in place
3422 SmallVector<SDOperand, 8> MaskVec;
3423 for (unsigned i = 0; i < 8; ++i) {
3424 SDOperand Elt = V1Elts[i];
3425 if (Elt.getOpcode() == ISD::UNDEF) {
3426 MaskVec.push_back(DAG.getNode(ISD::UNDEF, MaskEVT));
3427 continue;
3428 }
3429 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getValue();
3430 if (EltIdx >= 8)
3431 MaskVec.push_back(DAG.getNode(ISD::UNDEF, MaskEVT));
3432 else
3433 MaskVec.push_back(DAG.getConstant(EltIdx, MaskEVT));
3434 }
3435 SDOperand Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], 8);
3436 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v8i16, V1, V1, Mask);
Evan Chengfca29242007-12-07 08:07:39 +00003437 }
Evan Cheng75184a92007-12-11 01:46:18 +00003438
3439 NewV = V1;
3440 for (unsigned i = 0; i < 8; ++i) {
3441 SDOperand Elt = V1Elts[i];
3442 if (Elt.getOpcode() == ISD::UNDEF)
3443 continue;
3444 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getValue();
3445 if (EltIdx < 8)
3446 continue;
3447 SDOperand ExtOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i16, V2,
3448 DAG.getConstant(EltIdx - 8, PtrVT));
3449 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, NewV, ExtOp,
3450 DAG.getConstant(i, PtrVT));
3451 }
3452 return NewV;
3453 } else {
3454 // All elements are from V1.
3455 NewV = V1;
3456 for (unsigned i = 0; i < 8; ++i) {
3457 SDOperand Elt = V1Elts[i];
3458 if (Elt.getOpcode() == ISD::UNDEF)
3459 continue;
3460 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getValue();
3461 SDOperand ExtOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i16, V1,
3462 DAG.getConstant(EltIdx, PtrVT));
3463 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, NewV, ExtOp,
3464 DAG.getConstant(i, PtrVT));
3465 }
3466 return NewV;
3467 }
3468}
3469
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003470/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
3471/// ones, or rewriting v4i32 / v2f32 as 2 wide ones if possible. This can be
3472/// done when every pair / quad of shuffle mask elements point to elements in
3473/// the right sequence. e.g.
Evan Cheng75184a92007-12-11 01:46:18 +00003474/// vector_shuffle <>, <>, < 3, 4, | 10, 11, | 0, 1, | 14, 15>
3475static
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003476SDOperand RewriteAsNarrowerShuffle(SDOperand V1, SDOperand V2,
3477 MVT::ValueType VT,
Evan Cheng75184a92007-12-11 01:46:18 +00003478 SDOperand PermMask, SelectionDAG &DAG,
3479 TargetLowering &TLI) {
3480 unsigned NumElems = PermMask.getNumOperands();
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003481 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
3482 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NewWidth);
3483 MVT::ValueType NewVT = MaskVT;
3484 switch (VT) {
3485 case MVT::v4f32: NewVT = MVT::v2f64; break;
3486 case MVT::v4i32: NewVT = MVT::v2i64; break;
3487 case MVT::v8i16: NewVT = MVT::v4i32; break;
3488 case MVT::v16i8: NewVT = MVT::v4i32; break;
3489 default: assert(false && "Unexpected!");
3490 }
3491
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00003492 if (NewWidth == 2) {
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003493 if (MVT::isInteger(VT))
3494 NewVT = MVT::v2i64;
3495 else
3496 NewVT = MVT::v2f64;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00003497 }
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003498 unsigned Scale = NumElems / NewWidth;
3499 SmallVector<SDOperand, 8> MaskVec;
Evan Cheng75184a92007-12-11 01:46:18 +00003500 for (unsigned i = 0; i < NumElems; i += Scale) {
3501 unsigned StartIdx = ~0U;
3502 for (unsigned j = 0; j < Scale; ++j) {
3503 SDOperand Elt = PermMask.getOperand(i+j);
3504 if (Elt.getOpcode() == ISD::UNDEF)
3505 continue;
3506 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getValue();
3507 if (StartIdx == ~0U)
3508 StartIdx = EltIdx - (EltIdx % Scale);
3509 if (EltIdx != StartIdx + j)
3510 return SDOperand();
3511 }
3512 if (StartIdx == ~0U)
3513 MaskVec.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
3514 else
3515 MaskVec.push_back(DAG.getConstant(StartIdx / Scale, MVT::i32));
Evan Chengfca29242007-12-07 08:07:39 +00003516 }
3517
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003518 V1 = DAG.getNode(ISD::BIT_CONVERT, NewVT, V1);
3519 V2 = DAG.getNode(ISD::BIT_CONVERT, NewVT, V2);
3520 return DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT, V1, V2,
3521 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3522 &MaskVec[0], MaskVec.size()));
Evan Chengfca29242007-12-07 08:07:39 +00003523}
3524
Evan Chenge9b9c672008-05-09 21:53:03 +00003525/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng40ee6e52008-05-08 00:57:18 +00003526///
Evan Chenge9b9c672008-05-09 21:53:03 +00003527static SDOperand getVZextMovL(MVT::ValueType VT, MVT::ValueType OpVT,
Evan Cheng40ee6e52008-05-08 00:57:18 +00003528 SDOperand SrcOp, SelectionDAG &DAG,
3529 const X86Subtarget *Subtarget) {
3530 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
3531 LoadSDNode *LD = NULL;
3532 if (!isScalarLoadToVector(SrcOp.Val, &LD))
3533 LD = dyn_cast<LoadSDNode>(SrcOp);
3534 if (!LD) {
3535 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
3536 // instead.
3537 MVT::ValueType EVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
3538 if ((EVT != MVT::i64 || Subtarget->is64Bit()) &&
3539 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
3540 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
3541 SrcOp.getOperand(0).getOperand(0).getValueType() == EVT) {
3542 // PR2108
3543 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
3544 return DAG.getNode(ISD::BIT_CONVERT, VT,
Evan Chenge9b9c672008-05-09 21:53:03 +00003545 DAG.getNode(X86ISD::VZEXT_MOVL, OpVT,
Evan Cheng40ee6e52008-05-08 00:57:18 +00003546 DAG.getNode(ISD::SCALAR_TO_VECTOR, OpVT,
3547 SrcOp.getOperand(0).getOperand(0))));
3548 }
3549 }
3550 }
3551
3552 return DAG.getNode(ISD::BIT_CONVERT, VT,
Evan Chenge9b9c672008-05-09 21:53:03 +00003553 DAG.getNode(X86ISD::VZEXT_MOVL, OpVT,
Evan Cheng40ee6e52008-05-08 00:57:18 +00003554 DAG.getNode(ISD::BIT_CONVERT, OpVT, SrcOp)));
3555}
3556
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003557SDOperand
3558X86TargetLowering::LowerVECTOR_SHUFFLE(SDOperand Op, SelectionDAG &DAG) {
3559 SDOperand V1 = Op.getOperand(0);
3560 SDOperand V2 = Op.getOperand(1);
3561 SDOperand PermMask = Op.getOperand(2);
3562 MVT::ValueType VT = Op.getValueType();
3563 unsigned NumElems = PermMask.getNumOperands();
Evan Chengbf8b2c52008-04-05 00:30:36 +00003564 bool isMMX = MVT::getSizeInBits(VT) == 64;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003565 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
3566 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
3567 bool V1IsSplat = false;
3568 bool V2IsSplat = false;
3569
3570 if (isUndefShuffle(Op.Val))
3571 return DAG.getNode(ISD::UNDEF, VT);
3572
3573 if (isZeroShuffle(Op.Val))
Evan Cheng8c590372008-05-15 08:39:06 +00003574 return getZeroVector(VT, Subtarget->hasSSE2(), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003575
3576 if (isIdentityMask(PermMask.Val))
3577 return V1;
3578 else if (isIdentityMask(PermMask.Val, true))
3579 return V2;
3580
3581 if (isSplatMask(PermMask.Val)) {
Evan Chengbf8b2c52008-04-05 00:30:36 +00003582 if (isMMX || NumElems < 4) return Op;
3583 // Promote it to a v4{if}32 splat.
3584 return PromoteSplat(Op, DAG, Subtarget->hasSSE2());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003585 }
3586
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003587 // If the shuffle can be profitably rewritten as a narrower shuffle, then
3588 // do it!
3589 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
3590 SDOperand NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask, DAG, *this);
3591 if (NewOp.Val)
3592 return DAG.getNode(ISD::BIT_CONVERT, VT, LowerVECTOR_SHUFFLE(NewOp, DAG));
3593 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
3594 // FIXME: Figure out a cleaner way to do this.
3595 // Try to make use of movq to zero out the top part.
3596 if (ISD::isBuildVectorAllZeros(V2.Val)) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00003597 SDOperand NewOp = RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
3598 DAG, *this);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003599 if (NewOp.Val) {
3600 SDOperand NewV1 = NewOp.getOperand(0);
3601 SDOperand NewV2 = NewOp.getOperand(1);
3602 SDOperand NewMask = NewOp.getOperand(2);
3603 if (isCommutedMOVL(NewMask.Val, true, false)) {
3604 NewOp = CommuteVectorShuffle(NewOp, NewV1, NewV2, NewMask, DAG);
Evan Chenge9b9c672008-05-09 21:53:03 +00003605 return getVZextMovL(VT, NewOp.getValueType(), NewV2, DAG, Subtarget);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003606 }
3607 }
3608 } else if (ISD::isBuildVectorAllZeros(V1.Val)) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00003609 SDOperand NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
3610 DAG, *this);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003611 if (NewOp.Val && X86::isMOVLMask(NewOp.getOperand(2).Val))
Evan Chenge9b9c672008-05-09 21:53:03 +00003612 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
Evan Cheng40ee6e52008-05-08 00:57:18 +00003613 DAG, Subtarget);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003614 }
3615 }
3616
Evan Cheng40ee6e52008-05-08 00:57:18 +00003617 if (X86::isMOVLMask(PermMask.Val)) {
3618 if (V1IsUndef)
3619 return V2;
3620 if (ISD::isBuildVectorAllZeros(V1.Val))
Evan Chenge9b9c672008-05-09 21:53:03 +00003621 return getVZextMovL(VT, VT, V2, DAG, Subtarget);
Evan Cheng40ee6e52008-05-08 00:57:18 +00003622 return Op;
3623 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003624
3625 if (X86::isMOVSHDUPMask(PermMask.Val) ||
3626 X86::isMOVSLDUPMask(PermMask.Val) ||
3627 X86::isMOVHLPSMask(PermMask.Val) ||
3628 X86::isMOVHPMask(PermMask.Val) ||
3629 X86::isMOVLPMask(PermMask.Val))
3630 return Op;
3631
3632 if (ShouldXformToMOVHLPS(PermMask.Val) ||
3633 ShouldXformToMOVLP(V1.Val, V2.Val, PermMask.Val))
3634 return CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
3635
3636 bool Commuted = false;
Chris Lattnere6aa3862007-11-25 00:24:49 +00003637 // FIXME: This should also accept a bitcast of a splat? Be careful, not
3638 // 1,1,1,1 -> v8i16 though.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003639 V1IsSplat = isSplatVector(V1.Val);
3640 V2IsSplat = isSplatVector(V2.Val);
Chris Lattnere6aa3862007-11-25 00:24:49 +00003641
3642 // Canonicalize the splat or undef, if present, to be on the RHS.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003643 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
3644 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
3645 std::swap(V1IsSplat, V2IsSplat);
3646 std::swap(V1IsUndef, V2IsUndef);
3647 Commuted = true;
3648 }
3649
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003650 // FIXME: Figure out a cleaner way to do this.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003651 if (isCommutedMOVL(PermMask.Val, V2IsSplat, V2IsUndef)) {
3652 if (V2IsUndef) return V1;
3653 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
3654 if (V2IsSplat) {
3655 // V2 is a splat, so the mask may be malformed. That is, it may point
3656 // to any V2 element. The instruction selectior won't like this. Get
3657 // a corrected mask and commute to form a proper MOVS{S|D}.
3658 SDOperand NewMask = getMOVLMask(NumElems, DAG);
3659 if (NewMask.Val != PermMask.Val)
3660 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, NewMask);
3661 }
3662 return Op;
3663 }
3664
3665 if (X86::isUNPCKL_v_undef_Mask(PermMask.Val) ||
3666 X86::isUNPCKH_v_undef_Mask(PermMask.Val) ||
3667 X86::isUNPCKLMask(PermMask.Val) ||
3668 X86::isUNPCKHMask(PermMask.Val))
3669 return Op;
3670
3671 if (V2IsSplat) {
3672 // Normalize mask so all entries that point to V2 points to its first
3673 // element then try to match unpck{h|l} again. If match, return a
3674 // new vector_shuffle with the corrected mask.
3675 SDOperand NewMask = NormalizeMask(PermMask, DAG);
3676 if (NewMask.Val != PermMask.Val) {
3677 if (X86::isUNPCKLMask(PermMask.Val, true)) {
3678 SDOperand NewMask = getUnpacklMask(NumElems, DAG);
3679 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, NewMask);
3680 } else if (X86::isUNPCKHMask(PermMask.Val, true)) {
3681 SDOperand NewMask = getUnpackhMask(NumElems, DAG);
3682 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, NewMask);
3683 }
3684 }
3685 }
3686
3687 // Normalize the node to match x86 shuffle ops if needed
3688 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(PermMask.Val))
3689 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
3690
3691 if (Commuted) {
3692 // Commute is back and try unpck* again.
3693 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
3694 if (X86::isUNPCKL_v_undef_Mask(PermMask.Val) ||
3695 X86::isUNPCKH_v_undef_Mask(PermMask.Val) ||
3696 X86::isUNPCKLMask(PermMask.Val) ||
3697 X86::isUNPCKHMask(PermMask.Val))
3698 return Op;
3699 }
3700
Evan Chengbf8b2c52008-04-05 00:30:36 +00003701 // Try PSHUF* first, then SHUFP*.
3702 // MMX doesn't have PSHUFD but it does have PSHUFW. While it's theoretically
3703 // possible to shuffle a v2i32 using PSHUFW, that's not yet implemented.
3704 if (isMMX && NumElems == 4 && X86::isPSHUFDMask(PermMask.Val)) {
3705 if (V2.getOpcode() != ISD::UNDEF)
3706 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1,
3707 DAG.getNode(ISD::UNDEF, VT), PermMask);
3708 return Op;
3709 }
3710
3711 if (!isMMX) {
3712 if (Subtarget->hasSSE2() &&
3713 (X86::isPSHUFDMask(PermMask.Val) ||
3714 X86::isPSHUFHWMask(PermMask.Val) ||
3715 X86::isPSHUFLWMask(PermMask.Val))) {
3716 MVT::ValueType RVT = VT;
3717 if (VT == MVT::v4f32) {
3718 RVT = MVT::v4i32;
3719 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, RVT,
3720 DAG.getNode(ISD::BIT_CONVERT, RVT, V1),
3721 DAG.getNode(ISD::UNDEF, RVT), PermMask);
3722 } else if (V2.getOpcode() != ISD::UNDEF)
3723 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, RVT, V1,
3724 DAG.getNode(ISD::UNDEF, RVT), PermMask);
3725 if (RVT != VT)
3726 Op = DAG.getNode(ISD::BIT_CONVERT, VT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003727 return Op;
3728 }
3729
Evan Chengbf8b2c52008-04-05 00:30:36 +00003730 // Binary or unary shufps.
3731 if (X86::isSHUFPMask(PermMask.Val) ||
3732 (V2.getOpcode() == ISD::UNDEF && X86::isPSHUFDMask(PermMask.Val)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003733 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003734 }
3735
Evan Cheng75184a92007-12-11 01:46:18 +00003736 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
3737 if (VT == MVT::v8i16) {
3738 SDOperand NewOp = LowerVECTOR_SHUFFLEv8i16(V1, V2, PermMask, DAG, *this);
3739 if (NewOp.Val)
3740 return NewOp;
3741 }
3742
3743 // Handle all 4 wide cases with a number of shuffles.
Evan Chengbf8b2c52008-04-05 00:30:36 +00003744 if (NumElems == 4 && !isMMX) {
Evan Chengfca29242007-12-07 08:07:39 +00003745 // Don't do this for MMX.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003746 MVT::ValueType MaskVT = PermMask.getValueType();
3747 MVT::ValueType MaskEVT = MVT::getVectorElementType(MaskVT);
3748 SmallVector<std::pair<int, int>, 8> Locs;
3749 Locs.reserve(NumElems);
Evan Cheng75184a92007-12-11 01:46:18 +00003750 SmallVector<SDOperand, 8> Mask1(NumElems,
3751 DAG.getNode(ISD::UNDEF, MaskEVT));
3752 SmallVector<SDOperand, 8> Mask2(NumElems,
3753 DAG.getNode(ISD::UNDEF, MaskEVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003754 unsigned NumHi = 0;
3755 unsigned NumLo = 0;
3756 // If no more than two elements come from either vector. This can be
3757 // implemented with two shuffles. First shuffle gather the elements.
3758 // The second shuffle, which takes the first shuffle as both of its
3759 // vector operands, put the elements into the right order.
3760 for (unsigned i = 0; i != NumElems; ++i) {
3761 SDOperand Elt = PermMask.getOperand(i);
3762 if (Elt.getOpcode() == ISD::UNDEF) {
3763 Locs[i] = std::make_pair(-1, -1);
3764 } else {
3765 unsigned Val = cast<ConstantSDNode>(Elt)->getValue();
3766 if (Val < NumElems) {
3767 Locs[i] = std::make_pair(0, NumLo);
3768 Mask1[NumLo] = Elt;
3769 NumLo++;
3770 } else {
3771 Locs[i] = std::make_pair(1, NumHi);
3772 if (2+NumHi < NumElems)
3773 Mask1[2+NumHi] = Elt;
3774 NumHi++;
3775 }
3776 }
3777 }
3778 if (NumLo <= 2 && NumHi <= 2) {
3779 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
3780 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3781 &Mask1[0], Mask1.size()));
3782 for (unsigned i = 0; i != NumElems; ++i) {
3783 if (Locs[i].first == -1)
3784 continue;
3785 else {
3786 unsigned Idx = (i < NumElems/2) ? 0 : NumElems;
3787 Idx += Locs[i].first * (NumElems/2) + Locs[i].second;
3788 Mask2[i] = DAG.getConstant(Idx, MaskEVT);
3789 }
3790 }
3791
3792 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V1,
3793 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3794 &Mask2[0], Mask2.size()));
3795 }
3796
3797 // Break it into (shuffle shuffle_hi, shuffle_lo).
3798 Locs.clear();
3799 SmallVector<SDOperand,8> LoMask(NumElems, DAG.getNode(ISD::UNDEF, MaskEVT));
3800 SmallVector<SDOperand,8> HiMask(NumElems, DAG.getNode(ISD::UNDEF, MaskEVT));
3801 SmallVector<SDOperand,8> *MaskPtr = &LoMask;
3802 unsigned MaskIdx = 0;
3803 unsigned LoIdx = 0;
3804 unsigned HiIdx = NumElems/2;
3805 for (unsigned i = 0; i != NumElems; ++i) {
3806 if (i == NumElems/2) {
3807 MaskPtr = &HiMask;
3808 MaskIdx = 1;
3809 LoIdx = 0;
3810 HiIdx = NumElems/2;
3811 }
3812 SDOperand Elt = PermMask.getOperand(i);
3813 if (Elt.getOpcode() == ISD::UNDEF) {
3814 Locs[i] = std::make_pair(-1, -1);
3815 } else if (cast<ConstantSDNode>(Elt)->getValue() < NumElems) {
3816 Locs[i] = std::make_pair(MaskIdx, LoIdx);
3817 (*MaskPtr)[LoIdx] = Elt;
3818 LoIdx++;
3819 } else {
3820 Locs[i] = std::make_pair(MaskIdx, HiIdx);
3821 (*MaskPtr)[HiIdx] = Elt;
3822 HiIdx++;
3823 }
3824 }
3825
3826 SDOperand LoShuffle =
3827 DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
3828 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3829 &LoMask[0], LoMask.size()));
3830 SDOperand HiShuffle =
3831 DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
3832 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3833 &HiMask[0], HiMask.size()));
3834 SmallVector<SDOperand, 8> MaskOps;
3835 for (unsigned i = 0; i != NumElems; ++i) {
3836 if (Locs[i].first == -1) {
3837 MaskOps.push_back(DAG.getNode(ISD::UNDEF, MaskEVT));
3838 } else {
3839 unsigned Idx = Locs[i].first * NumElems + Locs[i].second;
3840 MaskOps.push_back(DAG.getConstant(Idx, MaskEVT));
3841 }
3842 }
3843 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, LoShuffle, HiShuffle,
3844 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3845 &MaskOps[0], MaskOps.size()));
3846 }
3847
3848 return SDOperand();
3849}
3850
3851SDOperand
Nate Begemand77e59e2008-02-11 04:19:36 +00003852X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDOperand Op,
3853 SelectionDAG &DAG) {
3854 MVT::ValueType VT = Op.getValueType();
3855 if (MVT::getSizeInBits(VT) == 8) {
3856 SDOperand Extract = DAG.getNode(X86ISD::PEXTRB, MVT::i32,
3857 Op.getOperand(0), Op.getOperand(1));
3858 SDOperand Assert = DAG.getNode(ISD::AssertZext, MVT::i32, Extract,
3859 DAG.getValueType(VT));
3860 return DAG.getNode(ISD::TRUNCATE, VT, Assert);
3861 } else if (MVT::getSizeInBits(VT) == 16) {
3862 SDOperand Extract = DAG.getNode(X86ISD::PEXTRW, MVT::i32,
3863 Op.getOperand(0), Op.getOperand(1));
3864 SDOperand Assert = DAG.getNode(ISD::AssertZext, MVT::i32, Extract,
3865 DAG.getValueType(VT));
3866 return DAG.getNode(ISD::TRUNCATE, VT, Assert);
Evan Cheng6c249332008-03-24 21:52:23 +00003867 } else if (VT == MVT::f32) {
3868 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
3869 // the result back to FR32 register. It's only worth matching if the
Dan Gohman788db592008-04-16 02:32:24 +00003870 // result has a single use which is a store or a bitcast to i32.
Evan Cheng6c249332008-03-24 21:52:23 +00003871 if (!Op.hasOneUse())
3872 return SDOperand();
Roman Levenstein05650fd2008-04-07 10:06:32 +00003873 SDNode *User = Op.Val->use_begin()->getUser();
Dan Gohman788db592008-04-16 02:32:24 +00003874 if (User->getOpcode() != ISD::STORE &&
3875 (User->getOpcode() != ISD::BIT_CONVERT ||
3876 User->getValueType(0) != MVT::i32))
Evan Cheng6c249332008-03-24 21:52:23 +00003877 return SDOperand();
3878 SDOperand Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i32,
3879 DAG.getNode(ISD::BIT_CONVERT, MVT::v4i32, Op.getOperand(0)),
3880 Op.getOperand(1));
3881 return DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Extract);
Nate Begemand77e59e2008-02-11 04:19:36 +00003882 }
3883 return SDOperand();
3884}
3885
3886
3887SDOperand
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003888X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDOperand Op, SelectionDAG &DAG) {
3889 if (!isa<ConstantSDNode>(Op.getOperand(1)))
3890 return SDOperand();
3891
Evan Cheng6c249332008-03-24 21:52:23 +00003892 if (Subtarget->hasSSE41()) {
3893 SDOperand Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
3894 if (Res.Val)
3895 return Res;
3896 }
Nate Begemand77e59e2008-02-11 04:19:36 +00003897
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003898 MVT::ValueType VT = Op.getValueType();
3899 // TODO: handle v16i8.
3900 if (MVT::getSizeInBits(VT) == 16) {
Evan Cheng75184a92007-12-11 01:46:18 +00003901 SDOperand Vec = Op.getOperand(0);
3902 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
3903 if (Idx == 0)
3904 return DAG.getNode(ISD::TRUNCATE, MVT::i16,
3905 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i32,
3906 DAG.getNode(ISD::BIT_CONVERT, MVT::v4i32, Vec),
3907 Op.getOperand(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003908 // Transform it so it match pextrw which produces a 32-bit result.
3909 MVT::ValueType EVT = (MVT::ValueType)(VT+1);
3910 SDOperand Extract = DAG.getNode(X86ISD::PEXTRW, EVT,
3911 Op.getOperand(0), Op.getOperand(1));
3912 SDOperand Assert = DAG.getNode(ISD::AssertZext, EVT, Extract,
3913 DAG.getValueType(VT));
3914 return DAG.getNode(ISD::TRUNCATE, VT, Assert);
3915 } else if (MVT::getSizeInBits(VT) == 32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003916 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
3917 if (Idx == 0)
3918 return Op;
3919 // SHUFPS the element to the lowest double word, then movss.
3920 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(4);
3921 SmallVector<SDOperand, 8> IdxVec;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00003922 IdxVec.
3923 push_back(DAG.getConstant(Idx, MVT::getVectorElementType(MaskVT)));
3924 IdxVec.
3925 push_back(DAG.getNode(ISD::UNDEF, MVT::getVectorElementType(MaskVT)));
3926 IdxVec.
3927 push_back(DAG.getNode(ISD::UNDEF, MVT::getVectorElementType(MaskVT)));
3928 IdxVec.
3929 push_back(DAG.getNode(ISD::UNDEF, MVT::getVectorElementType(MaskVT)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003930 SDOperand Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3931 &IdxVec[0], IdxVec.size());
Evan Cheng75184a92007-12-11 01:46:18 +00003932 SDOperand Vec = Op.getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003933 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, Vec.getValueType(),
3934 Vec, DAG.getNode(ISD::UNDEF, Vec.getValueType()), Mask);
3935 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00003936 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003937 } else if (MVT::getSizeInBits(VT) == 64) {
Nate Begemand77e59e2008-02-11 04:19:36 +00003938 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
3939 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
3940 // to match extract_elt for f64.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003941 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
3942 if (Idx == 0)
3943 return Op;
3944
3945 // UNPCKHPD the element to the lowest double word, then movsd.
3946 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
3947 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
3948 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(4);
3949 SmallVector<SDOperand, 8> IdxVec;
3950 IdxVec.push_back(DAG.getConstant(1, MVT::getVectorElementType(MaskVT)));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00003951 IdxVec.
3952 push_back(DAG.getNode(ISD::UNDEF, MVT::getVectorElementType(MaskVT)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003953 SDOperand Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3954 &IdxVec[0], IdxVec.size());
Evan Cheng75184a92007-12-11 01:46:18 +00003955 SDOperand Vec = Op.getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003956 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, Vec.getValueType(),
3957 Vec, DAG.getNode(ISD::UNDEF, Vec.getValueType()), Mask);
3958 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00003959 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003960 }
3961
3962 return SDOperand();
3963}
3964
3965SDOperand
Nate Begemand77e59e2008-02-11 04:19:36 +00003966X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDOperand Op, SelectionDAG &DAG){
3967 MVT::ValueType VT = Op.getValueType();
3968 MVT::ValueType EVT = MVT::getVectorElementType(VT);
3969
3970 SDOperand N0 = Op.getOperand(0);
3971 SDOperand N1 = Op.getOperand(1);
3972 SDOperand N2 = Op.getOperand(2);
3973
3974 if ((MVT::getSizeInBits(EVT) == 8) || (MVT::getSizeInBits(EVT) == 16)) {
3975 unsigned Opc = (MVT::getSizeInBits(EVT) == 8) ? X86ISD::PINSRB
3976 : X86ISD::PINSRW;
3977 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
3978 // argument.
3979 if (N1.getValueType() != MVT::i32)
3980 N1 = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, N1);
3981 if (N2.getValueType() != MVT::i32)
3982 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getValue());
3983 return DAG.getNode(Opc, VT, N0, N1, N2);
3984 } else if (EVT == MVT::f32) {
3985 // Bits [7:6] of the constant are the source select. This will always be
3986 // zero here. The DAG Combiner may combine an extract_elt index into these
3987 // bits. For example (insert (extract, 3), 2) could be matched by putting
3988 // the '3' into bits [7:6] of X86ISD::INSERTPS.
3989 // Bits [5:4] of the constant are the destination select. This is the
3990 // value of the incoming immediate.
3991 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
3992 // combine either bitwise AND or insert of float 0.0 to set these bits.
3993 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getValue() << 4);
3994 return DAG.getNode(X86ISD::INSERTPS, VT, N0, N1, N2);
3995 }
3996 return SDOperand();
3997}
3998
3999SDOperand
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004000X86TargetLowering::LowerINSERT_VECTOR_ELT(SDOperand Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004001 MVT::ValueType VT = Op.getValueType();
Evan Chenge12a7eb2007-12-12 07:55:34 +00004002 MVT::ValueType EVT = MVT::getVectorElementType(VT);
Nate Begemand77e59e2008-02-11 04:19:36 +00004003
4004 if (Subtarget->hasSSE41())
4005 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
4006
Evan Chenge12a7eb2007-12-12 07:55:34 +00004007 if (EVT == MVT::i8)
4008 return SDOperand();
4009
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004010 SDOperand N0 = Op.getOperand(0);
4011 SDOperand N1 = Op.getOperand(1);
4012 SDOperand N2 = Op.getOperand(2);
Evan Chenge12a7eb2007-12-12 07:55:34 +00004013
4014 if (MVT::getSizeInBits(EVT) == 16) {
4015 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
4016 // as its second argument.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004017 if (N1.getValueType() != MVT::i32)
4018 N1 = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, N1);
4019 if (N2.getValueType() != MVT::i32)
Chris Lattner5872a362008-01-17 07:00:52 +00004020 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004021 return DAG.getNode(X86ISD::PINSRW, VT, N0, N1, N2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004022 }
Nate Begeman9e1a41f2008-01-05 20:51:30 +00004023 return SDOperand();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004024}
4025
4026SDOperand
4027X86TargetLowering::LowerSCALAR_TO_VECTOR(SDOperand Op, SelectionDAG &DAG) {
4028 SDOperand AnyExt = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, Op.getOperand(0));
Evan Chengd1045a62008-02-18 23:04:32 +00004029 MVT::ValueType VT = MVT::v2i32;
4030 switch (Op.getValueType()) {
4031 default: break;
4032 case MVT::v16i8:
4033 case MVT::v8i16:
4034 VT = MVT::v4i32;
4035 break;
4036 }
4037 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(),
4038 DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, AnyExt));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004039}
4040
4041// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
4042// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
4043// one of the above mentioned nodes. It has to be wrapped because otherwise
4044// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
4045// be used to form addressing mode. These wrapped nodes will be selected
4046// into MOV32ri.
4047SDOperand
4048X86TargetLowering::LowerConstantPool(SDOperand Op, SelectionDAG &DAG) {
4049 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
4050 SDOperand Result = DAG.getTargetConstantPool(CP->getConstVal(),
4051 getPointerTy(),
4052 CP->getAlignment());
4053 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
4054 // With PIC, the address is actually $g + Offset.
4055 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4056 !Subtarget->isPICStyleRIPRel()) {
4057 Result = DAG.getNode(ISD::ADD, getPointerTy(),
4058 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
4059 Result);
4060 }
4061
4062 return Result;
4063}
4064
4065SDOperand
4066X86TargetLowering::LowerGlobalAddress(SDOperand Op, SelectionDAG &DAG) {
4067 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
4068 SDOperand Result = DAG.getTargetGlobalAddress(GV, getPointerTy());
Evan Cheng2e28d622008-02-02 04:07:54 +00004069 // If it's a debug information descriptor, don't mess with it.
4070 if (DAG.isVerifiedDebugInfoDesc(Op))
4071 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004072 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
4073 // With PIC, the address is actually $g + Offset.
4074 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4075 !Subtarget->isPICStyleRIPRel()) {
4076 Result = DAG.getNode(ISD::ADD, getPointerTy(),
4077 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
4078 Result);
4079 }
4080
4081 // For Darwin & Mingw32, external and weak symbols are indirect, so we want to
4082 // load the value at address GV, not the value of GV itself. This means that
4083 // the GlobalAddress must be in the base or index register of the address, not
4084 // the GV offset field. Platform check is inside GVRequiresExtraLoad() call
4085 // The same applies for external symbols during PIC codegen
4086 if (Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false))
Dan Gohman12a9c082008-02-06 22:27:42 +00004087 Result = DAG.getLoad(getPointerTy(), DAG.getEntryNode(), Result,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004088 PseudoSourceValue::getGOT(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004089
4090 return Result;
4091}
4092
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004093// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004094static SDOperand
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004095LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
4096 const MVT::ValueType PtrVT) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004097 SDOperand InFlag;
4098 SDOperand Chain = DAG.getCopyToReg(DAG.getEntryNode(), X86::EBX,
4099 DAG.getNode(X86ISD::GlobalBaseReg,
4100 PtrVT), InFlag);
4101 InFlag = Chain.getValue(1);
4102
4103 // emit leal symbol@TLSGD(,%ebx,1), %eax
4104 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
4105 SDOperand TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
4106 GA->getValueType(0),
4107 GA->getOffset());
4108 SDOperand Ops[] = { Chain, TGA, InFlag };
4109 SDOperand Result = DAG.getNode(X86ISD::TLSADDR, NodeTys, Ops, 3);
4110 InFlag = Result.getValue(2);
4111 Chain = Result.getValue(1);
4112
4113 // call ___tls_get_addr. This function receives its argument in
4114 // the register EAX.
4115 Chain = DAG.getCopyToReg(Chain, X86::EAX, Result, InFlag);
4116 InFlag = Chain.getValue(1);
4117
4118 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
4119 SDOperand Ops1[] = { Chain,
4120 DAG.getTargetExternalSymbol("___tls_get_addr",
4121 PtrVT),
4122 DAG.getRegister(X86::EAX, PtrVT),
4123 DAG.getRegister(X86::EBX, PtrVT),
4124 InFlag };
4125 Chain = DAG.getNode(X86ISD::CALL, NodeTys, Ops1, 5);
4126 InFlag = Chain.getValue(1);
4127
4128 return DAG.getCopyFromReg(Chain, X86::EAX, PtrVT, InFlag);
4129}
4130
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004131// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
4132static SDOperand
4133LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
4134 const MVT::ValueType PtrVT) {
4135 SDOperand InFlag, Chain;
4136
4137 // emit leaq symbol@TLSGD(%rip), %rdi
4138 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
4139 SDOperand TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
4140 GA->getValueType(0),
4141 GA->getOffset());
4142 SDOperand Ops[] = { DAG.getEntryNode(), TGA};
4143 SDOperand Result = DAG.getNode(X86ISD::TLSADDR, NodeTys, Ops, 2);
4144 Chain = Result.getValue(1);
4145 InFlag = Result.getValue(2);
4146
4147 // call ___tls_get_addr. This function receives its argument in
4148 // the register RDI.
4149 Chain = DAG.getCopyToReg(Chain, X86::RDI, Result, InFlag);
4150 InFlag = Chain.getValue(1);
4151
4152 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
4153 SDOperand Ops1[] = { Chain,
4154 DAG.getTargetExternalSymbol("___tls_get_addr",
4155 PtrVT),
4156 DAG.getRegister(X86::RDI, PtrVT),
4157 InFlag };
4158 Chain = DAG.getNode(X86ISD::CALL, NodeTys, Ops1, 4);
4159 InFlag = Chain.getValue(1);
4160
4161 return DAG.getCopyFromReg(Chain, X86::RAX, PtrVT, InFlag);
4162}
4163
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004164// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
4165// "local exec" model.
4166static SDOperand
4167LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
4168 const MVT::ValueType PtrVT) {
4169 // Get the Thread Pointer
4170 SDOperand ThreadPointer = DAG.getNode(X86ISD::THREAD_POINTER, PtrVT);
4171 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
4172 // exec)
4173 SDOperand TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
4174 GA->getValueType(0),
4175 GA->getOffset());
4176 SDOperand Offset = DAG.getNode(X86ISD::Wrapper, PtrVT, TGA);
4177
4178 if (GA->getGlobal()->isDeclaration()) // initial exec TLS model
Dan Gohman12a9c082008-02-06 22:27:42 +00004179 Offset = DAG.getLoad(PtrVT, DAG.getEntryNode(), Offset,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004180 PseudoSourceValue::getGOT(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004181
4182 // The address of the thread local variable is the add of the thread
4183 // pointer with the offset of the variable.
4184 return DAG.getNode(ISD::ADD, PtrVT, ThreadPointer, Offset);
4185}
4186
4187SDOperand
4188X86TargetLowering::LowerGlobalTLSAddress(SDOperand Op, SelectionDAG &DAG) {
4189 // TODO: implement the "local dynamic" model
4190 // TODO: implement the "initial exec"model for pic executables
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004191 assert(Subtarget->isTargetELF() &&
4192 "TLS not implemented for non-ELF targets");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004193 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
4194 // If the relocation model is PIC, use the "General Dynamic" TLS Model,
4195 // otherwise use the "Local Exec"TLS Model
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004196 if (Subtarget->is64Bit()) {
4197 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
4198 } else {
4199 if (getTargetMachine().getRelocationModel() == Reloc::PIC_)
4200 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
4201 else
4202 return LowerToTLSExecModel(GA, DAG, getPointerTy());
4203 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004204}
4205
4206SDOperand
4207X86TargetLowering::LowerExternalSymbol(SDOperand Op, SelectionDAG &DAG) {
4208 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
4209 SDOperand Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
4210 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
4211 // With PIC, the address is actually $g + Offset.
4212 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4213 !Subtarget->isPICStyleRIPRel()) {
4214 Result = DAG.getNode(ISD::ADD, getPointerTy(),
4215 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
4216 Result);
4217 }
4218
4219 return Result;
4220}
4221
4222SDOperand X86TargetLowering::LowerJumpTable(SDOperand Op, SelectionDAG &DAG) {
4223 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
4224 SDOperand Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy());
4225 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
4226 // With PIC, the address is actually $g + Offset.
4227 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4228 !Subtarget->isPICStyleRIPRel()) {
4229 Result = DAG.getNode(ISD::ADD, getPointerTy(),
4230 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
4231 Result);
4232 }
4233
4234 return Result;
4235}
4236
Chris Lattner62814a32007-10-17 06:02:13 +00004237/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
4238/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004239SDOperand X86TargetLowering::LowerShift(SDOperand Op, SelectionDAG &DAG) {
Dan Gohman092014e2008-03-03 22:22:09 +00004240 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4241 MVT::ValueType VT = Op.getValueType();
4242 unsigned VTBits = MVT::getSizeInBits(VT);
Chris Lattner62814a32007-10-17 06:02:13 +00004243 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
4244 SDOperand ShOpLo = Op.getOperand(0);
4245 SDOperand ShOpHi = Op.getOperand(1);
4246 SDOperand ShAmt = Op.getOperand(2);
4247 SDOperand Tmp1 = isSRA ?
Dan Gohman092014e2008-03-03 22:22:09 +00004248 DAG.getNode(ISD::SRA, VT, ShOpHi, DAG.getConstant(VTBits - 1, MVT::i8)) :
4249 DAG.getConstant(0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004250
Chris Lattner62814a32007-10-17 06:02:13 +00004251 SDOperand Tmp2, Tmp3;
4252 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dan Gohman092014e2008-03-03 22:22:09 +00004253 Tmp2 = DAG.getNode(X86ISD::SHLD, VT, ShOpHi, ShOpLo, ShAmt);
4254 Tmp3 = DAG.getNode(ISD::SHL, VT, ShOpLo, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00004255 } else {
Dan Gohman092014e2008-03-03 22:22:09 +00004256 Tmp2 = DAG.getNode(X86ISD::SHRD, VT, ShOpLo, ShOpHi, ShAmt);
4257 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, VT, ShOpHi, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00004258 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004259
Chris Lattner62814a32007-10-17 06:02:13 +00004260 const MVT::ValueType *VTs = DAG.getNodeValueTypes(MVT::Other, MVT::Flag);
4261 SDOperand AndNode = DAG.getNode(ISD::AND, MVT::i8, ShAmt,
Dan Gohman092014e2008-03-03 22:22:09 +00004262 DAG.getConstant(VTBits, MVT::i8));
4263 SDOperand Cond = DAG.getNode(X86ISD::CMP, VT,
Chris Lattner62814a32007-10-17 06:02:13 +00004264 AndNode, DAG.getConstant(0, MVT::i8));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004265
Chris Lattner62814a32007-10-17 06:02:13 +00004266 SDOperand Hi, Lo;
4267 SDOperand CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman092014e2008-03-03 22:22:09 +00004268 VTs = DAG.getNodeValueTypes(VT, MVT::Flag);
Chris Lattner62814a32007-10-17 06:02:13 +00004269 SmallVector<SDOperand, 4> Ops;
4270 if (Op.getOpcode() == ISD::SHL_PARTS) {
4271 Ops.push_back(Tmp2);
4272 Ops.push_back(Tmp3);
4273 Ops.push_back(CC);
4274 Ops.push_back(Cond);
Dan Gohman092014e2008-03-03 22:22:09 +00004275 Hi = DAG.getNode(X86ISD::CMOV, VT, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004276
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004277 Ops.clear();
Chris Lattner62814a32007-10-17 06:02:13 +00004278 Ops.push_back(Tmp3);
4279 Ops.push_back(Tmp1);
4280 Ops.push_back(CC);
4281 Ops.push_back(Cond);
Dan Gohman092014e2008-03-03 22:22:09 +00004282 Lo = DAG.getNode(X86ISD::CMOV, VT, &Ops[0], Ops.size());
Chris Lattner62814a32007-10-17 06:02:13 +00004283 } else {
4284 Ops.push_back(Tmp2);
4285 Ops.push_back(Tmp3);
4286 Ops.push_back(CC);
4287 Ops.push_back(Cond);
Dan Gohman092014e2008-03-03 22:22:09 +00004288 Lo = DAG.getNode(X86ISD::CMOV, VT, &Ops[0], Ops.size());
Chris Lattner62814a32007-10-17 06:02:13 +00004289
4290 Ops.clear();
4291 Ops.push_back(Tmp3);
4292 Ops.push_back(Tmp1);
4293 Ops.push_back(CC);
4294 Ops.push_back(Cond);
Dan Gohman092014e2008-03-03 22:22:09 +00004295 Hi = DAG.getNode(X86ISD::CMOV, VT, &Ops[0], Ops.size());
Chris Lattner62814a32007-10-17 06:02:13 +00004296 }
4297
Dan Gohman092014e2008-03-03 22:22:09 +00004298 VTs = DAG.getNodeValueTypes(VT, VT);
Chris Lattner62814a32007-10-17 06:02:13 +00004299 Ops.clear();
4300 Ops.push_back(Lo);
4301 Ops.push_back(Hi);
4302 return DAG.getNode(ISD::MERGE_VALUES, VTs, 2, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004303}
4304
4305SDOperand X86TargetLowering::LowerSINT_TO_FP(SDOperand Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004306 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004307 assert(SrcVT <= MVT::i64 && SrcVT >= MVT::i16 &&
4308 "Unknown SINT_TO_FP to lower!");
4309
4310 // These are really Legal; caller falls through into that case.
4311 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
4312 return SDOperand();
4313 if (SrcVT == MVT::i64 && Op.getValueType() != MVT::f80 &&
4314 Subtarget->is64Bit())
4315 return SDOperand();
4316
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004317 unsigned Size = MVT::getSizeInBits(SrcVT)/8;
4318 MachineFunction &MF = DAG.getMachineFunction();
4319 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
4320 SDOperand StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
4321 SDOperand Chain = DAG.getStore(DAG.getEntryNode(), Op.getOperand(0),
Dan Gohman12a9c082008-02-06 22:27:42 +00004322 StackSlot,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004323 PseudoSourceValue::getFixedStack(),
Dan Gohman12a9c082008-02-06 22:27:42 +00004324 SSFI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004325
4326 // Build the FILD
4327 SDVTList Tys;
Chris Lattnercf515b52008-01-16 06:24:21 +00004328 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen2fc20782007-09-14 22:26:36 +00004329 if (useSSE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004330 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
4331 else
4332 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
4333 SmallVector<SDOperand, 8> Ops;
4334 Ops.push_back(Chain);
4335 Ops.push_back(StackSlot);
4336 Ops.push_back(DAG.getValueType(SrcVT));
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004337 SDOperand Result = DAG.getNode(useSSE ? X86ISD::FILD_FLAG : X86ISD::FILD,
4338 Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004339
Dale Johannesen2fc20782007-09-14 22:26:36 +00004340 if (useSSE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004341 Chain = Result.getValue(1);
4342 SDOperand InFlag = Result.getValue(2);
4343
4344 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
4345 // shouldn't be necessary except that RFP cannot be live across
4346 // multiple blocks. When stackifier is fixed, they can be uncoupled.
4347 MachineFunction &MF = DAG.getMachineFunction();
4348 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
4349 SDOperand StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
4350 Tys = DAG.getVTList(MVT::Other);
4351 SmallVector<SDOperand, 8> Ops;
4352 Ops.push_back(Chain);
4353 Ops.push_back(Result);
4354 Ops.push_back(StackSlot);
4355 Ops.push_back(DAG.getValueType(Op.getValueType()));
4356 Ops.push_back(InFlag);
4357 Chain = DAG.getNode(X86ISD::FST, Tys, &Ops[0], Ops.size());
Dan Gohman12a9c082008-02-06 22:27:42 +00004358 Result = DAG.getLoad(Op.getValueType(), Chain, StackSlot,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004359 PseudoSourceValue::getFixedStack(), SSFI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004360 }
4361
4362 return Result;
4363}
4364
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004365std::pair<SDOperand,SDOperand> X86TargetLowering::
4366FP_TO_SINTHelper(SDOperand Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004367 assert(Op.getValueType() <= MVT::i64 && Op.getValueType() >= MVT::i16 &&
4368 "Unknown FP_TO_SINT to lower!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004369
Dale Johannesen2fc20782007-09-14 22:26:36 +00004370 // These are really Legal.
Dale Johannesene0e0fd02007-09-23 14:52:20 +00004371 if (Op.getValueType() == MVT::i32 &&
Chris Lattnercf515b52008-01-16 06:24:21 +00004372 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004373 return std::make_pair(SDOperand(), SDOperand());
Dale Johannesen958b08b2007-09-19 23:55:34 +00004374 if (Subtarget->is64Bit() &&
4375 Op.getValueType() == MVT::i64 &&
4376 Op.getOperand(0).getValueType() != MVT::f80)
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004377 return std::make_pair(SDOperand(), SDOperand());
Dale Johannesen2fc20782007-09-14 22:26:36 +00004378
Evan Cheng05441e62007-10-15 20:11:21 +00004379 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
4380 // stack slot.
4381 MachineFunction &MF = DAG.getMachineFunction();
4382 unsigned MemSize = MVT::getSizeInBits(Op.getValueType())/8;
4383 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
4384 SDOperand StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004385 unsigned Opc;
4386 switch (Op.getValueType()) {
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004387 default: assert(0 && "Invalid FP_TO_SINT to lower!");
4388 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
4389 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
4390 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004391 }
4392
4393 SDOperand Chain = DAG.getEntryNode();
4394 SDOperand Value = Op.getOperand(0);
Chris Lattnercf515b52008-01-16 06:24:21 +00004395 if (isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004396 assert(Op.getValueType() == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Dan Gohman12a9c082008-02-06 22:27:42 +00004397 Chain = DAG.getStore(Chain, Value, StackSlot,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004398 PseudoSourceValue::getFixedStack(), SSFI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004399 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
4400 SDOperand Ops[] = {
4401 Chain, StackSlot, DAG.getValueType(Op.getOperand(0).getValueType())
4402 };
4403 Value = DAG.getNode(X86ISD::FLD, Tys, Ops, 3);
4404 Chain = Value.getValue(1);
4405 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
4406 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
4407 }
4408
4409 // Build the FP_TO_INT*_IN_MEM
4410 SDOperand Ops[] = { Chain, Value, StackSlot };
4411 SDOperand FIST = DAG.getNode(Opc, MVT::Other, Ops, 3);
4412
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004413 return std::make_pair(FIST, StackSlot);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004414}
4415
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004416SDOperand X86TargetLowering::LowerFP_TO_SINT(SDOperand Op, SelectionDAG &DAG) {
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004417 std::pair<SDOperand,SDOperand> Vals = FP_TO_SINTHelper(Op, DAG);
4418 SDOperand FIST = Vals.first, StackSlot = Vals.second;
4419 if (FIST.Val == 0) return SDOperand();
4420
4421 // Load the result.
4422 return DAG.getLoad(Op.getValueType(), FIST, StackSlot, NULL, 0);
4423}
4424
4425SDNode *X86TargetLowering::ExpandFP_TO_SINT(SDNode *N, SelectionDAG &DAG) {
4426 std::pair<SDOperand,SDOperand> Vals = FP_TO_SINTHelper(SDOperand(N, 0), DAG);
4427 SDOperand FIST = Vals.first, StackSlot = Vals.second;
4428 if (FIST.Val == 0) return 0;
4429
4430 // Return an i64 load from the stack slot.
4431 SDOperand Res = DAG.getLoad(MVT::i64, FIST, StackSlot, NULL, 0);
4432
4433 // Use a MERGE_VALUES node to drop the chain result value.
4434 return DAG.getNode(ISD::MERGE_VALUES, MVT::i64, Res).Val;
4435}
4436
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004437SDOperand X86TargetLowering::LowerFABS(SDOperand Op, SelectionDAG &DAG) {
4438 MVT::ValueType VT = Op.getValueType();
4439 MVT::ValueType EltVT = VT;
4440 if (MVT::isVector(VT))
4441 EltVT = MVT::getVectorElementType(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004442 std::vector<Constant*> CV;
4443 if (EltVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00004444 Constant *C = ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004445 CV.push_back(C);
4446 CV.push_back(C);
4447 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00004448 Constant *C = ConstantFP::get(APFloat(APInt(32, ~(1U << 31))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004449 CV.push_back(C);
4450 CV.push_back(C);
4451 CV.push_back(C);
4452 CV.push_back(C);
4453 }
Dan Gohman11821702007-07-27 17:16:43 +00004454 Constant *C = ConstantVector::get(CV);
4455 SDOperand CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dan Gohman12a9c082008-02-06 22:27:42 +00004456 SDOperand Mask = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004457 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00004458 false, 16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004459 return DAG.getNode(X86ISD::FAND, VT, Op.getOperand(0), Mask);
4460}
4461
4462SDOperand X86TargetLowering::LowerFNEG(SDOperand Op, SelectionDAG &DAG) {
4463 MVT::ValueType VT = Op.getValueType();
4464 MVT::ValueType EltVT = VT;
Evan Cheng92b8f782007-07-19 23:36:01 +00004465 unsigned EltNum = 1;
4466 if (MVT::isVector(VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004467 EltVT = MVT::getVectorElementType(VT);
Evan Cheng92b8f782007-07-19 23:36:01 +00004468 EltNum = MVT::getVectorNumElements(VT);
4469 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004470 std::vector<Constant*> CV;
4471 if (EltVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00004472 Constant *C = ConstantFP::get(APFloat(APInt(64, 1ULL << 63)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004473 CV.push_back(C);
4474 CV.push_back(C);
4475 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00004476 Constant *C = ConstantFP::get(APFloat(APInt(32, 1U << 31)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004477 CV.push_back(C);
4478 CV.push_back(C);
4479 CV.push_back(C);
4480 CV.push_back(C);
4481 }
Dan Gohman11821702007-07-27 17:16:43 +00004482 Constant *C = ConstantVector::get(CV);
4483 SDOperand CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dan Gohman12a9c082008-02-06 22:27:42 +00004484 SDOperand Mask = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004485 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00004486 false, 16);
Evan Cheng92b8f782007-07-19 23:36:01 +00004487 if (MVT::isVector(VT)) {
Evan Cheng92b8f782007-07-19 23:36:01 +00004488 return DAG.getNode(ISD::BIT_CONVERT, VT,
4489 DAG.getNode(ISD::XOR, MVT::v2i64,
4490 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64, Op.getOperand(0)),
4491 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64, Mask)));
4492 } else {
Evan Cheng92b8f782007-07-19 23:36:01 +00004493 return DAG.getNode(X86ISD::FXOR, VT, Op.getOperand(0), Mask);
4494 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004495}
4496
4497SDOperand X86TargetLowering::LowerFCOPYSIGN(SDOperand Op, SelectionDAG &DAG) {
4498 SDOperand Op0 = Op.getOperand(0);
4499 SDOperand Op1 = Op.getOperand(1);
4500 MVT::ValueType VT = Op.getValueType();
4501 MVT::ValueType SrcVT = Op1.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004502
4503 // If second operand is smaller, extend it first.
4504 if (MVT::getSizeInBits(SrcVT) < MVT::getSizeInBits(VT)) {
4505 Op1 = DAG.getNode(ISD::FP_EXTEND, VT, Op1);
4506 SrcVT = VT;
4507 }
Dale Johannesenfb0fa912007-10-21 01:07:44 +00004508 // And if it is bigger, shrink it first.
4509 if (MVT::getSizeInBits(SrcVT) > MVT::getSizeInBits(VT)) {
Chris Lattner5872a362008-01-17 07:00:52 +00004510 Op1 = DAG.getNode(ISD::FP_ROUND, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesenfb0fa912007-10-21 01:07:44 +00004511 SrcVT = VT;
Dale Johannesenfb0fa912007-10-21 01:07:44 +00004512 }
4513
4514 // At this point the operands and the result should have the same
4515 // type, and that won't be f80 since that is not custom lowered.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004516
4517 // First get the sign bit of second operand.
4518 std::vector<Constant*> CV;
4519 if (SrcVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00004520 CV.push_back(ConstantFP::get(APFloat(APInt(64, 1ULL << 63))));
4521 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004522 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00004523 CV.push_back(ConstantFP::get(APFloat(APInt(32, 1U << 31))));
4524 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
4525 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
4526 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004527 }
Dan Gohman11821702007-07-27 17:16:43 +00004528 Constant *C = ConstantVector::get(CV);
4529 SDOperand CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dan Gohman12a9c082008-02-06 22:27:42 +00004530 SDOperand Mask1 = DAG.getLoad(SrcVT, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004531 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00004532 false, 16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004533 SDOperand SignBit = DAG.getNode(X86ISD::FAND, SrcVT, Op1, Mask1);
4534
4535 // Shift sign bit right or left if the two operands have different types.
4536 if (MVT::getSizeInBits(SrcVT) > MVT::getSizeInBits(VT)) {
4537 // Op0 is MVT::f32, Op1 is MVT::f64.
4538 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v2f64, SignBit);
4539 SignBit = DAG.getNode(X86ISD::FSRL, MVT::v2f64, SignBit,
4540 DAG.getConstant(32, MVT::i32));
4541 SignBit = DAG.getNode(ISD::BIT_CONVERT, MVT::v4f32, SignBit);
4542 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::f32, SignBit,
Chris Lattner5872a362008-01-17 07:00:52 +00004543 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004544 }
4545
4546 // Clear first operand sign bit.
4547 CV.clear();
4548 if (VT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00004549 CV.push_back(ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63)))));
4550 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004551 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00004552 CV.push_back(ConstantFP::get(APFloat(APInt(32, ~(1U << 31)))));
4553 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
4554 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
4555 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004556 }
Dan Gohman11821702007-07-27 17:16:43 +00004557 C = ConstantVector::get(CV);
4558 CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dan Gohman12a9c082008-02-06 22:27:42 +00004559 SDOperand Mask2 = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004560 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00004561 false, 16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004562 SDOperand Val = DAG.getNode(X86ISD::FAND, VT, Op0, Mask2);
4563
4564 // Or the value with the sign bit.
4565 return DAG.getNode(X86ISD::FOR, VT, Val, SignBit);
4566}
4567
Evan Cheng621216e2007-09-29 00:00:36 +00004568SDOperand X86TargetLowering::LowerSETCC(SDOperand Op, SelectionDAG &DAG) {
Evan Cheng950aac02007-09-25 01:57:46 +00004569 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
Evan Cheng6afec3d2007-09-26 00:45:55 +00004570 SDOperand Cond;
Evan Cheng950aac02007-09-25 01:57:46 +00004571 SDOperand Op0 = Op.getOperand(0);
4572 SDOperand Op1 = Op.getOperand(1);
4573 SDOperand CC = Op.getOperand(2);
4574 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
4575 bool isFP = MVT::isFloatingPoint(Op.getOperand(1).getValueType());
4576 unsigned X86CC;
4577
Evan Cheng950aac02007-09-25 01:57:46 +00004578 if (translateX86CC(cast<CondCodeSDNode>(CC)->get(), isFP, X86CC,
Evan Cheng6afec3d2007-09-26 00:45:55 +00004579 Op0, Op1, DAG)) {
Evan Cheng621216e2007-09-29 00:00:36 +00004580 Cond = DAG.getNode(X86ISD::CMP, MVT::i32, Op0, Op1);
4581 return DAG.getNode(X86ISD::SETCC, MVT::i8,
Evan Cheng950aac02007-09-25 01:57:46 +00004582 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng6afec3d2007-09-26 00:45:55 +00004583 }
Evan Cheng950aac02007-09-25 01:57:46 +00004584
4585 assert(isFP && "Illegal integer SetCC!");
4586
Evan Cheng621216e2007-09-29 00:00:36 +00004587 Cond = DAG.getNode(X86ISD::CMP, MVT::i32, Op0, Op1);
Evan Cheng950aac02007-09-25 01:57:46 +00004588 switch (SetCCOpcode) {
4589 default: assert(false && "Illegal floating point SetCC!");
4590 case ISD::SETOEQ: { // !PF & ZF
Evan Cheng621216e2007-09-29 00:00:36 +00004591 SDOperand Tmp1 = DAG.getNode(X86ISD::SETCC, MVT::i8,
Evan Cheng950aac02007-09-25 01:57:46 +00004592 DAG.getConstant(X86::COND_NP, MVT::i8), Cond);
Evan Cheng621216e2007-09-29 00:00:36 +00004593 SDOperand Tmp2 = DAG.getNode(X86ISD::SETCC, MVT::i8,
Evan Cheng950aac02007-09-25 01:57:46 +00004594 DAG.getConstant(X86::COND_E, MVT::i8), Cond);
4595 return DAG.getNode(ISD::AND, MVT::i8, Tmp1, Tmp2);
4596 }
4597 case ISD::SETUNE: { // PF | !ZF
Evan Cheng621216e2007-09-29 00:00:36 +00004598 SDOperand Tmp1 = DAG.getNode(X86ISD::SETCC, MVT::i8,
Evan Cheng950aac02007-09-25 01:57:46 +00004599 DAG.getConstant(X86::COND_P, MVT::i8), Cond);
Evan Cheng621216e2007-09-29 00:00:36 +00004600 SDOperand Tmp2 = DAG.getNode(X86ISD::SETCC, MVT::i8,
Evan Cheng950aac02007-09-25 01:57:46 +00004601 DAG.getConstant(X86::COND_NE, MVT::i8), Cond);
4602 return DAG.getNode(ISD::OR, MVT::i8, Tmp1, Tmp2);
4603 }
4604 }
4605}
4606
4607
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004608SDOperand X86TargetLowering::LowerSELECT(SDOperand Op, SelectionDAG &DAG) {
4609 bool addTest = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004610 SDOperand Cond = Op.getOperand(0);
4611 SDOperand CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004612
4613 if (Cond.getOpcode() == ISD::SETCC)
Evan Cheng621216e2007-09-29 00:00:36 +00004614 Cond = LowerSETCC(Cond, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004615
Evan Cheng50d37ab2007-10-08 22:16:29 +00004616 // If condition flag is set by a X86ISD::CMP, then use it as the condition
4617 // setting operand in place of the X86ISD::SETCC.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004618 if (Cond.getOpcode() == X86ISD::SETCC) {
4619 CC = Cond.getOperand(0);
4620
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004621 SDOperand Cmp = Cond.getOperand(1);
4622 unsigned Opc = Cmp.getOpcode();
Evan Cheng50d37ab2007-10-08 22:16:29 +00004623 MVT::ValueType VT = Op.getValueType();
Chris Lattnerfca7f222008-01-16 06:19:45 +00004624
Evan Cheng50d37ab2007-10-08 22:16:29 +00004625 bool IllegalFPCMov = false;
Chris Lattnerfca7f222008-01-16 06:19:45 +00004626 if (MVT::isFloatingPoint(VT) && !MVT::isVector(VT) &&
Chris Lattnercf515b52008-01-16 06:24:21 +00004627 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Evan Cheng50d37ab2007-10-08 22:16:29 +00004628 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSignExtended());
Chris Lattnerfca7f222008-01-16 06:19:45 +00004629
Evan Cheng621216e2007-09-29 00:00:36 +00004630 if ((Opc == X86ISD::CMP ||
4631 Opc == X86ISD::COMI ||
4632 Opc == X86ISD::UCOMI) && !IllegalFPCMov) {
Evan Cheng50d37ab2007-10-08 22:16:29 +00004633 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00004634 addTest = false;
4635 }
4636 }
4637
4638 if (addTest) {
4639 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng50d37ab2007-10-08 22:16:29 +00004640 Cond= DAG.getNode(X86ISD::CMP, MVT::i32, Cond, DAG.getConstant(0, MVT::i8));
Evan Cheng950aac02007-09-25 01:57:46 +00004641 }
4642
4643 const MVT::ValueType *VTs = DAG.getNodeValueTypes(Op.getValueType(),
4644 MVT::Flag);
4645 SmallVector<SDOperand, 4> Ops;
4646 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
4647 // condition is true.
4648 Ops.push_back(Op.getOperand(2));
4649 Ops.push_back(Op.getOperand(1));
4650 Ops.push_back(CC);
4651 Ops.push_back(Cond);
Evan Cheng621216e2007-09-29 00:00:36 +00004652 return DAG.getNode(X86ISD::CMOV, VTs, 2, &Ops[0], Ops.size());
Evan Cheng950aac02007-09-25 01:57:46 +00004653}
4654
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004655SDOperand X86TargetLowering::LowerBRCOND(SDOperand Op, SelectionDAG &DAG) {
4656 bool addTest = true;
4657 SDOperand Chain = Op.getOperand(0);
4658 SDOperand Cond = Op.getOperand(1);
4659 SDOperand Dest = Op.getOperand(2);
4660 SDOperand CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004661
4662 if (Cond.getOpcode() == ISD::SETCC)
Evan Cheng621216e2007-09-29 00:00:36 +00004663 Cond = LowerSETCC(Cond, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004664
Evan Cheng50d37ab2007-10-08 22:16:29 +00004665 // If condition flag is set by a X86ISD::CMP, then use it as the condition
4666 // setting operand in place of the X86ISD::SETCC.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004667 if (Cond.getOpcode() == X86ISD::SETCC) {
4668 CC = Cond.getOperand(0);
4669
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004670 SDOperand Cmp = Cond.getOperand(1);
4671 unsigned Opc = Cmp.getOpcode();
Evan Cheng621216e2007-09-29 00:00:36 +00004672 if (Opc == X86ISD::CMP ||
4673 Opc == X86ISD::COMI ||
4674 Opc == X86ISD::UCOMI) {
Evan Cheng50d37ab2007-10-08 22:16:29 +00004675 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00004676 addTest = false;
4677 }
4678 }
4679
4680 if (addTest) {
4681 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng621216e2007-09-29 00:00:36 +00004682 Cond= DAG.getNode(X86ISD::CMP, MVT::i32, Cond, DAG.getConstant(0, MVT::i8));
Evan Cheng950aac02007-09-25 01:57:46 +00004683 }
Evan Cheng621216e2007-09-29 00:00:36 +00004684 return DAG.getNode(X86ISD::BRCOND, Op.getValueType(),
Evan Cheng950aac02007-09-25 01:57:46 +00004685 Chain, Op.getOperand(2), CC, Cond);
4686}
4687
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004688
4689// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
4690// Calls to _alloca is needed to probe the stack when allocating more than 4k
4691// bytes in one go. Touching the stack at 4K increments is necessary to ensure
4692// that the guard pages used by the OS virtual memory manager are allocated in
4693// correct sequence.
4694SDOperand
4695X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDOperand Op,
4696 SelectionDAG &DAG) {
4697 assert(Subtarget->isTargetCygMing() &&
4698 "This should be used only on Cygwin/Mingw targets");
4699
4700 // Get the inputs.
4701 SDOperand Chain = Op.getOperand(0);
4702 SDOperand Size = Op.getOperand(1);
4703 // FIXME: Ensure alignment here
4704
4705 SDOperand Flag;
4706
4707 MVT::ValueType IntPtr = getPointerTy();
Chris Lattner5872a362008-01-17 07:00:52 +00004708 MVT::ValueType SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004709
4710 Chain = DAG.getCopyToReg(Chain, X86::EAX, Size, Flag);
4711 Flag = Chain.getValue(1);
4712
4713 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
4714 SDOperand Ops[] = { Chain,
4715 DAG.getTargetExternalSymbol("_alloca", IntPtr),
4716 DAG.getRegister(X86::EAX, IntPtr),
4717 Flag };
4718 Chain = DAG.getNode(X86ISD::CALL, NodeTys, Ops, 4);
4719 Flag = Chain.getValue(1);
4720
4721 Chain = DAG.getCopyFromReg(Chain, X86StackPtr, SPTy).getValue(1);
4722
4723 std::vector<MVT::ValueType> Tys;
4724 Tys.push_back(SPTy);
4725 Tys.push_back(MVT::Other);
4726 SDOperand Ops1[2] = { Chain.getValue(0), Chain };
4727 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops1, 2);
4728}
4729
Dan Gohmane8b391e2008-04-12 04:36:06 +00004730SDOperand
4731X86TargetLowering::EmitTargetCodeForMemset(SelectionDAG &DAG,
4732 SDOperand Chain,
4733 SDOperand Dst, SDOperand Src,
4734 SDOperand Size, unsigned Align,
Dan Gohman65118f42008-04-28 17:15:20 +00004735 const Value *DstSV, uint64_t DstSVOff) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00004736 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004737
Dan Gohmane8b391e2008-04-12 04:36:06 +00004738 /// If not DWORD aligned or size is more than the threshold, call the library.
4739 /// The libc version is likely to be faster for these cases. It can use the
4740 /// address value and run time information about the CPU.
4741 if ((Align & 3) == 0 ||
4742 !ConstantSize ||
4743 ConstantSize->getValue() > getSubtarget()->getMaxInlineSizeThreshold()) {
4744 SDOperand InFlag(0, 0);
Dan Gohmanf95c2bf2008-04-01 20:38:36 +00004745
4746 // Check to see if there is a specialized entry-point for memory zeroing.
Dan Gohmane8b391e2008-04-12 04:36:06 +00004747 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
4748 if (const char *bzeroEntry =
4749 V && V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
4750 MVT::ValueType IntPtr = getPointerTy();
4751 const Type *IntPtrTy = getTargetData()->getIntPtrType();
4752 TargetLowering::ArgListTy Args;
4753 TargetLowering::ArgListEntry Entry;
4754 Entry.Node = Dst;
Dan Gohmanf95c2bf2008-04-01 20:38:36 +00004755 Entry.Ty = IntPtrTy;
4756 Args.push_back(Entry);
Dan Gohmane8b391e2008-04-12 04:36:06 +00004757 Entry.Node = Size;
4758 Args.push_back(Entry);
4759 std::pair<SDOperand,SDOperand> CallResult =
4760 LowerCallTo(Chain, Type::VoidTy, false, false, false, CallingConv::C,
4761 false, DAG.getExternalSymbol(bzeroEntry, IntPtr),
4762 Args, DAG);
4763 return CallResult.second;
Dan Gohmanf95c2bf2008-04-01 20:38:36 +00004764 }
4765
Dan Gohmane8b391e2008-04-12 04:36:06 +00004766 // Otherwise have the target-independent code call memset.
4767 return SDOperand();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004768 }
4769
Dan Gohmane8b391e2008-04-12 04:36:06 +00004770 uint64_t SizeVal = ConstantSize->getValue();
4771 SDOperand InFlag(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004772 MVT::ValueType AVT;
4773 SDOperand Count;
Dan Gohmane8b391e2008-04-12 04:36:06 +00004774 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004775 unsigned BytesLeft = 0;
4776 bool TwoRepStos = false;
4777 if (ValC) {
4778 unsigned ValReg;
4779 uint64_t Val = ValC->getValue() & 255;
4780
4781 // If the value is a constant, then we can potentially use larger sets.
4782 switch (Align & 3) {
4783 case 2: // WORD aligned
4784 AVT = MVT::i16;
4785 ValReg = X86::AX;
4786 Val = (Val << 8) | Val;
4787 break;
4788 case 0: // DWORD aligned
4789 AVT = MVT::i32;
4790 ValReg = X86::EAX;
4791 Val = (Val << 8) | Val;
4792 Val = (Val << 16) | Val;
Dan Gohmaneb291f52008-04-12 02:35:39 +00004793 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004794 AVT = MVT::i64;
4795 ValReg = X86::RAX;
4796 Val = (Val << 32) | Val;
4797 }
4798 break;
4799 default: // Byte aligned
4800 AVT = MVT::i8;
4801 ValReg = X86::AL;
Dan Gohman271d1c22008-04-16 01:32:32 +00004802 Count = DAG.getIntPtrConstant(SizeVal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004803 break;
4804 }
4805
4806 if (AVT > MVT::i8) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00004807 unsigned UBytes = MVT::getSizeInBits(AVT) / 8;
4808 Count = DAG.getIntPtrConstant(SizeVal / UBytes);
4809 BytesLeft = SizeVal % UBytes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004810 }
4811
4812 Chain = DAG.getCopyToReg(Chain, ValReg, DAG.getConstant(Val, AVT),
4813 InFlag);
4814 InFlag = Chain.getValue(1);
4815 } else {
4816 AVT = MVT::i8;
Dan Gohman271d1c22008-04-16 01:32:32 +00004817 Count = DAG.getIntPtrConstant(SizeVal);
Dan Gohmane8b391e2008-04-12 04:36:06 +00004818 Chain = DAG.getCopyToReg(Chain, X86::AL, Src, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004819 InFlag = Chain.getValue(1);
4820 }
4821
4822 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RCX : X86::ECX,
4823 Count, InFlag);
4824 InFlag = Chain.getValue(1);
4825 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RDI : X86::EDI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00004826 Dst, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004827 InFlag = Chain.getValue(1);
4828
4829 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
4830 SmallVector<SDOperand, 8> Ops;
4831 Ops.push_back(Chain);
4832 Ops.push_back(DAG.getValueType(AVT));
4833 Ops.push_back(InFlag);
4834 Chain = DAG.getNode(X86ISD::REP_STOS, Tys, &Ops[0], Ops.size());
4835
4836 if (TwoRepStos) {
4837 InFlag = Chain.getValue(1);
Dan Gohmane8b391e2008-04-12 04:36:06 +00004838 Count = Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004839 MVT::ValueType CVT = Count.getValueType();
4840 SDOperand Left = DAG.getNode(ISD::AND, CVT, Count,
4841 DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
4842 Chain = DAG.getCopyToReg(Chain, (CVT == MVT::i64) ? X86::RCX : X86::ECX,
4843 Left, InFlag);
4844 InFlag = Chain.getValue(1);
4845 Tys = DAG.getVTList(MVT::Other, MVT::Flag);
4846 Ops.clear();
4847 Ops.push_back(Chain);
4848 Ops.push_back(DAG.getValueType(MVT::i8));
4849 Ops.push_back(InFlag);
4850 Chain = DAG.getNode(X86ISD::REP_STOS, Tys, &Ops[0], Ops.size());
4851 } else if (BytesLeft) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00004852 // Handle the last 1 - 7 bytes.
4853 unsigned Offset = SizeVal - BytesLeft;
4854 MVT::ValueType AddrVT = Dst.getValueType();
4855 MVT::ValueType SizeVT = Size.getValueType();
4856
4857 Chain = DAG.getMemset(Chain,
4858 DAG.getNode(ISD::ADD, AddrVT, Dst,
4859 DAG.getConstant(Offset, AddrVT)),
4860 Src,
4861 DAG.getConstant(BytesLeft, SizeVT),
Dan Gohman65118f42008-04-28 17:15:20 +00004862 Align, DstSV, DstSVOff + Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004863 }
4864
Dan Gohmane8b391e2008-04-12 04:36:06 +00004865 // TODO: Use a Tokenfactor, as in memcpy, instead of a single chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004866 return Chain;
4867}
4868
Dan Gohmane8b391e2008-04-12 04:36:06 +00004869SDOperand
4870X86TargetLowering::EmitTargetCodeForMemcpy(SelectionDAG &DAG,
4871 SDOperand Chain,
4872 SDOperand Dst, SDOperand Src,
4873 SDOperand Size, unsigned Align,
4874 bool AlwaysInline,
Dan Gohman65118f42008-04-28 17:15:20 +00004875 const Value *DstSV, uint64_t DstSVOff,
4876 const Value *SrcSV, uint64_t SrcSVOff){
Dan Gohmane8b391e2008-04-12 04:36:06 +00004877
4878 // This requires the copy size to be a constant, preferrably
4879 // within a subtarget-specific limit.
4880 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
4881 if (!ConstantSize)
4882 return SDOperand();
4883 uint64_t SizeVal = ConstantSize->getValue();
4884 if (!AlwaysInline && SizeVal > getSubtarget()->getMaxInlineSizeThreshold())
4885 return SDOperand();
4886
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004887 MVT::ValueType AVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004888 unsigned BytesLeft = 0;
Dan Gohmane8b391e2008-04-12 04:36:06 +00004889 if (Align >= 8 && Subtarget->is64Bit())
4890 AVT = MVT::i64;
4891 else if (Align >= 4)
4892 AVT = MVT::i32;
4893 else if (Align >= 2)
4894 AVT = MVT::i16;
4895 else
4896 AVT = MVT::i8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004897
Rafael Espindolaf12f3a92007-09-28 12:53:01 +00004898 unsigned UBytes = MVT::getSizeInBits(AVT) / 8;
Dan Gohmane8b391e2008-04-12 04:36:06 +00004899 unsigned CountVal = SizeVal / UBytes;
4900 SDOperand Count = DAG.getIntPtrConstant(CountVal);
4901 BytesLeft = SizeVal % UBytes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004902
4903 SDOperand InFlag(0, 0);
4904 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RCX : X86::ECX,
4905 Count, InFlag);
4906 InFlag = Chain.getValue(1);
4907 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RDI : X86::EDI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00004908 Dst, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004909 InFlag = Chain.getValue(1);
4910 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RSI : X86::ESI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00004911 Src, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004912 InFlag = Chain.getValue(1);
4913
4914 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
4915 SmallVector<SDOperand, 8> Ops;
4916 Ops.push_back(Chain);
4917 Ops.push_back(DAG.getValueType(AVT));
4918 Ops.push_back(InFlag);
Evan Cheng38d3c522008-04-25 00:26:43 +00004919 SDOperand RepMovs = DAG.getNode(X86ISD::REP_MOVS, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004920
Evan Cheng38d3c522008-04-25 00:26:43 +00004921 SmallVector<SDOperand, 4> Results;
4922 Results.push_back(RepMovs);
Rafael Espindolaf12f3a92007-09-28 12:53:01 +00004923 if (BytesLeft) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00004924 // Handle the last 1 - 7 bytes.
4925 unsigned Offset = SizeVal - BytesLeft;
4926 MVT::ValueType DstVT = Dst.getValueType();
4927 MVT::ValueType SrcVT = Src.getValueType();
4928 MVT::ValueType SizeVT = Size.getValueType();
Evan Cheng38d3c522008-04-25 00:26:43 +00004929 Results.push_back(DAG.getMemcpy(Chain,
Dan Gohmane8b391e2008-04-12 04:36:06 +00004930 DAG.getNode(ISD::ADD, DstVT, Dst,
Evan Cheng38d3c522008-04-25 00:26:43 +00004931 DAG.getConstant(Offset, DstVT)),
Dan Gohmane8b391e2008-04-12 04:36:06 +00004932 DAG.getNode(ISD::ADD, SrcVT, Src,
Evan Cheng38d3c522008-04-25 00:26:43 +00004933 DAG.getConstant(Offset, SrcVT)),
Dan Gohmane8b391e2008-04-12 04:36:06 +00004934 DAG.getConstant(BytesLeft, SizeVT),
4935 Align, AlwaysInline,
Dan Gohman65118f42008-04-28 17:15:20 +00004936 DstSV, DstSVOff + Offset,
4937 SrcSV, SrcSVOff + Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004938 }
4939
Dan Gohmane8b391e2008-04-12 04:36:06 +00004940 return DAG.getNode(ISD::TokenFactor, MVT::Other, &Results[0], Results.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004941}
4942
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004943/// Expand the result of: i64,outchain = READCYCLECOUNTER inchain
4944SDNode *X86TargetLowering::ExpandREADCYCLECOUNTER(SDNode *N, SelectionDAG &DAG){
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004945 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004946 SDOperand TheChain = N->getOperand(0);
4947 SDOperand rd = DAG.getNode(X86ISD::RDTSC_DAG, Tys, &TheChain, 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004948 if (Subtarget->is64Bit()) {
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004949 SDOperand rax = DAG.getCopyFromReg(rd, X86::RAX, MVT::i64, rd.getValue(1));
4950 SDOperand rdx = DAG.getCopyFromReg(rax.getValue(1), X86::RDX,
4951 MVT::i64, rax.getValue(2));
4952 SDOperand Tmp = DAG.getNode(ISD::SHL, MVT::i64, rdx,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004953 DAG.getConstant(32, MVT::i8));
4954 SDOperand Ops[] = {
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004955 DAG.getNode(ISD::OR, MVT::i64, rax, Tmp), rdx.getValue(1)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004956 };
4957
4958 Tys = DAG.getVTList(MVT::i64, MVT::Other);
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004959 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops, 2).Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004960 }
4961
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004962 SDOperand eax = DAG.getCopyFromReg(rd, X86::EAX, MVT::i32, rd.getValue(1));
4963 SDOperand edx = DAG.getCopyFromReg(eax.getValue(1), X86::EDX,
4964 MVT::i32, eax.getValue(2));
4965 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
4966 SDOperand Ops[] = { eax, edx };
4967 Ops[0] = DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Ops, 2);
4968
4969 // Use a MERGE_VALUES to return the value and chain.
4970 Ops[1] = edx.getValue(1);
4971 Tys = DAG.getVTList(MVT::i64, MVT::Other);
4972 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops, 2).Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004973}
4974
4975SDOperand X86TargetLowering::LowerVASTART(SDOperand Op, SelectionDAG &DAG) {
Dan Gohman12a9c082008-02-06 22:27:42 +00004976 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004977
4978 if (!Subtarget->is64Bit()) {
4979 // vastart just stores the address of the VarArgsFrameIndex slot into the
4980 // memory location argument.
4981 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dan Gohman12a9c082008-02-06 22:27:42 +00004982 return DAG.getStore(Op.getOperand(0), FR,Op.getOperand(1), SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004983 }
4984
4985 // __va_list_tag:
4986 // gp_offset (0 - 6 * 8)
4987 // fp_offset (48 - 48 + 8 * 16)
4988 // overflow_arg_area (point to parameters coming in memory).
4989 // reg_save_area
4990 SmallVector<SDOperand, 8> MemOps;
4991 SDOperand FIN = Op.getOperand(1);
4992 // Store gp_offset
4993 SDOperand Store = DAG.getStore(Op.getOperand(0),
4994 DAG.getConstant(VarArgsGPOffset, MVT::i32),
Dan Gohman12a9c082008-02-06 22:27:42 +00004995 FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004996 MemOps.push_back(Store);
4997
4998 // Store fp_offset
Chris Lattner5872a362008-01-17 07:00:52 +00004999 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN, DAG.getIntPtrConstant(4));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005000 Store = DAG.getStore(Op.getOperand(0),
5001 DAG.getConstant(VarArgsFPOffset, MVT::i32),
Dan Gohman12a9c082008-02-06 22:27:42 +00005002 FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005003 MemOps.push_back(Store);
5004
5005 // Store ptr to overflow_arg_area
Chris Lattner5872a362008-01-17 07:00:52 +00005006 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN, DAG.getIntPtrConstant(4));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005007 SDOperand OVFIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dan Gohman12a9c082008-02-06 22:27:42 +00005008 Store = DAG.getStore(Op.getOperand(0), OVFIN, FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005009 MemOps.push_back(Store);
5010
5011 // Store ptr to reg_save_area.
Chris Lattner5872a362008-01-17 07:00:52 +00005012 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN, DAG.getIntPtrConstant(8));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005013 SDOperand RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dan Gohman12a9c082008-02-06 22:27:42 +00005014 Store = DAG.getStore(Op.getOperand(0), RSFIN, FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005015 MemOps.push_back(Store);
5016 return DAG.getNode(ISD::TokenFactor, MVT::Other, &MemOps[0], MemOps.size());
5017}
5018
Dan Gohman827cb1f2008-05-10 01:26:14 +00005019SDOperand X86TargetLowering::LowerVAARG(SDOperand Op, SelectionDAG &DAG) {
5020 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
5021 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_arg!");
5022 SDOperand Chain = Op.getOperand(0);
5023 SDOperand SrcPtr = Op.getOperand(1);
5024 SDOperand SrcSV = Op.getOperand(2);
5025
5026 assert(0 && "VAArgInst is not yet implemented for x86-64!");
5027 abort();
Dan Gohmanf5810a22008-05-12 16:17:19 +00005028 return SDOperand();
Dan Gohman827cb1f2008-05-10 01:26:14 +00005029}
5030
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005031SDOperand X86TargetLowering::LowerVACOPY(SDOperand Op, SelectionDAG &DAG) {
5032 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman840ff5c2008-04-18 20:55:41 +00005033 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005034 SDOperand Chain = Op.getOperand(0);
5035 SDOperand DstPtr = Op.getOperand(1);
5036 SDOperand SrcPtr = Op.getOperand(2);
Dan Gohman12a9c082008-02-06 22:27:42 +00005037 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
5038 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005039
Dan Gohman840ff5c2008-04-18 20:55:41 +00005040 return DAG.getMemcpy(Chain, DstPtr, SrcPtr,
5041 DAG.getIntPtrConstant(24), 8, false,
5042 DstSV, 0, SrcSV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005043}
5044
5045SDOperand
5046X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDOperand Op, SelectionDAG &DAG) {
5047 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getValue();
5048 switch (IntNo) {
5049 default: return SDOperand(); // Don't custom lower most intrinsics.
Evan Cheng9f69f9d2008-05-04 09:15:50 +00005050 // Comparison intrinsics.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005051 case Intrinsic::x86_sse_comieq_ss:
5052 case Intrinsic::x86_sse_comilt_ss:
5053 case Intrinsic::x86_sse_comile_ss:
5054 case Intrinsic::x86_sse_comigt_ss:
5055 case Intrinsic::x86_sse_comige_ss:
5056 case Intrinsic::x86_sse_comineq_ss:
5057 case Intrinsic::x86_sse_ucomieq_ss:
5058 case Intrinsic::x86_sse_ucomilt_ss:
5059 case Intrinsic::x86_sse_ucomile_ss:
5060 case Intrinsic::x86_sse_ucomigt_ss:
5061 case Intrinsic::x86_sse_ucomige_ss:
5062 case Intrinsic::x86_sse_ucomineq_ss:
5063 case Intrinsic::x86_sse2_comieq_sd:
5064 case Intrinsic::x86_sse2_comilt_sd:
5065 case Intrinsic::x86_sse2_comile_sd:
5066 case Intrinsic::x86_sse2_comigt_sd:
5067 case Intrinsic::x86_sse2_comige_sd:
5068 case Intrinsic::x86_sse2_comineq_sd:
5069 case Intrinsic::x86_sse2_ucomieq_sd:
5070 case Intrinsic::x86_sse2_ucomilt_sd:
5071 case Intrinsic::x86_sse2_ucomile_sd:
5072 case Intrinsic::x86_sse2_ucomigt_sd:
5073 case Intrinsic::x86_sse2_ucomige_sd:
5074 case Intrinsic::x86_sse2_ucomineq_sd: {
5075 unsigned Opc = 0;
5076 ISD::CondCode CC = ISD::SETCC_INVALID;
5077 switch (IntNo) {
5078 default: break;
5079 case Intrinsic::x86_sse_comieq_ss:
5080 case Intrinsic::x86_sse2_comieq_sd:
5081 Opc = X86ISD::COMI;
5082 CC = ISD::SETEQ;
5083 break;
5084 case Intrinsic::x86_sse_comilt_ss:
5085 case Intrinsic::x86_sse2_comilt_sd:
5086 Opc = X86ISD::COMI;
5087 CC = ISD::SETLT;
5088 break;
5089 case Intrinsic::x86_sse_comile_ss:
5090 case Intrinsic::x86_sse2_comile_sd:
5091 Opc = X86ISD::COMI;
5092 CC = ISD::SETLE;
5093 break;
5094 case Intrinsic::x86_sse_comigt_ss:
5095 case Intrinsic::x86_sse2_comigt_sd:
5096 Opc = X86ISD::COMI;
5097 CC = ISD::SETGT;
5098 break;
5099 case Intrinsic::x86_sse_comige_ss:
5100 case Intrinsic::x86_sse2_comige_sd:
5101 Opc = X86ISD::COMI;
5102 CC = ISD::SETGE;
5103 break;
5104 case Intrinsic::x86_sse_comineq_ss:
5105 case Intrinsic::x86_sse2_comineq_sd:
5106 Opc = X86ISD::COMI;
5107 CC = ISD::SETNE;
5108 break;
5109 case Intrinsic::x86_sse_ucomieq_ss:
5110 case Intrinsic::x86_sse2_ucomieq_sd:
5111 Opc = X86ISD::UCOMI;
5112 CC = ISD::SETEQ;
5113 break;
5114 case Intrinsic::x86_sse_ucomilt_ss:
5115 case Intrinsic::x86_sse2_ucomilt_sd:
5116 Opc = X86ISD::UCOMI;
5117 CC = ISD::SETLT;
5118 break;
5119 case Intrinsic::x86_sse_ucomile_ss:
5120 case Intrinsic::x86_sse2_ucomile_sd:
5121 Opc = X86ISD::UCOMI;
5122 CC = ISD::SETLE;
5123 break;
5124 case Intrinsic::x86_sse_ucomigt_ss:
5125 case Intrinsic::x86_sse2_ucomigt_sd:
5126 Opc = X86ISD::UCOMI;
5127 CC = ISD::SETGT;
5128 break;
5129 case Intrinsic::x86_sse_ucomige_ss:
5130 case Intrinsic::x86_sse2_ucomige_sd:
5131 Opc = X86ISD::UCOMI;
5132 CC = ISD::SETGE;
5133 break;
5134 case Intrinsic::x86_sse_ucomineq_ss:
5135 case Intrinsic::x86_sse2_ucomineq_sd:
5136 Opc = X86ISD::UCOMI;
5137 CC = ISD::SETNE;
5138 break;
5139 }
5140
5141 unsigned X86CC;
5142 SDOperand LHS = Op.getOperand(1);
5143 SDOperand RHS = Op.getOperand(2);
5144 translateX86CC(CC, true, X86CC, LHS, RHS, DAG);
5145
Evan Cheng621216e2007-09-29 00:00:36 +00005146 SDOperand Cond = DAG.getNode(Opc, MVT::i32, LHS, RHS);
5147 SDOperand SetCC = DAG.getNode(X86ISD::SETCC, MVT::i8,
5148 DAG.getConstant(X86CC, MVT::i8), Cond);
5149 return DAG.getNode(ISD::ANY_EXTEND, MVT::i32, SetCC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005150 }
Evan Cheng9f69f9d2008-05-04 09:15:50 +00005151
5152 // Fix vector shift instructions where the last operand is a non-immediate
5153 // i32 value.
5154 case Intrinsic::x86_sse2_pslli_w:
5155 case Intrinsic::x86_sse2_pslli_d:
5156 case Intrinsic::x86_sse2_pslli_q:
5157 case Intrinsic::x86_sse2_psrli_w:
5158 case Intrinsic::x86_sse2_psrli_d:
5159 case Intrinsic::x86_sse2_psrli_q:
5160 case Intrinsic::x86_sse2_psrai_w:
5161 case Intrinsic::x86_sse2_psrai_d:
5162 case Intrinsic::x86_mmx_pslli_w:
5163 case Intrinsic::x86_mmx_pslli_d:
5164 case Intrinsic::x86_mmx_pslli_q:
5165 case Intrinsic::x86_mmx_psrli_w:
5166 case Intrinsic::x86_mmx_psrli_d:
5167 case Intrinsic::x86_mmx_psrli_q:
5168 case Intrinsic::x86_mmx_psrai_w:
5169 case Intrinsic::x86_mmx_psrai_d: {
5170 SDOperand ShAmt = Op.getOperand(2);
5171 if (isa<ConstantSDNode>(ShAmt))
5172 return SDOperand();
5173
5174 unsigned NewIntNo = 0;
5175 MVT::ValueType ShAmtVT = MVT::v4i32;
5176 switch (IntNo) {
5177 case Intrinsic::x86_sse2_pslli_w:
5178 NewIntNo = Intrinsic::x86_sse2_psll_w;
5179 break;
5180 case Intrinsic::x86_sse2_pslli_d:
5181 NewIntNo = Intrinsic::x86_sse2_psll_d;
5182 break;
5183 case Intrinsic::x86_sse2_pslli_q:
5184 NewIntNo = Intrinsic::x86_sse2_psll_q;
5185 break;
5186 case Intrinsic::x86_sse2_psrli_w:
5187 NewIntNo = Intrinsic::x86_sse2_psrl_w;
5188 break;
5189 case Intrinsic::x86_sse2_psrli_d:
5190 NewIntNo = Intrinsic::x86_sse2_psrl_d;
5191 break;
5192 case Intrinsic::x86_sse2_psrli_q:
5193 NewIntNo = Intrinsic::x86_sse2_psrl_q;
5194 break;
5195 case Intrinsic::x86_sse2_psrai_w:
5196 NewIntNo = Intrinsic::x86_sse2_psra_w;
5197 break;
5198 case Intrinsic::x86_sse2_psrai_d:
5199 NewIntNo = Intrinsic::x86_sse2_psra_d;
5200 break;
5201 default: {
5202 ShAmtVT = MVT::v2i32;
5203 switch (IntNo) {
5204 case Intrinsic::x86_mmx_pslli_w:
5205 NewIntNo = Intrinsic::x86_mmx_psll_w;
5206 break;
5207 case Intrinsic::x86_mmx_pslli_d:
5208 NewIntNo = Intrinsic::x86_mmx_psll_d;
5209 break;
5210 case Intrinsic::x86_mmx_pslli_q:
5211 NewIntNo = Intrinsic::x86_mmx_psll_q;
5212 break;
5213 case Intrinsic::x86_mmx_psrli_w:
5214 NewIntNo = Intrinsic::x86_mmx_psrl_w;
5215 break;
5216 case Intrinsic::x86_mmx_psrli_d:
5217 NewIntNo = Intrinsic::x86_mmx_psrl_d;
5218 break;
5219 case Intrinsic::x86_mmx_psrli_q:
5220 NewIntNo = Intrinsic::x86_mmx_psrl_q;
5221 break;
5222 case Intrinsic::x86_mmx_psrai_w:
5223 NewIntNo = Intrinsic::x86_mmx_psra_w;
5224 break;
5225 case Intrinsic::x86_mmx_psrai_d:
5226 NewIntNo = Intrinsic::x86_mmx_psra_d;
5227 break;
5228 default: abort(); // Can't reach here.
5229 }
5230 break;
5231 }
5232 }
5233 MVT::ValueType VT = Op.getValueType();
5234 ShAmt = DAG.getNode(ISD::BIT_CONVERT, VT,
5235 DAG.getNode(ISD::SCALAR_TO_VECTOR, ShAmtVT, ShAmt));
5236 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
5237 DAG.getConstant(NewIntNo, MVT::i32),
5238 Op.getOperand(1), ShAmt);
5239 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005240 }
5241}
5242
5243SDOperand X86TargetLowering::LowerRETURNADDR(SDOperand Op, SelectionDAG &DAG) {
5244 // Depths > 0 not supported yet!
5245 if (cast<ConstantSDNode>(Op.getOperand(0))->getValue() > 0)
5246 return SDOperand();
5247
5248 // Just load the return address
5249 SDOperand RetAddrFI = getReturnAddressFrameIndex(DAG);
5250 return DAG.getLoad(getPointerTy(), DAG.getEntryNode(), RetAddrFI, NULL, 0);
5251}
5252
5253SDOperand X86TargetLowering::LowerFRAMEADDR(SDOperand Op, SelectionDAG &DAG) {
5254 // Depths > 0 not supported yet!
5255 if (cast<ConstantSDNode>(Op.getOperand(0))->getValue() > 0)
5256 return SDOperand();
5257
5258 SDOperand RetAddrFI = getReturnAddressFrameIndex(DAG);
5259 return DAG.getNode(ISD::SUB, getPointerTy(), RetAddrFI,
Chris Lattner5872a362008-01-17 07:00:52 +00005260 DAG.getIntPtrConstant(4));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005261}
5262
5263SDOperand X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDOperand Op,
5264 SelectionDAG &DAG) {
5265 // Is not yet supported on x86-64
5266 if (Subtarget->is64Bit())
5267 return SDOperand();
5268
Chris Lattner5872a362008-01-17 07:00:52 +00005269 return DAG.getIntPtrConstant(8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005270}
5271
5272SDOperand X86TargetLowering::LowerEH_RETURN(SDOperand Op, SelectionDAG &DAG)
5273{
5274 assert(!Subtarget->is64Bit() &&
5275 "Lowering of eh_return builtin is not supported yet on x86-64");
5276
5277 MachineFunction &MF = DAG.getMachineFunction();
5278 SDOperand Chain = Op.getOperand(0);
5279 SDOperand Offset = Op.getOperand(1);
5280 SDOperand Handler = Op.getOperand(2);
5281
5282 SDOperand Frame = DAG.getRegister(RegInfo->getFrameRegister(MF),
5283 getPointerTy());
5284
5285 SDOperand StoreAddr = DAG.getNode(ISD::SUB, getPointerTy(), Frame,
Chris Lattner5872a362008-01-17 07:00:52 +00005286 DAG.getIntPtrConstant(-4UL));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005287 StoreAddr = DAG.getNode(ISD::ADD, getPointerTy(), StoreAddr, Offset);
5288 Chain = DAG.getStore(Chain, Handler, StoreAddr, NULL, 0);
5289 Chain = DAG.getCopyToReg(Chain, X86::ECX, StoreAddr);
Chris Lattner1b989192007-12-31 04:13:23 +00005290 MF.getRegInfo().addLiveOut(X86::ECX);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005291
5292 return DAG.getNode(X86ISD::EH_RETURN, MVT::Other,
5293 Chain, DAG.getRegister(X86::ECX, getPointerTy()));
5294}
5295
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005296SDOperand X86TargetLowering::LowerTRAMPOLINE(SDOperand Op,
5297 SelectionDAG &DAG) {
5298 SDOperand Root = Op.getOperand(0);
5299 SDOperand Trmp = Op.getOperand(1); // trampoline
5300 SDOperand FPtr = Op.getOperand(2); // nested function
5301 SDOperand Nest = Op.getOperand(3); // 'nest' parameter value
5302
Dan Gohman12a9c082008-02-06 22:27:42 +00005303 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005304
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00005305 const X86InstrInfo *TII =
5306 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
5307
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005308 if (Subtarget->is64Bit()) {
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00005309 SDOperand OutChains[6];
5310
5311 // Large code-model.
5312
5313 const unsigned char JMP64r = TII->getBaseOpcodeFor(X86::JMP64r);
5314 const unsigned char MOV64ri = TII->getBaseOpcodeFor(X86::MOV64ri);
5315
Dan Gohmanb41dfba2008-05-14 01:58:56 +00005316 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
5317 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00005318
5319 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
5320
5321 // Load the pointer to the nested function into R11.
5322 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
5323 SDOperand Addr = Trmp;
5324 OutChains[0] = DAG.getStore(Root, DAG.getConstant(OpCode, MVT::i16), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00005325 TrmpAddr, 0);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00005326
5327 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(2, MVT::i64));
Dan Gohman12a9c082008-02-06 22:27:42 +00005328 OutChains[1] = DAG.getStore(Root, FPtr, Addr, TrmpAddr, 2, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00005329
5330 // Load the 'nest' parameter value into R10.
5331 // R10 is specified in X86CallingConv.td
5332 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
5333 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(10, MVT::i64));
5334 OutChains[2] = DAG.getStore(Root, DAG.getConstant(OpCode, MVT::i16), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00005335 TrmpAddr, 10);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00005336
5337 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(12, MVT::i64));
Dan Gohman12a9c082008-02-06 22:27:42 +00005338 OutChains[3] = DAG.getStore(Root, Nest, Addr, TrmpAddr, 12, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00005339
5340 // Jump to the nested function.
5341 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
5342 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(20, MVT::i64));
5343 OutChains[4] = DAG.getStore(Root, DAG.getConstant(OpCode, MVT::i16), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00005344 TrmpAddr, 20);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00005345
5346 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
5347 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(22, MVT::i64));
5348 OutChains[5] = DAG.getStore(Root, DAG.getConstant(ModRM, MVT::i8), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00005349 TrmpAddr, 22);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00005350
5351 SDOperand Ops[] =
5352 { Trmp, DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains, 6) };
5353 return DAG.getNode(ISD::MERGE_VALUES, Op.Val->getVTList(), Ops, 2);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005354 } else {
Dan Gohman0bd70702008-01-31 01:01:48 +00005355 const Function *Func =
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005356 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
5357 unsigned CC = Func->getCallingConv();
Duncan Sands466eadd2007-08-29 19:01:20 +00005358 unsigned NestReg;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005359
5360 switch (CC) {
5361 default:
5362 assert(0 && "Unsupported calling convention");
5363 case CallingConv::C:
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005364 case CallingConv::X86_StdCall: {
5365 // Pass 'nest' parameter in ECX.
5366 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00005367 NestReg = X86::ECX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005368
5369 // Check that ECX wasn't needed by an 'inreg' parameter.
5370 const FunctionType *FTy = Func->getFunctionType();
Chris Lattner1c8733e2008-03-12 17:45:29 +00005371 const PAListPtr &Attrs = Func->getParamAttrs();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005372
Chris Lattner1c8733e2008-03-12 17:45:29 +00005373 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005374 unsigned InRegCount = 0;
5375 unsigned Idx = 1;
5376
5377 for (FunctionType::param_iterator I = FTy->param_begin(),
5378 E = FTy->param_end(); I != E; ++I, ++Idx)
Chris Lattner1c8733e2008-03-12 17:45:29 +00005379 if (Attrs.paramHasAttr(Idx, ParamAttr::InReg))
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005380 // FIXME: should only count parameters that are lowered to integers.
5381 InRegCount += (getTargetData()->getTypeSizeInBits(*I) + 31) / 32;
5382
5383 if (InRegCount > 2) {
5384 cerr << "Nest register in use - reduce number of inreg parameters!\n";
5385 abort();
5386 }
5387 }
5388 break;
5389 }
5390 case CallingConv::X86_FastCall:
5391 // Pass 'nest' parameter in EAX.
5392 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00005393 NestReg = X86::EAX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005394 break;
5395 }
5396
5397 SDOperand OutChains[4];
5398 SDOperand Addr, Disp;
5399
5400 Addr = DAG.getNode(ISD::ADD, MVT::i32, Trmp, DAG.getConstant(10, MVT::i32));
5401 Disp = DAG.getNode(ISD::SUB, MVT::i32, FPtr, Addr);
5402
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00005403 const unsigned char MOV32ri = TII->getBaseOpcodeFor(X86::MOV32ri);
Dan Gohmanb41dfba2008-05-14 01:58:56 +00005404 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Duncan Sands466eadd2007-08-29 19:01:20 +00005405 OutChains[0] = DAG.getStore(Root, DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Dan Gohman12a9c082008-02-06 22:27:42 +00005406 Trmp, TrmpAddr, 0);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005407
5408 Addr = DAG.getNode(ISD::ADD, MVT::i32, Trmp, DAG.getConstant(1, MVT::i32));
Dan Gohman12a9c082008-02-06 22:27:42 +00005409 OutChains[1] = DAG.getStore(Root, Nest, Addr, TrmpAddr, 1, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005410
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00005411 const unsigned char JMP = TII->getBaseOpcodeFor(X86::JMP);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005412 Addr = DAG.getNode(ISD::ADD, MVT::i32, Trmp, DAG.getConstant(5, MVT::i32));
5413 OutChains[2] = DAG.getStore(Root, DAG.getConstant(JMP, MVT::i8), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00005414 TrmpAddr, 5, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005415
5416 Addr = DAG.getNode(ISD::ADD, MVT::i32, Trmp, DAG.getConstant(6, MVT::i32));
Dan Gohman12a9c082008-02-06 22:27:42 +00005417 OutChains[3] = DAG.getStore(Root, Disp, Addr, TrmpAddr, 6, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005418
Duncan Sands7407a9f2007-09-11 14:10:23 +00005419 SDOperand Ops[] =
5420 { Trmp, DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains, 4) };
5421 return DAG.getNode(ISD::MERGE_VALUES, Op.Val->getVTList(), Ops, 2);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005422 }
5423}
5424
Dan Gohman819574c2008-01-31 00:41:03 +00005425SDOperand X86TargetLowering::LowerFLT_ROUNDS_(SDOperand Op, SelectionDAG &DAG) {
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00005426 /*
5427 The rounding mode is in bits 11:10 of FPSR, and has the following
5428 settings:
5429 00 Round to nearest
5430 01 Round to -inf
5431 10 Round to +inf
5432 11 Round to 0
5433
5434 FLT_ROUNDS, on the other hand, expects the following:
5435 -1 Undefined
5436 0 Round to 0
5437 1 Round to nearest
5438 2 Round to +inf
5439 3 Round to -inf
5440
5441 To perform the conversion, we do:
5442 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
5443 */
5444
5445 MachineFunction &MF = DAG.getMachineFunction();
5446 const TargetMachine &TM = MF.getTarget();
5447 const TargetFrameInfo &TFI = *TM.getFrameInfo();
5448 unsigned StackAlignment = TFI.getStackAlignment();
5449 MVT::ValueType VT = Op.getValueType();
5450
5451 // Save FP Control Word to stack slot
5452 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment);
5453 SDOperand StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
5454
5455 SDOperand Chain = DAG.getNode(X86ISD::FNSTCW16m, MVT::Other,
5456 DAG.getEntryNode(), StackSlot);
5457
5458 // Load FP Control Word from stack slot
5459 SDOperand CWD = DAG.getLoad(MVT::i16, Chain, StackSlot, NULL, 0);
5460
5461 // Transform as necessary
5462 SDOperand CWD1 =
5463 DAG.getNode(ISD::SRL, MVT::i16,
5464 DAG.getNode(ISD::AND, MVT::i16,
5465 CWD, DAG.getConstant(0x800, MVT::i16)),
5466 DAG.getConstant(11, MVT::i8));
5467 SDOperand CWD2 =
5468 DAG.getNode(ISD::SRL, MVT::i16,
5469 DAG.getNode(ISD::AND, MVT::i16,
5470 CWD, DAG.getConstant(0x400, MVT::i16)),
5471 DAG.getConstant(9, MVT::i8));
5472
5473 SDOperand RetVal =
5474 DAG.getNode(ISD::AND, MVT::i16,
5475 DAG.getNode(ISD::ADD, MVT::i16,
5476 DAG.getNode(ISD::OR, MVT::i16, CWD1, CWD2),
5477 DAG.getConstant(1, MVT::i16)),
5478 DAG.getConstant(3, MVT::i16));
5479
5480
5481 return DAG.getNode((MVT::getSizeInBits(VT) < 16 ?
5482 ISD::TRUNCATE : ISD::ZERO_EXTEND), VT, RetVal);
5483}
5484
Evan Cheng48679f42007-12-14 02:13:44 +00005485SDOperand X86TargetLowering::LowerCTLZ(SDOperand Op, SelectionDAG &DAG) {
5486 MVT::ValueType VT = Op.getValueType();
5487 MVT::ValueType OpVT = VT;
5488 unsigned NumBits = MVT::getSizeInBits(VT);
5489
5490 Op = Op.getOperand(0);
5491 if (VT == MVT::i8) {
Evan Cheng7cfbfe32007-12-14 08:30:15 +00005492 // Zero extend to i32 since there is not an i8 bsr.
Evan Cheng48679f42007-12-14 02:13:44 +00005493 OpVT = MVT::i32;
5494 Op = DAG.getNode(ISD::ZERO_EXTEND, OpVT, Op);
5495 }
Evan Cheng48679f42007-12-14 02:13:44 +00005496
Evan Cheng7cfbfe32007-12-14 08:30:15 +00005497 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
5498 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
5499 Op = DAG.getNode(X86ISD::BSR, VTs, Op);
5500
5501 // If src is zero (i.e. bsr sets ZF), returns NumBits.
5502 SmallVector<SDOperand, 4> Ops;
5503 Ops.push_back(Op);
5504 Ops.push_back(DAG.getConstant(NumBits+NumBits-1, OpVT));
5505 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
5506 Ops.push_back(Op.getValue(1));
5507 Op = DAG.getNode(X86ISD::CMOV, OpVT, &Ops[0], 4);
5508
5509 // Finally xor with NumBits-1.
5510 Op = DAG.getNode(ISD::XOR, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
5511
Evan Cheng48679f42007-12-14 02:13:44 +00005512 if (VT == MVT::i8)
5513 Op = DAG.getNode(ISD::TRUNCATE, MVT::i8, Op);
5514 return Op;
5515}
5516
5517SDOperand X86TargetLowering::LowerCTTZ(SDOperand Op, SelectionDAG &DAG) {
5518 MVT::ValueType VT = Op.getValueType();
5519 MVT::ValueType OpVT = VT;
Evan Cheng7cfbfe32007-12-14 08:30:15 +00005520 unsigned NumBits = MVT::getSizeInBits(VT);
Evan Cheng48679f42007-12-14 02:13:44 +00005521
5522 Op = Op.getOperand(0);
5523 if (VT == MVT::i8) {
5524 OpVT = MVT::i32;
5525 Op = DAG.getNode(ISD::ZERO_EXTEND, OpVT, Op);
5526 }
Evan Cheng7cfbfe32007-12-14 08:30:15 +00005527
5528 // Issue a bsf (scan bits forward) which also sets EFLAGS.
5529 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
5530 Op = DAG.getNode(X86ISD::BSF, VTs, Op);
5531
5532 // If src is zero (i.e. bsf sets ZF), returns NumBits.
5533 SmallVector<SDOperand, 4> Ops;
5534 Ops.push_back(Op);
5535 Ops.push_back(DAG.getConstant(NumBits, OpVT));
5536 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
5537 Ops.push_back(Op.getValue(1));
5538 Op = DAG.getNode(X86ISD::CMOV, OpVT, &Ops[0], 4);
5539
Evan Cheng48679f42007-12-14 02:13:44 +00005540 if (VT == MVT::i8)
5541 Op = DAG.getNode(ISD::TRUNCATE, MVT::i8, Op);
5542 return Op;
5543}
5544
Andrew Lenharth81580822008-03-05 01:15:49 +00005545SDOperand X86TargetLowering::LowerLCS(SDOperand Op, SelectionDAG &DAG) {
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00005546 MVT::ValueType T = cast<AtomicSDNode>(Op.Val)->getVT();
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00005547 unsigned Reg = 0;
5548 unsigned size = 0;
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00005549 switch(T) {
5550 case MVT::i8: Reg = X86::AL; size = 1; break;
5551 case MVT::i16: Reg = X86::AX; size = 2; break;
5552 case MVT::i32: Reg = X86::EAX; size = 4; break;
Andrew Lenharth81580822008-03-05 01:15:49 +00005553 case MVT::i64:
5554 if (Subtarget->is64Bit()) {
5555 Reg = X86::RAX; size = 8;
5556 } else //Should go away when LowerType stuff lands
5557 return SDOperand(ExpandATOMIC_LCS(Op.Val, DAG), 0);
5558 break;
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00005559 };
5560 SDOperand cpIn = DAG.getCopyToReg(Op.getOperand(0), Reg,
Andrew Lenharth9135fcb2008-03-01 22:27:48 +00005561 Op.getOperand(3), SDOperand());
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00005562 SDOperand Ops[] = { cpIn.getValue(0),
Andrew Lenharth81580822008-03-05 01:15:49 +00005563 Op.getOperand(1),
5564 Op.getOperand(2),
5565 DAG.getTargetConstant(size, MVT::i8),
5566 cpIn.getValue(1) };
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00005567 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
5568 SDOperand Result = DAG.getNode(X86ISD::LCMPXCHG_DAG, Tys, Ops, 5);
5569 SDOperand cpOut =
5570 DAG.getCopyFromReg(Result.getValue(0), Reg, T, Result.getValue(1));
5571 return cpOut;
5572}
5573
Andrew Lenharth81580822008-03-05 01:15:49 +00005574SDNode* X86TargetLowering::ExpandATOMIC_LCS(SDNode* Op, SelectionDAG &DAG) {
5575 MVT::ValueType T = cast<AtomicSDNode>(Op)->getVT();
5576 assert (T == MVT::i64 && "Only know how to expand i64 CAS");
5577 SDOperand cpInL, cpInH;
5578 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op->getOperand(3),
5579 DAG.getConstant(0, MVT::i32));
5580 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op->getOperand(3),
5581 DAG.getConstant(1, MVT::i32));
5582 cpInL = DAG.getCopyToReg(Op->getOperand(0), X86::EAX,
5583 cpInL, SDOperand());
5584 cpInH = DAG.getCopyToReg(cpInL.getValue(0), X86::EDX,
5585 cpInH, cpInL.getValue(1));
5586 SDOperand swapInL, swapInH;
5587 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op->getOperand(2),
5588 DAG.getConstant(0, MVT::i32));
5589 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Op->getOperand(2),
5590 DAG.getConstant(1, MVT::i32));
5591 swapInL = DAG.getCopyToReg(cpInH.getValue(0), X86::EBX,
5592 swapInL, cpInH.getValue(1));
5593 swapInH = DAG.getCopyToReg(swapInL.getValue(0), X86::ECX,
5594 swapInH, swapInL.getValue(1));
5595 SDOperand Ops[] = { swapInH.getValue(0),
5596 Op->getOperand(1),
5597 swapInH.getValue(1)};
5598 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
5599 SDOperand Result = DAG.getNode(X86ISD::LCMPXCHG8_DAG, Tys, Ops, 3);
5600 SDOperand cpOutL = DAG.getCopyFromReg(Result.getValue(0), X86::EAX, MVT::i32,
5601 Result.getValue(1));
5602 SDOperand cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), X86::EDX, MVT::i32,
5603 cpOutL.getValue(2));
5604 SDOperand OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
5605 SDOperand ResultVal = DAG.getNode(ISD::BUILD_PAIR, MVT::i64, OpsF, 2);
5606 Tys = DAG.getVTList(MVT::i64, MVT::Other);
5607 return DAG.getNode(ISD::MERGE_VALUES, Tys, ResultVal, cpOutH.getValue(1)).Val;
5608}
5609
Mon P Wang078a62d2008-05-05 19:05:59 +00005610SDNode* X86TargetLowering::ExpandATOMIC_LSS(SDNode* Op, SelectionDAG &DAG) {
5611 MVT::ValueType T = cast<AtomicSDNode>(Op)->getVT();
5612 assert (T == MVT::i32 && "Only know how to expand i32 LSS");
5613 SDOperand negOp = DAG.getNode(ISD::SUB, T,
5614 DAG.getConstant(0, T), Op->getOperand(2));
5615 return DAG.getAtomic(ISD::ATOMIC_LAS, Op->getOperand(0),
5616 Op->getOperand(1), negOp, T).Val;
5617}
5618
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005619/// LowerOperation - Provide custom lowering hooks for some operations.
5620///
5621SDOperand X86TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
5622 switch (Op.getOpcode()) {
5623 default: assert(0 && "Should not custom lower this!");
Andrew Lenharth81580822008-03-05 01:15:49 +00005624 case ISD::ATOMIC_LCS: return LowerLCS(Op,DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005625 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
5626 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
5627 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
5628 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
5629 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
5630 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
5631 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
5632 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
5633 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
5634 case ISD::SHL_PARTS:
5635 case ISD::SRA_PARTS:
5636 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
5637 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
5638 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
5639 case ISD::FABS: return LowerFABS(Op, DAG);
5640 case ISD::FNEG: return LowerFNEG(Op, DAG);
5641 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Cheng621216e2007-09-29 00:00:36 +00005642 case ISD::SETCC: return LowerSETCC(Op, DAG);
5643 case ISD::SELECT: return LowerSELECT(Op, DAG);
5644 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005645 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
5646 case ISD::CALL: return LowerCALL(Op, DAG);
5647 case ISD::RET: return LowerRET(Op, DAG);
5648 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005649 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman827cb1f2008-05-10 01:26:14 +00005650 case ISD::VAARG: return LowerVAARG(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005651 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
5652 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
5653 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
5654 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
5655 case ISD::FRAME_TO_ARGS_OFFSET:
5656 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
5657 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
5658 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00005659 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman819574c2008-01-31 00:41:03 +00005660 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng48679f42007-12-14 02:13:44 +00005661 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
5662 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005663
5664 // FIXME: REMOVE THIS WHEN LegalizeDAGTypes lands.
5665 case ISD::READCYCLECOUNTER:
5666 return SDOperand(ExpandREADCYCLECOUNTER(Op.Val, DAG), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005667 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005668}
5669
5670/// ExpandOperation - Provide custom lowering hooks for expanding operations.
5671SDNode *X86TargetLowering::ExpandOperationResult(SDNode *N, SelectionDAG &DAG) {
5672 switch (N->getOpcode()) {
5673 default: assert(0 && "Should not custom lower this!");
5674 case ISD::FP_TO_SINT: return ExpandFP_TO_SINT(N, DAG);
5675 case ISD::READCYCLECOUNTER: return ExpandREADCYCLECOUNTER(N, DAG);
Andrew Lenharth81580822008-03-05 01:15:49 +00005676 case ISD::ATOMIC_LCS: return ExpandATOMIC_LCS(N, DAG);
Mon P Wang078a62d2008-05-05 19:05:59 +00005677 case ISD::ATOMIC_LSS: return ExpandATOMIC_LSS(N,DAG);
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005678 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005679}
5680
5681const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
5682 switch (Opcode) {
5683 default: return NULL;
Evan Cheng48679f42007-12-14 02:13:44 +00005684 case X86ISD::BSF: return "X86ISD::BSF";
5685 case X86ISD::BSR: return "X86ISD::BSR";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005686 case X86ISD::SHLD: return "X86ISD::SHLD";
5687 case X86ISD::SHRD: return "X86ISD::SHRD";
5688 case X86ISD::FAND: return "X86ISD::FAND";
5689 case X86ISD::FOR: return "X86ISD::FOR";
5690 case X86ISD::FXOR: return "X86ISD::FXOR";
5691 case X86ISD::FSRL: return "X86ISD::FSRL";
5692 case X86ISD::FILD: return "X86ISD::FILD";
5693 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
5694 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
5695 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
5696 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
5697 case X86ISD::FLD: return "X86ISD::FLD";
5698 case X86ISD::FST: return "X86ISD::FST";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005699 case X86ISD::CALL: return "X86ISD::CALL";
5700 case X86ISD::TAILCALL: return "X86ISD::TAILCALL";
5701 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
5702 case X86ISD::CMP: return "X86ISD::CMP";
5703 case X86ISD::COMI: return "X86ISD::COMI";
5704 case X86ISD::UCOMI: return "X86ISD::UCOMI";
5705 case X86ISD::SETCC: return "X86ISD::SETCC";
5706 case X86ISD::CMOV: return "X86ISD::CMOV";
5707 case X86ISD::BRCOND: return "X86ISD::BRCOND";
5708 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
5709 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
5710 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005711 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
5712 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Nate Begemand77e59e2008-02-11 04:19:36 +00005713 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005714 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begemand77e59e2008-02-11 04:19:36 +00005715 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
5716 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005717 case X86ISD::PINSRW: return "X86ISD::PINSRW";
5718 case X86ISD::FMAX: return "X86ISD::FMAX";
5719 case X86ISD::FMIN: return "X86ISD::FMIN";
5720 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
5721 case X86ISD::FRCP: return "X86ISD::FRCP";
5722 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
5723 case X86ISD::THREAD_POINTER: return "X86ISD::THREAD_POINTER";
5724 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00005725 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00005726 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng40ee6e52008-05-08 00:57:18 +00005727 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
5728 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Evan Chenge9b9c672008-05-09 21:53:03 +00005729 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
5730 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005731 }
5732}
5733
5734// isLegalAddressingMode - Return true if the addressing mode represented
5735// by AM is legal for this target, for a load/store of the specified type.
5736bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
5737 const Type *Ty) const {
5738 // X86 supports extremely general addressing modes.
5739
5740 // X86 allows a sign-extended 32-bit immediate field as a displacement.
5741 if (AM.BaseOffs <= -(1LL << 32) || AM.BaseOffs >= (1LL << 32)-1)
5742 return false;
5743
5744 if (AM.BaseGV) {
Evan Cheng6a1f3f12007-08-01 23:46:47 +00005745 // We can only fold this if we don't need an extra load.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005746 if (Subtarget->GVRequiresExtraLoad(AM.BaseGV, getTargetMachine(), false))
5747 return false;
Evan Cheng6a1f3f12007-08-01 23:46:47 +00005748
5749 // X86-64 only supports addr of globals in small code model.
5750 if (Subtarget->is64Bit()) {
5751 if (getTargetMachine().getCodeModel() != CodeModel::Small)
5752 return false;
5753 // If lower 4G is not available, then we must use rip-relative addressing.
5754 if (AM.BaseOffs || AM.Scale > 1)
5755 return false;
5756 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005757 }
5758
5759 switch (AM.Scale) {
5760 case 0:
5761 case 1:
5762 case 2:
5763 case 4:
5764 case 8:
5765 // These scales always work.
5766 break;
5767 case 3:
5768 case 5:
5769 case 9:
5770 // These scales are formed with basereg+scalereg. Only accept if there is
5771 // no basereg yet.
5772 if (AM.HasBaseReg)
5773 return false;
5774 break;
5775 default: // Other stuff never works.
5776 return false;
5777 }
5778
5779 return true;
5780}
5781
5782
Evan Cheng27a820a2007-10-26 01:56:11 +00005783bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
5784 if (!Ty1->isInteger() || !Ty2->isInteger())
5785 return false;
Evan Cheng7f152602007-10-29 07:57:50 +00005786 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
5787 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Chengca0e80f2008-03-20 02:18:41 +00005788 if (NumBits1 <= NumBits2)
Evan Cheng7f152602007-10-29 07:57:50 +00005789 return false;
5790 return Subtarget->is64Bit() || NumBits1 < 64;
Evan Cheng27a820a2007-10-26 01:56:11 +00005791}
5792
Evan Cheng9decb332007-10-29 19:58:20 +00005793bool X86TargetLowering::isTruncateFree(MVT::ValueType VT1,
5794 MVT::ValueType VT2) const {
5795 if (!MVT::isInteger(VT1) || !MVT::isInteger(VT2))
5796 return false;
5797 unsigned NumBits1 = MVT::getSizeInBits(VT1);
5798 unsigned NumBits2 = MVT::getSizeInBits(VT2);
Evan Chengca0e80f2008-03-20 02:18:41 +00005799 if (NumBits1 <= NumBits2)
Evan Cheng9decb332007-10-29 19:58:20 +00005800 return false;
5801 return Subtarget->is64Bit() || NumBits1 < 64;
5802}
Evan Cheng27a820a2007-10-26 01:56:11 +00005803
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005804/// isShuffleMaskLegal - Targets can use this to indicate that they only
5805/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
5806/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
5807/// are assumed to be legal.
5808bool
5809X86TargetLowering::isShuffleMaskLegal(SDOperand Mask, MVT::ValueType VT) const {
5810 // Only do shuffles on 128-bit vector types for now.
5811 if (MVT::getSizeInBits(VT) == 64) return false;
5812 return (Mask.Val->getNumOperands() <= 4 ||
5813 isIdentityMask(Mask.Val) ||
5814 isIdentityMask(Mask.Val, true) ||
5815 isSplatMask(Mask.Val) ||
5816 isPSHUFHW_PSHUFLWMask(Mask.Val) ||
5817 X86::isUNPCKLMask(Mask.Val) ||
5818 X86::isUNPCKHMask(Mask.Val) ||
5819 X86::isUNPCKL_v_undef_Mask(Mask.Val) ||
5820 X86::isUNPCKH_v_undef_Mask(Mask.Val));
5821}
5822
Dan Gohman48d5f062008-04-09 20:09:42 +00005823bool
5824X86TargetLowering::isVectorClearMaskLegal(const std::vector<SDOperand> &BVOps,
5825 MVT::ValueType EVT,
5826 SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005827 unsigned NumElts = BVOps.size();
5828 // Only do shuffles on 128-bit vector types for now.
5829 if (MVT::getSizeInBits(EVT) * NumElts == 64) return false;
5830 if (NumElts == 2) return true;
5831 if (NumElts == 4) {
5832 return (isMOVLMask(&BVOps[0], 4) ||
5833 isCommutedMOVL(&BVOps[0], 4, true) ||
5834 isSHUFPMask(&BVOps[0], 4) ||
5835 isCommutedSHUFP(&BVOps[0], 4));
5836 }
5837 return false;
5838}
5839
5840//===----------------------------------------------------------------------===//
5841// X86 Scheduler Hooks
5842//===----------------------------------------------------------------------===//
5843
Mon P Wang078a62d2008-05-05 19:05:59 +00005844// private utility function
5845MachineBasicBlock *
5846X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
5847 MachineBasicBlock *MBB,
5848 unsigned regOpc,
5849 unsigned immOpc) {
5850 // For the atomic bitwise operator, we generate
5851 // thisMBB:
5852 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00005853 // ld t1 = [bitinstr.addr]
5854 // op t2 = t1, [bitinstr.val]
5855 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00005856 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
5857 // bz newMBB
5858 // fallthrough -->nextMBB
5859 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5860 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
5861 ilist<MachineBasicBlock>::iterator MBBIter = MBB;
5862 ++MBBIter;
5863
5864 /// First build the CFG
5865 MachineFunction *F = MBB->getParent();
5866 MachineBasicBlock *thisMBB = MBB;
5867 MachineBasicBlock *newMBB = new MachineBasicBlock(LLVM_BB);
5868 MachineBasicBlock *nextMBB = new MachineBasicBlock(LLVM_BB);
5869 F->getBasicBlockList().insert(MBBIter, newMBB);
5870 F->getBasicBlockList().insert(MBBIter, nextMBB);
5871
5872 // Move all successors to thisMBB to nextMBB
5873 nextMBB->transferSuccessors(thisMBB);
5874
5875 // Update thisMBB to fall through to newMBB
5876 thisMBB->addSuccessor(newMBB);
5877
5878 // newMBB jumps to itself and fall through to nextMBB
5879 newMBB->addSuccessor(nextMBB);
5880 newMBB->addSuccessor(newMBB);
5881
5882 // Insert instructions into newMBB based on incoming instruction
5883 assert(bInstr->getNumOperands() < 8 && "unexpected number of operands");
5884 MachineOperand& destOper = bInstr->getOperand(0);
5885 MachineOperand* argOpers[6];
5886 int numArgs = bInstr->getNumOperands() - 1;
5887 for (int i=0; i < numArgs; ++i)
5888 argOpers[i] = &bInstr->getOperand(i+1);
5889
5890 // x86 address has 4 operands: base, index, scale, and displacement
5891 int lastAddrIndx = 3; // [0,3]
5892 int valArgIndx = 4;
5893
Mon P Wang318b0372008-05-05 22:56:23 +00005894 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
5895 MachineInstrBuilder MIB = BuildMI(newMBB, TII->get(X86::MOV32rm), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00005896 for (int i=0; i <= lastAddrIndx; ++i)
5897 (*MIB).addOperand(*argOpers[i]);
5898
Mon P Wang078a62d2008-05-05 19:05:59 +00005899 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
5900 assert( (argOpers[valArgIndx]->isReg() || argOpers[valArgIndx]->isImm())
5901 && "invalid operand");
5902 if (argOpers[valArgIndx]->isReg())
5903 MIB = BuildMI(newMBB, TII->get(regOpc), t2);
5904 else
5905 MIB = BuildMI(newMBB, TII->get(immOpc), t2);
5906 MIB.addReg(t1);
5907 (*MIB).addOperand(*argOpers[valArgIndx]);
5908
Mon P Wang318b0372008-05-05 22:56:23 +00005909 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), X86::EAX);
5910 MIB.addReg(t1);
5911
Mon P Wang078a62d2008-05-05 19:05:59 +00005912 MIB = BuildMI(newMBB, TII->get(X86::LCMPXCHG32));
5913 for (int i=0; i <= lastAddrIndx; ++i)
5914 (*MIB).addOperand(*argOpers[i]);
5915 MIB.addReg(t2);
5916
5917 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), destOper.getReg());
5918 MIB.addReg(X86::EAX);
5919
5920 // insert branch
5921 BuildMI(newMBB, TII->get(X86::JNE)).addMBB(newMBB);
5922
5923 delete bInstr; // The pseudo instruction is gone now.
5924 return nextMBB;
5925}
5926
5927// private utility function
5928MachineBasicBlock *
5929X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
5930 MachineBasicBlock *MBB,
5931 unsigned cmovOpc) {
5932 // For the atomic min/max operator, we generate
5933 // thisMBB:
5934 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00005935 // ld t1 = [min/max.addr]
Mon P Wang078a62d2008-05-05 19:05:59 +00005936 // mov t2 = [min/max.val]
5937 // cmp t1, t2
5938 // cmov[cond] t2 = t1
Mon P Wang318b0372008-05-05 22:56:23 +00005939 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00005940 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
5941 // bz newMBB
5942 // fallthrough -->nextMBB
5943 //
5944 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5945 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
5946 ilist<MachineBasicBlock>::iterator MBBIter = MBB;
5947 ++MBBIter;
5948
5949 /// First build the CFG
5950 MachineFunction *F = MBB->getParent();
5951 MachineBasicBlock *thisMBB = MBB;
5952 MachineBasicBlock *newMBB = new MachineBasicBlock(LLVM_BB);
5953 MachineBasicBlock *nextMBB = new MachineBasicBlock(LLVM_BB);
5954 F->getBasicBlockList().insert(MBBIter, newMBB);
5955 F->getBasicBlockList().insert(MBBIter, nextMBB);
5956
5957 // Move all successors to thisMBB to nextMBB
5958 nextMBB->transferSuccessors(thisMBB);
5959
5960 // Update thisMBB to fall through to newMBB
5961 thisMBB->addSuccessor(newMBB);
5962
5963 // newMBB jumps to newMBB and fall through to nextMBB
5964 newMBB->addSuccessor(nextMBB);
5965 newMBB->addSuccessor(newMBB);
5966
5967 // Insert instructions into newMBB based on incoming instruction
5968 assert(mInstr->getNumOperands() < 8 && "unexpected number of operands");
5969 MachineOperand& destOper = mInstr->getOperand(0);
5970 MachineOperand* argOpers[6];
5971 int numArgs = mInstr->getNumOperands() - 1;
5972 for (int i=0; i < numArgs; ++i)
5973 argOpers[i] = &mInstr->getOperand(i+1);
5974
5975 // x86 address has 4 operands: base, index, scale, and displacement
5976 int lastAddrIndx = 3; // [0,3]
5977 int valArgIndx = 4;
5978
Mon P Wang318b0372008-05-05 22:56:23 +00005979 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
5980 MachineInstrBuilder MIB = BuildMI(newMBB, TII->get(X86::MOV32rm), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00005981 for (int i=0; i <= lastAddrIndx; ++i)
5982 (*MIB).addOperand(*argOpers[i]);
Mon P Wang318b0372008-05-05 22:56:23 +00005983
Mon P Wang078a62d2008-05-05 19:05:59 +00005984 // We only support register and immediate values
5985 assert( (argOpers[valArgIndx]->isReg() || argOpers[valArgIndx]->isImm())
5986 && "invalid operand");
5987
5988 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
5989 if (argOpers[valArgIndx]->isReg())
5990 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), t2);
5991 else
5992 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), t2);
5993 (*MIB).addOperand(*argOpers[valArgIndx]);
5994
Mon P Wang318b0372008-05-05 22:56:23 +00005995 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), X86::EAX);
5996 MIB.addReg(t1);
5997
Mon P Wang078a62d2008-05-05 19:05:59 +00005998 MIB = BuildMI(newMBB, TII->get(X86::CMP32rr));
5999 MIB.addReg(t1);
6000 MIB.addReg(t2);
6001
6002 // Generate movc
6003 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
6004 MIB = BuildMI(newMBB, TII->get(cmovOpc),t3);
6005 MIB.addReg(t2);
6006 MIB.addReg(t1);
6007
6008 // Cmp and exchange if none has modified the memory location
6009 MIB = BuildMI(newMBB, TII->get(X86::LCMPXCHG32));
6010 for (int i=0; i <= lastAddrIndx; ++i)
6011 (*MIB).addOperand(*argOpers[i]);
6012 MIB.addReg(t3);
6013
6014 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), destOper.getReg());
6015 MIB.addReg(X86::EAX);
6016
6017 // insert branch
6018 BuildMI(newMBB, TII->get(X86::JNE)).addMBB(newMBB);
6019
6020 delete mInstr; // The pseudo instruction is gone now.
6021 return nextMBB;
6022}
6023
6024
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006025MachineBasicBlock *
Evan Chenge637db12008-01-30 18:18:23 +00006026X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
6027 MachineBasicBlock *BB) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006028 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6029 switch (MI->getOpcode()) {
6030 default: assert(false && "Unexpected instr type to insert");
6031 case X86::CMOV_FR32:
6032 case X86::CMOV_FR64:
6033 case X86::CMOV_V4F32:
6034 case X86::CMOV_V2F64:
Evan Cheng621216e2007-09-29 00:00:36 +00006035 case X86::CMOV_V2I64: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006036 // To "insert" a SELECT_CC instruction, we actually have to insert the
6037 // diamond control-flow pattern. The incoming instruction knows the
6038 // destination vreg to set, the condition code register to branch on, the
6039 // true/false values to select between, and a branch opcode to use.
6040 const BasicBlock *LLVM_BB = BB->getBasicBlock();
6041 ilist<MachineBasicBlock>::iterator It = BB;
6042 ++It;
6043
6044 // thisMBB:
6045 // ...
6046 // TrueVal = ...
6047 // cmpTY ccX, r1, r2
6048 // bCC copy1MBB
6049 // fallthrough --> copy0MBB
6050 MachineBasicBlock *thisMBB = BB;
6051 MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
6052 MachineBasicBlock *sinkMBB = new MachineBasicBlock(LLVM_BB);
6053 unsigned Opc =
6054 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
6055 BuildMI(BB, TII->get(Opc)).addMBB(sinkMBB);
6056 MachineFunction *F = BB->getParent();
6057 F->getBasicBlockList().insert(It, copy0MBB);
6058 F->getBasicBlockList().insert(It, sinkMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00006059 // Update machine-CFG edges by transferring all successors of the current
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006060 // block to the new block which will contain the Phi node for the select.
Mon P Wang078a62d2008-05-05 19:05:59 +00006061 sinkMBB->transferSuccessors(BB);
6062
6063 // Add the true and fallthrough blocks as its successors.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006064 BB->addSuccessor(copy0MBB);
6065 BB->addSuccessor(sinkMBB);
6066
6067 // copy0MBB:
6068 // %FalseValue = ...
6069 // # fallthrough to sinkMBB
6070 BB = copy0MBB;
6071
6072 // Update machine-CFG edges
6073 BB->addSuccessor(sinkMBB);
6074
6075 // sinkMBB:
6076 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
6077 // ...
6078 BB = sinkMBB;
6079 BuildMI(BB, TII->get(X86::PHI), MI->getOperand(0).getReg())
6080 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
6081 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
6082
6083 delete MI; // The pseudo instruction is gone now.
6084 return BB;
6085 }
6086
6087 case X86::FP32_TO_INT16_IN_MEM:
6088 case X86::FP32_TO_INT32_IN_MEM:
6089 case X86::FP32_TO_INT64_IN_MEM:
6090 case X86::FP64_TO_INT16_IN_MEM:
6091 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00006092 case X86::FP64_TO_INT64_IN_MEM:
6093 case X86::FP80_TO_INT16_IN_MEM:
6094 case X86::FP80_TO_INT32_IN_MEM:
6095 case X86::FP80_TO_INT64_IN_MEM: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006096 // Change the floating point control register to use "round towards zero"
6097 // mode when truncating to an integer value.
6098 MachineFunction *F = BB->getParent();
6099 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
6100 addFrameReference(BuildMI(BB, TII->get(X86::FNSTCW16m)), CWFrameIdx);
6101
6102 // Load the old value of the high byte of the control word...
6103 unsigned OldCW =
Chris Lattner1b989192007-12-31 04:13:23 +00006104 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006105 addFrameReference(BuildMI(BB, TII->get(X86::MOV16rm), OldCW), CWFrameIdx);
6106
6107 // Set the high part to be round to zero...
6108 addFrameReference(BuildMI(BB, TII->get(X86::MOV16mi)), CWFrameIdx)
6109 .addImm(0xC7F);
6110
6111 // Reload the modified control word now...
6112 addFrameReference(BuildMI(BB, TII->get(X86::FLDCW16m)), CWFrameIdx);
6113
6114 // Restore the memory image of control word to original value
6115 addFrameReference(BuildMI(BB, TII->get(X86::MOV16mr)), CWFrameIdx)
6116 .addReg(OldCW);
6117
6118 // Get the X86 opcode to use.
6119 unsigned Opc;
6120 switch (MI->getOpcode()) {
6121 default: assert(0 && "illegal opcode!");
6122 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
6123 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
6124 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
6125 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
6126 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
6127 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00006128 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
6129 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
6130 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006131 }
6132
6133 X86AddressMode AM;
6134 MachineOperand &Op = MI->getOperand(0);
6135 if (Op.isRegister()) {
6136 AM.BaseType = X86AddressMode::RegBase;
6137 AM.Base.Reg = Op.getReg();
6138 } else {
6139 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner6017d482007-12-30 23:10:15 +00006140 AM.Base.FrameIndex = Op.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006141 }
6142 Op = MI->getOperand(1);
6143 if (Op.isImmediate())
6144 AM.Scale = Op.getImm();
6145 Op = MI->getOperand(2);
6146 if (Op.isImmediate())
6147 AM.IndexReg = Op.getImm();
6148 Op = MI->getOperand(3);
6149 if (Op.isGlobalAddress()) {
6150 AM.GV = Op.getGlobal();
6151 } else {
6152 AM.Disp = Op.getImm();
6153 }
6154 addFullAddress(BuildMI(BB, TII->get(Opc)), AM)
6155 .addReg(MI->getOperand(4).getReg());
6156
6157 // Reload the original control word now.
6158 addFrameReference(BuildMI(BB, TII->get(X86::FLDCW16m)), CWFrameIdx);
6159
6160 delete MI; // The pseudo instruction is gone now.
6161 return BB;
6162 }
Mon P Wang078a62d2008-05-05 19:05:59 +00006163 case X86::ATOMAND32:
6164 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
6165 X86::AND32ri);
6166 case X86::ATOMOR32:
6167 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
6168 X86::OR32ri);
6169 case X86::ATOMXOR32:
6170 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
6171 X86::XOR32ri);
6172 case X86::ATOMMIN32:
6173 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
6174 case X86::ATOMMAX32:
6175 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
6176 case X86::ATOMUMIN32:
6177 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
6178 case X86::ATOMUMAX32:
6179 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006180 }
6181}
6182
6183//===----------------------------------------------------------------------===//
6184// X86 Optimization Hooks
6185//===----------------------------------------------------------------------===//
6186
6187void X86TargetLowering::computeMaskedBitsForTargetNode(const SDOperand Op,
Dan Gohmand0dfc772008-02-13 22:28:48 +00006188 const APInt &Mask,
Dan Gohman229fa052008-02-13 00:35:47 +00006189 APInt &KnownZero,
6190 APInt &KnownOne,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006191 const SelectionDAG &DAG,
6192 unsigned Depth) const {
6193 unsigned Opc = Op.getOpcode();
6194 assert((Opc >= ISD::BUILTIN_OP_END ||
6195 Opc == ISD::INTRINSIC_WO_CHAIN ||
6196 Opc == ISD::INTRINSIC_W_CHAIN ||
6197 Opc == ISD::INTRINSIC_VOID) &&
6198 "Should use MaskedValueIsZero if you don't know whether Op"
6199 " is a target node!");
6200
Dan Gohman1d79e432008-02-13 23:07:24 +00006201 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006202 switch (Opc) {
6203 default: break;
6204 case X86ISD::SETCC:
Dan Gohman229fa052008-02-13 00:35:47 +00006205 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
6206 Mask.getBitWidth() - 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006207 break;
6208 }
6209}
6210
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006211/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengef7be082008-05-12 19:56:52 +00006212/// node is a GlobalAddress + offset.
6213bool X86TargetLowering::isGAPlusOffset(SDNode *N,
6214 GlobalValue* &GA, int64_t &Offset) const{
6215 if (N->getOpcode() == X86ISD::Wrapper) {
6216 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006217 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
6218 return true;
6219 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006220 }
Evan Chengef7be082008-05-12 19:56:52 +00006221 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006222}
6223
Evan Chengef7be082008-05-12 19:56:52 +00006224static bool isBaseAlignmentOfN(unsigned N, SDNode *Base,
6225 const TargetLowering &TLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006226 GlobalValue *GV;
Nick Lewycky4bd3fca2008-02-02 08:29:58 +00006227 int64_t Offset = 0;
Evan Chengef7be082008-05-12 19:56:52 +00006228 if (TLI.isGAPlusOffset(Base, GV, Offset))
Evan Cheng40ee6e52008-05-08 00:57:18 +00006229 return (GV->getAlignment() >= N && (Offset % N) == 0);
Chris Lattner3834cf32008-01-26 20:07:42 +00006230 // DAG combine handles the stack object case.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006231 return false;
6232}
6233
Evan Cheng40ee6e52008-05-08 00:57:18 +00006234static bool EltsFromConsecutiveLoads(SDNode *N, SDOperand PermMask,
6235 unsigned NumElems, MVT::ValueType EVT,
Evan Chengef7be082008-05-12 19:56:52 +00006236 SDNode *&Base,
6237 SelectionDAG &DAG, MachineFrameInfo *MFI,
6238 const TargetLowering &TLI) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00006239 Base = NULL;
6240 for (unsigned i = 0; i < NumElems; ++i) {
6241 SDOperand Idx = PermMask.getOperand(i);
6242 if (Idx.getOpcode() == ISD::UNDEF) {
6243 if (!Base)
6244 return false;
6245 continue;
6246 }
6247
6248 unsigned Index = cast<ConstantSDNode>(Idx)->getValue();
Evan Cheng411fc172008-05-13 08:35:03 +00006249 SDOperand Elt = DAG.getShuffleScalarElt(N, Index);
Evan Cheng40ee6e52008-05-08 00:57:18 +00006250 if (!Elt.Val ||
6251 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.Val)))
6252 return false;
6253 if (!Base) {
6254 Base = Elt.Val;
Evan Cheng92ee6822008-05-10 06:46:49 +00006255 if (Base->getOpcode() == ISD::UNDEF)
6256 return false;
Evan Cheng40ee6e52008-05-08 00:57:18 +00006257 continue;
6258 }
6259 if (Elt.getOpcode() == ISD::UNDEF)
6260 continue;
6261
Evan Chengef7be082008-05-12 19:56:52 +00006262 if (!TLI.isConsecutiveLoad(Elt.Val, Base,
6263 MVT::getSizeInBits(EVT)/8, i, MFI))
Evan Cheng40ee6e52008-05-08 00:57:18 +00006264 return false;
6265 }
6266 return true;
6267}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006268
6269/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
6270/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
6271/// if the load addresses are consecutive, non-overlapping, and in the right
6272/// order.
6273static SDOperand PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Evan Chengef7be082008-05-12 19:56:52 +00006274 const TargetLowering &TLI) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00006275 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006276 MVT::ValueType VT = N->getValueType(0);
6277 MVT::ValueType EVT = MVT::getVectorElementType(VT);
6278 SDOperand PermMask = N->getOperand(2);
Evan Chengbad18452008-05-05 22:12:23 +00006279 unsigned NumElems = PermMask.getNumOperands();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006280 SDNode *Base = NULL;
Evan Chengef7be082008-05-12 19:56:52 +00006281 if (!EltsFromConsecutiveLoads(N, PermMask, NumElems, EVT, Base,
6282 DAG, MFI, TLI))
Evan Cheng40ee6e52008-05-08 00:57:18 +00006283 return SDOperand();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006284
Dan Gohman11821702007-07-27 17:16:43 +00006285 LoadSDNode *LD = cast<LoadSDNode>(Base);
Evan Chengef7be082008-05-12 19:56:52 +00006286 if (isBaseAlignmentOfN(16, Base->getOperand(1).Val, TLI))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006287 return DAG.getLoad(VT, LD->getChain(), LD->getBasePtr(), LD->getSrcValue(),
Dan Gohman11821702007-07-27 17:16:43 +00006288 LD->getSrcValueOffset(), LD->isVolatile());
Evan Chengbad18452008-05-05 22:12:23 +00006289 return DAG.getLoad(VT, LD->getChain(), LD->getBasePtr(), LD->getSrcValue(),
6290 LD->getSrcValueOffset(), LD->isVolatile(),
6291 LD->getAlignment());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006292}
6293
Evan Chengb6290462008-05-12 23:04:07 +00006294/// PerformBuildVectorCombine - build_vector 0,(load i64 / f64) -> movq / movsd.
Evan Chenge9b9c672008-05-09 21:53:03 +00006295static SDOperand PerformBuildVectorCombine(SDNode *N, SelectionDAG &DAG,
Evan Chengef7be082008-05-12 19:56:52 +00006296 const X86Subtarget *Subtarget,
6297 const TargetLowering &TLI) {
Evan Chenge9b9c672008-05-09 21:53:03 +00006298 // Ignore single operand BUILD_VECTOR.
6299 if (N->getNumOperands() == 1)
6300 return SDOperand();
6301
6302 MVT::ValueType VT = N->getValueType(0);
6303 MVT::ValueType EVT = MVT::getVectorElementType(VT);
6304 if ((EVT != MVT::i64 && EVT != MVT::f64) || Subtarget->is64Bit())
6305 // We are looking for load i64 and zero extend. We want to transform
6306 // it before legalizer has a chance to expand it. Also look for i64
6307 // BUILD_PAIR bit casted to f64.
6308 return SDOperand();
6309 // This must be an insertion into a zero vector.
6310 SDOperand HighElt = N->getOperand(1);
Evan Cheng5b0c30e2008-05-10 00:58:41 +00006311 if (!isZeroNode(HighElt))
Evan Chenge9b9c672008-05-09 21:53:03 +00006312 return SDOperand();
6313
6314 // Value must be a load.
Evan Chenge9b9c672008-05-09 21:53:03 +00006315 SDNode *Base = N->getOperand(0).Val;
6316 if (!isa<LoadSDNode>(Base)) {
Evan Chengb6290462008-05-12 23:04:07 +00006317 if (Base->getOpcode() != ISD::BIT_CONVERT)
Evan Chenge9b9c672008-05-09 21:53:03 +00006318 return SDOperand();
Evan Chengb6290462008-05-12 23:04:07 +00006319 Base = Base->getOperand(0).Val;
6320 if (!isa<LoadSDNode>(Base))
Evan Chenge9b9c672008-05-09 21:53:03 +00006321 return SDOperand();
6322 }
Evan Chenge9b9c672008-05-09 21:53:03 +00006323
6324 // Transform it into VZEXT_LOAD addr.
Evan Chengb6290462008-05-12 23:04:07 +00006325 LoadSDNode *LD = cast<LoadSDNode>(Base);
Evan Chenge9b9c672008-05-09 21:53:03 +00006326 return DAG.getNode(X86ISD::VZEXT_LOAD, VT, LD->getChain(), LD->getBasePtr());
6327}
6328
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006329/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
6330static SDOperand PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
6331 const X86Subtarget *Subtarget) {
6332 SDOperand Cond = N->getOperand(0);
6333
6334 // If we have SSE[12] support, try to form min/max nodes.
6335 if (Subtarget->hasSSE2() &&
6336 (N->getValueType(0) == MVT::f32 || N->getValueType(0) == MVT::f64)) {
6337 if (Cond.getOpcode() == ISD::SETCC) {
6338 // Get the LHS/RHS of the select.
6339 SDOperand LHS = N->getOperand(1);
6340 SDOperand RHS = N->getOperand(2);
6341 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
6342
6343 unsigned Opcode = 0;
6344 if (LHS == Cond.getOperand(0) && RHS == Cond.getOperand(1)) {
6345 switch (CC) {
6346 default: break;
6347 case ISD::SETOLE: // (X <= Y) ? X : Y -> min
6348 case ISD::SETULE:
6349 case ISD::SETLE:
6350 if (!UnsafeFPMath) break;
6351 // FALL THROUGH.
6352 case ISD::SETOLT: // (X olt/lt Y) ? X : Y -> min
6353 case ISD::SETLT:
6354 Opcode = X86ISD::FMIN;
6355 break;
6356
6357 case ISD::SETOGT: // (X > Y) ? X : Y -> max
6358 case ISD::SETUGT:
6359 case ISD::SETGT:
6360 if (!UnsafeFPMath) break;
6361 // FALL THROUGH.
6362 case ISD::SETUGE: // (X uge/ge Y) ? X : Y -> max
6363 case ISD::SETGE:
6364 Opcode = X86ISD::FMAX;
6365 break;
6366 }
6367 } else if (LHS == Cond.getOperand(1) && RHS == Cond.getOperand(0)) {
6368 switch (CC) {
6369 default: break;
6370 case ISD::SETOGT: // (X > Y) ? Y : X -> min
6371 case ISD::SETUGT:
6372 case ISD::SETGT:
6373 if (!UnsafeFPMath) break;
6374 // FALL THROUGH.
6375 case ISD::SETUGE: // (X uge/ge Y) ? Y : X -> min
6376 case ISD::SETGE:
6377 Opcode = X86ISD::FMIN;
6378 break;
6379
6380 case ISD::SETOLE: // (X <= Y) ? Y : X -> max
6381 case ISD::SETULE:
6382 case ISD::SETLE:
6383 if (!UnsafeFPMath) break;
6384 // FALL THROUGH.
6385 case ISD::SETOLT: // (X olt/lt Y) ? Y : X -> max
6386 case ISD::SETLT:
6387 Opcode = X86ISD::FMAX;
6388 break;
6389 }
6390 }
6391
6392 if (Opcode)
6393 return DAG.getNode(Opcode, N->getValueType(0), LHS, RHS);
6394 }
6395
6396 }
6397
6398 return SDOperand();
6399}
6400
Chris Lattnerce84ae42008-02-22 02:09:43 +00006401/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Evan Cheng40ee6e52008-05-08 00:57:18 +00006402static SDOperand PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Chris Lattnerce84ae42008-02-22 02:09:43 +00006403 const X86Subtarget *Subtarget) {
6404 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
6405 // the FP state in cases where an emms may be missing.
Dale Johannesend112b802008-02-25 19:20:14 +00006406 // A preferable solution to the general problem is to figure out the right
6407 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng40ee6e52008-05-08 00:57:18 +00006408 StoreSDNode *St = cast<StoreSDNode>(N);
Chris Lattnerce84ae42008-02-22 02:09:43 +00006409 if (MVT::isVector(St->getValue().getValueType()) &&
6410 MVT::getSizeInBits(St->getValue().getValueType()) == 64 &&
Dale Johannesend112b802008-02-25 19:20:14 +00006411 isa<LoadSDNode>(St->getValue()) &&
6412 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
6413 St->getChain().hasOneUse() && !St->isVolatile()) {
Dale Johannesen49151bc2008-02-25 22:29:22 +00006414 SDNode* LdVal = St->getValue().Val;
Dale Johannesend112b802008-02-25 19:20:14 +00006415 LoadSDNode *Ld = 0;
6416 int TokenFactorIndex = -1;
6417 SmallVector<SDOperand, 8> Ops;
6418 SDNode* ChainVal = St->getChain().Val;
6419 // Must be a store of a load. We currently handle two cases: the load
6420 // is a direct child, and it's under an intervening TokenFactor. It is
6421 // possible to dig deeper under nested TokenFactors.
Dale Johannesen49151bc2008-02-25 22:29:22 +00006422 if (ChainVal == LdVal)
Dale Johannesend112b802008-02-25 19:20:14 +00006423 Ld = cast<LoadSDNode>(St->getChain());
6424 else if (St->getValue().hasOneUse() &&
6425 ChainVal->getOpcode() == ISD::TokenFactor) {
6426 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Dale Johannesen49151bc2008-02-25 22:29:22 +00006427 if (ChainVal->getOperand(i).Val == LdVal) {
Dale Johannesend112b802008-02-25 19:20:14 +00006428 TokenFactorIndex = i;
6429 Ld = cast<LoadSDNode>(St->getValue());
6430 } else
6431 Ops.push_back(ChainVal->getOperand(i));
6432 }
6433 }
6434 if (Ld) {
6435 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
6436 if (Subtarget->is64Bit()) {
6437 SDOperand NewLd = DAG.getLoad(MVT::i64, Ld->getChain(),
6438 Ld->getBasePtr(), Ld->getSrcValue(),
6439 Ld->getSrcValueOffset(), Ld->isVolatile(),
6440 Ld->getAlignment());
6441 SDOperand NewChain = NewLd.getValue(1);
6442 if (TokenFactorIndex != -1) {
Dan Gohman72032662008-03-28 23:45:16 +00006443 Ops.push_back(NewChain);
Dale Johannesend112b802008-02-25 19:20:14 +00006444 NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Ops[0],
6445 Ops.size());
6446 }
6447 return DAG.getStore(NewChain, NewLd, St->getBasePtr(),
6448 St->getSrcValue(), St->getSrcValueOffset(),
6449 St->isVolatile(), St->getAlignment());
6450 }
6451
6452 // Otherwise, lower to two 32-bit copies.
6453 SDOperand LoAddr = Ld->getBasePtr();
6454 SDOperand HiAddr = DAG.getNode(ISD::ADD, MVT::i32, LoAddr,
6455 DAG.getConstant(MVT::i32, 4));
6456
6457 SDOperand LoLd = DAG.getLoad(MVT::i32, Ld->getChain(), LoAddr,
6458 Ld->getSrcValue(), Ld->getSrcValueOffset(),
6459 Ld->isVolatile(), Ld->getAlignment());
6460 SDOperand HiLd = DAG.getLoad(MVT::i32, Ld->getChain(), HiAddr,
6461 Ld->getSrcValue(), Ld->getSrcValueOffset()+4,
6462 Ld->isVolatile(),
6463 MinAlign(Ld->getAlignment(), 4));
6464
6465 SDOperand NewChain = LoLd.getValue(1);
6466 if (TokenFactorIndex != -1) {
6467 Ops.push_back(LoLd);
6468 Ops.push_back(HiLd);
6469 NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Ops[0],
6470 Ops.size());
6471 }
6472
6473 LoAddr = St->getBasePtr();
6474 HiAddr = DAG.getNode(ISD::ADD, MVT::i32, LoAddr,
6475 DAG.getConstant(MVT::i32, 4));
6476
6477 SDOperand LoSt = DAG.getStore(NewChain, LoLd, LoAddr,
Chris Lattnerce84ae42008-02-22 02:09:43 +00006478 St->getSrcValue(), St->getSrcValueOffset(),
6479 St->isVolatile(), St->getAlignment());
Dale Johannesend112b802008-02-25 19:20:14 +00006480 SDOperand HiSt = DAG.getStore(NewChain, HiLd, HiAddr,
6481 St->getSrcValue(), St->getSrcValueOffset()+4,
6482 St->isVolatile(),
6483 MinAlign(St->getAlignment(), 4));
6484 return DAG.getNode(ISD::TokenFactor, MVT::Other, LoSt, HiSt);
Chris Lattnerce84ae42008-02-22 02:09:43 +00006485 }
Chris Lattnerce84ae42008-02-22 02:09:43 +00006486 }
6487 return SDOperand();
6488}
6489
Chris Lattner470d5dc2008-01-25 06:14:17 +00006490/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
6491/// X86ISD::FXOR nodes.
Chris Lattnerf82998f2008-01-25 05:46:26 +00006492static SDOperand PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner470d5dc2008-01-25 06:14:17 +00006493 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
6494 // F[X]OR(0.0, x) -> x
6495 // F[X]OR(x, 0.0) -> x
Chris Lattnerf82998f2008-01-25 05:46:26 +00006496 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
6497 if (C->getValueAPF().isPosZero())
6498 return N->getOperand(1);
6499 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
6500 if (C->getValueAPF().isPosZero())
6501 return N->getOperand(0);
6502 return SDOperand();
6503}
6504
6505/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
6506static SDOperand PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
6507 // FAND(0.0, x) -> 0.0
6508 // FAND(x, 0.0) -> 0.0
6509 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
6510 if (C->getValueAPF().isPosZero())
6511 return N->getOperand(0);
6512 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
6513 if (C->getValueAPF().isPosZero())
6514 return N->getOperand(1);
6515 return SDOperand();
6516}
6517
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006518
6519SDOperand X86TargetLowering::PerformDAGCombine(SDNode *N,
6520 DAGCombinerInfo &DCI) const {
6521 SelectionDAG &DAG = DCI.DAG;
6522 switch (N->getOpcode()) {
6523 default: break;
Evan Chengef7be082008-05-12 19:56:52 +00006524 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
6525 case ISD::BUILD_VECTOR:
6526 return PerformBuildVectorCombine(N, DAG, Subtarget, *this);
Chris Lattnerf82998f2008-01-25 05:46:26 +00006527 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Evan Cheng40ee6e52008-05-08 00:57:18 +00006528 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner470d5dc2008-01-25 06:14:17 +00006529 case X86ISD::FXOR:
Chris Lattnerf82998f2008-01-25 05:46:26 +00006530 case X86ISD::FOR: return PerformFORCombine(N, DAG);
6531 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006532 }
6533
6534 return SDOperand();
6535}
6536
6537//===----------------------------------------------------------------------===//
6538// X86 Inline Assembly Support
6539//===----------------------------------------------------------------------===//
6540
6541/// getConstraintType - Given a constraint letter, return the type of
6542/// constraint it is for this target.
6543X86TargetLowering::ConstraintType
6544X86TargetLowering::getConstraintType(const std::string &Constraint) const {
6545 if (Constraint.size() == 1) {
6546 switch (Constraint[0]) {
6547 case 'A':
Chris Lattner267805f2008-03-11 19:06:29 +00006548 case 'f':
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006549 case 'r':
6550 case 'R':
6551 case 'l':
6552 case 'q':
6553 case 'Q':
6554 case 'x':
Dale Johannesen9ab553f2008-04-01 00:57:48 +00006555 case 'y':
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006556 case 'Y':
6557 return C_RegisterClass;
6558 default:
6559 break;
6560 }
6561 }
6562 return TargetLowering::getConstraintType(Constraint);
6563}
6564
Dale Johannesene99fc902008-01-29 02:21:21 +00006565/// LowerXConstraint - try to replace an X constraint, which matches anything,
6566/// with another that has more specific requirements based on the type of the
6567/// corresponding operand.
Chris Lattnereca405c2008-04-26 23:02:14 +00006568const char *X86TargetLowering::
6569LowerXConstraint(MVT::ValueType ConstraintVT) const {
6570 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
6571 // 'f' like normal targets.
Dale Johannesene99fc902008-01-29 02:21:21 +00006572 if (MVT::isFloatingPoint(ConstraintVT)) {
6573 if (Subtarget->hasSSE2())
Chris Lattnereca405c2008-04-26 23:02:14 +00006574 return "Y";
6575 if (Subtarget->hasSSE1())
6576 return "x";
6577 }
6578
6579 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesene99fc902008-01-29 02:21:21 +00006580}
6581
Chris Lattnera531abc2007-08-25 00:47:38 +00006582/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
6583/// vector. If it is invalid, don't add anything to Ops.
6584void X86TargetLowering::LowerAsmOperandForConstraint(SDOperand Op,
6585 char Constraint,
6586 std::vector<SDOperand>&Ops,
Chris Lattnereca405c2008-04-26 23:02:14 +00006587 SelectionDAG &DAG) const {
Chris Lattnera531abc2007-08-25 00:47:38 +00006588 SDOperand Result(0, 0);
6589
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006590 switch (Constraint) {
6591 default: break;
6592 case 'I':
6593 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattnera531abc2007-08-25 00:47:38 +00006594 if (C->getValue() <= 31) {
6595 Result = DAG.getTargetConstant(C->getValue(), Op.getValueType());
6596 break;
6597 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006598 }
Chris Lattnera531abc2007-08-25 00:47:38 +00006599 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006600 case 'N':
6601 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattnera531abc2007-08-25 00:47:38 +00006602 if (C->getValue() <= 255) {
6603 Result = DAG.getTargetConstant(C->getValue(), Op.getValueType());
6604 break;
6605 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006606 }
Chris Lattnera531abc2007-08-25 00:47:38 +00006607 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006608 case 'i': {
6609 // Literal immediates are always ok.
Chris Lattnera531abc2007-08-25 00:47:38 +00006610 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
6611 Result = DAG.getTargetConstant(CST->getValue(), Op.getValueType());
6612 break;
6613 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006614
6615 // If we are in non-pic codegen mode, we allow the address of a global (with
6616 // an optional displacement) to be used with 'i'.
6617 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
6618 int64_t Offset = 0;
6619
6620 // Match either (GA) or (GA+C)
6621 if (GA) {
6622 Offset = GA->getOffset();
6623 } else if (Op.getOpcode() == ISD::ADD) {
6624 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
6625 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
6626 if (C && GA) {
6627 Offset = GA->getOffset()+C->getValue();
6628 } else {
6629 C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
6630 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
6631 if (C && GA)
6632 Offset = GA->getOffset()+C->getValue();
6633 else
6634 C = 0, GA = 0;
6635 }
6636 }
6637
6638 if (GA) {
6639 // If addressing this global requires a load (e.g. in PIC mode), we can't
6640 // match.
6641 if (Subtarget->GVRequiresExtraLoad(GA->getGlobal(), getTargetMachine(),
6642 false))
Chris Lattnera531abc2007-08-25 00:47:38 +00006643 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006644
6645 Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
6646 Offset);
Chris Lattnera531abc2007-08-25 00:47:38 +00006647 Result = Op;
6648 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006649 }
6650
6651 // Otherwise, not valid for this mode.
Chris Lattnera531abc2007-08-25 00:47:38 +00006652 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006653 }
6654 }
Chris Lattnera531abc2007-08-25 00:47:38 +00006655
6656 if (Result.Val) {
6657 Ops.push_back(Result);
6658 return;
6659 }
6660 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006661}
6662
6663std::vector<unsigned> X86TargetLowering::
6664getRegClassForInlineAsmConstraint(const std::string &Constraint,
6665 MVT::ValueType VT) const {
6666 if (Constraint.size() == 1) {
6667 // FIXME: not handling fp-stack yet!
6668 switch (Constraint[0]) { // GCC X86 Constraint Letters
6669 default: break; // Unknown constraint letter
6670 case 'A': // EAX/EDX
6671 if (VT == MVT::i32 || VT == MVT::i64)
6672 return make_vector<unsigned>(X86::EAX, X86::EDX, 0);
6673 break;
6674 case 'q': // Q_REGS (GENERAL_REGS in 64-bit mode)
6675 case 'Q': // Q_REGS
6676 if (VT == MVT::i32)
6677 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
6678 else if (VT == MVT::i16)
6679 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
6680 else if (VT == MVT::i8)
Evan Chengf85c10f2007-08-13 23:27:11 +00006681 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Chris Lattner35032592007-11-04 06:51:12 +00006682 else if (VT == MVT::i64)
6683 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
6684 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006685 }
6686 }
6687
6688 return std::vector<unsigned>();
6689}
6690
6691std::pair<unsigned, const TargetRegisterClass*>
6692X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
6693 MVT::ValueType VT) const {
6694 // First, see if this is a constraint that directly corresponds to an LLVM
6695 // register class.
6696 if (Constraint.size() == 1) {
6697 // GCC Constraint Letters
6698 switch (Constraint[0]) {
6699 default: break;
6700 case 'r': // GENERAL_REGS
6701 case 'R': // LEGACY_REGS
6702 case 'l': // INDEX_REGS
6703 if (VT == MVT::i64 && Subtarget->is64Bit())
6704 return std::make_pair(0U, X86::GR64RegisterClass);
6705 if (VT == MVT::i32)
6706 return std::make_pair(0U, X86::GR32RegisterClass);
6707 else if (VT == MVT::i16)
6708 return std::make_pair(0U, X86::GR16RegisterClass);
6709 else if (VT == MVT::i8)
6710 return std::make_pair(0U, X86::GR8RegisterClass);
6711 break;
Chris Lattner267805f2008-03-11 19:06:29 +00006712 case 'f': // FP Stack registers.
6713 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
6714 // value to the correct fpstack register class.
6715 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
6716 return std::make_pair(0U, X86::RFP32RegisterClass);
6717 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
6718 return std::make_pair(0U, X86::RFP64RegisterClass);
6719 return std::make_pair(0U, X86::RFP80RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006720 case 'y': // MMX_REGS if MMX allowed.
6721 if (!Subtarget->hasMMX()) break;
6722 return std::make_pair(0U, X86::VR64RegisterClass);
6723 break;
6724 case 'Y': // SSE_REGS if SSE2 allowed
6725 if (!Subtarget->hasSSE2()) break;
6726 // FALL THROUGH.
6727 case 'x': // SSE_REGS if SSE1 allowed
6728 if (!Subtarget->hasSSE1()) break;
6729
6730 switch (VT) {
6731 default: break;
6732 // Scalar SSE types.
6733 case MVT::f32:
6734 case MVT::i32:
6735 return std::make_pair(0U, X86::FR32RegisterClass);
6736 case MVT::f64:
6737 case MVT::i64:
6738 return std::make_pair(0U, X86::FR64RegisterClass);
6739 // Vector types.
6740 case MVT::v16i8:
6741 case MVT::v8i16:
6742 case MVT::v4i32:
6743 case MVT::v2i64:
6744 case MVT::v4f32:
6745 case MVT::v2f64:
6746 return std::make_pair(0U, X86::VR128RegisterClass);
6747 }
6748 break;
6749 }
6750 }
6751
6752 // Use the default implementation in TargetLowering to convert the register
6753 // constraint into a member of a register class.
6754 std::pair<unsigned, const TargetRegisterClass*> Res;
6755 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
6756
6757 // Not found as a standard register?
6758 if (Res.second == 0) {
6759 // GCC calls "st(0)" just plain "st".
6760 if (StringsEqualNoCase("{st}", Constraint)) {
6761 Res.first = X86::ST0;
Chris Lattner3cfe51b2007-09-24 05:27:37 +00006762 Res.second = X86::RFP80RegisterClass;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006763 }
6764
6765 return Res;
6766 }
6767
6768 // Otherwise, check to see if this is a register class of the wrong value
6769 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
6770 // turn into {ax},{dx}.
6771 if (Res.second->hasType(VT))
6772 return Res; // Correct type already, nothing to do.
6773
6774 // All of the single-register GCC register classes map their values onto
6775 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
6776 // really want an 8-bit or 32-bit register, map to the appropriate register
6777 // class and return the appropriate register.
6778 if (Res.second != X86::GR16RegisterClass)
6779 return Res;
6780
6781 if (VT == MVT::i8) {
6782 unsigned DestReg = 0;
6783 switch (Res.first) {
6784 default: break;
6785 case X86::AX: DestReg = X86::AL; break;
6786 case X86::DX: DestReg = X86::DL; break;
6787 case X86::CX: DestReg = X86::CL; break;
6788 case X86::BX: DestReg = X86::BL; break;
6789 }
6790 if (DestReg) {
6791 Res.first = DestReg;
6792 Res.second = Res.second = X86::GR8RegisterClass;
6793 }
6794 } else if (VT == MVT::i32) {
6795 unsigned DestReg = 0;
6796 switch (Res.first) {
6797 default: break;
6798 case X86::AX: DestReg = X86::EAX; break;
6799 case X86::DX: DestReg = X86::EDX; break;
6800 case X86::CX: DestReg = X86::ECX; break;
6801 case X86::BX: DestReg = X86::EBX; break;
6802 case X86::SI: DestReg = X86::ESI; break;
6803 case X86::DI: DestReg = X86::EDI; break;
6804 case X86::BP: DestReg = X86::EBP; break;
6805 case X86::SP: DestReg = X86::ESP; break;
6806 }
6807 if (DestReg) {
6808 Res.first = DestReg;
6809 Res.second = Res.second = X86::GR32RegisterClass;
6810 }
6811 } else if (VT == MVT::i64) {
6812 unsigned DestReg = 0;
6813 switch (Res.first) {
6814 default: break;
6815 case X86::AX: DestReg = X86::RAX; break;
6816 case X86::DX: DestReg = X86::RDX; break;
6817 case X86::CX: DestReg = X86::RCX; break;
6818 case X86::BX: DestReg = X86::RBX; break;
6819 case X86::SI: DestReg = X86::RSI; break;
6820 case X86::DI: DestReg = X86::RDI; break;
6821 case X86::BP: DestReg = X86::RBP; break;
6822 case X86::SP: DestReg = X86::RSP; break;
6823 }
6824 if (DestReg) {
6825 Res.first = DestReg;
6826 Res.second = Res.second = X86::GR64RegisterClass;
6827 }
6828 }
6829
6830 return Res;
6831}