blob: c59e9cd7723783a17efcdedc964f7b6008dfca2f [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"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/CodeGen/CallingConvLower.h"
29#include "llvm/CodeGen/MachineFrameInfo.h"
30#include "llvm/CodeGen/MachineFunction.h"
31#include "llvm/CodeGen/MachineInstrBuilder.h"
Evan Cheng2e28d622008-02-02 04:07:54 +000032#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner1b989192007-12-31 04:13:23 +000033#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman12a9c082008-02-06 22:27:42 +000034#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036#include "llvm/Support/MathExtras.h"
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +000037#include "llvm/Support/Debug.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038#include "llvm/Target/TargetOptions.h"
Evan Cheng75184a92007-12-11 01:46:18 +000039#include "llvm/ADT/SmallSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040#include "llvm/ADT/StringExtras.h"
Mon P Wang1f292322008-11-23 04:37:22 +000041#include "llvm/Support/CommandLine.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042using namespace llvm;
43
Mon P Wang1f292322008-11-23 04:37:22 +000044static cl::opt<bool>
Mon P Wangba7e48e2008-11-24 02:10:43 +000045DisableMMX("disable-mmx", cl::Hidden, cl::desc("Disable use of MMX"));
Mon P Wang1f292322008-11-23 04:37:22 +000046
Evan Cheng2aea0b42008-04-25 19:11:04 +000047// Forward declarations.
Dan Gohman8181bd12008-07-27 21:46:04 +000048static SDValue getMOVLMask(unsigned NumElems, SelectionDAG &DAG);
Evan Cheng2aea0b42008-04-25 19:11:04 +000049
Dan Gohmanb41dfba2008-05-14 01:58:56 +000050X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051 : TargetLowering(TM) {
52 Subtarget = &TM.getSubtarget<X86Subtarget>();
Dale Johannesene0e0fd02007-09-23 14:52:20 +000053 X86ScalarSSEf64 = Subtarget->hasSSE2();
54 X86ScalarSSEf32 = Subtarget->hasSSE1();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovd0fef972008-09-09 18:22:57 +000056
Chris Lattnerdec9cb52008-01-24 08:07:48 +000057 bool Fast = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058
59 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovd0fef972008-09-09 18:22:57 +000060 TD = getTargetData();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061
62 // Set up the TargetLowering object.
63
64 // X86 is weird, it always uses i8 for shift amounts and setcc results.
65 setShiftAmountType(MVT::i8);
Duncan Sands8cf4a822008-11-23 15:47:28 +000066 setBooleanContents(ZeroOrOneBooleanContent);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067 setSchedulingPreference(SchedulingForRegPressure);
68 setShiftAmountFlavor(Mask); // shl X, 32 == shl X, 0
69 setStackPointerRegisterToSaveRestore(X86StackPtr);
70
71 if (Subtarget->isTargetDarwin()) {
72 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
73 setUseUnderscoreSetJmp(false);
74 setUseUnderscoreLongJmp(false);
75 } else if (Subtarget->isTargetMingw()) {
76 // MS runtime is weird: it exports _setjmp, but longjmp!
77 setUseUnderscoreSetJmp(true);
78 setUseUnderscoreLongJmp(false);
79 } else {
80 setUseUnderscoreSetJmp(true);
81 setUseUnderscoreLongJmp(true);
82 }
83
84 // Set up the register classes.
85 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
86 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
87 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
88 if (Subtarget->is64Bit())
89 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
90
Evan Cheng08c171a2008-10-14 21:26:46 +000091 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000092
Chris Lattner3bc08502008-01-17 19:59:44 +000093 // We don't accept any truncstore of integer registers.
94 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
95 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
96 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
97 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
98 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
Evan Cheng71343822008-10-15 02:05:31 +000099 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
100
101 // SETOEQ and SETUNE require checking two conditions.
102 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
103 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
104 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
105 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
106 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
107 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattner3bc08502008-01-17 19:59:44 +0000108
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
110 // operation.
111 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
112 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
113 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
114
115 if (Subtarget->is64Bit()) {
116 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
117 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
118 } else {
Dale Johannesena359b8b2008-10-21 20:50:01 +0000119 if (X86ScalarSSEf64) {
120 // We have an impenetrably clever algorithm for ui64->double only.
121 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Bill Wendling14a30ef2009-01-17 03:56:04 +0000122
123 // We have faster algorithm for ui32->single only.
124 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Dale Johannesena359b8b2008-10-21 20:50:01 +0000125 } else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
127 }
128
129 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
130 // this operation.
131 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
132 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
133 // SSE has no i16 to fp conversion, only i32
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000134 if (X86ScalarSSEf32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000136 // f32 and f64 cases are Legal, f80 case is not
137 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
138 } else {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
140 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
141 }
142
Dale Johannesen958b08b2007-09-19 23:55:34 +0000143 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
144 // are Legal, f80 is custom lowered.
145 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
146 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147
148 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
149 // this operation.
150 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
151 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
152
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000153 if (X86ScalarSSEf32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000155 // f32 and f64 cases are Legal, f80 case is not
156 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 } else {
158 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
159 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
160 }
161
162 // Handle FP_TO_UINT by promoting the destination to a larger signed
163 // conversion.
164 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
165 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
166 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
167
168 if (Subtarget->is64Bit()) {
169 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
170 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
171 } else {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000172 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 // Expand FP_TO_UINT into a select.
174 // FIXME: We would like to use a Custom expander here eventually to do
175 // the optimal thing for SSE vs. the default expansion in the legalizer.
176 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
177 else
178 // With SSE3 we can use fisttpll to convert to a signed i64.
179 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
180 }
181
182 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000183 if (!X86ScalarSSEf64) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand);
185 setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand);
186 }
187
Dan Gohman8450d862008-02-18 19:34:53 +0000188 // Scalar integer divide and remainder are lowered to use operations that
189 // produce two results, to match the available instructions. This exposes
190 // the two-result form to trivial CSE, which is able to combine x/y and x%y
191 // into a single instruction.
192 //
193 // Scalar integer multiply-high is also lowered to use two-result
194 // operations, to match the available instructions. However, plain multiply
195 // (low) operations are left as Legal, as there are single-result
196 // instructions for this in x86. Using the two-result multiply instructions
197 // when both high and low results are needed must be arranged by dagcombine.
Dan Gohman5a199552007-10-08 18:33:35 +0000198 setOperationAction(ISD::MULHS , MVT::i8 , Expand);
199 setOperationAction(ISD::MULHU , MVT::i8 , Expand);
200 setOperationAction(ISD::SDIV , MVT::i8 , Expand);
201 setOperationAction(ISD::UDIV , MVT::i8 , Expand);
202 setOperationAction(ISD::SREM , MVT::i8 , Expand);
203 setOperationAction(ISD::UREM , MVT::i8 , Expand);
Dan Gohman5a199552007-10-08 18:33:35 +0000204 setOperationAction(ISD::MULHS , MVT::i16 , Expand);
205 setOperationAction(ISD::MULHU , MVT::i16 , Expand);
206 setOperationAction(ISD::SDIV , MVT::i16 , Expand);
207 setOperationAction(ISD::UDIV , MVT::i16 , Expand);
208 setOperationAction(ISD::SREM , MVT::i16 , Expand);
209 setOperationAction(ISD::UREM , MVT::i16 , Expand);
Dan Gohman5a199552007-10-08 18:33:35 +0000210 setOperationAction(ISD::MULHS , MVT::i32 , Expand);
211 setOperationAction(ISD::MULHU , MVT::i32 , Expand);
212 setOperationAction(ISD::SDIV , MVT::i32 , Expand);
213 setOperationAction(ISD::UDIV , MVT::i32 , Expand);
214 setOperationAction(ISD::SREM , MVT::i32 , Expand);
215 setOperationAction(ISD::UREM , MVT::i32 , Expand);
Dan Gohman5a199552007-10-08 18:33:35 +0000216 setOperationAction(ISD::MULHS , MVT::i64 , Expand);
217 setOperationAction(ISD::MULHU , MVT::i64 , Expand);
218 setOperationAction(ISD::SDIV , MVT::i64 , Expand);
219 setOperationAction(ISD::UDIV , MVT::i64 , Expand);
220 setOperationAction(ISD::SREM , MVT::i64 , Expand);
221 setOperationAction(ISD::UREM , MVT::i64 , Expand);
Dan Gohman242a5ba2007-09-25 18:23:27 +0000222
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000223 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
224 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
225 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
226 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227 if (Subtarget->is64Bit())
Christopher Lamb0a7c8662007-08-10 21:48:46 +0000228 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
229 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
230 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000231 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
232 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
Chris Lattnerb7a5cca2008-03-07 06:36:32 +0000233 setOperationAction(ISD::FREM , MVT::f32 , Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 setOperationAction(ISD::FREM , MVT::f64 , Expand);
Chris Lattnerb7a5cca2008-03-07 06:36:32 +0000235 setOperationAction(ISD::FREM , MVT::f80 , Expand);
Dan Gohman819574c2008-01-31 00:41:03 +0000236 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +0000237
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000239 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
240 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000241 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000242 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
243 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000245 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
246 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000247 if (Subtarget->is64Bit()) {
248 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000249 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
250 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251 }
252
253 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
254 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
255
256 // These should be promoted to a larger select which is supported.
257 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
258 setOperationAction(ISD::SELECT , MVT::i8 , Promote);
259 // X86 wants to expand cmov itself.
260 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
261 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
262 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
263 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000264 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000265 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
266 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
267 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
268 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
269 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000270 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000271 if (Subtarget->is64Bit()) {
272 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
273 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
274 }
275 // X86 ret instruction may pop stack.
276 setOperationAction(ISD::RET , MVT::Other, Custom);
Anton Korobeynikov566f9d92008-09-08 21:12:11 +0000277 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278
279 // Darwin ABI issue.
280 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
281 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
282 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
283 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +0000284 if (Subtarget->is64Bit())
285 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Bill Wendlingfef06052008-09-16 21:48:12 +0000286 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000287 if (Subtarget->is64Bit()) {
288 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
289 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
290 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
Bill Wendlingfef06052008-09-16 21:48:12 +0000291 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000292 }
293 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
294 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
295 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
296 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman092014e2008-03-03 22:22:09 +0000297 if (Subtarget->is64Bit()) {
298 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
299 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
300 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
301 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302
Evan Cheng8d51ab32008-03-10 19:38:10 +0000303 if (Subtarget->hasSSE1())
304 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Chengd1d68072008-03-08 00:58:38 +0000305
Andrew Lenharth0531ec52008-02-16 14:46:26 +0000306 if (!Subtarget->hasSSE2())
307 setOperationAction(ISD::MEMBARRIER , MVT::Other, Expand);
308
Mon P Wang078a62d2008-05-05 19:05:59 +0000309 // Expand certain atomics
Dan Gohmanbebba8d2008-12-23 21:37:04 +0000310 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
311 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
312 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
313 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendlingdb2280a2008-08-20 00:28:16 +0000314
Dan Gohmanbebba8d2008-12-23 21:37:04 +0000315 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
316 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
317 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
318 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharth0531ec52008-02-16 14:46:26 +0000319
Dale Johannesenf160d802008-10-02 18:53:47 +0000320 if (!Subtarget->is64Bit()) {
Dan Gohmanbebba8d2008-12-23 21:37:04 +0000321 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
322 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
323 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
324 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
325 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
326 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
327 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesenf160d802008-10-02 18:53:47 +0000328 }
329
Dan Gohman472d12c2008-06-30 20:59:49 +0000330 // Use the default ISD::DBG_STOPPOINT, ISD::DECLARE expansion.
331 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000332 // FIXME - use subtarget debug flags
333 if (!Subtarget->isTargetDarwin() &&
334 !Subtarget->isTargetELF() &&
Dan Gohmanfa607c92008-07-01 00:05:16 +0000335 !Subtarget->isTargetCygMing()) {
336 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
337 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
338 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339
340 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
341 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
342 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
343 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
344 if (Subtarget->is64Bit()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000345 setExceptionPointerRegister(X86::RAX);
346 setExceptionSelectorRegister(X86::RDX);
347 } else {
348 setExceptionPointerRegister(X86::EAX);
349 setExceptionSelectorRegister(X86::EDX);
350 }
Anton Korobeynikov23ca9c52007-09-03 00:36:06 +0000351 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
Anton Korobeynikov566f9d92008-09-08 21:12:11 +0000352 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
353
Duncan Sands7407a9f2007-09-11 14:10:23 +0000354 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsd8455ca2007-07-27 20:02:49 +0000355
Chris Lattner56b941f2008-01-15 21:58:22 +0000356 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +0000357
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000358 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
359 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000361 if (Subtarget->is64Bit()) {
362 setOperationAction(ISD::VAARG , MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000364 } else {
365 setOperationAction(ISD::VAARG , MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000367 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368
369 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
370 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
371 if (Subtarget->is64Bit())
372 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
373 if (Subtarget->isTargetCygMing())
374 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
375 else
376 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
377
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000378 if (X86ScalarSSEf64) {
379 // f32 and f64 use SSE.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000380 // Set up the FP register classes.
381 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
382 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
383
384 // Use ANDPD to simulate FABS.
385 setOperationAction(ISD::FABS , MVT::f64, Custom);
386 setOperationAction(ISD::FABS , MVT::f32, Custom);
387
388 // Use XORP to simulate FNEG.
389 setOperationAction(ISD::FNEG , MVT::f64, Custom);
390 setOperationAction(ISD::FNEG , MVT::f32, Custom);
391
392 // Use ANDPD and ORPD to simulate FCOPYSIGN.
393 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
394 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
395
396 // We don't support sin/cos/fmod
397 setOperationAction(ISD::FSIN , MVT::f64, Expand);
398 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399 setOperationAction(ISD::FSIN , MVT::f32, Expand);
400 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000401
402 // Expand FP immediates into loads from the stack, except for the special
403 // cases we handle.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000404 addLegalFPImmediate(APFloat(+0.0)); // xorpd
405 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Dale Johannesen8f83a6b2007-08-09 01:04:01 +0000406
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000407 // Floating truncations from f80 and extensions to f80 go through memory.
408 // If optimizing, we lie about this though and handle it in
409 // InstructionSelectPreprocess so that dagcombine2 can hack on these.
410 if (Fast) {
411 setConvertAction(MVT::f32, MVT::f80, Expand);
412 setConvertAction(MVT::f64, MVT::f80, Expand);
413 setConvertAction(MVT::f80, MVT::f32, Expand);
414 setConvertAction(MVT::f80, MVT::f64, Expand);
415 }
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000416 } else if (X86ScalarSSEf32) {
417 // Use SSE for f32, x87 for f64.
418 // Set up the FP register classes.
419 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
420 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
421
422 // Use ANDPS to simulate FABS.
423 setOperationAction(ISD::FABS , MVT::f32, Custom);
424
425 // Use XORP to simulate FNEG.
426 setOperationAction(ISD::FNEG , MVT::f32, Custom);
427
428 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
429
430 // Use ANDPS and ORPS to simulate FCOPYSIGN.
431 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
432 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
433
434 // We don't support sin/cos/fmod
435 setOperationAction(ISD::FSIN , MVT::f32, Expand);
436 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000437
Nate Begemane2ba64f2008-02-14 08:57:00 +0000438 // Special cases we handle for FP constants.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000439 addLegalFPImmediate(APFloat(+0.0f)); // xorps
440 addLegalFPImmediate(APFloat(+0.0)); // FLD0
441 addLegalFPImmediate(APFloat(+1.0)); // FLD1
442 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
443 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
444
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000445 // SSE <-> X87 conversions go through memory. If optimizing, we lie about
446 // this though and handle it in InstructionSelectPreprocess so that
447 // dagcombine2 can hack on these.
448 if (Fast) {
449 setConvertAction(MVT::f32, MVT::f64, Expand);
450 setConvertAction(MVT::f32, MVT::f80, Expand);
451 setConvertAction(MVT::f80, MVT::f32, Expand);
452 setConvertAction(MVT::f64, MVT::f32, Expand);
453 // And x87->x87 truncations also.
454 setConvertAction(MVT::f80, MVT::f64, Expand);
455 }
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000456
457 if (!UnsafeFPMath) {
458 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
459 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
460 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000461 } else {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000462 // f32 and f64 in x87.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000463 // Set up the FP register classes.
464 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
465 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
466
467 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
468 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
469 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
470 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen8f83a6b2007-08-09 01:04:01 +0000471
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000472 // Floating truncations go through memory. If optimizing, we lie about
473 // this though and handle it in InstructionSelectPreprocess so that
474 // dagcombine2 can hack on these.
475 if (Fast) {
476 setConvertAction(MVT::f80, MVT::f32, Expand);
477 setConvertAction(MVT::f64, MVT::f32, Expand);
478 setConvertAction(MVT::f80, MVT::f64, Expand);
479 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480
481 if (!UnsafeFPMath) {
482 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
483 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
484 }
Dale Johannesenbbe2b702007-08-30 00:23:21 +0000485 addLegalFPImmediate(APFloat(+0.0)); // FLD0
486 addLegalFPImmediate(APFloat(+1.0)); // FLD1
487 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
488 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000489 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
490 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
491 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
492 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 }
494
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000495 // Long double always uses X87.
496 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000497 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
498 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Chris Lattnerdd867392008-01-27 06:19:31 +0000499 {
Dale Johannesen6e547b42008-10-09 23:00:39 +0000500 bool ignored;
Chris Lattnerdd867392008-01-27 06:19:31 +0000501 APFloat TmpFlt(+0.0);
Dale Johannesen6e547b42008-10-09 23:00:39 +0000502 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
503 &ignored);
Chris Lattnerdd867392008-01-27 06:19:31 +0000504 addLegalFPImmediate(TmpFlt); // FLD0
505 TmpFlt.changeSign();
506 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
507 APFloat TmpFlt2(+1.0);
Dale Johannesen6e547b42008-10-09 23:00:39 +0000508 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
509 &ignored);
Chris Lattnerdd867392008-01-27 06:19:31 +0000510 addLegalFPImmediate(TmpFlt2); // FLD1
511 TmpFlt2.changeSign();
512 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
513 }
514
Dale Johannesen7f1076b2007-09-26 21:10:55 +0000515 if (!UnsafeFPMath) {
516 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
517 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
518 }
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000519
Dan Gohman2f7b1982007-10-11 23:21:31 +0000520 // Always use a library call for pow.
521 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
522 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
523 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
524
Dale Johannesen92b33082008-09-04 00:47:13 +0000525 setOperationAction(ISD::FLOG, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000526 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000527 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000528 setOperationAction(ISD::FEXP, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000529 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
530
Mon P Wanga5a239f2008-11-06 05:31:54 +0000531 // First set operation action for all vector types to either promote
Mon P Wang1448aad2008-10-30 08:01:45 +0000532 // (for widening) or expand (for scalarization). Then we will selectively
533 // turn on ones that can be effectively codegen'd.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
535 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
Duncan Sands92c43912008-06-06 12:08:01 +0000536 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
537 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
538 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
539 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
540 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
541 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
542 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
543 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
544 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
545 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
546 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
547 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
548 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
Gabor Greif825aa892008-08-28 23:19:51 +0000549 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
550 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
551 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
Duncan Sands92c43912008-06-06 12:08:01 +0000552 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
553 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
554 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
555 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
556 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
557 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
558 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
559 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
560 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
561 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
562 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
563 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
564 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
565 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
566 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
567 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
568 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
Dale Johannesen177edff2008-09-10 17:31:40 +0000574 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
576 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
577 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579 }
580
Mon P Wang1f292322008-11-23 04:37:22 +0000581 if (!DisableMMX && Subtarget->hasMMX()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000582 addRegisterClass(MVT::v8i8, X86::VR64RegisterClass);
583 addRegisterClass(MVT::v4i16, X86::VR64RegisterClass);
584 addRegisterClass(MVT::v2i32, X86::VR64RegisterClass);
Dale Johannesena585daf2008-06-24 22:01:44 +0000585 addRegisterClass(MVT::v2f32, X86::VR64RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 addRegisterClass(MVT::v1i64, X86::VR64RegisterClass);
587
588 // FIXME: add MMX packed arithmetics
589
590 setOperationAction(ISD::ADD, MVT::v8i8, Legal);
591 setOperationAction(ISD::ADD, MVT::v4i16, Legal);
592 setOperationAction(ISD::ADD, MVT::v2i32, Legal);
593 setOperationAction(ISD::ADD, MVT::v1i64, Legal);
594
595 setOperationAction(ISD::SUB, MVT::v8i8, Legal);
596 setOperationAction(ISD::SUB, MVT::v4i16, Legal);
597 setOperationAction(ISD::SUB, MVT::v2i32, Legal);
Dale Johannesen6b65c332007-10-30 01:18:38 +0000598 setOperationAction(ISD::SUB, MVT::v1i64, Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000599
600 setOperationAction(ISD::MULHS, MVT::v4i16, Legal);
601 setOperationAction(ISD::MUL, MVT::v4i16, Legal);
602
603 setOperationAction(ISD::AND, MVT::v8i8, Promote);
604 AddPromotedToType (ISD::AND, MVT::v8i8, MVT::v1i64);
605 setOperationAction(ISD::AND, MVT::v4i16, Promote);
606 AddPromotedToType (ISD::AND, MVT::v4i16, MVT::v1i64);
607 setOperationAction(ISD::AND, MVT::v2i32, Promote);
608 AddPromotedToType (ISD::AND, MVT::v2i32, MVT::v1i64);
609 setOperationAction(ISD::AND, MVT::v1i64, Legal);
610
611 setOperationAction(ISD::OR, MVT::v8i8, Promote);
612 AddPromotedToType (ISD::OR, MVT::v8i8, MVT::v1i64);
613 setOperationAction(ISD::OR, MVT::v4i16, Promote);
614 AddPromotedToType (ISD::OR, MVT::v4i16, MVT::v1i64);
615 setOperationAction(ISD::OR, MVT::v2i32, Promote);
616 AddPromotedToType (ISD::OR, MVT::v2i32, MVT::v1i64);
617 setOperationAction(ISD::OR, MVT::v1i64, Legal);
618
619 setOperationAction(ISD::XOR, MVT::v8i8, Promote);
620 AddPromotedToType (ISD::XOR, MVT::v8i8, MVT::v1i64);
621 setOperationAction(ISD::XOR, MVT::v4i16, Promote);
622 AddPromotedToType (ISD::XOR, MVT::v4i16, MVT::v1i64);
623 setOperationAction(ISD::XOR, MVT::v2i32, Promote);
624 AddPromotedToType (ISD::XOR, MVT::v2i32, MVT::v1i64);
625 setOperationAction(ISD::XOR, MVT::v1i64, Legal);
626
627 setOperationAction(ISD::LOAD, MVT::v8i8, Promote);
628 AddPromotedToType (ISD::LOAD, MVT::v8i8, MVT::v1i64);
629 setOperationAction(ISD::LOAD, MVT::v4i16, Promote);
630 AddPromotedToType (ISD::LOAD, MVT::v4i16, MVT::v1i64);
631 setOperationAction(ISD::LOAD, MVT::v2i32, Promote);
632 AddPromotedToType (ISD::LOAD, MVT::v2i32, MVT::v1i64);
Dale Johannesena585daf2008-06-24 22:01:44 +0000633 setOperationAction(ISD::LOAD, MVT::v2f32, Promote);
634 AddPromotedToType (ISD::LOAD, MVT::v2f32, MVT::v1i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000635 setOperationAction(ISD::LOAD, MVT::v1i64, Legal);
636
637 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i8, Custom);
638 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i16, Custom);
639 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i32, Custom);
Dale Johannesena585daf2008-06-24 22:01:44 +0000640 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641 setOperationAction(ISD::BUILD_VECTOR, MVT::v1i64, Custom);
642
643 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
644 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
645 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i32, Custom);
646 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v1i64, Custom);
647
Evan Cheng759fe022008-07-22 18:39:19 +0000648 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000649 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Custom);
650 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000651 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Custom);
Bill Wendlingb9e5f802008-07-20 02:32:23 +0000652
653 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i16, Custom);
Mon P Wang83edba52008-12-12 01:25:51 +0000654
655 setTruncStoreAction(MVT::v8i16, MVT::v8i8, Expand);
656 setOperationAction(ISD::TRUNCATE, MVT::v8i8, Expand);
657 setOperationAction(ISD::SELECT, MVT::v8i8, Promote);
658 setOperationAction(ISD::SELECT, MVT::v4i16, Promote);
659 setOperationAction(ISD::SELECT, MVT::v2i32, Promote);
660 setOperationAction(ISD::SELECT, MVT::v1i64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000661 }
662
663 if (Subtarget->hasSSE1()) {
664 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
665
666 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
667 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
668 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
669 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
670 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
671 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000672 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
673 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
674 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
675 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
676 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Nate Begeman03605a02008-07-17 16:51:19 +0000677 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000678 }
679
680 if (Subtarget->hasSSE2()) {
681 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
682 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
683 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
684 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
685 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
686
687 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
688 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
689 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
690 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Mon P Wang14edb092008-12-18 21:42:19 +0000691 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000692 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
693 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
694 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
695 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
696 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
697 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
698 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
699 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
700 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
701 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
702 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000703
Nate Begeman03605a02008-07-17 16:51:19 +0000704 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
705 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
706 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
707 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begeman061db5f2008-05-12 20:34:32 +0000708
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000709 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
710 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
711 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
712 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000713 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
714
715 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Duncan Sands92c43912008-06-06 12:08:01 +0000716 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
717 MVT VT = (MVT::SimpleValueType)i;
Nate Begemanc16406d2007-12-11 01:41:33 +0000718 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands92c43912008-06-06 12:08:01 +0000719 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begemanc16406d2007-12-11 01:41:33 +0000720 continue;
Duncan Sands92c43912008-06-06 12:08:01 +0000721 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
722 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
723 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000724 }
725 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
726 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
727 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
728 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000729 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000730 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000731 if (Subtarget->is64Bit()) {
732 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
Dale Johannesen2ff963d2007-10-31 00:32:36 +0000733 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000734 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000735
736 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
737 for (unsigned VT = (unsigned)MVT::v16i8; VT != (unsigned)MVT::v2i64; VT++) {
Duncan Sands92c43912008-06-06 12:08:01 +0000738 setOperationAction(ISD::AND, (MVT::SimpleValueType)VT, Promote);
739 AddPromotedToType (ISD::AND, (MVT::SimpleValueType)VT, MVT::v2i64);
740 setOperationAction(ISD::OR, (MVT::SimpleValueType)VT, Promote);
741 AddPromotedToType (ISD::OR, (MVT::SimpleValueType)VT, MVT::v2i64);
742 setOperationAction(ISD::XOR, (MVT::SimpleValueType)VT, Promote);
743 AddPromotedToType (ISD::XOR, (MVT::SimpleValueType)VT, MVT::v2i64);
744 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Promote);
745 AddPromotedToType (ISD::LOAD, (MVT::SimpleValueType)VT, MVT::v2i64);
746 setOperationAction(ISD::SELECT, (MVT::SimpleValueType)VT, Promote);
747 AddPromotedToType (ISD::SELECT, (MVT::SimpleValueType)VT, MVT::v2i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000748 }
749
Chris Lattner3bc08502008-01-17 19:59:44 +0000750 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000751
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000752 // Custom lower v2i64 and v2f64 selects.
753 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
754 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
755 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
756 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Nate Begeman061db5f2008-05-12 20:34:32 +0000757
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000758 }
Nate Begemand77e59e2008-02-11 04:19:36 +0000759
760 if (Subtarget->hasSSE41()) {
761 // FIXME: Do we need to handle scalar-to-vector here?
762 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
763
764 // i8 and i16 vectors are custom , because the source register and source
765 // source memory operand types are not the same width. f32 vectors are
766 // custom since the immediate controlling the insert encodes additional
767 // information.
768 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
769 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangac2a3c52009-01-15 21:10:20 +0000770 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Nate Begemand77e59e2008-02-11 04:19:36 +0000771 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
772
773 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
774 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangac2a3c52009-01-15 21:10:20 +0000775 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
Evan Cheng6c249332008-03-24 21:52:23 +0000776 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begemand77e59e2008-02-11 04:19:36 +0000777
778 if (Subtarget->is64Bit()) {
Nate Begeman4294c1f2008-02-12 22:51:28 +0000779 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
780 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begemand77e59e2008-02-11 04:19:36 +0000781 }
782 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000783
Nate Begeman03605a02008-07-17 16:51:19 +0000784 if (Subtarget->hasSSE42()) {
785 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
786 }
787
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000788 // We want to custom lower some of our intrinsics.
789 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
790
Bill Wendling7e04be62008-12-09 22:08:41 +0000791 // Add/Sub/Mul with overflow operations are custom lowered.
Bill Wendling4c134df2008-11-24 19:21:46 +0000792 setOperationAction(ISD::SADDO, MVT::i32, Custom);
793 setOperationAction(ISD::SADDO, MVT::i64, Custom);
794 setOperationAction(ISD::UADDO, MVT::i32, Custom);
795 setOperationAction(ISD::UADDO, MVT::i64, Custom);
Bill Wendling7e04be62008-12-09 22:08:41 +0000796 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
797 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
798 setOperationAction(ISD::USUBO, MVT::i32, Custom);
799 setOperationAction(ISD::USUBO, MVT::i64, Custom);
800 setOperationAction(ISD::SMULO, MVT::i32, Custom);
801 setOperationAction(ISD::SMULO, MVT::i64, Custom);
802 setOperationAction(ISD::UMULO, MVT::i32, Custom);
803 setOperationAction(ISD::UMULO, MVT::i64, Custom);
Bill Wendling4c134df2008-11-24 19:21:46 +0000804
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000805 // We have target-specific dag combine patterns for the following nodes:
806 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Evan Chenge9b9c672008-05-09 21:53:03 +0000807 setTargetDAGCombine(ISD::BUILD_VECTOR);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000808 setTargetDAGCombine(ISD::SELECT);
Chris Lattnerce84ae42008-02-22 02:09:43 +0000809 setTargetDAGCombine(ISD::STORE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000810
811 computeRegisterProperties();
812
813 // FIXME: These should be based on subtarget info. Plus, the values should
814 // be smaller when we are in optimizing for size mode.
Dan Gohman97fab242008-06-30 21:00:56 +0000815 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
816 maxStoresPerMemcpy = 16; // For @llvm.memcpy -> sequence of stores
817 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818 allowUnalignedMemoryAccesses = true; // x86 supports it!
Evan Cheng45c1edb2008-02-28 00:43:03 +0000819 setPrefLoopAlignment(16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000820}
821
Scott Michel502151f2008-03-10 15:42:14 +0000822
Duncan Sands4a361272009-01-01 15:52:00 +0000823MVT X86TargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel502151f2008-03-10 15:42:14 +0000824 return MVT::i8;
825}
826
827
Evan Cheng5a67b812008-01-23 23:17:41 +0000828/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
829/// the desired ByVal argument alignment.
830static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
831 if (MaxAlign == 16)
832 return;
833 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
834 if (VTy->getBitWidth() == 128)
835 MaxAlign = 16;
Evan Cheng5a67b812008-01-23 23:17:41 +0000836 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
837 unsigned EltAlign = 0;
838 getMaxByValAlign(ATy->getElementType(), EltAlign);
839 if (EltAlign > MaxAlign)
840 MaxAlign = EltAlign;
841 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
842 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
843 unsigned EltAlign = 0;
844 getMaxByValAlign(STy->getElementType(i), EltAlign);
845 if (EltAlign > MaxAlign)
846 MaxAlign = EltAlign;
847 if (MaxAlign == 16)
848 break;
849 }
850 }
851 return;
852}
853
854/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
855/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesena58b8622008-02-08 19:48:20 +0000856/// that contain SSE vectors are placed at 16-byte boundaries while the rest
857/// are at 4-byte boundaries.
Evan Cheng5a67b812008-01-23 23:17:41 +0000858unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng9a6e0fa2008-08-21 21:00:15 +0000859 if (Subtarget->is64Bit()) {
860 // Max of 8 and alignment of type.
Anton Korobeynikovd0fef972008-09-09 18:22:57 +0000861 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng9a6e0fa2008-08-21 21:00:15 +0000862 if (TyAlign > 8)
863 return TyAlign;
864 return 8;
865 }
866
Evan Cheng5a67b812008-01-23 23:17:41 +0000867 unsigned Align = 4;
Dale Johannesena58b8622008-02-08 19:48:20 +0000868 if (Subtarget->hasSSE1())
869 getMaxByValAlign(Ty, Align);
Evan Cheng5a67b812008-01-23 23:17:41 +0000870 return Align;
871}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000872
Evan Cheng8c590372008-05-15 08:39:06 +0000873/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng2f1033e2008-05-15 22:13:02 +0000874/// and store operations as a result of memset, memcpy, and memmove
875/// lowering. It returns MVT::iAny if SelectionDAG should be responsible for
Evan Cheng8c590372008-05-15 08:39:06 +0000876/// determining it.
Duncan Sands92c43912008-06-06 12:08:01 +0000877MVT
Evan Cheng8c590372008-05-15 08:39:06 +0000878X86TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned Align,
879 bool isSrcConst, bool isSrcStr) const {
Chris Lattnerf0bf1062008-10-28 05:49:35 +0000880 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
881 // linux. This is because the stack realignment code can't handle certain
882 // cases like PR2962. This should be removed when PR2962 is fixed.
883 if (Subtarget->getStackAlignment() >= 16) {
884 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE2() && Size >= 16)
885 return MVT::v4i32;
886 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE1() && Size >= 16)
887 return MVT::v4f32;
888 }
Evan Cheng8c590372008-05-15 08:39:06 +0000889 if (Subtarget->is64Bit() && Size >= 8)
890 return MVT::i64;
891 return MVT::i32;
892}
893
894
Evan Cheng6fb06762007-11-09 01:32:10 +0000895/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
896/// jumptable.
Dan Gohman8181bd12008-07-27 21:46:04 +0000897SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Evan Cheng6fb06762007-11-09 01:32:10 +0000898 SelectionDAG &DAG) const {
899 if (usesGlobalOffsetTable())
900 return DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, getPointerTy());
901 if (!Subtarget->isPICStyleRIPRel())
902 return DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy());
903 return Table;
904}
905
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000906//===----------------------------------------------------------------------===//
907// Return Value Calling Convention Implementation
908//===----------------------------------------------------------------------===//
909
910#include "X86GenCallingConv.inc"
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000911
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000912/// LowerRET - Lower an ISD::RET node.
Dan Gohman8181bd12008-07-27 21:46:04 +0000913SDValue X86TargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000914 assert((Op.getNumOperands() & 1) == 1 && "ISD::RET should have odd # args");
915
916 SmallVector<CCValAssign, 16> RVLocs;
917 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
918 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
919 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Gabor Greif1c80d112008-08-28 21:40:38 +0000920 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_X86);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000921
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000922 // If this is the first return lowered for this function, add the regs to the
923 // liveout set for the function.
Chris Lattner1b989192007-12-31 04:13:23 +0000924 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000925 for (unsigned i = 0; i != RVLocs.size(); ++i)
926 if (RVLocs[i].isRegLoc())
Chris Lattner1b989192007-12-31 04:13:23 +0000927 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000928 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000929 SDValue Chain = Op.getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000930
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000931 // Handle tail call return.
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000932 Chain = GetPossiblePreceedingTailCall(Chain, X86ISD::TAILCALL);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000933 if (Chain.getOpcode() == X86ISD::TAILCALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000934 SDValue TailCall = Chain;
935 SDValue TargetAddress = TailCall.getOperand(1);
936 SDValue StackAdjustment = TailCall.getOperand(2);
Chris Lattnerf8decf52008-01-16 05:52:18 +0000937 assert(((TargetAddress.getOpcode() == ISD::Register &&
Arnold Schwaighofer4da27f62008-09-22 14:50:07 +0000938 (cast<RegisterSDNode>(TargetAddress)->getReg() == X86::EAX ||
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000939 cast<RegisterSDNode>(TargetAddress)->getReg() == X86::R9)) ||
Bill Wendlingfef06052008-09-16 21:48:12 +0000940 TargetAddress.getOpcode() == ISD::TargetExternalSymbol ||
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000941 TargetAddress.getOpcode() == ISD::TargetGlobalAddress) &&
942 "Expecting an global address, external symbol, or register");
Chris Lattnerf8decf52008-01-16 05:52:18 +0000943 assert(StackAdjustment.getOpcode() == ISD::Constant &&
944 "Expecting a const value");
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000945
Dan Gohman8181bd12008-07-27 21:46:04 +0000946 SmallVector<SDValue,8> Operands;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000947 Operands.push_back(Chain.getOperand(0));
948 Operands.push_back(TargetAddress);
949 Operands.push_back(StackAdjustment);
950 // Copy registers used by the call. Last operand is a flag so it is not
951 // copied.
Arnold Schwaighofer10202b32007-10-16 09:05:00 +0000952 for (unsigned i=3; i < TailCall.getNumOperands()-1; i++) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000953 Operands.push_back(Chain.getOperand(i));
954 }
Arnold Schwaighofer10202b32007-10-16 09:05:00 +0000955 return DAG.getNode(X86ISD::TC_RETURN, MVT::Other, &Operands[0],
956 Operands.size());
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000957 }
958
959 // Regular return.
Dan Gohman8181bd12008-07-27 21:46:04 +0000960 SDValue Flag;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000961
Dan Gohman8181bd12008-07-27 21:46:04 +0000962 SmallVector<SDValue, 6> RetOps;
Chris Lattnerb56cc342008-03-11 03:23:40 +0000963 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
964 // Operand #1 = Bytes To Pop
965 RetOps.push_back(DAG.getConstant(getBytesToPopOnReturn(), MVT::i16));
966
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000967 // Copy the result values into the output registers.
Chris Lattnere22e1fb2008-03-10 21:08:41 +0000968 for (unsigned i = 0; i != RVLocs.size(); ++i) {
969 CCValAssign &VA = RVLocs[i];
970 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohman8181bd12008-07-27 21:46:04 +0000971 SDValue ValToCopy = Op.getOperand(i*2+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000972
Chris Lattnerb56cc342008-03-11 03:23:40 +0000973 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
974 // the RET instruction and handled by the FP Stackifier.
975 if (RVLocs[i].getLocReg() == X86::ST0 ||
976 RVLocs[i].getLocReg() == X86::ST1) {
977 // If this is a copy from an xmm register to ST(0), use an FPExtend to
978 // change the value to the FP stack register class.
979 if (isScalarFPTypeInSSEReg(RVLocs[i].getValVT()))
980 ValToCopy = DAG.getNode(ISD::FP_EXTEND, MVT::f80, ValToCopy);
981 RetOps.push_back(ValToCopy);
982 // Don't emit a copytoreg.
983 continue;
984 }
Dale Johannesena585daf2008-06-24 22:01:44 +0000985
Chris Lattnere22e1fb2008-03-10 21:08:41 +0000986 Chain = DAG.getCopyToReg(Chain, VA.getLocReg(), ValToCopy, Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000987 Flag = Chain.getValue(1);
988 }
Dan Gohmanb47dabd2008-04-21 23:59:07 +0000989
990 // The x86-64 ABI for returning structs by value requires that we copy
991 // the sret argument into %rax for the return. We saved the argument into
992 // a virtual register in the entry block, so now we copy the value out
993 // and into %rax.
994 if (Subtarget->is64Bit() &&
995 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
996 MachineFunction &MF = DAG.getMachineFunction();
997 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
998 unsigned Reg = FuncInfo->getSRetReturnReg();
999 if (!Reg) {
1000 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1001 FuncInfo->setSRetReturnReg(Reg);
1002 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001003 SDValue Val = DAG.getCopyFromReg(Chain, Reg, getPointerTy());
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001004
1005 Chain = DAG.getCopyToReg(Chain, X86::RAX, Val, Flag);
1006 Flag = Chain.getValue(1);
1007 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008
Chris Lattnerb56cc342008-03-11 03:23:40 +00001009 RetOps[0] = Chain; // Update chain.
1010
1011 // Add the flag if we have it.
Gabor Greif1c80d112008-08-28 21:40:38 +00001012 if (Flag.getNode())
Chris Lattnerb56cc342008-03-11 03:23:40 +00001013 RetOps.push_back(Flag);
1014
1015 return DAG.getNode(X86ISD::RET_FLAG, MVT::Other, &RetOps[0], RetOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001016}
1017
1018
1019/// LowerCallResult - Lower the result values of an ISD::CALL into the
1020/// appropriate copies out of appropriate physical registers. This assumes that
1021/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
1022/// being lowered. The returns a SDNode with the same number of values as the
1023/// ISD::CALL.
1024SDNode *X86TargetLowering::
Dan Gohman705e3f72008-09-13 01:54:27 +00001025LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001026 unsigned CallingConv, SelectionDAG &DAG) {
1027
1028 // Assign locations to each value returned by this call.
1029 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman705e3f72008-09-13 01:54:27 +00001030 bool isVarArg = TheCall->isVarArg();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001031 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
1032 CCInfo.AnalyzeCallResult(TheCall, RetCC_X86);
1033
Dan Gohman8181bd12008-07-27 21:46:04 +00001034 SmallVector<SDValue, 8> ResultVals;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001035
1036 // Copy all of the result registers out of their specified physreg.
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001037 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Duncan Sands92c43912008-06-06 12:08:01 +00001038 MVT CopyVT = RVLocs[i].getValVT();
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001039
1040 // If this is a call to a function that returns an fp value on the floating
1041 // point stack, but where we prefer to use the value in xmm registers, copy
1042 // it out as F80 and use a truncate to move it from fp stack reg to xmm reg.
Mon P Wang73a2c152008-08-21 19:54:16 +00001043 if ((RVLocs[i].getLocReg() == X86::ST0 ||
1044 RVLocs[i].getLocReg() == X86::ST1) &&
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001045 isScalarFPTypeInSSEReg(RVLocs[i].getValVT())) {
1046 CopyVT = MVT::f80;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001047 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001048
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001049 Chain = DAG.getCopyFromReg(Chain, RVLocs[i].getLocReg(),
1050 CopyVT, InFlag).getValue(1);
Dan Gohman8181bd12008-07-27 21:46:04 +00001051 SDValue Val = Chain.getValue(0);
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001052 InFlag = Chain.getValue(2);
Chris Lattner40758732007-12-29 06:41:28 +00001053
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001054 if (CopyVT != RVLocs[i].getValVT()) {
1055 // Round the F80 the right size, which also moves to the appropriate xmm
1056 // register.
1057 Val = DAG.getNode(ISD::FP_ROUND, RVLocs[i].getValVT(), Val,
1058 // This truncation won't change the value.
1059 DAG.getIntPtrConstant(1));
1060 }
Chris Lattnerdec9cb52008-01-24 08:07:48 +00001061
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001062 ResultVals.push_back(Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001063 }
Duncan Sands698842f2008-07-02 17:40:58 +00001064
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001065 // Merge everything together with a MERGE_VALUES node.
1066 ResultVals.push_back(Chain);
Duncan Sands42d7bb82008-12-01 11:41:29 +00001067 return DAG.getNode(ISD::MERGE_VALUES, TheCall->getVTList(), &ResultVals[0],
1068 ResultVals.size()).getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001069}
1070
1071
1072//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001073// C & StdCall & Fast Calling Convention implementation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001074//===----------------------------------------------------------------------===//
1075// StdCall calling convention seems to be standard for many Windows' API
1076// routines and around. It differs from C calling convention just a little:
1077// callee should clean up the stack, not caller. Symbols should be also
1078// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001079// For info on fast calling convention see Fast Calling Convention (tail call)
1080// implementation LowerX86_32FastCCCallTo.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001081
1082/// AddLiveIn - This helper function adds the specified physical register to the
1083/// MachineFunction as a live in value. It also creates a corresponding virtual
1084/// register for it.
1085static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
1086 const TargetRegisterClass *RC) {
1087 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner1b989192007-12-31 04:13:23 +00001088 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
1089 MF.getRegInfo().addLiveIn(PReg, VReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001090 return VReg;
1091}
1092
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001093/// CallIsStructReturn - Determines whether a CALL node uses struct return
1094/// semantics.
Dan Gohman705e3f72008-09-13 01:54:27 +00001095static bool CallIsStructReturn(CallSDNode *TheCall) {
1096 unsigned NumOps = TheCall->getNumArgs();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001097 if (!NumOps)
1098 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001099
Dan Gohman705e3f72008-09-13 01:54:27 +00001100 return TheCall->getArgFlags(0).isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001101}
1102
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001103/// ArgsAreStructReturn - Determines whether a FORMAL_ARGUMENTS node uses struct
1104/// return semantics.
Dan Gohman8181bd12008-07-27 21:46:04 +00001105static bool ArgsAreStructReturn(SDValue Op) {
Gabor Greif1c80d112008-08-28 21:40:38 +00001106 unsigned NumArgs = Op.getNode()->getNumValues() - 1;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001107 if (!NumArgs)
1108 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001109
1110 return cast<ARG_FLAGSSDNode>(Op.getOperand(3))->getArgFlags().isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001111}
1112
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001113/// IsCalleePop - Determines whether a CALL or FORMAL_ARGUMENTS node requires
1114/// the callee to pop its own arguments. Callee pop is necessary to support tail
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001115/// calls.
Dan Gohman705e3f72008-09-13 01:54:27 +00001116bool X86TargetLowering::IsCalleePop(bool IsVarArg, unsigned CallingConv) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001117 if (IsVarArg)
1118 return false;
1119
Dan Gohman705e3f72008-09-13 01:54:27 +00001120 switch (CallingConv) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001121 default:
1122 return false;
1123 case CallingConv::X86_StdCall:
1124 return !Subtarget->is64Bit();
1125 case CallingConv::X86_FastCall:
1126 return !Subtarget->is64Bit();
1127 case CallingConv::Fast:
1128 return PerformTailCallOpt;
1129 }
1130}
1131
Dan Gohman705e3f72008-09-13 01:54:27 +00001132/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1133/// given CallingConvention value.
1134CCAssignFn *X86TargetLowering::CCAssignFnForNode(unsigned CC) const {
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001135 if (Subtarget->is64Bit()) {
Anton Korobeynikov06d49b02008-03-22 20:57:27 +00001136 if (Subtarget->isTargetWin64())
Anton Korobeynikov99bd1882008-03-22 20:37:30 +00001137 return CC_X86_Win64_C;
Evan Chengded8f902008-09-07 09:07:23 +00001138 else if (CC == CallingConv::Fast && PerformTailCallOpt)
1139 return CC_X86_64_TailCall;
1140 else
1141 return CC_X86_64_C;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001142 }
1143
Gordon Henriksen18ace102008-01-05 16:56:59 +00001144 if (CC == CallingConv::X86_FastCall)
1145 return CC_X86_32_FastCall;
Evan Chenga9d15b92008-09-10 18:25:29 +00001146 else if (CC == CallingConv::Fast)
1147 return CC_X86_32_FastCC;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001148 else
1149 return CC_X86_32_C;
1150}
1151
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001152/// NameDecorationForFORMAL_ARGUMENTS - Selects the appropriate decoration to
1153/// apply to a MachineFunction containing a given FORMAL_ARGUMENTS node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001154NameDecorationStyle
Dan Gohman8181bd12008-07-27 21:46:04 +00001155X86TargetLowering::NameDecorationForFORMAL_ARGUMENTS(SDValue Op) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001156 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001157 if (CC == CallingConv::X86_FastCall)
1158 return FastCall;
1159 else if (CC == CallingConv::X86_StdCall)
1160 return StdCall;
1161 return None;
1162}
1163
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001164
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001165/// CallRequiresGOTInRegister - Check whether the call requires the GOT pointer
1166/// in a register before calling.
1167bool X86TargetLowering::CallRequiresGOTPtrInReg(bool Is64Bit, bool IsTailCall) {
1168 return !IsTailCall && !Is64Bit &&
1169 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1170 Subtarget->isPICStyleGOT();
1171}
1172
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001173/// CallRequiresFnAddressInReg - Check whether the call requires the function
1174/// address to be loaded in a register.
1175bool
1176X86TargetLowering::CallRequiresFnAddressInReg(bool Is64Bit, bool IsTailCall) {
1177 return !Is64Bit && IsTailCall &&
1178 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1179 Subtarget->isPICStyleGOT();
1180}
1181
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001182/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1183/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001184/// the specific parameter attribute. The copy will be passed as a byval
1185/// function parameter.
Dan Gohman8181bd12008-07-27 21:46:04 +00001186static SDValue
1187CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Duncan Sandsc93fae32008-03-21 09:14:45 +00001188 ISD::ArgFlagsTy Flags, SelectionDAG &DAG) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001189 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dan Gohmane8b391e2008-04-12 04:36:06 +00001190 return DAG.getMemcpy(Chain, Dst, Src, SizeNode, Flags.getByValAlign(),
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001191 /*AlwaysInline=*/true, NULL, 0, NULL, 0);
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001192}
1193
Dan Gohman8181bd12008-07-27 21:46:04 +00001194SDValue X86TargetLowering::LowerMemArgument(SDValue Op, SelectionDAG &DAG,
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001195 const CCValAssign &VA,
1196 MachineFrameInfo *MFI,
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001197 unsigned CC,
Dan Gohman8181bd12008-07-27 21:46:04 +00001198 SDValue Root, unsigned i) {
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001199 // Create the nodes corresponding to a load from this parameter slot.
Duncan Sandsc93fae32008-03-21 09:14:45 +00001200 ISD::ArgFlagsTy Flags =
1201 cast<ARG_FLAGSSDNode>(Op.getOperand(3 + i))->getArgFlags();
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001202 bool AlwaysUseMutable = (CC==CallingConv::Fast) && PerformTailCallOpt;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001203 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Evan Cheng3e42a522008-01-10 02:24:25 +00001204
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001205 // FIXME: For now, all byval parameter objects are marked mutable. This can be
1206 // changed with more analysis.
1207 // In case of tail call optimization mark all arguments mutable. Since they
1208 // could be overwritten by lowering of arguments in case of a tail call.
Duncan Sands92c43912008-06-06 12:08:01 +00001209 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001210 VA.getLocMemOffset(), isImmutable);
Dan Gohman8181bd12008-07-27 21:46:04 +00001211 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Duncan Sandsc93fae32008-03-21 09:14:45 +00001212 if (Flags.isByVal())
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001213 return FIN;
Dan Gohman12a9c082008-02-06 22:27:42 +00001214 return DAG.getLoad(VA.getValVT(), Root, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001215 PseudoSourceValue::getFixedStack(FI), 0);
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001216}
1217
Dan Gohman8181bd12008-07-27 21:46:04 +00001218SDValue
1219X86TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001220 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001221 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1222
1223 const Function* Fn = MF.getFunction();
1224 if (Fn->hasExternalLinkage() &&
1225 Subtarget->isTargetCygMing() &&
1226 Fn->getName() == "main")
1227 FuncInfo->setForceFramePointer(true);
1228
1229 // Decorate the function name.
1230 FuncInfo->setDecorationStyle(NameDecorationForFORMAL_ARGUMENTS(Op));
1231
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001232 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman8181bd12008-07-27 21:46:04 +00001233 SDValue Root = Op.getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001234 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001235 unsigned CC = MF.getFunction()->getCallingConv();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001236 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001237 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001238
1239 assert(!(isVarArg && CC == CallingConv::Fast) &&
1240 "Var args not supported with calling convention fastcc");
1241
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001242 // Assign locations to all of the incoming arguments.
1243 SmallVector<CCValAssign, 16> ArgLocs;
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001244 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman705e3f72008-09-13 01:54:27 +00001245 CCInfo.AnalyzeFormalArguments(Op.getNode(), CCAssignFnForNode(CC));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001246
Dan Gohman8181bd12008-07-27 21:46:04 +00001247 SmallVector<SDValue, 8> ArgValues;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001248 unsigned LastVal = ~0U;
1249 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1250 CCValAssign &VA = ArgLocs[i];
1251 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1252 // places.
1253 assert(VA.getValNo() != LastVal &&
1254 "Don't support value assigned to multiple locs yet");
1255 LastVal = VA.getValNo();
1256
1257 if (VA.isRegLoc()) {
Duncan Sands92c43912008-06-06 12:08:01 +00001258 MVT RegVT = VA.getLocVT();
Devang Patelf3707e82009-01-05 17:31:22 +00001259 TargetRegisterClass *RC = NULL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001260 if (RegVT == MVT::i32)
1261 RC = X86::GR32RegisterClass;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001262 else if (Is64Bit && RegVT == MVT::i64)
1263 RC = X86::GR64RegisterClass;
Dale Johannesen51552f62008-02-05 20:46:33 +00001264 else if (RegVT == MVT::f32)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001265 RC = X86::FR32RegisterClass;
Dale Johannesen51552f62008-02-05 20:46:33 +00001266 else if (RegVT == MVT::f64)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001267 RC = X86::FR64RegisterClass;
Duncan Sands92c43912008-06-06 12:08:01 +00001268 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengf5af6fe2008-04-25 07:56:45 +00001269 RC = X86::VR128RegisterClass;
Duncan Sands92c43912008-06-06 12:08:01 +00001270 else if (RegVT.isVector()) {
1271 assert(RegVT.getSizeInBits() == 64);
Evan Chengf5af6fe2008-04-25 07:56:45 +00001272 if (!Is64Bit)
1273 RC = X86::VR64RegisterClass; // MMX values are passed in MMXs.
1274 else {
1275 // Darwin calling convention passes MMX values in either GPRs or
1276 // XMMs in x86-64. Other targets pass them in memory.
1277 if (RegVT != MVT::v1i64 && Subtarget->hasSSE2()) {
1278 RC = X86::VR128RegisterClass; // MMX values are passed in XMMs.
1279 RegVT = MVT::v2i64;
1280 } else {
1281 RC = X86::GR64RegisterClass; // v1i64 values are passed in GPRs.
1282 RegVT = MVT::i64;
1283 }
1284 }
1285 } else {
1286 assert(0 && "Unknown argument type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001287 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001288
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001289 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
Dan Gohman8181bd12008-07-27 21:46:04 +00001290 SDValue ArgValue = DAG.getCopyFromReg(Root, Reg, RegVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001291
1292 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1293 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1294 // right size.
1295 if (VA.getLocInfo() == CCValAssign::SExt)
1296 ArgValue = DAG.getNode(ISD::AssertSext, RegVT, ArgValue,
1297 DAG.getValueType(VA.getValVT()));
1298 else if (VA.getLocInfo() == CCValAssign::ZExt)
1299 ArgValue = DAG.getNode(ISD::AssertZext, RegVT, ArgValue,
1300 DAG.getValueType(VA.getValVT()));
1301
1302 if (VA.getLocInfo() != CCValAssign::Full)
1303 ArgValue = DAG.getNode(ISD::TRUNCATE, VA.getValVT(), ArgValue);
1304
Gordon Henriksen18ace102008-01-05 16:56:59 +00001305 // Handle MMX values passed in GPRs.
Evan Chengad6980b2008-04-25 20:13:28 +00001306 if (Is64Bit && RegVT != VA.getLocVT()) {
Duncan Sands92c43912008-06-06 12:08:01 +00001307 if (RegVT.getSizeInBits() == 64 && RC == X86::GR64RegisterClass)
Evan Chengad6980b2008-04-25 20:13:28 +00001308 ArgValue = DAG.getNode(ISD::BIT_CONVERT, VA.getLocVT(), ArgValue);
1309 else if (RC == X86::VR128RegisterClass) {
1310 ArgValue = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i64, ArgValue,
1311 DAG.getConstant(0, MVT::i64));
1312 ArgValue = DAG.getNode(ISD::BIT_CONVERT, VA.getLocVT(), ArgValue);
1313 }
1314 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001315
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001316 ArgValues.push_back(ArgValue);
1317 } else {
1318 assert(VA.isMemLoc());
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001319 ArgValues.push_back(LowerMemArgument(Op, DAG, VA, MFI, CC, Root, i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001320 }
1321 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001322
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001323 // The x86-64 ABI for returning structs by value requires that we copy
1324 // the sret argument into %rax for the return. Save the argument into
1325 // a virtual register so that we can access it from the return points.
1326 if (Is64Bit && DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1327 MachineFunction &MF = DAG.getMachineFunction();
1328 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1329 unsigned Reg = FuncInfo->getSRetReturnReg();
1330 if (!Reg) {
1331 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1332 FuncInfo->setSRetReturnReg(Reg);
1333 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001334 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), Reg, ArgValues[0]);
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001335 Root = DAG.getNode(ISD::TokenFactor, MVT::Other, Copy, Root);
1336 }
1337
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001338 unsigned StackSize = CCInfo.getNextStackOffset();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001339 // align stack specially for tail calls
Evan Chengded8f902008-09-07 09:07:23 +00001340 if (PerformTailCallOpt && CC == CallingConv::Fast)
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001341 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001342
1343 // If the function takes variable number of arguments, make a frame index for
1344 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001345 if (isVarArg) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001346 if (Is64Bit || CC != CallingConv::X86_FastCall) {
1347 VarArgsFrameIndex = MFI->CreateFixedObject(1, StackSize);
1348 }
1349 if (Is64Bit) {
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001350 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1351
1352 // FIXME: We should really autogenerate these arrays
1353 static const unsigned GPR64ArgRegsWin64[] = {
1354 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen18ace102008-01-05 16:56:59 +00001355 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001356 static const unsigned XMMArgRegsWin64[] = {
1357 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3
1358 };
1359 static const unsigned GPR64ArgRegs64Bit[] = {
1360 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1361 };
1362 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001363 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1364 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1365 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001366 const unsigned *GPR64ArgRegs, *XMMArgRegs;
1367
1368 if (IsWin64) {
1369 TotalNumIntRegs = 4; TotalNumXMMRegs = 4;
1370 GPR64ArgRegs = GPR64ArgRegsWin64;
1371 XMMArgRegs = XMMArgRegsWin64;
1372 } else {
1373 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1374 GPR64ArgRegs = GPR64ArgRegs64Bit;
1375 XMMArgRegs = XMMArgRegs64Bit;
1376 }
1377 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1378 TotalNumIntRegs);
1379 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs,
1380 TotalNumXMMRegs);
1381
Gordon Henriksen18ace102008-01-05 16:56:59 +00001382 // For X86-64, if there are vararg parameters that are passed via
1383 // registers, then we must store them to their spots on the stack so they
1384 // may be loaded by deferencing the result of va_next.
1385 VarArgsGPOffset = NumIntRegs * 8;
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001386 VarArgsFPOffset = TotalNumIntRegs * 8 + NumXMMRegs * 16;
1387 RegSaveFrameIndex = MFI->CreateStackObject(TotalNumIntRegs * 8 +
1388 TotalNumXMMRegs * 16, 16);
1389
Gordon Henriksen18ace102008-01-05 16:56:59 +00001390 // Store the integer parameter registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00001391 SmallVector<SDValue, 8> MemOps;
1392 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
1393 SDValue FIN = DAG.getNode(ISD::ADD, getPointerTy(), RSFIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001394 DAG.getIntPtrConstant(VarArgsGPOffset));
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001395 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001396 unsigned VReg = AddLiveIn(MF, GPR64ArgRegs[NumIntRegs],
1397 X86::GR64RegisterClass);
Dan Gohman8181bd12008-07-27 21:46:04 +00001398 SDValue Val = DAG.getCopyFromReg(Root, VReg, MVT::i64);
1399 SDValue Store =
Dan Gohman12a9c082008-02-06 22:27:42 +00001400 DAG.getStore(Val.getValue(1), Val, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001401 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001402 MemOps.push_back(Store);
1403 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001404 DAG.getIntPtrConstant(8));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001405 }
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001406
Gordon Henriksen18ace102008-01-05 16:56:59 +00001407 // Now store the XMM (fp + vector) parameter registers.
1408 FIN = DAG.getNode(ISD::ADD, getPointerTy(), RSFIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001409 DAG.getIntPtrConstant(VarArgsFPOffset));
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001410 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001411 unsigned VReg = AddLiveIn(MF, XMMArgRegs[NumXMMRegs],
1412 X86::VR128RegisterClass);
Dan Gohman8181bd12008-07-27 21:46:04 +00001413 SDValue Val = DAG.getCopyFromReg(Root, VReg, MVT::v4f32);
1414 SDValue Store =
Dan Gohman12a9c082008-02-06 22:27:42 +00001415 DAG.getStore(Val.getValue(1), Val, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001416 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001417 MemOps.push_back(Store);
1418 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001419 DAG.getIntPtrConstant(16));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001420 }
1421 if (!MemOps.empty())
1422 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
1423 &MemOps[0], MemOps.size());
1424 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001425 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001426
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001427 ArgValues.push_back(Root);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001428
Gordon Henriksen18ace102008-01-05 16:56:59 +00001429 // Some CCs need callee pop.
Dan Gohman705e3f72008-09-13 01:54:27 +00001430 if (IsCalleePop(isVarArg, CC)) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001431 BytesToPopOnReturn = StackSize; // Callee pops everything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001432 BytesCallerReserves = 0;
1433 } else {
1434 BytesToPopOnReturn = 0; // Callee pops nothing.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001435 // If this is an sret function, the return should pop the hidden pointer.
Evan Chenga9d15b92008-09-10 18:25:29 +00001436 if (!Is64Bit && CC != CallingConv::Fast && ArgsAreStructReturn(Op))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001437 BytesToPopOnReturn = 4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001438 BytesCallerReserves = StackSize;
1439 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001440
Gordon Henriksen18ace102008-01-05 16:56:59 +00001441 if (!Is64Bit) {
1442 RegSaveFrameIndex = 0xAAAAAAA; // RegSaveFrameIndex is X86-64 only.
1443 if (CC == CallingConv::X86_FastCall)
1444 VarArgsFrameIndex = 0xAAAAAAA; // fastcc functions can't have varargs.
1445 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001446
Anton Korobeynikove844e472007-08-15 17:12:32 +00001447 FuncInfo->setBytesToPopOnReturn(BytesToPopOnReturn);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001448
1449 // Return the new list of results.
Duncan Sands42d7bb82008-12-01 11:41:29 +00001450 return DAG.getNode(ISD::MERGE_VALUES, Op.getNode()->getVTList(),
1451 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001452}
1453
Dan Gohman8181bd12008-07-27 21:46:04 +00001454SDValue
Dan Gohman705e3f72008-09-13 01:54:27 +00001455X86TargetLowering::LowerMemOpCallTo(CallSDNode *TheCall, SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00001456 const SDValue &StackPtr,
Evan Chengbc077bf2008-01-10 00:09:10 +00001457 const CCValAssign &VA,
Dan Gohman8181bd12008-07-27 21:46:04 +00001458 SDValue Chain,
Dan Gohman705e3f72008-09-13 01:54:27 +00001459 SDValue Arg, ISD::ArgFlagsTy Flags) {
Dan Gohman1190f3a2008-02-07 16:28:05 +00001460 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman8181bd12008-07-27 21:46:04 +00001461 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Evan Chengbc077bf2008-01-10 00:09:10 +00001462 PtrOff = DAG.getNode(ISD::ADD, getPointerTy(), StackPtr, PtrOff);
Duncan Sandsc93fae32008-03-21 09:14:45 +00001463 if (Flags.isByVal()) {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001464 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG);
Evan Chengbc077bf2008-01-10 00:09:10 +00001465 }
Dan Gohman1190f3a2008-02-07 16:28:05 +00001466 return DAG.getStore(Chain, Arg, PtrOff,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001467 PseudoSourceValue::getStack(), LocMemOffset);
Evan Chengbc077bf2008-01-10 00:09:10 +00001468}
1469
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001470/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001471/// optimization is performed and it is required.
Dan Gohman8181bd12008-07-27 21:46:04 +00001472SDValue
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001473X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00001474 SDValue &OutRetAddr,
1475 SDValue Chain,
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001476 bool IsTailCall,
1477 bool Is64Bit,
1478 int FPDiff) {
1479 if (!IsTailCall || FPDiff==0) return Chain;
1480
1481 // Adjust the Return address stack slot.
Duncan Sands92c43912008-06-06 12:08:01 +00001482 MVT VT = getPointerTy();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001483 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001484
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001485 // Load the "old" Return address.
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001486 OutRetAddr = DAG.getLoad(VT, Chain, OutRetAddr, NULL, 0);
Gabor Greif1c80d112008-08-28 21:40:38 +00001487 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001488}
1489
1490/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1491/// optimization is performed and it is required (FPDiff!=0).
Dan Gohman8181bd12008-07-27 21:46:04 +00001492static SDValue
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001493EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman8181bd12008-07-27 21:46:04 +00001494 SDValue Chain, SDValue RetAddrFrIdx,
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001495 bool Is64Bit, int FPDiff) {
1496 // Store the return address to the appropriate stack slot.
1497 if (!FPDiff) return Chain;
1498 // Calculate the new stack slot for the return address.
1499 int SlotSize = Is64Bit ? 8 : 4;
1500 int NewReturnAddrFI =
1501 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize);
Duncan Sands92c43912008-06-06 12:08:01 +00001502 MVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman8181bd12008-07-27 21:46:04 +00001503 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001504 Chain = DAG.getStore(Chain, RetAddrFrIdx, NewRetAddrFrIdx,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001505 PseudoSourceValue::getFixedStack(NewReturnAddrFI), 0);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001506 return Chain;
1507}
1508
Dan Gohman8181bd12008-07-27 21:46:04 +00001509SDValue X86TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001510 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman705e3f72008-09-13 01:54:27 +00001511 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
1512 SDValue Chain = TheCall->getChain();
1513 unsigned CC = TheCall->getCallingConv();
1514 bool isVarArg = TheCall->isVarArg();
1515 bool IsTailCall = TheCall->isTailCall() &&
1516 CC == CallingConv::Fast && PerformTailCallOpt;
1517 SDValue Callee = TheCall->getCallee();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001518 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman705e3f72008-09-13 01:54:27 +00001519 bool IsStructRet = CallIsStructReturn(TheCall);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001520
1521 assert(!(isVarArg && CC == CallingConv::Fast) &&
1522 "Var args not supported with calling convention fastcc");
1523
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001524 // Analyze operands of the call, assigning locations to each operand.
1525 SmallVector<CCValAssign, 16> ArgLocs;
1526 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman705e3f72008-09-13 01:54:27 +00001527 CCInfo.AnalyzeCallOperands(TheCall, CCAssignFnForNode(CC));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001528
1529 // Get a count of how many bytes are to be pushed on the stack.
1530 unsigned NumBytes = CCInfo.getNextStackOffset();
Arnold Schwaighofere91fdbf2008-09-11 20:28:43 +00001531 if (PerformTailCallOpt && CC == CallingConv::Fast)
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001532 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001533
Gordon Henriksen18ace102008-01-05 16:56:59 +00001534 int FPDiff = 0;
1535 if (IsTailCall) {
1536 // Lower arguments at fp - stackoffset + fpdiff.
1537 unsigned NumBytesCallerPushed =
1538 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1539 FPDiff = NumBytesCallerPushed - NumBytes;
1540
1541 // Set the delta of movement of the returnaddr stackslot.
1542 // But only set if delta is greater than previous delta.
1543 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1544 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1545 }
1546
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001547 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001548
Dan Gohman8181bd12008-07-27 21:46:04 +00001549 SDValue RetAddrFrIdx;
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001550 // Load return adress for tail calls.
1551 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, IsTailCall, Is64Bit,
1552 FPDiff);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001553
Dan Gohman8181bd12008-07-27 21:46:04 +00001554 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1555 SmallVector<SDValue, 8> MemOpChains;
1556 SDValue StackPtr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001557
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001558 // Walk the register/memloc assignments, inserting copies/loads. In the case
1559 // of tail call optimization arguments are handle later.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001560 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1561 CCValAssign &VA = ArgLocs[i];
Dan Gohman705e3f72008-09-13 01:54:27 +00001562 SDValue Arg = TheCall->getArg(i);
1563 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
1564 bool isByVal = Flags.isByVal();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001565
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001566 // Promote the value if needed.
1567 switch (VA.getLocInfo()) {
1568 default: assert(0 && "Unknown loc info!");
1569 case CCValAssign::Full: break;
1570 case CCValAssign::SExt:
1571 Arg = DAG.getNode(ISD::SIGN_EXTEND, VA.getLocVT(), Arg);
1572 break;
1573 case CCValAssign::ZExt:
1574 Arg = DAG.getNode(ISD::ZERO_EXTEND, VA.getLocVT(), Arg);
1575 break;
1576 case CCValAssign::AExt:
1577 Arg = DAG.getNode(ISD::ANY_EXTEND, VA.getLocVT(), Arg);
1578 break;
1579 }
1580
1581 if (VA.isRegLoc()) {
Evan Cheng2aea0b42008-04-25 19:11:04 +00001582 if (Is64Bit) {
Duncan Sands92c43912008-06-06 12:08:01 +00001583 MVT RegVT = VA.getLocVT();
1584 if (RegVT.isVector() && RegVT.getSizeInBits() == 64)
Evan Cheng2aea0b42008-04-25 19:11:04 +00001585 switch (VA.getLocReg()) {
1586 default:
1587 break;
1588 case X86::RDI: case X86::RSI: case X86::RDX: case X86::RCX:
1589 case X86::R8: {
1590 // Special case: passing MMX values in GPR registers.
1591 Arg = DAG.getNode(ISD::BIT_CONVERT, MVT::i64, Arg);
1592 break;
1593 }
1594 case X86::XMM0: case X86::XMM1: case X86::XMM2: case X86::XMM3:
1595 case X86::XMM4: case X86::XMM5: case X86::XMM6: case X86::XMM7: {
1596 // Special case: passing MMX values in XMM registers.
1597 Arg = DAG.getNode(ISD::BIT_CONVERT, MVT::i64, Arg);
1598 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v2i64, Arg);
1599 Arg = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v2i64,
1600 DAG.getNode(ISD::UNDEF, MVT::v2i64), Arg,
1601 getMOVLMask(2, DAG));
1602 break;
1603 }
1604 }
1605 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001606 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1607 } else {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001608 if (!IsTailCall || (IsTailCall && isByVal)) {
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001609 assert(VA.isMemLoc());
Gabor Greif1c80d112008-08-28 21:40:38 +00001610 if (StackPtr.getNode() == 0)
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001611 StackPtr = DAG.getCopyFromReg(Chain, X86StackPtr, getPointerTy());
1612
Dan Gohman705e3f72008-09-13 01:54:27 +00001613 MemOpChains.push_back(LowerMemOpCallTo(TheCall, DAG, StackPtr, VA,
1614 Chain, Arg, Flags));
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001615 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001616 }
1617 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001618
1619 if (!MemOpChains.empty())
1620 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
1621 &MemOpChains[0], MemOpChains.size());
1622
1623 // Build a sequence of copy-to-reg nodes chained together with token chain
1624 // and flag operands which copy the outgoing args into registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00001625 SDValue InFlag;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001626 // Tail call byval lowering might overwrite argument registers so in case of
1627 // tail call optimization the copies to registers are lowered later.
1628 if (!IsTailCall)
1629 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1630 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second,
1631 InFlag);
1632 InFlag = Chain.getValue(1);
1633 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001634
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001635 // ELF / PIC requires GOT in the EBX register before function calls via PLT
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001636 // GOT pointer.
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001637 if (CallRequiresGOTPtrInReg(Is64Bit, IsTailCall)) {
1638 Chain = DAG.getCopyToReg(Chain, X86::EBX,
1639 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
1640 InFlag);
1641 InFlag = Chain.getValue(1);
1642 }
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001643 // If we are tail calling and generating PIC/GOT style code load the address
1644 // of the callee into ecx. The value in ecx is used as target of the tail
1645 // jump. This is done to circumvent the ebx/callee-saved problem for tail
1646 // calls on PIC/GOT architectures. Normally we would just put the address of
1647 // GOT into ebx and then call target@PLT. But for tail callss ebx would be
1648 // restored (since ebx is callee saved) before jumping to the target@PLT.
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001649 if (CallRequiresFnAddressInReg(Is64Bit, IsTailCall)) {
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001650 // Note: The actual moving to ecx is done further down.
1651 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
Evan Cheng7f250d62008-09-24 00:05:32 +00001652 if (G && !G->getGlobal()->hasHiddenVisibility() &&
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001653 !G->getGlobal()->hasProtectedVisibility())
1654 Callee = LowerGlobalAddress(Callee, DAG);
Bill Wendlingfef06052008-09-16 21:48:12 +00001655 else if (isa<ExternalSymbolSDNode>(Callee))
1656 Callee = LowerExternalSymbol(Callee,DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001657 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001658
Gordon Henriksen18ace102008-01-05 16:56:59 +00001659 if (Is64Bit && isVarArg) {
1660 // From AMD64 ABI document:
1661 // For calls that may call functions that use varargs or stdargs
1662 // (prototype-less calls or calls to functions containing ellipsis (...) in
1663 // the declaration) %al is used as hidden argument to specify the number
1664 // of SSE registers used. The contents of %al do not need to match exactly
1665 // the number of registers, but must be an ubound on the number of SSE
1666 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001667
1668 // FIXME: Verify this on Win64
Gordon Henriksen18ace102008-01-05 16:56:59 +00001669 // Count the number of XMM registers allocated.
1670 static const unsigned XMMArgRegs[] = {
1671 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1672 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1673 };
1674 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
1675
1676 Chain = DAG.getCopyToReg(Chain, X86::AL,
1677 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
1678 InFlag = Chain.getValue(1);
1679 }
1680
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001681
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001682 // For tail calls lower the arguments to the 'real' stack slot.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001683 if (IsTailCall) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001684 SmallVector<SDValue, 8> MemOpChains2;
1685 SDValue FIN;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001686 int FI = 0;
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001687 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman8181bd12008-07-27 21:46:04 +00001688 InFlag = SDValue();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001689 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1690 CCValAssign &VA = ArgLocs[i];
1691 if (!VA.isRegLoc()) {
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001692 assert(VA.isMemLoc());
Dan Gohman705e3f72008-09-13 01:54:27 +00001693 SDValue Arg = TheCall->getArg(i);
1694 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001695 // Create frame index.
1696 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands92c43912008-06-06 12:08:01 +00001697 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001698 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001699 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001700
Duncan Sandsc93fae32008-03-21 09:14:45 +00001701 if (Flags.isByVal()) {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001702 // Copy relative to framepointer.
Dan Gohman8181bd12008-07-27 21:46:04 +00001703 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greif1c80d112008-08-28 21:40:38 +00001704 if (StackPtr.getNode() == 0)
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001705 StackPtr = DAG.getCopyFromReg(Chain, X86StackPtr, getPointerTy());
1706 Source = DAG.getNode(ISD::ADD, getPointerTy(), StackPtr, Source);
1707
1708 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN, Chain,
Evan Cheng5817a0e2008-01-12 01:08:07 +00001709 Flags, DAG));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001710 } else {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001711 // Store relative to framepointer.
Dan Gohman12a9c082008-02-06 22:27:42 +00001712 MemOpChains2.push_back(
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001713 DAG.getStore(Chain, Arg, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001714 PseudoSourceValue::getFixedStack(FI), 0));
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001715 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001716 }
1717 }
1718
1719 if (!MemOpChains2.empty())
1720 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
Arnold Schwaighoferdfb21302008-01-11 14:34:56 +00001721 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001722
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001723 // Copy arguments to their registers.
1724 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1725 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second,
1726 InFlag);
1727 InFlag = Chain.getValue(1);
1728 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001729 InFlag =SDValue();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001730
Gordon Henriksen18ace102008-01-05 16:56:59 +00001731 // Store the return address to the appropriate stack slot.
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001732 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
1733 FPDiff);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001734 }
1735
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001736 // If the callee is a GlobalAddress node (quite common, every direct call is)
1737 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
1738 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1739 // We should use extra load for direct calls to dllimported functions in
1740 // non-JIT mode.
Evan Cheng1f282202008-07-16 01:34:02 +00001741 if (!Subtarget->GVRequiresExtraLoad(G->getGlobal(),
1742 getTargetMachine(), true))
Dan Gohman36322c72008-10-18 02:06:02 +00001743 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy(),
1744 G->getOffset());
Bill Wendlingfef06052008-09-16 21:48:12 +00001745 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1746 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001747 } else if (IsTailCall) {
Arnold Schwaighofer4da27f62008-09-22 14:50:07 +00001748 unsigned Opc = Is64Bit ? X86::R9 : X86::EAX;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001749
1750 Chain = DAG.getCopyToReg(Chain,
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001751 DAG.getRegister(Opc, getPointerTy()),
Gordon Henriksen18ace102008-01-05 16:56:59 +00001752 Callee,InFlag);
1753 Callee = DAG.getRegister(Opc, getPointerTy());
1754 // Add register as live out.
1755 DAG.getMachineFunction().getRegInfo().addLiveOut(Opc);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001756 }
1757
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001758 // Returns a chain & a flag for retval copy to use.
1759 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00001760 SmallVector<SDValue, 8> Ops;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001761
1762 if (IsTailCall) {
1763 Ops.push_back(Chain);
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001764 Ops.push_back(DAG.getIntPtrConstant(NumBytes, true));
1765 Ops.push_back(DAG.getIntPtrConstant(0, true));
Gabor Greif1c80d112008-08-28 21:40:38 +00001766 if (InFlag.getNode())
Gordon Henriksen18ace102008-01-05 16:56:59 +00001767 Ops.push_back(InFlag);
1768 Chain = DAG.getNode(ISD::CALLSEQ_END, NodeTys, &Ops[0], Ops.size());
1769 InFlag = Chain.getValue(1);
1770
1771 // Returns a chain & a flag for retval copy to use.
1772 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1773 Ops.clear();
1774 }
1775
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001776 Ops.push_back(Chain);
1777 Ops.push_back(Callee);
1778
Gordon Henriksen18ace102008-01-05 16:56:59 +00001779 if (IsTailCall)
1780 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001781
Gordon Henriksen18ace102008-01-05 16:56:59 +00001782 // Add argument registers to the end of the list so that they are known live
1783 // into the call.
Evan Chenge14fc242008-01-07 23:08:23 +00001784 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1785 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1786 RegsToPass[i].second.getValueType()));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001787
Evan Cheng8ba45e62008-03-18 23:36:35 +00001788 // Add an implicit use GOT pointer in EBX.
1789 if (!IsTailCall && !Is64Bit &&
1790 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1791 Subtarget->isPICStyleGOT())
1792 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
1793
1794 // Add an implicit use of AL for x86 vararg functions.
1795 if (Is64Bit && isVarArg)
1796 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
1797
Gabor Greif1c80d112008-08-28 21:40:38 +00001798 if (InFlag.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001799 Ops.push_back(InFlag);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001800
Gordon Henriksen18ace102008-01-05 16:56:59 +00001801 if (IsTailCall) {
Gabor Greif1c80d112008-08-28 21:40:38 +00001802 assert(InFlag.getNode() &&
Gordon Henriksen18ace102008-01-05 16:56:59 +00001803 "Flag must be set. Depend on flag being set in LowerRET");
1804 Chain = DAG.getNode(X86ISD::TAILCALL,
Dan Gohman705e3f72008-09-13 01:54:27 +00001805 TheCall->getVTList(), &Ops[0], Ops.size());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001806
Gabor Greif1c80d112008-08-28 21:40:38 +00001807 return SDValue(Chain.getNode(), Op.getResNo());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001808 }
1809
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001810 Chain = DAG.getNode(X86ISD::CALL, NodeTys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001811 InFlag = Chain.getValue(1);
1812
1813 // Create the CALLSEQ_END node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001814 unsigned NumBytesForCalleeToPush;
Dan Gohman705e3f72008-09-13 01:54:27 +00001815 if (IsCalleePop(isVarArg, CC))
Gordon Henriksen18ace102008-01-05 16:56:59 +00001816 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Evan Chenga9d15b92008-09-10 18:25:29 +00001817 else if (!Is64Bit && CC != CallingConv::Fast && IsStructRet)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001818 // If this is is a call to a struct-return function, the callee
1819 // pops the hidden struct pointer, so we have to push it back.
1820 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001821 NumBytesForCalleeToPush = 4;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001822 else
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001823 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001824
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001825 // Returns a flag for retval copy to use.
Bill Wendling22f8deb2007-11-13 00:44:25 +00001826 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001827 DAG.getIntPtrConstant(NumBytes, true),
1828 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
1829 true),
Bill Wendling22f8deb2007-11-13 00:44:25 +00001830 InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001831 InFlag = Chain.getValue(1);
1832
1833 // Handle result values, copying them out of physregs into vregs that we
1834 // return.
Dan Gohman705e3f72008-09-13 01:54:27 +00001835 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG),
Gabor Greif825aa892008-08-28 23:19:51 +00001836 Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001837}
1838
1839
1840//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001841// Fast Calling Convention (tail call) implementation
1842//===----------------------------------------------------------------------===//
1843
1844// Like std call, callee cleans arguments, convention except that ECX is
1845// reserved for storing the tail called function address. Only 2 registers are
1846// free for argument passing (inreg). Tail call optimization is performed
1847// provided:
1848// * tailcallopt is enabled
1849// * caller/callee are fastcc
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001850// On X86_64 architecture with GOT-style position independent code only local
1851// (within module) calls are supported at the moment.
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00001852// To keep the stack aligned according to platform abi the function
1853// GetAlignedArgumentStackSize ensures that argument delta is always multiples
1854// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001855// If a tail called function callee has more arguments than the caller the
1856// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00001857// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001858// original REtADDR, but before the saved framepointer or the spilled registers
1859// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
1860// stack layout:
1861// arg1
1862// arg2
1863// RETADDR
1864// [ new RETADDR
1865// move area ]
1866// (possible EBP)
1867// ESI
1868// EDI
1869// local1 ..
1870
1871/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
1872/// for a 16 byte align requirement.
1873unsigned X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
1874 SelectionDAG& DAG) {
Evan Chengded8f902008-09-07 09:07:23 +00001875 MachineFunction &MF = DAG.getMachineFunction();
1876 const TargetMachine &TM = MF.getTarget();
1877 const TargetFrameInfo &TFI = *TM.getFrameInfo();
1878 unsigned StackAlignment = TFI.getStackAlignment();
1879 uint64_t AlignMask = StackAlignment - 1;
1880 int64_t Offset = StackSize;
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00001881 uint64_t SlotSize = TD->getPointerSize();
Evan Chengded8f902008-09-07 09:07:23 +00001882 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
1883 // Number smaller than 12 so just add the difference.
1884 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
1885 } else {
1886 // Mask out lower bits, add stackalignment once plus the 12 bytes.
1887 Offset = ((~AlignMask) & Offset) + StackAlignment +
1888 (StackAlignment-SlotSize);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001889 }
Evan Chengded8f902008-09-07 09:07:23 +00001890 return Offset;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001891}
1892
1893/// IsEligibleForTailCallElimination - Check to see whether the next instruction
Evan Chenge7a87392007-11-02 01:26:22 +00001894/// following the call is a return. A function is eligible if caller/callee
1895/// calling conventions match, currently only fastcc supports tail calls, and
1896/// the function CALL is immediatly followed by a RET.
Dan Gohman705e3f72008-09-13 01:54:27 +00001897bool X86TargetLowering::IsEligibleForTailCallOptimization(CallSDNode *TheCall,
Dan Gohman8181bd12008-07-27 21:46:04 +00001898 SDValue Ret,
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001899 SelectionDAG& DAG) const {
Evan Chenge7a87392007-11-02 01:26:22 +00001900 if (!PerformTailCallOpt)
1901 return false;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001902
Dan Gohman705e3f72008-09-13 01:54:27 +00001903 if (CheckTailCallReturnConstraints(TheCall, Ret)) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001904 MachineFunction &MF = DAG.getMachineFunction();
1905 unsigned CallerCC = MF.getFunction()->getCallingConv();
Dan Gohman705e3f72008-09-13 01:54:27 +00001906 unsigned CalleeCC= TheCall->getCallingConv();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001907 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
Dan Gohman705e3f72008-09-13 01:54:27 +00001908 SDValue Callee = TheCall->getCallee();
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001909 // On x86/32Bit PIC/GOT tail calls are supported.
Evan Chenge7a87392007-11-02 01:26:22 +00001910 if (getTargetMachine().getRelocationModel() != Reloc::PIC_ ||
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001911 !Subtarget->isPICStyleGOT()|| !Subtarget->is64Bit())
Evan Chenge7a87392007-11-02 01:26:22 +00001912 return true;
1913
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001914 // Can only do local tail calls (in same module, hidden or protected) on
1915 // x86_64 PIC/GOT at the moment.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001916 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1917 return G->getGlobal()->hasHiddenVisibility()
1918 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001919 }
1920 }
Evan Chenge7a87392007-11-02 01:26:22 +00001921
1922 return false;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001923}
1924
Dan Gohmanca4857a2008-09-03 23:12:08 +00001925FastISel *
1926X86TargetLowering::createFastISel(MachineFunction &mf,
Dan Gohman76dd96e2008-09-23 21:53:34 +00001927 MachineModuleInfo *mmo,
Devang Patelfcf1c752009-01-13 00:35:13 +00001928 DwarfWriter *dw,
Dan Gohmanca4857a2008-09-03 23:12:08 +00001929 DenseMap<const Value *, unsigned> &vm,
1930 DenseMap<const BasicBlock *,
Dan Gohmand6211a72008-09-10 20:11:02 +00001931 MachineBasicBlock *> &bm,
Dan Gohman9dd43582008-10-14 23:54:11 +00001932 DenseMap<const AllocaInst *, int> &am
1933#ifndef NDEBUG
1934 , SmallSet<Instruction*, 8> &cil
1935#endif
1936 ) {
Devang Patelfcf1c752009-01-13 00:35:13 +00001937 return X86::createFastISel(mf, mmo, dw, vm, bm, am
Dan Gohman9dd43582008-10-14 23:54:11 +00001938#ifndef NDEBUG
1939 , cil
1940#endif
1941 );
Dan Gohman97805ee2008-08-19 21:32:53 +00001942}
1943
1944
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001945//===----------------------------------------------------------------------===//
1946// Other Lowering Hooks
1947//===----------------------------------------------------------------------===//
1948
1949
Dan Gohman8181bd12008-07-27 21:46:04 +00001950SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
Anton Korobeynikove844e472007-08-15 17:12:32 +00001951 MachineFunction &MF = DAG.getMachineFunction();
1952 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1953 int ReturnAddrIndex = FuncInfo->getRAIndex();
1954
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001955 if (ReturnAddrIndex == 0) {
1956 // Set up a frame object for the return address.
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001957 uint64_t SlotSize = TD->getPointerSize();
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00001958 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize);
Anton Korobeynikove844e472007-08-15 17:12:32 +00001959 FuncInfo->setRAIndex(ReturnAddrIndex);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001960 }
1961
1962 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
1963}
1964
1965
Chris Lattnerebb91142008-12-24 23:53:05 +00001966/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
1967/// specific condition code, returning the condition code and the LHS/RHS of the
1968/// comparison to make.
1969static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
1970 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001971 if (!isFP) {
1972 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
1973 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
1974 // X > -1 -> X == 0, jump !sign.
1975 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattnerebb91142008-12-24 23:53:05 +00001976 return X86::COND_NS;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001977 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
1978 // X < 0 -> X == 0, jump on sign.
Chris Lattnerebb91142008-12-24 23:53:05 +00001979 return X86::COND_S;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001980 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman37b34262007-09-17 14:49:27 +00001981 // X < 1 -> X <= 0
1982 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattnerebb91142008-12-24 23:53:05 +00001983 return X86::COND_LE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001984 }
1985 }
1986
1987 switch (SetCCOpcode) {
Chris Lattnerb8397512008-12-23 23:42:27 +00001988 default: assert(0 && "Invalid integer condition!");
Chris Lattnerebb91142008-12-24 23:53:05 +00001989 case ISD::SETEQ: return X86::COND_E;
1990 case ISD::SETGT: return X86::COND_G;
1991 case ISD::SETGE: return X86::COND_GE;
1992 case ISD::SETLT: return X86::COND_L;
1993 case ISD::SETLE: return X86::COND_LE;
1994 case ISD::SETNE: return X86::COND_NE;
1995 case ISD::SETULT: return X86::COND_B;
1996 case ISD::SETUGT: return X86::COND_A;
1997 case ISD::SETULE: return X86::COND_BE;
1998 case ISD::SETUGE: return X86::COND_AE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001999 }
Chris Lattnerb8397512008-12-23 23:42:27 +00002000 }
2001
2002 // First determine if it is required or is profitable to flip the operands.
Duncan Sandsc2a04622008-10-24 13:03:10 +00002003
Chris Lattnerb8397512008-12-23 23:42:27 +00002004 // If LHS is a foldable load, but RHS is not, flip the condition.
2005 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2006 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2007 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2008 std::swap(LHS, RHS);
Evan Chengfc937c92008-08-28 23:48:31 +00002009 }
2010
Chris Lattnerb8397512008-12-23 23:42:27 +00002011 switch (SetCCOpcode) {
2012 default: break;
2013 case ISD::SETOLT:
2014 case ISD::SETOLE:
2015 case ISD::SETUGT:
2016 case ISD::SETUGE:
2017 std::swap(LHS, RHS);
2018 break;
2019 }
2020
2021 // On a floating point condition, the flags are set as follows:
2022 // ZF PF CF op
2023 // 0 | 0 | 0 | X > Y
2024 // 0 | 0 | 1 | X < Y
2025 // 1 | 0 | 0 | X == Y
2026 // 1 | 1 | 1 | unordered
2027 switch (SetCCOpcode) {
Chris Lattnerebb91142008-12-24 23:53:05 +00002028 default: assert(0 && "Condcode should be pre-legalized away");
Chris Lattnerb8397512008-12-23 23:42:27 +00002029 case ISD::SETUEQ:
Chris Lattnerebb91142008-12-24 23:53:05 +00002030 case ISD::SETEQ: return X86::COND_E;
Chris Lattnerb8397512008-12-23 23:42:27 +00002031 case ISD::SETOLT: // flipped
2032 case ISD::SETOGT:
Chris Lattnerebb91142008-12-24 23:53:05 +00002033 case ISD::SETGT: return X86::COND_A;
Chris Lattnerb8397512008-12-23 23:42:27 +00002034 case ISD::SETOLE: // flipped
2035 case ISD::SETOGE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002036 case ISD::SETGE: return X86::COND_AE;
Chris Lattnerb8397512008-12-23 23:42:27 +00002037 case ISD::SETUGT: // flipped
2038 case ISD::SETULT:
Chris Lattnerebb91142008-12-24 23:53:05 +00002039 case ISD::SETLT: return X86::COND_B;
Chris Lattnerb8397512008-12-23 23:42:27 +00002040 case ISD::SETUGE: // flipped
2041 case ISD::SETULE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002042 case ISD::SETLE: return X86::COND_BE;
Chris Lattnerb8397512008-12-23 23:42:27 +00002043 case ISD::SETONE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002044 case ISD::SETNE: return X86::COND_NE;
2045 case ISD::SETUO: return X86::COND_P;
2046 case ISD::SETO: return X86::COND_NP;
Chris Lattnerb8397512008-12-23 23:42:27 +00002047 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002048}
2049
2050/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2051/// code. Current x86 isa includes the following FP cmov instructions:
2052/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
2053static bool hasFPCMov(unsigned X86CC) {
2054 switch (X86CC) {
2055 default:
2056 return false;
2057 case X86::COND_B:
2058 case X86::COND_BE:
2059 case X86::COND_E:
2060 case X86::COND_P:
2061 case X86::COND_A:
2062 case X86::COND_AE:
2063 case X86::COND_NE:
2064 case X86::COND_NP:
2065 return true;
2066 }
2067}
2068
2069/// isUndefOrInRange - Op is either an undef node or a ConstantSDNode. Return
2070/// true if Op is undef or if its value falls within the specified range (L, H].
Dan Gohman8181bd12008-07-27 21:46:04 +00002071static bool isUndefOrInRange(SDValue Op, unsigned Low, unsigned Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002072 if (Op.getOpcode() == ISD::UNDEF)
2073 return true;
2074
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002075 unsigned Val = cast<ConstantSDNode>(Op)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002076 return (Val >= Low && Val < Hi);
2077}
2078
2079/// isUndefOrEqual - Op is either an undef node or a ConstantSDNode. Return
2080/// true if Op is undef or if its value equal to the specified value.
Dan Gohman8181bd12008-07-27 21:46:04 +00002081static bool isUndefOrEqual(SDValue Op, unsigned Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002082 if (Op.getOpcode() == ISD::UNDEF)
2083 return true;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002084 return cast<ConstantSDNode>(Op)->getZExtValue() == Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002085}
2086
2087/// isPSHUFDMask - Return true if the specified VECTOR_SHUFFLE operand
2088/// specifies a shuffle of elements that is suitable for input to PSHUFD.
2089bool X86::isPSHUFDMask(SDNode *N) {
2090 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2091
Dan Gohman7dc19012007-08-02 21:17:01 +00002092 if (N->getNumOperands() != 2 && N->getNumOperands() != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002093 return false;
2094
2095 // Check if the value doesn't reference the second vector.
2096 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002097 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002098 if (Arg.getOpcode() == ISD::UNDEF) continue;
2099 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002100 if (cast<ConstantSDNode>(Arg)->getZExtValue() >= e)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002101 return false;
2102 }
2103
2104 return true;
2105}
2106
2107/// isPSHUFHWMask - Return true if the specified VECTOR_SHUFFLE operand
2108/// specifies a shuffle of elements that is suitable for input to PSHUFHW.
2109bool X86::isPSHUFHWMask(SDNode *N) {
2110 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2111
2112 if (N->getNumOperands() != 8)
2113 return false;
2114
2115 // Lower quadword copied in order.
2116 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002117 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002118 if (Arg.getOpcode() == ISD::UNDEF) continue;
2119 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002120 if (cast<ConstantSDNode>(Arg)->getZExtValue() != i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002121 return false;
2122 }
2123
2124 // Upper quadword shuffled.
2125 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002126 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002127 if (Arg.getOpcode() == ISD::UNDEF) continue;
2128 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002129 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002130 if (Val < 4 || Val > 7)
2131 return false;
2132 }
2133
2134 return true;
2135}
2136
2137/// isPSHUFLWMask - Return true if the specified VECTOR_SHUFFLE operand
2138/// specifies a shuffle of elements that is suitable for input to PSHUFLW.
2139bool X86::isPSHUFLWMask(SDNode *N) {
2140 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2141
2142 if (N->getNumOperands() != 8)
2143 return false;
2144
2145 // Upper quadword copied in order.
2146 for (unsigned i = 4; i != 8; ++i)
2147 if (!isUndefOrEqual(N->getOperand(i), i))
2148 return false;
2149
2150 // Lower quadword shuffled.
2151 for (unsigned i = 0; i != 4; ++i)
2152 if (!isUndefOrInRange(N->getOperand(i), 0, 4))
2153 return false;
2154
2155 return true;
2156}
2157
2158/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2159/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00002160static bool isSHUFPMask(SDOperandPtr Elems, unsigned NumElems) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002161 if (NumElems != 2 && NumElems != 4) return false;
2162
2163 unsigned Half = NumElems / 2;
2164 for (unsigned i = 0; i < Half; ++i)
2165 if (!isUndefOrInRange(Elems[i], 0, NumElems))
2166 return false;
2167 for (unsigned i = Half; i < NumElems; ++i)
2168 if (!isUndefOrInRange(Elems[i], NumElems, NumElems*2))
2169 return false;
2170
2171 return true;
2172}
2173
2174bool X86::isSHUFPMask(SDNode *N) {
2175 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2176 return ::isSHUFPMask(N->op_begin(), N->getNumOperands());
2177}
2178
2179/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
2180/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2181/// half elements to come from vector 1 (which would equal the dest.) and
2182/// the upper half to come from vector 2.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00002183static bool isCommutedSHUFP(SDOperandPtr Ops, unsigned NumOps) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002184 if (NumOps != 2 && NumOps != 4) return false;
2185
2186 unsigned Half = NumOps / 2;
2187 for (unsigned i = 0; i < Half; ++i)
2188 if (!isUndefOrInRange(Ops[i], NumOps, NumOps*2))
2189 return false;
2190 for (unsigned i = Half; i < NumOps; ++i)
2191 if (!isUndefOrInRange(Ops[i], 0, NumOps))
2192 return false;
2193 return true;
2194}
2195
2196static bool isCommutedSHUFP(SDNode *N) {
2197 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2198 return isCommutedSHUFP(N->op_begin(), N->getNumOperands());
2199}
2200
2201/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2202/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
2203bool X86::isMOVHLPSMask(SDNode *N) {
2204 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2205
2206 if (N->getNumOperands() != 4)
2207 return false;
2208
2209 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
2210 return isUndefOrEqual(N->getOperand(0), 6) &&
2211 isUndefOrEqual(N->getOperand(1), 7) &&
2212 isUndefOrEqual(N->getOperand(2), 2) &&
2213 isUndefOrEqual(N->getOperand(3), 3);
2214}
2215
2216/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2217/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2218/// <2, 3, 2, 3>
2219bool X86::isMOVHLPS_v_undef_Mask(SDNode *N) {
2220 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2221
2222 if (N->getNumOperands() != 4)
2223 return false;
2224
2225 // Expect bit0 == 2, bit1 == 3, bit2 == 2, bit3 == 3
2226 return isUndefOrEqual(N->getOperand(0), 2) &&
2227 isUndefOrEqual(N->getOperand(1), 3) &&
2228 isUndefOrEqual(N->getOperand(2), 2) &&
2229 isUndefOrEqual(N->getOperand(3), 3);
2230}
2231
2232/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
2233/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
2234bool X86::isMOVLPMask(SDNode *N) {
2235 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2236
2237 unsigned NumElems = N->getNumOperands();
2238 if (NumElems != 2 && NumElems != 4)
2239 return false;
2240
2241 for (unsigned i = 0; i < NumElems/2; ++i)
2242 if (!isUndefOrEqual(N->getOperand(i), i + NumElems))
2243 return false;
2244
2245 for (unsigned i = NumElems/2; i < NumElems; ++i)
2246 if (!isUndefOrEqual(N->getOperand(i), i))
2247 return false;
2248
2249 return true;
2250}
2251
2252/// isMOVHPMask - Return true if the specified VECTOR_SHUFFLE operand
2253/// specifies a shuffle of elements that is suitable for input to MOVHP{S|D}
2254/// and MOVLHPS.
2255bool X86::isMOVHPMask(SDNode *N) {
2256 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2257
2258 unsigned NumElems = N->getNumOperands();
2259 if (NumElems != 2 && NumElems != 4)
2260 return false;
2261
2262 for (unsigned i = 0; i < NumElems/2; ++i)
2263 if (!isUndefOrEqual(N->getOperand(i), i))
2264 return false;
2265
2266 for (unsigned i = 0; i < NumElems/2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002267 SDValue Arg = N->getOperand(i + NumElems/2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002268 if (!isUndefOrEqual(Arg, i + NumElems))
2269 return false;
2270 }
2271
2272 return true;
2273}
2274
2275/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
2276/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00002277bool static isUNPCKLMask(SDOperandPtr Elts, unsigned NumElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002278 bool V2IsSplat = false) {
2279 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2280 return false;
2281
2282 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002283 SDValue BitI = Elts[i];
2284 SDValue BitI1 = Elts[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002285 if (!isUndefOrEqual(BitI, j))
2286 return false;
2287 if (V2IsSplat) {
2288 if (isUndefOrEqual(BitI1, NumElts))
2289 return false;
2290 } else {
2291 if (!isUndefOrEqual(BitI1, j + NumElts))
2292 return false;
2293 }
2294 }
2295
2296 return true;
2297}
2298
2299bool X86::isUNPCKLMask(SDNode *N, bool V2IsSplat) {
2300 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2301 return ::isUNPCKLMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
2302}
2303
2304/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
2305/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00002306bool static isUNPCKHMask(SDOperandPtr Elts, unsigned NumElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002307 bool V2IsSplat = false) {
2308 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2309 return false;
2310
2311 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002312 SDValue BitI = Elts[i];
2313 SDValue BitI1 = Elts[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002314 if (!isUndefOrEqual(BitI, j + NumElts/2))
2315 return false;
2316 if (V2IsSplat) {
2317 if (isUndefOrEqual(BitI1, NumElts))
2318 return false;
2319 } else {
2320 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
2321 return false;
2322 }
2323 }
2324
2325 return true;
2326}
2327
2328bool X86::isUNPCKHMask(SDNode *N, bool V2IsSplat) {
2329 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2330 return ::isUNPCKHMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
2331}
2332
2333/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
2334/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
2335/// <0, 0, 1, 1>
2336bool X86::isUNPCKL_v_undef_Mask(SDNode *N) {
2337 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2338
2339 unsigned NumElems = N->getNumOperands();
2340 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2341 return false;
2342
2343 for (unsigned i = 0, j = 0; i != NumElems; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002344 SDValue BitI = N->getOperand(i);
2345 SDValue BitI1 = N->getOperand(i+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002346
2347 if (!isUndefOrEqual(BitI, j))
2348 return false;
2349 if (!isUndefOrEqual(BitI1, j))
2350 return false;
2351 }
2352
2353 return true;
2354}
2355
2356/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
2357/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
2358/// <2, 2, 3, 3>
2359bool X86::isUNPCKH_v_undef_Mask(SDNode *N) {
2360 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2361
2362 unsigned NumElems = N->getNumOperands();
2363 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2364 return false;
2365
2366 for (unsigned i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002367 SDValue BitI = N->getOperand(i);
2368 SDValue BitI1 = N->getOperand(i + 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002369
2370 if (!isUndefOrEqual(BitI, j))
2371 return false;
2372 if (!isUndefOrEqual(BitI1, j))
2373 return false;
2374 }
2375
2376 return true;
2377}
2378
2379/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
2380/// specifies a shuffle of elements that is suitable for input to MOVSS,
2381/// MOVSD, and MOVD, i.e. setting the lowest element.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00002382static bool isMOVLMask(SDOperandPtr Elts, unsigned NumElts) {
Evan Cheng62cdc642007-12-06 22:14:22 +00002383 if (NumElts != 2 && NumElts != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002384 return false;
2385
2386 if (!isUndefOrEqual(Elts[0], NumElts))
2387 return false;
2388
2389 for (unsigned i = 1; i < NumElts; ++i) {
2390 if (!isUndefOrEqual(Elts[i], i))
2391 return false;
2392 }
2393
2394 return true;
2395}
2396
2397bool X86::isMOVLMask(SDNode *N) {
2398 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2399 return ::isMOVLMask(N->op_begin(), N->getNumOperands());
2400}
2401
2402/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
2403/// of what x86 movss want. X86 movs requires the lowest element to be lowest
2404/// element of vector 2 and the other elements to come from vector 1 in order.
Roman Levenstein98b8fcb2008-04-16 16:15:27 +00002405static bool isCommutedMOVL(SDOperandPtr Ops, unsigned NumOps,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002406 bool V2IsSplat = false,
2407 bool V2IsUndef = false) {
2408 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
2409 return false;
2410
2411 if (!isUndefOrEqual(Ops[0], 0))
2412 return false;
2413
2414 for (unsigned i = 1; i < NumOps; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002415 SDValue Arg = Ops[i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002416 if (!(isUndefOrEqual(Arg, i+NumOps) ||
2417 (V2IsUndef && isUndefOrInRange(Arg, NumOps, NumOps*2)) ||
2418 (V2IsSplat && isUndefOrEqual(Arg, NumOps))))
2419 return false;
2420 }
2421
2422 return true;
2423}
2424
2425static bool isCommutedMOVL(SDNode *N, bool V2IsSplat = false,
2426 bool V2IsUndef = false) {
2427 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2428 return isCommutedMOVL(N->op_begin(), N->getNumOperands(),
2429 V2IsSplat, V2IsUndef);
2430}
2431
2432/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2433/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
2434bool X86::isMOVSHDUPMask(SDNode *N) {
2435 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2436
2437 if (N->getNumOperands() != 4)
2438 return false;
2439
2440 // Expect 1, 1, 3, 3
2441 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002442 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002443 if (Arg.getOpcode() == ISD::UNDEF) continue;
2444 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002445 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002446 if (Val != 1) return false;
2447 }
2448
2449 bool HasHi = false;
2450 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002451 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002452 if (Arg.getOpcode() == ISD::UNDEF) continue;
2453 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002454 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002455 if (Val != 3) return false;
2456 HasHi = true;
2457 }
2458
2459 // Don't use movshdup if it can be done with a shufps.
2460 return HasHi;
2461}
2462
2463/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2464/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
2465bool X86::isMOVSLDUPMask(SDNode *N) {
2466 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2467
2468 if (N->getNumOperands() != 4)
2469 return false;
2470
2471 // Expect 0, 0, 2, 2
2472 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002473 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002474 if (Arg.getOpcode() == ISD::UNDEF) continue;
2475 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002476 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002477 if (Val != 0) return false;
2478 }
2479
2480 bool HasHi = false;
2481 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002482 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002483 if (Arg.getOpcode() == ISD::UNDEF) continue;
2484 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002485 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002486 if (Val != 2) return false;
2487 HasHi = true;
2488 }
2489
2490 // Don't use movshdup if it can be done with a shufps.
2491 return HasHi;
2492}
2493
2494/// isIdentityMask - Return true if the specified VECTOR_SHUFFLE operand
2495/// specifies a identity operation on the LHS or RHS.
2496static bool isIdentityMask(SDNode *N, bool RHS = false) {
2497 unsigned NumElems = N->getNumOperands();
2498 for (unsigned i = 0; i < NumElems; ++i)
2499 if (!isUndefOrEqual(N->getOperand(i), i + (RHS ? NumElems : 0)))
2500 return false;
2501 return true;
2502}
2503
2504/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2505/// a splat of a single element.
2506static bool isSplatMask(SDNode *N) {
2507 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2508
2509 // This is a splat operation if each element of the permute is the same, and
2510 // if the value doesn't reference the second vector.
2511 unsigned NumElems = N->getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002512 SDValue ElementBase;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002513 unsigned i = 0;
2514 for (; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002515 SDValue Elt = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002516 if (isa<ConstantSDNode>(Elt)) {
2517 ElementBase = Elt;
2518 break;
2519 }
2520 }
2521
Gabor Greif1c80d112008-08-28 21:40:38 +00002522 if (!ElementBase.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002523 return false;
2524
2525 for (; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002526 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002527 if (Arg.getOpcode() == ISD::UNDEF) continue;
2528 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2529 if (Arg != ElementBase) return false;
2530 }
2531
2532 // Make sure it is a splat of the first vector operand.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002533 return cast<ConstantSDNode>(ElementBase)->getZExtValue() < NumElems;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002534}
2535
Mon P Wang532c9632008-12-23 04:03:27 +00002536/// getSplatMaskEltNo - Given a splat mask, return the index to the element
2537/// we want to splat.
2538static SDValue getSplatMaskEltNo(SDNode *N) {
2539 assert(isSplatMask(N) && "Not a splat mask");
2540 unsigned NumElems = N->getNumOperands();
2541 SDValue ElementBase;
2542 unsigned i = 0;
2543 for (; i != NumElems; ++i) {
2544 SDValue Elt = N->getOperand(i);
2545 if (isa<ConstantSDNode>(Elt))
2546 return Elt;
2547 }
2548 assert(0 && " No splat value found!");
2549 return SDValue();
2550}
2551
2552
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002553/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2554/// a splat of a single element and it's a 2 or 4 element mask.
2555bool X86::isSplatMask(SDNode *N) {
2556 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2557
2558 // We can only splat 64-bit, and 32-bit quantities with a single instruction.
2559 if (N->getNumOperands() != 4 && N->getNumOperands() != 2)
2560 return false;
2561 return ::isSplatMask(N);
2562}
2563
2564/// isSplatLoMask - Return true if the specified VECTOR_SHUFFLE operand
2565/// specifies a splat of zero element.
2566bool X86::isSplatLoMask(SDNode *N) {
2567 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2568
2569 for (unsigned i = 0, e = N->getNumOperands(); i < e; ++i)
2570 if (!isUndefOrEqual(N->getOperand(i), 0))
2571 return false;
2572 return true;
2573}
2574
Evan Chenga2497eb2008-09-25 20:50:48 +00002575/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2576/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
2577bool X86::isMOVDDUPMask(SDNode *N) {
2578 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2579
2580 unsigned e = N->getNumOperands() / 2;
2581 for (unsigned i = 0; i < e; ++i)
2582 if (!isUndefOrEqual(N->getOperand(i), i))
2583 return false;
2584 for (unsigned i = 0; i < e; ++i)
2585 if (!isUndefOrEqual(N->getOperand(e+i), i))
2586 return false;
2587 return true;
2588}
2589
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002590/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
2591/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUF* and SHUFP*
2592/// instructions.
2593unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
2594 unsigned NumOperands = N->getNumOperands();
2595 unsigned Shift = (NumOperands == 4) ? 2 : 1;
2596 unsigned Mask = 0;
2597 for (unsigned i = 0; i < NumOperands; ++i) {
2598 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002599 SDValue Arg = N->getOperand(NumOperands-i-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002600 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002601 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002602 if (Val >= NumOperands) Val -= NumOperands;
2603 Mask |= Val;
2604 if (i != NumOperands - 1)
2605 Mask <<= Shift;
2606 }
2607
2608 return Mask;
2609}
2610
2611/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
2612/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFHW
2613/// instructions.
2614unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
2615 unsigned Mask = 0;
2616 // 8 nodes, but we only care about the last 4.
2617 for (unsigned i = 7; i >= 4; --i) {
2618 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002619 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002620 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002621 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002622 Mask |= (Val - 4);
2623 if (i != 4)
2624 Mask <<= 2;
2625 }
2626
2627 return Mask;
2628}
2629
2630/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
2631/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFLW
2632/// instructions.
2633unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
2634 unsigned Mask = 0;
2635 // 8 nodes, but we only care about the first 4.
2636 for (int i = 3; i >= 0; --i) {
2637 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002638 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002639 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002640 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002641 Mask |= Val;
2642 if (i != 0)
2643 Mask <<= 2;
2644 }
2645
2646 return Mask;
2647}
2648
2649/// isPSHUFHW_PSHUFLWMask - true if the specified VECTOR_SHUFFLE operand
2650/// specifies a 8 element shuffle that can be broken into a pair of
2651/// PSHUFHW and PSHUFLW.
2652static bool isPSHUFHW_PSHUFLWMask(SDNode *N) {
2653 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2654
2655 if (N->getNumOperands() != 8)
2656 return false;
2657
2658 // Lower quadword shuffled.
2659 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002660 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002661 if (Arg.getOpcode() == ISD::UNDEF) continue;
2662 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002663 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00002664 if (Val >= 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002665 return false;
2666 }
2667
2668 // Upper quadword shuffled.
2669 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002670 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002671 if (Arg.getOpcode() == ISD::UNDEF) continue;
2672 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002673 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002674 if (Val < 4 || Val > 7)
2675 return false;
2676 }
2677
2678 return true;
2679}
2680
Chris Lattnere6aa3862007-11-25 00:24:49 +00002681/// CommuteVectorShuffle - Swap vector_shuffle operands as well as
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002682/// values in ther permute mask.
Dan Gohman8181bd12008-07-27 21:46:04 +00002683static SDValue CommuteVectorShuffle(SDValue Op, SDValue &V1,
2684 SDValue &V2, SDValue &Mask,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002685 SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00002686 MVT VT = Op.getValueType();
2687 MVT MaskVT = Mask.getValueType();
2688 MVT EltVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002689 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002690 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002691
2692 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002693 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002694 if (Arg.getOpcode() == ISD::UNDEF) {
2695 MaskVec.push_back(DAG.getNode(ISD::UNDEF, EltVT));
2696 continue;
2697 }
2698 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002699 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002700 if (Val < NumElems)
2701 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2702 else
2703 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2704 }
2705
2706 std::swap(V1, V2);
Evan Chengfca29242007-12-07 08:07:39 +00002707 Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002708 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, Mask);
2709}
2710
Evan Chenga6769df2007-12-07 21:30:01 +00002711/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
2712/// the two vector operands have swapped position.
Evan Chengfca29242007-12-07 08:07:39 +00002713static
Dan Gohman8181bd12008-07-27 21:46:04 +00002714SDValue CommuteVectorShuffleMask(SDValue Mask, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00002715 MVT MaskVT = Mask.getValueType();
2716 MVT EltVT = MaskVT.getVectorElementType();
Evan Chengfca29242007-12-07 08:07:39 +00002717 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002718 SmallVector<SDValue, 8> MaskVec;
Evan Chengfca29242007-12-07 08:07:39 +00002719 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002720 SDValue Arg = Mask.getOperand(i);
Evan Chengfca29242007-12-07 08:07:39 +00002721 if (Arg.getOpcode() == ISD::UNDEF) {
2722 MaskVec.push_back(DAG.getNode(ISD::UNDEF, EltVT));
2723 continue;
2724 }
2725 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002726 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengfca29242007-12-07 08:07:39 +00002727 if (Val < NumElems)
2728 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2729 else
2730 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2731 }
2732 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], NumElems);
2733}
2734
2735
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002736/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
2737/// match movhlps. The lower half elements should come from upper half of
2738/// V1 (and in order), and the upper half elements should come from the upper
2739/// half of V2 (and in order).
2740static bool ShouldXformToMOVHLPS(SDNode *Mask) {
2741 unsigned NumElems = Mask->getNumOperands();
2742 if (NumElems != 4)
2743 return false;
2744 for (unsigned i = 0, e = 2; i != e; ++i)
2745 if (!isUndefOrEqual(Mask->getOperand(i), i+2))
2746 return false;
2747 for (unsigned i = 2; i != 4; ++i)
2748 if (!isUndefOrEqual(Mask->getOperand(i), i+4))
2749 return false;
2750 return true;
2751}
2752
2753/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng40ee6e52008-05-08 00:57:18 +00002754/// is promoted to a vector. It also returns the LoadSDNode by reference if
2755/// required.
2756static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Chenga2497eb2008-09-25 20:50:48 +00002757 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
2758 return false;
2759 N = N->getOperand(0).getNode();
2760 if (!ISD::isNON_EXTLoad(N))
2761 return false;
2762 if (LD)
2763 *LD = cast<LoadSDNode>(N);
2764 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002765}
2766
2767/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
2768/// match movlp{s|d}. The lower half elements should come from lower half of
2769/// V1 (and in order), and the upper half elements should come from the upper
2770/// half of V2 (and in order). And since V1 will become the source of the
2771/// MOVLP, it must be either a vector load or a scalar load to vector.
2772static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2, SDNode *Mask) {
2773 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
2774 return false;
2775 // Is V2 is a vector load, don't do this transformation. We will try to use
2776 // load folding shufps op.
2777 if (ISD::isNON_EXTLoad(V2))
2778 return false;
2779
2780 unsigned NumElems = Mask->getNumOperands();
2781 if (NumElems != 2 && NumElems != 4)
2782 return false;
2783 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
2784 if (!isUndefOrEqual(Mask->getOperand(i), i))
2785 return false;
2786 for (unsigned i = NumElems/2; i != NumElems; ++i)
2787 if (!isUndefOrEqual(Mask->getOperand(i), i+NumElems))
2788 return false;
2789 return true;
2790}
2791
2792/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
2793/// all the same.
2794static bool isSplatVector(SDNode *N) {
2795 if (N->getOpcode() != ISD::BUILD_VECTOR)
2796 return false;
2797
Dan Gohman8181bd12008-07-27 21:46:04 +00002798 SDValue SplatValue = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002799 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
2800 if (N->getOperand(i) != SplatValue)
2801 return false;
2802 return true;
2803}
2804
2805/// isUndefShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2806/// to an undef.
2807static bool isUndefShuffle(SDNode *N) {
2808 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2809 return false;
2810
Dan Gohman8181bd12008-07-27 21:46:04 +00002811 SDValue V1 = N->getOperand(0);
2812 SDValue V2 = N->getOperand(1);
2813 SDValue Mask = N->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002814 unsigned NumElems = Mask.getNumOperands();
2815 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002816 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002817 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002818 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002819 if (Val < NumElems && V1.getOpcode() != ISD::UNDEF)
2820 return false;
2821 else if (Val >= NumElems && V2.getOpcode() != ISD::UNDEF)
2822 return false;
2823 }
2824 }
2825 return true;
2826}
2827
2828/// isZeroNode - Returns true if Elt is a constant zero or a floating point
2829/// constant +0.0.
Dan Gohman8181bd12008-07-27 21:46:04 +00002830static inline bool isZeroNode(SDValue Elt) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002831 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002832 cast<ConstantSDNode>(Elt)->getZExtValue() == 0) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002833 (isa<ConstantFPSDNode>(Elt) &&
Dale Johannesendf8a8312007-08-31 04:03:46 +00002834 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002835}
2836
2837/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2838/// to an zero vector.
2839static bool isZeroShuffle(SDNode *N) {
2840 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2841 return false;
2842
Dan Gohman8181bd12008-07-27 21:46:04 +00002843 SDValue V1 = N->getOperand(0);
2844 SDValue V2 = N->getOperand(1);
2845 SDValue Mask = N->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002846 unsigned NumElems = Mask.getNumOperands();
2847 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002848 SDValue Arg = Mask.getOperand(i);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002849 if (Arg.getOpcode() == ISD::UNDEF)
2850 continue;
2851
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002852 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Chris Lattnere6aa3862007-11-25 00:24:49 +00002853 if (Idx < NumElems) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002854 unsigned Opc = V1.getNode()->getOpcode();
2855 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002856 continue;
2857 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greif1c80d112008-08-28 21:40:38 +00002858 !isZeroNode(V1.getNode()->getOperand(Idx)))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002859 return false;
2860 } else if (Idx >= NumElems) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002861 unsigned Opc = V2.getNode()->getOpcode();
2862 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002863 continue;
2864 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greif1c80d112008-08-28 21:40:38 +00002865 !isZeroNode(V2.getNode()->getOperand(Idx - NumElems)))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002866 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002867 }
2868 }
2869 return true;
2870}
2871
2872/// getZeroVector - Returns a vector of specified type with all zero elements.
2873///
Dan Gohman8181bd12008-07-27 21:46:04 +00002874static SDValue getZeroVector(MVT VT, bool HasSSE2, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00002875 assert(VT.isVector() && "Expected a vector type");
Chris Lattnere6aa3862007-11-25 00:24:49 +00002876
2877 // Always build zero vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2878 // type. This ensures they get CSE'd.
Dan Gohman8181bd12008-07-27 21:46:04 +00002879 SDValue Vec;
Duncan Sands92c43912008-06-06 12:08:01 +00002880 if (VT.getSizeInBits() == 64) { // MMX
Dan Gohman8181bd12008-07-27 21:46:04 +00002881 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002882 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i32, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002883 } else if (HasSSE2) { // SSE2
Dan Gohman8181bd12008-07-27 21:46:04 +00002884 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002885 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002886 } else { // SSE1
Dan Gohman8181bd12008-07-27 21:46:04 +00002887 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Evan Cheng8c590372008-05-15 08:39:06 +00002888 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4f32, Cst, Cst, Cst, Cst);
2889 }
Chris Lattnere6aa3862007-11-25 00:24:49 +00002890 return DAG.getNode(ISD::BIT_CONVERT, VT, Vec);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002891}
2892
Chris Lattnere6aa3862007-11-25 00:24:49 +00002893/// getOnesVector - Returns a vector of specified type with all bits set.
2894///
Dan Gohman8181bd12008-07-27 21:46:04 +00002895static SDValue getOnesVector(MVT VT, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00002896 assert(VT.isVector() && "Expected a vector type");
Chris Lattnere6aa3862007-11-25 00:24:49 +00002897
2898 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2899 // type. This ensures they get CSE'd.
Dan Gohman8181bd12008-07-27 21:46:04 +00002900 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
2901 SDValue Vec;
Duncan Sands92c43912008-06-06 12:08:01 +00002902 if (VT.getSizeInBits() == 64) // MMX
Chris Lattnere6aa3862007-11-25 00:24:49 +00002903 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i32, Cst, Cst);
2904 else // SSE
2905 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, Cst, Cst, Cst, Cst);
2906 return DAG.getNode(ISD::BIT_CONVERT, VT, Vec);
2907}
2908
2909
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002910/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
2911/// that point to V2 points to its first element.
Dan Gohman8181bd12008-07-27 21:46:04 +00002912static SDValue NormalizeMask(SDValue Mask, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002913 assert(Mask.getOpcode() == ISD::BUILD_VECTOR);
2914
2915 bool Changed = false;
Dan Gohman8181bd12008-07-27 21:46:04 +00002916 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002917 unsigned NumElems = Mask.getNumOperands();
2918 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002919 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002920 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002921 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002922 if (Val > NumElems) {
2923 Arg = DAG.getConstant(NumElems, Arg.getValueType());
2924 Changed = true;
2925 }
2926 }
2927 MaskVec.push_back(Arg);
2928 }
2929
2930 if (Changed)
2931 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getValueType(),
2932 &MaskVec[0], MaskVec.size());
2933 return Mask;
2934}
2935
2936/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
2937/// operation of specified width.
Dan Gohman8181bd12008-07-27 21:46:04 +00002938static SDValue getMOVLMask(unsigned NumElems, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00002939 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2940 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002941
Dan Gohman8181bd12008-07-27 21:46:04 +00002942 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002943 MaskVec.push_back(DAG.getConstant(NumElems, BaseVT));
2944 for (unsigned i = 1; i != NumElems; ++i)
2945 MaskVec.push_back(DAG.getConstant(i, BaseVT));
2946 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
2947}
2948
2949/// getUnpacklMask - Returns a vector_shuffle mask for an unpackl operation
2950/// of specified width.
Dan Gohman8181bd12008-07-27 21:46:04 +00002951static SDValue getUnpacklMask(unsigned NumElems, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00002952 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2953 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00002954 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002955 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
2956 MaskVec.push_back(DAG.getConstant(i, BaseVT));
2957 MaskVec.push_back(DAG.getConstant(i + NumElems, BaseVT));
2958 }
2959 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
2960}
2961
2962/// getUnpackhMask - Returns a vector_shuffle mask for an unpackh operation
2963/// of specified width.
Dan Gohman8181bd12008-07-27 21:46:04 +00002964static SDValue getUnpackhMask(unsigned NumElems, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00002965 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2966 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002967 unsigned Half = NumElems/2;
Dan Gohman8181bd12008-07-27 21:46:04 +00002968 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002969 for (unsigned i = 0; i != Half; ++i) {
2970 MaskVec.push_back(DAG.getConstant(i + Half, BaseVT));
2971 MaskVec.push_back(DAG.getConstant(i + NumElems + Half, BaseVT));
2972 }
2973 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
2974}
2975
Chris Lattner2d91b962008-03-09 01:05:04 +00002976/// getSwapEltZeroMask - Returns a vector_shuffle mask for a shuffle that swaps
2977/// element #0 of a vector with the specified index, leaving the rest of the
2978/// elements in place.
Dan Gohman8181bd12008-07-27 21:46:04 +00002979static SDValue getSwapEltZeroMask(unsigned NumElems, unsigned DestElt,
Chris Lattner2d91b962008-03-09 01:05:04 +00002980 SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00002981 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2982 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00002983 SmallVector<SDValue, 8> MaskVec;
Chris Lattner2d91b962008-03-09 01:05:04 +00002984 // Element #0 of the result gets the elt we are replacing.
2985 MaskVec.push_back(DAG.getConstant(DestElt, BaseVT));
2986 for (unsigned i = 1; i != NumElems; ++i)
2987 MaskVec.push_back(DAG.getConstant(i == DestElt ? 0 : i, BaseVT));
2988 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
2989}
2990
Evan Chengbf8b2c52008-04-05 00:30:36 +00002991/// PromoteSplat - Promote a splat of v4f32, v8i16 or v16i8 to v4i32.
Dan Gohman8181bd12008-07-27 21:46:04 +00002992static SDValue PromoteSplat(SDValue Op, SelectionDAG &DAG, bool HasSSE2) {
Duncan Sands92c43912008-06-06 12:08:01 +00002993 MVT PVT = HasSSE2 ? MVT::v4i32 : MVT::v4f32;
2994 MVT VT = Op.getValueType();
Evan Chengbf8b2c52008-04-05 00:30:36 +00002995 if (PVT == VT)
2996 return Op;
Dan Gohman8181bd12008-07-27 21:46:04 +00002997 SDValue V1 = Op.getOperand(0);
2998 SDValue Mask = Op.getOperand(2);
Mon P Wang532c9632008-12-23 04:03:27 +00002999 unsigned MaskNumElems = Mask.getNumOperands();
3000 unsigned NumElems = MaskNumElems;
Evan Chengbf8b2c52008-04-05 00:30:36 +00003001 // Special handling of v4f32 -> v4i32.
3002 if (VT != MVT::v4f32) {
Mon P Wang532c9632008-12-23 04:03:27 +00003003 // Find which element we want to splat.
3004 SDNode* EltNoNode = getSplatMaskEltNo(Mask.getNode()).getNode();
3005 unsigned EltNo = cast<ConstantSDNode>(EltNoNode)->getZExtValue();
3006 // unpack elements to the correct location
Evan Chengbf8b2c52008-04-05 00:30:36 +00003007 while (NumElems > 4) {
Mon P Wang532c9632008-12-23 04:03:27 +00003008 if (EltNo < NumElems/2) {
3009 Mask = getUnpacklMask(MaskNumElems, DAG);
3010 } else {
3011 Mask = getUnpackhMask(MaskNumElems, DAG);
3012 EltNo -= NumElems/2;
3013 }
Evan Chengbf8b2c52008-04-05 00:30:36 +00003014 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V1, Mask);
3015 NumElems >>= 1;
3016 }
Mon P Wang532c9632008-12-23 04:03:27 +00003017 SDValue Cst = DAG.getConstant(EltNo, MVT::i32);
3018 Mask = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, Cst, Cst, Cst, Cst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003019 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003020
Evan Chengbf8b2c52008-04-05 00:30:36 +00003021 V1 = DAG.getNode(ISD::BIT_CONVERT, PVT, V1);
Dan Gohman8181bd12008-07-27 21:46:04 +00003022 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, PVT, V1,
Evan Chengbf8b2c52008-04-05 00:30:36 +00003023 DAG.getNode(ISD::UNDEF, PVT), Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003024 return DAG.getNode(ISD::BIT_CONVERT, VT, Shuffle);
3025}
3026
Evan Chenga2497eb2008-09-25 20:50:48 +00003027/// isVectorLoad - Returns true if the node is a vector load, a scalar
3028/// load that's promoted to vector, or a load bitcasted.
3029static bool isVectorLoad(SDValue Op) {
3030 assert(Op.getValueType().isVector() && "Expected a vector type");
3031 if (Op.getOpcode() == ISD::SCALAR_TO_VECTOR ||
3032 Op.getOpcode() == ISD::BIT_CONVERT) {
3033 return isa<LoadSDNode>(Op.getOperand(0));
3034 }
3035 return isa<LoadSDNode>(Op);
3036}
3037
3038
3039/// CanonicalizeMovddup - Cannonicalize movddup shuffle to v2f64.
3040///
3041static SDValue CanonicalizeMovddup(SDValue Op, SDValue V1, SDValue Mask,
3042 SelectionDAG &DAG, bool HasSSE3) {
3043 // If we have sse3 and shuffle has more than one use or input is a load, then
3044 // use movddup. Otherwise, use movlhps.
3045 bool UseMovddup = HasSSE3 && (!Op.hasOneUse() || isVectorLoad(V1));
3046 MVT PVT = UseMovddup ? MVT::v2f64 : MVT::v4f32;
3047 MVT VT = Op.getValueType();
3048 if (VT == PVT)
3049 return Op;
3050 unsigned NumElems = PVT.getVectorNumElements();
3051 if (NumElems == 2) {
3052 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3053 Mask = DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i32, Cst, Cst);
3054 } else {
3055 assert(NumElems == 4);
3056 SDValue Cst0 = DAG.getTargetConstant(0, MVT::i32);
3057 SDValue Cst1 = DAG.getTargetConstant(1, MVT::i32);
3058 Mask = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, Cst0, Cst1, Cst0, Cst1);
3059 }
3060
3061 V1 = DAG.getNode(ISD::BIT_CONVERT, PVT, V1);
3062 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, PVT, V1,
3063 DAG.getNode(ISD::UNDEF, PVT), Mask);
3064 return DAG.getNode(ISD::BIT_CONVERT, VT, Shuffle);
3065}
3066
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003067/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattnere6aa3862007-11-25 00:24:49 +00003068/// vector of zero or undef vector. This produces a shuffle where the low
3069/// element of V2 is swizzled into the zero/undef vector, landing at element
3070/// Idx. This produces a shuffle mask like 4,1,2,3 (idx=0) or 0,1,2,4 (idx=3).
Dan Gohman8181bd12008-07-27 21:46:04 +00003071static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Cheng8c590372008-05-15 08:39:06 +00003072 bool isZero, bool HasSSE2,
3073 SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00003074 MVT VT = V2.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003075 SDValue V1 = isZero
Evan Cheng8c590372008-05-15 08:39:06 +00003076 ? getZeroVector(VT, HasSSE2, DAG) : DAG.getNode(ISD::UNDEF, VT);
Duncan Sands92c43912008-06-06 12:08:01 +00003077 unsigned NumElems = V2.getValueType().getVectorNumElements();
3078 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3079 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003080 SmallVector<SDValue, 16> MaskVec;
Chris Lattnere6aa3862007-11-25 00:24:49 +00003081 for (unsigned i = 0; i != NumElems; ++i)
3082 if (i == Idx) // If this is the insertion idx, put the low elt of V2 here.
3083 MaskVec.push_back(DAG.getConstant(NumElems, EVT));
3084 else
3085 MaskVec.push_back(DAG.getConstant(i, EVT));
Dan Gohman8181bd12008-07-27 21:46:04 +00003086 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003087 &MaskVec[0], MaskVec.size());
3088 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, Mask);
3089}
3090
Evan Chengdea99362008-05-29 08:22:04 +00003091/// getNumOfConsecutiveZeros - Return the number of elements in a result of
3092/// a shuffle that is zero.
3093static
Dan Gohman8181bd12008-07-27 21:46:04 +00003094unsigned getNumOfConsecutiveZeros(SDValue Op, SDValue Mask,
Evan Chengdea99362008-05-29 08:22:04 +00003095 unsigned NumElems, bool Low,
3096 SelectionDAG &DAG) {
3097 unsigned NumZeros = 0;
3098 for (unsigned i = 0; i < NumElems; ++i) {
Evan Cheng57db53b2008-06-25 20:52:59 +00003099 unsigned Index = Low ? i : NumElems-i-1;
Dan Gohman8181bd12008-07-27 21:46:04 +00003100 SDValue Idx = Mask.getOperand(Index);
Evan Chengdea99362008-05-29 08:22:04 +00003101 if (Idx.getOpcode() == ISD::UNDEF) {
3102 ++NumZeros;
3103 continue;
3104 }
Gabor Greif1c80d112008-08-28 21:40:38 +00003105 SDValue Elt = DAG.getShuffleScalarElt(Op.getNode(), Index);
3106 if (Elt.getNode() && isZeroNode(Elt))
Evan Chengdea99362008-05-29 08:22:04 +00003107 ++NumZeros;
3108 else
3109 break;
3110 }
3111 return NumZeros;
3112}
3113
3114/// isVectorShift - Returns true if the shuffle can be implemented as a
3115/// logical left or right shift of a vector.
Dan Gohman8181bd12008-07-27 21:46:04 +00003116static bool isVectorShift(SDValue Op, SDValue Mask, SelectionDAG &DAG,
3117 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Evan Chengdea99362008-05-29 08:22:04 +00003118 unsigned NumElems = Mask.getNumOperands();
3119
3120 isLeft = true;
3121 unsigned NumZeros= getNumOfConsecutiveZeros(Op, Mask, NumElems, true, DAG);
3122 if (!NumZeros) {
3123 isLeft = false;
3124 NumZeros = getNumOfConsecutiveZeros(Op, Mask, NumElems, false, DAG);
3125 if (!NumZeros)
3126 return false;
3127 }
3128
3129 bool SeenV1 = false;
3130 bool SeenV2 = false;
3131 for (unsigned i = NumZeros; i < NumElems; ++i) {
3132 unsigned Val = isLeft ? (i - NumZeros) : i;
Dan Gohman8181bd12008-07-27 21:46:04 +00003133 SDValue Idx = Mask.getOperand(isLeft ? i : (i - NumZeros));
Evan Chengdea99362008-05-29 08:22:04 +00003134 if (Idx.getOpcode() == ISD::UNDEF)
3135 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003136 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Chengdea99362008-05-29 08:22:04 +00003137 if (Index < NumElems)
3138 SeenV1 = true;
3139 else {
3140 Index -= NumElems;
3141 SeenV2 = true;
3142 }
3143 if (Index != Val)
3144 return false;
3145 }
3146 if (SeenV1 && SeenV2)
3147 return false;
3148
3149 ShVal = SeenV1 ? Op.getOperand(0) : Op.getOperand(1);
3150 ShAmt = NumZeros;
3151 return true;
3152}
3153
3154
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003155/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3156///
Dan Gohman8181bd12008-07-27 21:46:04 +00003157static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003158 unsigned NumNonZero, unsigned NumZero,
3159 SelectionDAG &DAG, TargetLowering &TLI) {
3160 if (NumNonZero > 8)
Dan Gohman8181bd12008-07-27 21:46:04 +00003161 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003162
Dan Gohman8181bd12008-07-27 21:46:04 +00003163 SDValue V(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003164 bool First = true;
3165 for (unsigned i = 0; i < 16; ++i) {
3166 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3167 if (ThisIsNonZero && First) {
3168 if (NumZero)
Evan Cheng8c590372008-05-15 08:39:06 +00003169 V = getZeroVector(MVT::v8i16, true, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003170 else
3171 V = DAG.getNode(ISD::UNDEF, MVT::v8i16);
3172 First = false;
3173 }
3174
3175 if ((i & 1) != 0) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003176 SDValue ThisElt(0, 0), LastElt(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003177 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3178 if (LastIsNonZero) {
3179 LastElt = DAG.getNode(ISD::ZERO_EXTEND, MVT::i16, Op.getOperand(i-1));
3180 }
3181 if (ThisIsNonZero) {
3182 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, MVT::i16, Op.getOperand(i));
3183 ThisElt = DAG.getNode(ISD::SHL, MVT::i16,
3184 ThisElt, DAG.getConstant(8, MVT::i8));
3185 if (LastIsNonZero)
3186 ThisElt = DAG.getNode(ISD::OR, MVT::i16, ThisElt, LastElt);
3187 } else
3188 ThisElt = LastElt;
3189
Gabor Greif1c80d112008-08-28 21:40:38 +00003190 if (ThisElt.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003191 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, V, ThisElt,
Chris Lattner5872a362008-01-17 07:00:52 +00003192 DAG.getIntPtrConstant(i/2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003193 }
3194 }
3195
3196 return DAG.getNode(ISD::BIT_CONVERT, MVT::v16i8, V);
3197}
3198
3199/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
3200///
Dan Gohman8181bd12008-07-27 21:46:04 +00003201static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003202 unsigned NumNonZero, unsigned NumZero,
3203 SelectionDAG &DAG, TargetLowering &TLI) {
3204 if (NumNonZero > 4)
Dan Gohman8181bd12008-07-27 21:46:04 +00003205 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003206
Dan Gohman8181bd12008-07-27 21:46:04 +00003207 SDValue V(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003208 bool First = true;
3209 for (unsigned i = 0; i < 8; ++i) {
3210 bool isNonZero = (NonZeros & (1 << i)) != 0;
3211 if (isNonZero) {
3212 if (First) {
3213 if (NumZero)
Evan Cheng8c590372008-05-15 08:39:06 +00003214 V = getZeroVector(MVT::v8i16, true, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003215 else
3216 V = DAG.getNode(ISD::UNDEF, MVT::v8i16);
3217 First = false;
3218 }
3219 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, V, Op.getOperand(i),
Chris Lattner5872a362008-01-17 07:00:52 +00003220 DAG.getIntPtrConstant(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003221 }
3222 }
3223
3224 return V;
3225}
3226
Evan Chengdea99362008-05-29 08:22:04 +00003227/// getVShift - Return a vector logical shift node.
3228///
Dan Gohman8181bd12008-07-27 21:46:04 +00003229static SDValue getVShift(bool isLeft, MVT VT, SDValue SrcOp,
Evan Chengdea99362008-05-29 08:22:04 +00003230 unsigned NumBits, SelectionDAG &DAG,
3231 const TargetLowering &TLI) {
Duncan Sands92c43912008-06-06 12:08:01 +00003232 bool isMMX = VT.getSizeInBits() == 64;
3233 MVT ShVT = isMMX ? MVT::v1i64 : MVT::v2i64;
Evan Chengdea99362008-05-29 08:22:04 +00003234 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
3235 SrcOp = DAG.getNode(ISD::BIT_CONVERT, ShVT, SrcOp);
3236 return DAG.getNode(ISD::BIT_CONVERT, VT,
3237 DAG.getNode(Opc, ShVT, SrcOp,
Gabor Greif825aa892008-08-28 23:19:51 +00003238 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengdea99362008-05-29 08:22:04 +00003239}
3240
Dan Gohman8181bd12008-07-27 21:46:04 +00003241SDValue
3242X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003243 // All zero's are handled with pxor, all one's are handled with pcmpeqd.
Gabor Greif825aa892008-08-28 23:19:51 +00003244 if (ISD::isBuildVectorAllZeros(Op.getNode())
3245 || ISD::isBuildVectorAllOnes(Op.getNode())) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003246 // Canonicalize this to either <4 x i32> or <2 x i32> (SSE vs MMX) to
3247 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
3248 // eliminated on x86-32 hosts.
3249 if (Op.getValueType() == MVT::v4i32 || Op.getValueType() == MVT::v2i32)
3250 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003251
Gabor Greif1c80d112008-08-28 21:40:38 +00003252 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Chris Lattnere6aa3862007-11-25 00:24:49 +00003253 return getOnesVector(Op.getValueType(), DAG);
Evan Cheng8c590372008-05-15 08:39:06 +00003254 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG);
Chris Lattnere6aa3862007-11-25 00:24:49 +00003255 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003256
Duncan Sands92c43912008-06-06 12:08:01 +00003257 MVT VT = Op.getValueType();
3258 MVT EVT = VT.getVectorElementType();
3259 unsigned EVTBits = EVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003260
3261 unsigned NumElems = Op.getNumOperands();
3262 unsigned NumZero = 0;
3263 unsigned NumNonZero = 0;
3264 unsigned NonZeros = 0;
Chris Lattner92bdcb52008-03-08 22:48:29 +00003265 bool IsAllConstants = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00003266 SmallSet<SDValue, 8> Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003267 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003268 SDValue Elt = Op.getOperand(i);
Evan Chengc1073492007-12-12 06:45:40 +00003269 if (Elt.getOpcode() == ISD::UNDEF)
3270 continue;
3271 Values.insert(Elt);
3272 if (Elt.getOpcode() != ISD::Constant &&
3273 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattner92bdcb52008-03-08 22:48:29 +00003274 IsAllConstants = false;
Evan Chengc1073492007-12-12 06:45:40 +00003275 if (isZeroNode(Elt))
3276 NumZero++;
3277 else {
3278 NonZeros |= (1 << i);
3279 NumNonZero++;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003280 }
3281 }
3282
3283 if (NumNonZero == 0) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003284 // All undef vector. Return an UNDEF. All zero vectors were handled above.
3285 return DAG.getNode(ISD::UNDEF, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003286 }
3287
Chris Lattner66a4dda2008-03-09 05:42:06 +00003288 // Special case for single non-zero, non-undef, element.
Evan Chengc1073492007-12-12 06:45:40 +00003289 if (NumNonZero == 1 && NumElems <= 4) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003290 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman8181bd12008-07-27 21:46:04 +00003291 SDValue Item = Op.getOperand(Idx);
Chris Lattnerac914892008-03-08 22:59:52 +00003292
Chris Lattner2d91b962008-03-09 01:05:04 +00003293 // If this is an insertion of an i64 value on x86-32, and if the top bits of
3294 // the value are obviously zero, truncate the value to i32 and do the
3295 // insertion that way. Only do this if the value is non-constant or if the
3296 // value is a constant being inserted into element 0. It is cheaper to do
3297 // a constant pool load than it is to do a movd + shuffle.
3298 if (EVT == MVT::i64 && !Subtarget->is64Bit() &&
3299 (!IsAllConstants || Idx == 0)) {
3300 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
3301 // Handle MMX and SSE both.
Duncan Sands92c43912008-06-06 12:08:01 +00003302 MVT VecVT = VT == MVT::v2i64 ? MVT::v4i32 : MVT::v2i32;
3303 unsigned VecElts = VT == MVT::v2i64 ? 4 : 2;
Chris Lattner2d91b962008-03-09 01:05:04 +00003304
3305 // Truncate the value (which may itself be a constant) to i32, and
3306 // convert it to a vector with movd (S2V+shuffle to zero extend).
3307 Item = DAG.getNode(ISD::TRUNCATE, MVT::i32, Item);
3308 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, VecVT, Item);
Evan Cheng8c590372008-05-15 08:39:06 +00003309 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3310 Subtarget->hasSSE2(), DAG);
Chris Lattner2d91b962008-03-09 01:05:04 +00003311
3312 // Now we have our 32-bit value zero extended in the low element of
3313 // a vector. If Idx != 0, swizzle it into place.
3314 if (Idx != 0) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003315 SDValue Ops[] = {
Chris Lattner2d91b962008-03-09 01:05:04 +00003316 Item, DAG.getNode(ISD::UNDEF, Item.getValueType()),
3317 getSwapEltZeroMask(VecElts, Idx, DAG)
3318 };
3319 Item = DAG.getNode(ISD::VECTOR_SHUFFLE, VecVT, Ops, 3);
3320 }
3321 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(), Item);
3322 }
3323 }
3324
Chris Lattnerac914892008-03-08 22:59:52 +00003325 // If we have a constant or non-constant insertion into the low element of
3326 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
3327 // the rest of the elements. This will be matched as movd/movq/movss/movsd
3328 // depending on what the source datatype is. Because we can only get here
3329 // when NumElems <= 4, this only needs to handle i32/f32/i64/f64.
3330 if (Idx == 0 &&
3331 // Don't do this for i64 values on x86-32.
3332 (EVT != MVT::i64 || Subtarget->is64Bit())) {
Chris Lattner92bdcb52008-03-08 22:48:29 +00003333 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Item);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003334 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Evan Cheng8c590372008-05-15 08:39:06 +00003335 return getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3336 Subtarget->hasSSE2(), DAG);
Chris Lattner92bdcb52008-03-08 22:48:29 +00003337 }
Evan Chengdea99362008-05-29 08:22:04 +00003338
3339 // Is it a vector logical left shift?
3340 if (NumElems == 2 && Idx == 1 &&
3341 isZeroNode(Op.getOperand(0)) && !isZeroNode(Op.getOperand(1))) {
Duncan Sands92c43912008-06-06 12:08:01 +00003342 unsigned NumBits = VT.getSizeInBits();
Evan Chengdea99362008-05-29 08:22:04 +00003343 return getVShift(true, VT,
3344 DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Op.getOperand(1)),
3345 NumBits/2, DAG, *this);
3346 }
Chris Lattner92bdcb52008-03-08 22:48:29 +00003347
3348 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman8181bd12008-07-27 21:46:04 +00003349 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003350
Chris Lattnerac914892008-03-08 22:59:52 +00003351 // Otherwise, if this is a vector with i32 or f32 elements, and the element
3352 // is a non-constant being inserted into an element other than the low one,
3353 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
3354 // movd/movss) to move this into the low element, then shuffle it into
3355 // place.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003356 if (EVTBits == 32) {
Chris Lattner92bdcb52008-03-08 22:48:29 +00003357 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Item);
3358
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003359 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Cheng8c590372008-05-15 08:39:06 +00003360 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3361 Subtarget->hasSSE2(), DAG);
Duncan Sands92c43912008-06-06 12:08:01 +00003362 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3363 MVT MaskEVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003364 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003365 for (unsigned i = 0; i < NumElems; i++)
3366 MaskVec.push_back(DAG.getConstant((i == Idx) ? 0 : 1, MaskEVT));
Dan Gohman8181bd12008-07-27 21:46:04 +00003367 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003368 &MaskVec[0], MaskVec.size());
3369 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, Item,
3370 DAG.getNode(ISD::UNDEF, VT), Mask);
3371 }
3372 }
3373
Chris Lattner66a4dda2008-03-09 05:42:06 +00003374 // Splat is obviously ok. Let legalizer expand it to a shuffle.
3375 if (Values.size() == 1)
Dan Gohman8181bd12008-07-27 21:46:04 +00003376 return SDValue();
Chris Lattner66a4dda2008-03-09 05:42:06 +00003377
Dan Gohman21463242007-07-24 22:55:08 +00003378 // A vector full of immediates; various special cases are already
3379 // handled, so this is best done with a single constant-pool load.
Chris Lattner92bdcb52008-03-08 22:48:29 +00003380 if (IsAllConstants)
Dan Gohman8181bd12008-07-27 21:46:04 +00003381 return SDValue();
Dan Gohman21463242007-07-24 22:55:08 +00003382
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003383 // Let legalizer expand 2-wide build_vectors.
Evan Cheng40ee6e52008-05-08 00:57:18 +00003384 if (EVTBits == 64) {
3385 if (NumNonZero == 1) {
3386 // One half is zero or undef.
3387 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman8181bd12008-07-27 21:46:04 +00003388 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT,
Evan Cheng40ee6e52008-05-08 00:57:18 +00003389 Op.getOperand(Idx));
Evan Cheng8c590372008-05-15 08:39:06 +00003390 return getShuffleVectorZeroOrUndef(V2, Idx, true,
3391 Subtarget->hasSSE2(), DAG);
Evan Cheng40ee6e52008-05-08 00:57:18 +00003392 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003393 return SDValue();
Evan Cheng40ee6e52008-05-08 00:57:18 +00003394 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003395
3396 // If element VT is < 32 bits, convert it to inserts into a zero vector.
3397 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003398 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003399 *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00003400 if (V.getNode()) return V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003401 }
3402
3403 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003404 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003405 *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00003406 if (V.getNode()) return V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003407 }
3408
3409 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman8181bd12008-07-27 21:46:04 +00003410 SmallVector<SDValue, 8> V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003411 V.resize(NumElems);
3412 if (NumElems == 4 && NumZero > 0) {
3413 for (unsigned i = 0; i < 4; ++i) {
3414 bool isZero = !(NonZeros & (1 << i));
3415 if (isZero)
Evan Cheng8c590372008-05-15 08:39:06 +00003416 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003417 else
3418 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Op.getOperand(i));
3419 }
3420
3421 for (unsigned i = 0; i < 2; ++i) {
3422 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
3423 default: break;
3424 case 0:
3425 V[i] = V[i*2]; // Must be a zero vector.
3426 break;
3427 case 1:
3428 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i*2+1], V[i*2],
3429 getMOVLMask(NumElems, DAG));
3430 break;
3431 case 2:
3432 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i*2], V[i*2+1],
3433 getMOVLMask(NumElems, DAG));
3434 break;
3435 case 3:
3436 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i*2], V[i*2+1],
3437 getUnpacklMask(NumElems, DAG));
3438 break;
3439 }
3440 }
3441
Duncan Sands92c43912008-06-06 12:08:01 +00003442 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3443 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003444 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003445 bool Reverse = (NonZeros & 0x3) == 2;
3446 for (unsigned i = 0; i < 2; ++i)
3447 if (Reverse)
3448 MaskVec.push_back(DAG.getConstant(1-i, EVT));
3449 else
3450 MaskVec.push_back(DAG.getConstant(i, EVT));
3451 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
3452 for (unsigned i = 0; i < 2; ++i)
3453 if (Reverse)
3454 MaskVec.push_back(DAG.getConstant(1-i+NumElems, EVT));
3455 else
3456 MaskVec.push_back(DAG.getConstant(i+NumElems, EVT));
Dan Gohman8181bd12008-07-27 21:46:04 +00003457 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003458 &MaskVec[0], MaskVec.size());
3459 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[0], V[1], ShufMask);
3460 }
3461
3462 if (Values.size() > 2) {
3463 // Expand into a number of unpckl*.
3464 // e.g. for v4f32
3465 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
3466 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
3467 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Dan Gohman8181bd12008-07-27 21:46:04 +00003468 SDValue UnpckMask = getUnpacklMask(NumElems, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003469 for (unsigned i = 0; i < NumElems; ++i)
3470 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Op.getOperand(i));
3471 NumElems >>= 1;
3472 while (NumElems != 0) {
3473 for (unsigned i = 0; i < NumElems; ++i)
3474 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i], V[i + NumElems],
3475 UnpckMask);
3476 NumElems >>= 1;
3477 }
3478 return V[0];
3479 }
3480
Dan Gohman8181bd12008-07-27 21:46:04 +00003481 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003482}
3483
Evan Chengfca29242007-12-07 08:07:39 +00003484static
Dan Gohman8181bd12008-07-27 21:46:04 +00003485SDValue LowerVECTOR_SHUFFLEv8i16(SDValue V1, SDValue V2,
Bill Wendling2c7cd592008-08-21 22:35:37 +00003486 SDValue PermMask, SelectionDAG &DAG,
3487 TargetLowering &TLI) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003488 SDValue NewV;
Duncan Sands92c43912008-06-06 12:08:01 +00003489 MVT MaskVT = MVT::getIntVectorWithNumElements(8);
3490 MVT MaskEVT = MaskVT.getVectorElementType();
3491 MVT PtrVT = TLI.getPointerTy();
Gabor Greif1c80d112008-08-28 21:40:38 +00003492 SmallVector<SDValue, 8> MaskElts(PermMask.getNode()->op_begin(),
3493 PermMask.getNode()->op_end());
Evan Cheng75184a92007-12-11 01:46:18 +00003494
3495 // First record which half of which vector the low elements come from.
3496 SmallVector<unsigned, 4> LowQuad(4);
3497 for (unsigned i = 0; i < 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003498 SDValue Elt = MaskElts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003499 if (Elt.getOpcode() == ISD::UNDEF)
3500 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003501 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003502 int QuadIdx = EltIdx / 4;
3503 ++LowQuad[QuadIdx];
3504 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003505
Evan Cheng75184a92007-12-11 01:46:18 +00003506 int BestLowQuad = -1;
3507 unsigned MaxQuad = 1;
3508 for (unsigned i = 0; i < 4; ++i) {
3509 if (LowQuad[i] > MaxQuad) {
3510 BestLowQuad = i;
3511 MaxQuad = LowQuad[i];
3512 }
Evan Chengfca29242007-12-07 08:07:39 +00003513 }
3514
Evan Cheng75184a92007-12-11 01:46:18 +00003515 // Record which half of which vector the high elements come from.
3516 SmallVector<unsigned, 4> HighQuad(4);
3517 for (unsigned i = 4; i < 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003518 SDValue Elt = MaskElts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003519 if (Elt.getOpcode() == ISD::UNDEF)
3520 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003521 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003522 int QuadIdx = EltIdx / 4;
3523 ++HighQuad[QuadIdx];
3524 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003525
Evan Cheng75184a92007-12-11 01:46:18 +00003526 int BestHighQuad = -1;
3527 MaxQuad = 1;
3528 for (unsigned i = 0; i < 4; ++i) {
3529 if (HighQuad[i] > MaxQuad) {
3530 BestHighQuad = i;
3531 MaxQuad = HighQuad[i];
3532 }
3533 }
3534
3535 // If it's possible to sort parts of either half with PSHUF{H|L}W, then do it.
3536 if (BestLowQuad != -1 || BestHighQuad != -1) {
3537 // First sort the 4 chunks in order using shufpd.
Dan Gohman8181bd12008-07-27 21:46:04 +00003538 SmallVector<SDValue, 8> MaskVec;
Bill Wendling2c7cd592008-08-21 22:35:37 +00003539
Evan Cheng75184a92007-12-11 01:46:18 +00003540 if (BestLowQuad != -1)
3541 MaskVec.push_back(DAG.getConstant(BestLowQuad, MVT::i32));
3542 else
3543 MaskVec.push_back(DAG.getConstant(0, MVT::i32));
Bill Wendling2c7cd592008-08-21 22:35:37 +00003544
Evan Cheng75184a92007-12-11 01:46:18 +00003545 if (BestHighQuad != -1)
3546 MaskVec.push_back(DAG.getConstant(BestHighQuad, MVT::i32));
3547 else
3548 MaskVec.push_back(DAG.getConstant(1, MVT::i32));
Bill Wendling2c7cd592008-08-21 22:35:37 +00003549
Dan Gohman8181bd12008-07-27 21:46:04 +00003550 SDValue Mask= DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i32, &MaskVec[0],2);
Evan Cheng75184a92007-12-11 01:46:18 +00003551 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v2i64,
3552 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64, V1),
3553 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64, V2), Mask);
3554 NewV = DAG.getNode(ISD::BIT_CONVERT, MVT::v8i16, NewV);
3555
3556 // Now sort high and low parts separately.
3557 BitVector InOrder(8);
3558 if (BestLowQuad != -1) {
3559 // Sort lower half in order using PSHUFLW.
3560 MaskVec.clear();
3561 bool AnyOutOrder = false;
Bill Wendling2c7cd592008-08-21 22:35:37 +00003562
Evan Cheng75184a92007-12-11 01:46:18 +00003563 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003564 SDValue Elt = MaskElts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003565 if (Elt.getOpcode() == ISD::UNDEF) {
3566 MaskVec.push_back(Elt);
3567 InOrder.set(i);
3568 } else {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003569 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003570 if (EltIdx != i)
3571 AnyOutOrder = true;
Bill Wendling2c7cd592008-08-21 22:35:37 +00003572
Evan Cheng75184a92007-12-11 01:46:18 +00003573 MaskVec.push_back(DAG.getConstant(EltIdx % 4, MaskEVT));
Bill Wendling2c7cd592008-08-21 22:35:37 +00003574
Evan Cheng75184a92007-12-11 01:46:18 +00003575 // If this element is in the right place after this shuffle, then
3576 // remember it.
3577 if ((int)(EltIdx / 4) == BestLowQuad)
3578 InOrder.set(i);
3579 }
3580 }
3581 if (AnyOutOrder) {
3582 for (unsigned i = 4; i != 8; ++i)
3583 MaskVec.push_back(DAG.getConstant(i, MaskEVT));
Dan Gohman8181bd12008-07-27 21:46:04 +00003584 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], 8);
Evan Cheng75184a92007-12-11 01:46:18 +00003585 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v8i16, NewV, NewV, Mask);
3586 }
3587 }
3588
3589 if (BestHighQuad != -1) {
3590 // Sort high half in order using PSHUFHW if possible.
3591 MaskVec.clear();
Bill Wendling2c7cd592008-08-21 22:35:37 +00003592
Evan Cheng75184a92007-12-11 01:46:18 +00003593 for (unsigned i = 0; i != 4; ++i)
3594 MaskVec.push_back(DAG.getConstant(i, MaskEVT));
Bill Wendling2c7cd592008-08-21 22:35:37 +00003595
Evan Cheng75184a92007-12-11 01:46:18 +00003596 bool AnyOutOrder = false;
3597 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003598 SDValue Elt = MaskElts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003599 if (Elt.getOpcode() == ISD::UNDEF) {
3600 MaskVec.push_back(Elt);
3601 InOrder.set(i);
3602 } else {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003603 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003604 if (EltIdx != i)
3605 AnyOutOrder = true;
Bill Wendling2c7cd592008-08-21 22:35:37 +00003606
Evan Cheng75184a92007-12-11 01:46:18 +00003607 MaskVec.push_back(DAG.getConstant((EltIdx % 4) + 4, MaskEVT));
Bill Wendling2c7cd592008-08-21 22:35:37 +00003608
Evan Cheng75184a92007-12-11 01:46:18 +00003609 // If this element is in the right place after this shuffle, then
3610 // remember it.
3611 if ((int)(EltIdx / 4) == BestHighQuad)
3612 InOrder.set(i);
3613 }
3614 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003615
Evan Cheng75184a92007-12-11 01:46:18 +00003616 if (AnyOutOrder) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003617 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], 8);
Evan Cheng75184a92007-12-11 01:46:18 +00003618 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v8i16, NewV, NewV, Mask);
3619 }
3620 }
3621
3622 // The other elements are put in the right place using pextrw and pinsrw.
3623 for (unsigned i = 0; i != 8; ++i) {
3624 if (InOrder[i])
3625 continue;
Dan Gohman8181bd12008-07-27 21:46:04 +00003626 SDValue Elt = MaskElts[i];
Bill Wendling49bd4db2008-08-21 22:36:36 +00003627 if (Elt.getOpcode() == ISD::UNDEF)
3628 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003629 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00003630 SDValue ExtOp = (EltIdx < 8)
Evan Cheng75184a92007-12-11 01:46:18 +00003631 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i16, V1,
3632 DAG.getConstant(EltIdx, PtrVT))
3633 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i16, V2,
3634 DAG.getConstant(EltIdx - 8, PtrVT));
3635 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, NewV, ExtOp,
3636 DAG.getConstant(i, PtrVT));
3637 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003638
Evan Cheng75184a92007-12-11 01:46:18 +00003639 return NewV;
3640 }
3641
Bill Wendling2c7cd592008-08-21 22:35:37 +00003642 // PSHUF{H|L}W are not used. Lower into extracts and inserts but try to use as
3643 // few as possible. First, let's find out how many elements are already in the
3644 // right order.
Evan Chengfca29242007-12-07 08:07:39 +00003645 unsigned V1InOrder = 0;
3646 unsigned V1FromV1 = 0;
3647 unsigned V2InOrder = 0;
3648 unsigned V2FromV2 = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00003649 SmallVector<SDValue, 8> V1Elts;
3650 SmallVector<SDValue, 8> V2Elts;
Evan Chengfca29242007-12-07 08:07:39 +00003651 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003652 SDValue Elt = MaskElts[i];
Evan Chengfca29242007-12-07 08:07:39 +00003653 if (Elt.getOpcode() == ISD::UNDEF) {
Evan Cheng75184a92007-12-11 01:46:18 +00003654 V1Elts.push_back(Elt);
3655 V2Elts.push_back(Elt);
Evan Chengfca29242007-12-07 08:07:39 +00003656 ++V1InOrder;
3657 ++V2InOrder;
Evan Cheng75184a92007-12-11 01:46:18 +00003658 continue;
3659 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003660 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003661 if (EltIdx == i) {
3662 V1Elts.push_back(Elt);
3663 V2Elts.push_back(DAG.getConstant(i+8, MaskEVT));
3664 ++V1InOrder;
3665 } else if (EltIdx == i+8) {
3666 V1Elts.push_back(Elt);
3667 V2Elts.push_back(DAG.getConstant(i, MaskEVT));
3668 ++V2InOrder;
3669 } else if (EltIdx < 8) {
3670 V1Elts.push_back(Elt);
Mon P Wang532c9632008-12-23 04:03:27 +00003671 V2Elts.push_back(DAG.getConstant(i+8, MaskEVT));
Evan Cheng75184a92007-12-11 01:46:18 +00003672 ++V1FromV1;
Evan Chengfca29242007-12-07 08:07:39 +00003673 } else {
Mon P Wang532c9632008-12-23 04:03:27 +00003674 V1Elts.push_back(Elt);
Evan Cheng75184a92007-12-11 01:46:18 +00003675 V2Elts.push_back(DAG.getConstant(EltIdx-8, MaskEVT));
3676 ++V2FromV2;
Evan Chengfca29242007-12-07 08:07:39 +00003677 }
3678 }
3679
3680 if (V2InOrder > V1InOrder) {
3681 PermMask = CommuteVectorShuffleMask(PermMask, DAG);
3682 std::swap(V1, V2);
3683 std::swap(V1Elts, V2Elts);
3684 std::swap(V1FromV1, V2FromV2);
3685 }
3686
Evan Cheng75184a92007-12-11 01:46:18 +00003687 if ((V1FromV1 + V1InOrder) != 8) {
3688 // Some elements are from V2.
3689 if (V1FromV1) {
3690 // If there are elements that are from V1 but out of place,
3691 // then first sort them in place
Dan Gohman8181bd12008-07-27 21:46:04 +00003692 SmallVector<SDValue, 8> MaskVec;
Evan Cheng75184a92007-12-11 01:46:18 +00003693 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003694 SDValue Elt = V1Elts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003695 if (Elt.getOpcode() == ISD::UNDEF) {
3696 MaskVec.push_back(DAG.getNode(ISD::UNDEF, MaskEVT));
3697 continue;
3698 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003699 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003700 if (EltIdx >= 8)
3701 MaskVec.push_back(DAG.getNode(ISD::UNDEF, MaskEVT));
3702 else
3703 MaskVec.push_back(DAG.getConstant(EltIdx, MaskEVT));
3704 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003705 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], 8);
Evan Cheng75184a92007-12-11 01:46:18 +00003706 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v8i16, V1, V1, Mask);
Evan Chengfca29242007-12-07 08:07:39 +00003707 }
Evan Cheng75184a92007-12-11 01:46:18 +00003708
3709 NewV = V1;
3710 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003711 SDValue Elt = V1Elts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003712 if (Elt.getOpcode() == ISD::UNDEF)
3713 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003714 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003715 if (EltIdx < 8)
3716 continue;
Dan Gohman8181bd12008-07-27 21:46:04 +00003717 SDValue ExtOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i16, V2,
Evan Cheng75184a92007-12-11 01:46:18 +00003718 DAG.getConstant(EltIdx - 8, PtrVT));
3719 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, NewV, ExtOp,
3720 DAG.getConstant(i, PtrVT));
3721 }
3722 return NewV;
3723 } else {
3724 // All elements are from V1.
3725 NewV = V1;
3726 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003727 SDValue Elt = V1Elts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003728 if (Elt.getOpcode() == ISD::UNDEF)
3729 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003730 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00003731 SDValue ExtOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i16, V1,
Evan Cheng75184a92007-12-11 01:46:18 +00003732 DAG.getConstant(EltIdx, PtrVT));
3733 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, NewV, ExtOp,
3734 DAG.getConstant(i, PtrVT));
3735 }
3736 return NewV;
3737 }
3738}
3739
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003740/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
3741/// ones, or rewriting v4i32 / v2f32 as 2 wide ones if possible. This can be
3742/// done when every pair / quad of shuffle mask elements point to elements in
3743/// the right sequence. e.g.
Evan Cheng75184a92007-12-11 01:46:18 +00003744/// vector_shuffle <>, <>, < 3, 4, | 10, 11, | 0, 1, | 14, 15>
3745static
Dan Gohman8181bd12008-07-27 21:46:04 +00003746SDValue RewriteAsNarrowerShuffle(SDValue V1, SDValue V2,
Duncan Sands92c43912008-06-06 12:08:01 +00003747 MVT VT,
Dan Gohman8181bd12008-07-27 21:46:04 +00003748 SDValue PermMask, SelectionDAG &DAG,
Evan Cheng75184a92007-12-11 01:46:18 +00003749 TargetLowering &TLI) {
3750 unsigned NumElems = PermMask.getNumOperands();
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003751 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Duncan Sands92c43912008-06-06 12:08:01 +00003752 MVT MaskVT = MVT::getIntVectorWithNumElements(NewWidth);
Duncan Sandsd3ace282008-07-21 10:20:31 +00003753 MVT MaskEltVT = MaskVT.getVectorElementType();
Duncan Sands92c43912008-06-06 12:08:01 +00003754 MVT NewVT = MaskVT;
3755 switch (VT.getSimpleVT()) {
3756 default: assert(false && "Unexpected!");
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003757 case MVT::v4f32: NewVT = MVT::v2f64; break;
3758 case MVT::v4i32: NewVT = MVT::v2i64; break;
3759 case MVT::v8i16: NewVT = MVT::v4i32; break;
3760 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003761 }
3762
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00003763 if (NewWidth == 2) {
Duncan Sands92c43912008-06-06 12:08:01 +00003764 if (VT.isInteger())
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003765 NewVT = MVT::v2i64;
3766 else
3767 NewVT = MVT::v2f64;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00003768 }
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003769 unsigned Scale = NumElems / NewWidth;
Dan Gohman8181bd12008-07-27 21:46:04 +00003770 SmallVector<SDValue, 8> MaskVec;
Evan Cheng75184a92007-12-11 01:46:18 +00003771 for (unsigned i = 0; i < NumElems; i += Scale) {
3772 unsigned StartIdx = ~0U;
3773 for (unsigned j = 0; j < Scale; ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003774 SDValue Elt = PermMask.getOperand(i+j);
Evan Cheng75184a92007-12-11 01:46:18 +00003775 if (Elt.getOpcode() == ISD::UNDEF)
3776 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003777 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003778 if (StartIdx == ~0U)
3779 StartIdx = EltIdx - (EltIdx % Scale);
3780 if (EltIdx != StartIdx + j)
Dan Gohman8181bd12008-07-27 21:46:04 +00003781 return SDValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003782 }
3783 if (StartIdx == ~0U)
Duncan Sandsd3ace282008-07-21 10:20:31 +00003784 MaskVec.push_back(DAG.getNode(ISD::UNDEF, MaskEltVT));
Evan Cheng75184a92007-12-11 01:46:18 +00003785 else
Duncan Sandsd3ace282008-07-21 10:20:31 +00003786 MaskVec.push_back(DAG.getConstant(StartIdx / Scale, MaskEltVT));
Evan Chengfca29242007-12-07 08:07:39 +00003787 }
3788
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003789 V1 = DAG.getNode(ISD::BIT_CONVERT, NewVT, V1);
3790 V2 = DAG.getNode(ISD::BIT_CONVERT, NewVT, V2);
3791 return DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT, V1, V2,
3792 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3793 &MaskVec[0], MaskVec.size()));
Evan Chengfca29242007-12-07 08:07:39 +00003794}
3795
Evan Chenge9b9c672008-05-09 21:53:03 +00003796/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng40ee6e52008-05-08 00:57:18 +00003797///
Dan Gohman8181bd12008-07-27 21:46:04 +00003798static SDValue getVZextMovL(MVT VT, MVT OpVT,
3799 SDValue SrcOp, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00003800 const X86Subtarget *Subtarget) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00003801 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
3802 LoadSDNode *LD = NULL;
Gabor Greif1c80d112008-08-28 21:40:38 +00003803 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng40ee6e52008-05-08 00:57:18 +00003804 LD = dyn_cast<LoadSDNode>(SrcOp);
3805 if (!LD) {
3806 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
3807 // instead.
Duncan Sands92c43912008-06-06 12:08:01 +00003808 MVT EVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Evan Cheng40ee6e52008-05-08 00:57:18 +00003809 if ((EVT != MVT::i64 || Subtarget->is64Bit()) &&
3810 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
3811 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
3812 SrcOp.getOperand(0).getOperand(0).getValueType() == EVT) {
3813 // PR2108
3814 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
3815 return DAG.getNode(ISD::BIT_CONVERT, VT,
Evan Chenge9b9c672008-05-09 21:53:03 +00003816 DAG.getNode(X86ISD::VZEXT_MOVL, OpVT,
Evan Cheng40ee6e52008-05-08 00:57:18 +00003817 DAG.getNode(ISD::SCALAR_TO_VECTOR, OpVT,
Gabor Greif825aa892008-08-28 23:19:51 +00003818 SrcOp.getOperand(0)
3819 .getOperand(0))));
Evan Cheng40ee6e52008-05-08 00:57:18 +00003820 }
3821 }
3822 }
3823
3824 return DAG.getNode(ISD::BIT_CONVERT, VT,
Evan Chenge9b9c672008-05-09 21:53:03 +00003825 DAG.getNode(X86ISD::VZEXT_MOVL, OpVT,
Evan Cheng40ee6e52008-05-08 00:57:18 +00003826 DAG.getNode(ISD::BIT_CONVERT, OpVT, SrcOp)));
3827}
3828
Evan Chengf50554e2008-07-22 21:13:36 +00003829/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
3830/// shuffles.
Dan Gohman8181bd12008-07-27 21:46:04 +00003831static SDValue
3832LowerVECTOR_SHUFFLE_4wide(SDValue V1, SDValue V2,
3833 SDValue PermMask, MVT VT, SelectionDAG &DAG) {
Evan Chengf50554e2008-07-22 21:13:36 +00003834 MVT MaskVT = PermMask.getValueType();
3835 MVT MaskEVT = MaskVT.getVectorElementType();
3836 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola4e3ff5a2008-08-28 18:32:53 +00003837 Locs.resize(4);
Dan Gohman8181bd12008-07-27 21:46:04 +00003838 SmallVector<SDValue, 8> Mask1(4, DAG.getNode(ISD::UNDEF, MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00003839 unsigned NumHi = 0;
3840 unsigned NumLo = 0;
Evan Chengf50554e2008-07-22 21:13:36 +00003841 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003842 SDValue Elt = PermMask.getOperand(i);
Evan Chengf50554e2008-07-22 21:13:36 +00003843 if (Elt.getOpcode() == ISD::UNDEF) {
3844 Locs[i] = std::make_pair(-1, -1);
3845 } else {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003846 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohmance57fd92008-08-04 23:09:15 +00003847 assert(Val < 8 && "Invalid VECTOR_SHUFFLE index!");
Evan Chengf50554e2008-07-22 21:13:36 +00003848 if (Val < 4) {
3849 Locs[i] = std::make_pair(0, NumLo);
3850 Mask1[NumLo] = Elt;
3851 NumLo++;
3852 } else {
3853 Locs[i] = std::make_pair(1, NumHi);
3854 if (2+NumHi < 4)
3855 Mask1[2+NumHi] = Elt;
3856 NumHi++;
3857 }
3858 }
3859 }
Evan Cheng3cae0332008-07-23 00:22:17 +00003860
Evan Chengf50554e2008-07-22 21:13:36 +00003861 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng3cae0332008-07-23 00:22:17 +00003862 // If no more than two elements come from either vector. This can be
3863 // implemented with two shuffles. First shuffle gather the elements.
3864 // The second shuffle, which takes the first shuffle as both of its
3865 // vector operands, put the elements into the right order.
Evan Chengf50554e2008-07-22 21:13:36 +00003866 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
3867 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3868 &Mask1[0], Mask1.size()));
Evan Cheng3cae0332008-07-23 00:22:17 +00003869
Dan Gohman8181bd12008-07-27 21:46:04 +00003870 SmallVector<SDValue, 8> Mask2(4, DAG.getNode(ISD::UNDEF, MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00003871 for (unsigned i = 0; i != 4; ++i) {
3872 if (Locs[i].first == -1)
3873 continue;
3874 else {
3875 unsigned Idx = (i < 2) ? 0 : 4;
3876 Idx += Locs[i].first * 2 + Locs[i].second;
3877 Mask2[i] = DAG.getConstant(Idx, MaskEVT);
3878 }
3879 }
3880
3881 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V1,
3882 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3883 &Mask2[0], Mask2.size()));
Evan Cheng3cae0332008-07-23 00:22:17 +00003884 } else if (NumLo == 3 || NumHi == 3) {
3885 // Otherwise, we must have three elements from one vector, call it X, and
3886 // one element from the other, call it Y. First, use a shufps to build an
3887 // intermediate vector with the one element from Y and the element from X
3888 // that will be in the same half in the final destination (the indexes don't
3889 // matter). Then, use a shufps to build the final vector, taking the half
3890 // containing the element from Y from the intermediate, and the other half
3891 // from X.
3892 if (NumHi == 3) {
3893 // Normalize it so the 3 elements come from V1.
3894 PermMask = CommuteVectorShuffleMask(PermMask, DAG);
3895 std::swap(V1, V2);
3896 }
3897
3898 // Find the element from V2.
3899 unsigned HiIndex;
3900 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003901 SDValue Elt = PermMask.getOperand(HiIndex);
Evan Cheng3cae0332008-07-23 00:22:17 +00003902 if (Elt.getOpcode() == ISD::UNDEF)
3903 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003904 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng3cae0332008-07-23 00:22:17 +00003905 if (Val >= 4)
3906 break;
3907 }
3908
3909 Mask1[0] = PermMask.getOperand(HiIndex);
3910 Mask1[1] = DAG.getNode(ISD::UNDEF, MaskEVT);
3911 Mask1[2] = PermMask.getOperand(HiIndex^1);
3912 Mask1[3] = DAG.getNode(ISD::UNDEF, MaskEVT);
3913 V2 = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
3914 DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &Mask1[0], 4));
3915
3916 if (HiIndex >= 2) {
3917 Mask1[0] = PermMask.getOperand(0);
3918 Mask1[1] = PermMask.getOperand(1);
3919 Mask1[2] = DAG.getConstant(HiIndex & 1 ? 6 : 4, MaskEVT);
3920 Mask1[3] = DAG.getConstant(HiIndex & 1 ? 4 : 6, MaskEVT);
3921 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
3922 DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &Mask1[0], 4));
3923 } else {
3924 Mask1[0] = DAG.getConstant(HiIndex & 1 ? 2 : 0, MaskEVT);
3925 Mask1[1] = DAG.getConstant(HiIndex & 1 ? 0 : 2, MaskEVT);
3926 Mask1[2] = PermMask.getOperand(2);
3927 Mask1[3] = PermMask.getOperand(3);
3928 if (Mask1[2].getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003929 Mask1[2] =
3930 DAG.getConstant(cast<ConstantSDNode>(Mask1[2])->getZExtValue()+4,
3931 MaskEVT);
Evan Cheng3cae0332008-07-23 00:22:17 +00003932 if (Mask1[3].getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003933 Mask1[3] =
3934 DAG.getConstant(cast<ConstantSDNode>(Mask1[3])->getZExtValue()+4,
3935 MaskEVT);
Evan Cheng3cae0332008-07-23 00:22:17 +00003936 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V2, V1,
3937 DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &Mask1[0], 4));
3938 }
Evan Chengf50554e2008-07-22 21:13:36 +00003939 }
3940
3941 // Break it into (shuffle shuffle_hi, shuffle_lo).
3942 Locs.clear();
Dan Gohman8181bd12008-07-27 21:46:04 +00003943 SmallVector<SDValue,8> LoMask(4, DAG.getNode(ISD::UNDEF, MaskEVT));
3944 SmallVector<SDValue,8> HiMask(4, DAG.getNode(ISD::UNDEF, MaskEVT));
3945 SmallVector<SDValue,8> *MaskPtr = &LoMask;
Evan Chengf50554e2008-07-22 21:13:36 +00003946 unsigned MaskIdx = 0;
3947 unsigned LoIdx = 0;
3948 unsigned HiIdx = 2;
3949 for (unsigned i = 0; i != 4; ++i) {
3950 if (i == 2) {
3951 MaskPtr = &HiMask;
3952 MaskIdx = 1;
3953 LoIdx = 0;
3954 HiIdx = 2;
3955 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003956 SDValue Elt = PermMask.getOperand(i);
Evan Chengf50554e2008-07-22 21:13:36 +00003957 if (Elt.getOpcode() == ISD::UNDEF) {
3958 Locs[i] = std::make_pair(-1, -1);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003959 } else if (cast<ConstantSDNode>(Elt)->getZExtValue() < 4) {
Evan Chengf50554e2008-07-22 21:13:36 +00003960 Locs[i] = std::make_pair(MaskIdx, LoIdx);
3961 (*MaskPtr)[LoIdx] = Elt;
3962 LoIdx++;
3963 } else {
3964 Locs[i] = std::make_pair(MaskIdx, HiIdx);
3965 (*MaskPtr)[HiIdx] = Elt;
3966 HiIdx++;
3967 }
3968 }
3969
Dan Gohman8181bd12008-07-27 21:46:04 +00003970 SDValue LoShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
Evan Chengf50554e2008-07-22 21:13:36 +00003971 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3972 &LoMask[0], LoMask.size()));
Dan Gohman8181bd12008-07-27 21:46:04 +00003973 SDValue HiShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
Evan Chengf50554e2008-07-22 21:13:36 +00003974 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3975 &HiMask[0], HiMask.size()));
Dan Gohman8181bd12008-07-27 21:46:04 +00003976 SmallVector<SDValue, 8> MaskOps;
Evan Chengf50554e2008-07-22 21:13:36 +00003977 for (unsigned i = 0; i != 4; ++i) {
3978 if (Locs[i].first == -1) {
3979 MaskOps.push_back(DAG.getNode(ISD::UNDEF, MaskEVT));
3980 } else {
3981 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
3982 MaskOps.push_back(DAG.getConstant(Idx, MaskEVT));
3983 }
3984 }
3985 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, LoShuffle, HiShuffle,
3986 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3987 &MaskOps[0], MaskOps.size()));
3988}
3989
Dan Gohman8181bd12008-07-27 21:46:04 +00003990SDValue
3991X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
3992 SDValue V1 = Op.getOperand(0);
3993 SDValue V2 = Op.getOperand(1);
3994 SDValue PermMask = Op.getOperand(2);
Duncan Sands92c43912008-06-06 12:08:01 +00003995 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003996 unsigned NumElems = PermMask.getNumOperands();
Duncan Sands92c43912008-06-06 12:08:01 +00003997 bool isMMX = VT.getSizeInBits() == 64;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003998 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
3999 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
4000 bool V1IsSplat = false;
4001 bool V2IsSplat = false;
4002
Gabor Greif1c80d112008-08-28 21:40:38 +00004003 if (isUndefShuffle(Op.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004004 return DAG.getNode(ISD::UNDEF, VT);
4005
Gabor Greif1c80d112008-08-28 21:40:38 +00004006 if (isZeroShuffle(Op.getNode()))
Evan Cheng8c590372008-05-15 08:39:06 +00004007 return getZeroVector(VT, Subtarget->hasSSE2(), DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004008
Gabor Greif1c80d112008-08-28 21:40:38 +00004009 if (isIdentityMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004010 return V1;
Gabor Greif1c80d112008-08-28 21:40:38 +00004011 else if (isIdentityMask(PermMask.getNode(), true))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004012 return V2;
4013
Evan Chengae6c9212008-09-25 23:35:16 +00004014 // Canonicalize movddup shuffles.
4015 if (V2IsUndef && Subtarget->hasSSE2() &&
Evan Chengbdd9d9f2008-10-06 21:13:08 +00004016 VT.getSizeInBits() == 128 &&
Evan Chengae6c9212008-09-25 23:35:16 +00004017 X86::isMOVDDUPMask(PermMask.getNode()))
4018 return CanonicalizeMovddup(Op, V1, PermMask, DAG, Subtarget->hasSSE3());
4019
Gabor Greif1c80d112008-08-28 21:40:38 +00004020 if (isSplatMask(PermMask.getNode())) {
Evan Chengbf8b2c52008-04-05 00:30:36 +00004021 if (isMMX || NumElems < 4) return Op;
4022 // Promote it to a v4{if}32 splat.
4023 return PromoteSplat(Op, DAG, Subtarget->hasSSE2());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004024 }
4025
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004026 // If the shuffle can be profitably rewritten as a narrower shuffle, then
4027 // do it!
4028 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004029 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask, DAG, *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00004030 if (NewOp.getNode())
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004031 return DAG.getNode(ISD::BIT_CONVERT, VT, LowerVECTOR_SHUFFLE(NewOp, DAG));
4032 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
4033 // FIXME: Figure out a cleaner way to do this.
4034 // Try to make use of movq to zero out the top part.
Gabor Greif1c80d112008-08-28 21:40:38 +00004035 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004036 SDValue NewOp = RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Evan Cheng40ee6e52008-05-08 00:57:18 +00004037 DAG, *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00004038 if (NewOp.getNode()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004039 SDValue NewV1 = NewOp.getOperand(0);
4040 SDValue NewV2 = NewOp.getOperand(1);
4041 SDValue NewMask = NewOp.getOperand(2);
Gabor Greif1c80d112008-08-28 21:40:38 +00004042 if (isCommutedMOVL(NewMask.getNode(), true, false)) {
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004043 NewOp = CommuteVectorShuffle(NewOp, NewV1, NewV2, NewMask, DAG);
Evan Chenge9b9c672008-05-09 21:53:03 +00004044 return getVZextMovL(VT, NewOp.getValueType(), NewV2, DAG, Subtarget);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004045 }
4046 }
Gabor Greif1c80d112008-08-28 21:40:38 +00004047 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004048 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Evan Cheng40ee6e52008-05-08 00:57:18 +00004049 DAG, *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00004050 if (NewOp.getNode() && X86::isMOVLMask(NewOp.getOperand(2).getNode()))
Evan Chenge9b9c672008-05-09 21:53:03 +00004051 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
Evan Cheng40ee6e52008-05-08 00:57:18 +00004052 DAG, Subtarget);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004053 }
4054 }
4055
Evan Chengdea99362008-05-29 08:22:04 +00004056 // Check if this can be converted into a logical shift.
4057 bool isLeft = false;
4058 unsigned ShAmt = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00004059 SDValue ShVal;
Evan Chengdea99362008-05-29 08:22:04 +00004060 bool isShift = isVectorShift(Op, PermMask, DAG, isLeft, ShVal, ShAmt);
4061 if (isShift && ShVal.hasOneUse()) {
4062 // If the shifted value has multiple uses, it may be cheaper to use
4063 // v_set0 + movlhps or movhlps, etc.
Duncan Sands92c43912008-06-06 12:08:01 +00004064 MVT EVT = VT.getVectorElementType();
4065 ShAmt *= EVT.getSizeInBits();
Evan Chengdea99362008-05-29 08:22:04 +00004066 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this);
4067 }
4068
Gabor Greif1c80d112008-08-28 21:40:38 +00004069 if (X86::isMOVLMask(PermMask.getNode())) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00004070 if (V1IsUndef)
4071 return V2;
Gabor Greif1c80d112008-08-28 21:40:38 +00004072 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Evan Chenge9b9c672008-05-09 21:53:03 +00004073 return getVZextMovL(VT, VT, V2, DAG, Subtarget);
Nate Begeman6357f9d2008-07-25 19:05:58 +00004074 if (!isMMX)
4075 return Op;
Evan Cheng40ee6e52008-05-08 00:57:18 +00004076 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004077
Gabor Greif1c80d112008-08-28 21:40:38 +00004078 if (!isMMX && (X86::isMOVSHDUPMask(PermMask.getNode()) ||
4079 X86::isMOVSLDUPMask(PermMask.getNode()) ||
4080 X86::isMOVHLPSMask(PermMask.getNode()) ||
4081 X86::isMOVHPMask(PermMask.getNode()) ||
4082 X86::isMOVLPMask(PermMask.getNode())))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004083 return Op;
4084
Gabor Greif1c80d112008-08-28 21:40:38 +00004085 if (ShouldXformToMOVHLPS(PermMask.getNode()) ||
4086 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004087 return CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4088
Evan Chengdea99362008-05-29 08:22:04 +00004089 if (isShift) {
4090 // No better options. Use a vshl / vsrl.
Duncan Sands92c43912008-06-06 12:08:01 +00004091 MVT EVT = VT.getVectorElementType();
4092 ShAmt *= EVT.getSizeInBits();
Evan Chengdea99362008-05-29 08:22:04 +00004093 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this);
4094 }
4095
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004096 bool Commuted = false;
Chris Lattnere6aa3862007-11-25 00:24:49 +00004097 // FIXME: This should also accept a bitcast of a splat? Be careful, not
4098 // 1,1,1,1 -> v8i16 though.
Gabor Greif1c80d112008-08-28 21:40:38 +00004099 V1IsSplat = isSplatVector(V1.getNode());
4100 V2IsSplat = isSplatVector(V2.getNode());
Chris Lattnere6aa3862007-11-25 00:24:49 +00004101
4102 // Canonicalize the splat or undef, if present, to be on the RHS.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004103 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
4104 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4105 std::swap(V1IsSplat, V2IsSplat);
4106 std::swap(V1IsUndef, V2IsUndef);
4107 Commuted = true;
4108 }
4109
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004110 // FIXME: Figure out a cleaner way to do this.
Gabor Greif1c80d112008-08-28 21:40:38 +00004111 if (isCommutedMOVL(PermMask.getNode(), V2IsSplat, V2IsUndef)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004112 if (V2IsUndef) return V1;
4113 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4114 if (V2IsSplat) {
4115 // V2 is a splat, so the mask may be malformed. That is, it may point
4116 // to any V2 element. The instruction selectior won't like this. Get
4117 // a corrected mask and commute to form a proper MOVS{S|D}.
Dan Gohman8181bd12008-07-27 21:46:04 +00004118 SDValue NewMask = getMOVLMask(NumElems, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004119 if (NewMask.getNode() != PermMask.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004120 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, NewMask);
4121 }
4122 return Op;
4123 }
4124
Gabor Greif1c80d112008-08-28 21:40:38 +00004125 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4126 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4127 X86::isUNPCKLMask(PermMask.getNode()) ||
4128 X86::isUNPCKHMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004129 return Op;
4130
4131 if (V2IsSplat) {
4132 // Normalize mask so all entries that point to V2 points to its first
4133 // element then try to match unpck{h|l} again. If match, return a
4134 // new vector_shuffle with the corrected mask.
Dan Gohman8181bd12008-07-27 21:46:04 +00004135 SDValue NewMask = NormalizeMask(PermMask, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004136 if (NewMask.getNode() != PermMask.getNode()) {
4137 if (X86::isUNPCKLMask(PermMask.getNode(), true)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004138 SDValue NewMask = getUnpacklMask(NumElems, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004139 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, NewMask);
Gabor Greif1c80d112008-08-28 21:40:38 +00004140 } else if (X86::isUNPCKHMask(PermMask.getNode(), true)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004141 SDValue NewMask = getUnpackhMask(NumElems, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004142 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, NewMask);
4143 }
4144 }
4145 }
4146
4147 // Normalize the node to match x86 shuffle ops if needed
Gabor Greif1c80d112008-08-28 21:40:38 +00004148 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004149 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4150
4151 if (Commuted) {
4152 // Commute is back and try unpck* again.
4153 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004154 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4155 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4156 X86::isUNPCKLMask(PermMask.getNode()) ||
4157 X86::isUNPCKHMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004158 return Op;
4159 }
4160
Evan Chengbf8b2c52008-04-05 00:30:36 +00004161 // Try PSHUF* first, then SHUFP*.
4162 // MMX doesn't have PSHUFD but it does have PSHUFW. While it's theoretically
4163 // possible to shuffle a v2i32 using PSHUFW, that's not yet implemented.
Gabor Greif1c80d112008-08-28 21:40:38 +00004164 if (isMMX && NumElems == 4 && X86::isPSHUFDMask(PermMask.getNode())) {
Evan Chengbf8b2c52008-04-05 00:30:36 +00004165 if (V2.getOpcode() != ISD::UNDEF)
4166 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1,
4167 DAG.getNode(ISD::UNDEF, VT), PermMask);
4168 return Op;
4169 }
4170
4171 if (!isMMX) {
4172 if (Subtarget->hasSSE2() &&
Gabor Greif1c80d112008-08-28 21:40:38 +00004173 (X86::isPSHUFDMask(PermMask.getNode()) ||
4174 X86::isPSHUFHWMask(PermMask.getNode()) ||
4175 X86::isPSHUFLWMask(PermMask.getNode()))) {
Duncan Sands92c43912008-06-06 12:08:01 +00004176 MVT RVT = VT;
Evan Chengbf8b2c52008-04-05 00:30:36 +00004177 if (VT == MVT::v4f32) {
4178 RVT = MVT::v4i32;
4179 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, RVT,
4180 DAG.getNode(ISD::BIT_CONVERT, RVT, V1),
4181 DAG.getNode(ISD::UNDEF, RVT), PermMask);
4182 } else if (V2.getOpcode() != ISD::UNDEF)
4183 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, RVT, V1,
4184 DAG.getNode(ISD::UNDEF, RVT), PermMask);
4185 if (RVT != VT)
4186 Op = DAG.getNode(ISD::BIT_CONVERT, VT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004187 return Op;
4188 }
4189
Evan Chengbf8b2c52008-04-05 00:30:36 +00004190 // Binary or unary shufps.
Gabor Greif1c80d112008-08-28 21:40:38 +00004191 if (X86::isSHUFPMask(PermMask.getNode()) ||
4192 (V2.getOpcode() == ISD::UNDEF && X86::isPSHUFDMask(PermMask.getNode())))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004193 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004194 }
4195
Evan Cheng75184a92007-12-11 01:46:18 +00004196 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
4197 if (VT == MVT::v8i16) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004198 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(V1, V2, PermMask, DAG, *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00004199 if (NewOp.getNode())
Evan Cheng75184a92007-12-11 01:46:18 +00004200 return NewOp;
4201 }
4202
Evan Chengf50554e2008-07-22 21:13:36 +00004203 // Handle all 4 wide cases with a number of shuffles except for MMX.
4204 if (NumElems == 4 && !isMMX)
4205 return LowerVECTOR_SHUFFLE_4wide(V1, V2, PermMask, VT, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004206
Dan Gohman8181bd12008-07-27 21:46:04 +00004207 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004208}
4209
Dan Gohman8181bd12008-07-27 21:46:04 +00004210SDValue
4211X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Nate Begemand77e59e2008-02-11 04:19:36 +00004212 SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004213 MVT VT = Op.getValueType();
4214 if (VT.getSizeInBits() == 8) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004215 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, MVT::i32,
Nate Begemand77e59e2008-02-11 04:19:36 +00004216 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8181bd12008-07-27 21:46:04 +00004217 SDValue Assert = DAG.getNode(ISD::AssertZext, MVT::i32, Extract,
Nate Begemand77e59e2008-02-11 04:19:36 +00004218 DAG.getValueType(VT));
4219 return DAG.getNode(ISD::TRUNCATE, VT, Assert);
Duncan Sands92c43912008-06-06 12:08:01 +00004220 } else if (VT.getSizeInBits() == 16) {
Evan Chengf9393b32009-01-02 05:29:08 +00004221 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
4222 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
4223 if (Idx == 0)
4224 return DAG.getNode(ISD::TRUNCATE, MVT::i16,
4225 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i32,
4226 DAG.getNode(ISD::BIT_CONVERT, MVT::v4i32,
4227 Op.getOperand(0)),
4228 Op.getOperand(1)));
Dan Gohman8181bd12008-07-27 21:46:04 +00004229 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, MVT::i32,
Nate Begemand77e59e2008-02-11 04:19:36 +00004230 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8181bd12008-07-27 21:46:04 +00004231 SDValue Assert = DAG.getNode(ISD::AssertZext, MVT::i32, Extract,
Nate Begemand77e59e2008-02-11 04:19:36 +00004232 DAG.getValueType(VT));
4233 return DAG.getNode(ISD::TRUNCATE, VT, Assert);
Evan Cheng6c249332008-03-24 21:52:23 +00004234 } else if (VT == MVT::f32) {
4235 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
4236 // the result back to FR32 register. It's only worth matching if the
Dan Gohman9fdd0142008-10-31 00:57:24 +00004237 // result has a single use which is a store or a bitcast to i32. And in
4238 // the case of a store, it's not worth it if the index is a constant 0,
4239 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng6c249332008-03-24 21:52:23 +00004240 if (!Op.hasOneUse())
Dan Gohman8181bd12008-07-27 21:46:04 +00004241 return SDValue();
Gabor Greif1c80d112008-08-28 21:40:38 +00004242 SDNode *User = *Op.getNode()->use_begin();
Dan Gohman9fdd0142008-10-31 00:57:24 +00004243 if ((User->getOpcode() != ISD::STORE ||
4244 (isa<ConstantSDNode>(Op.getOperand(1)) &&
4245 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman788db592008-04-16 02:32:24 +00004246 (User->getOpcode() != ISD::BIT_CONVERT ||
4247 User->getValueType(0) != MVT::i32))
Dan Gohman8181bd12008-07-27 21:46:04 +00004248 return SDValue();
4249 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i32,
Evan Cheng6c249332008-03-24 21:52:23 +00004250 DAG.getNode(ISD::BIT_CONVERT, MVT::v4i32, Op.getOperand(0)),
4251 Op.getOperand(1));
4252 return DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Extract);
Mon P Wangac2a3c52009-01-15 21:10:20 +00004253 } else if (VT == MVT::i32) {
4254 // ExtractPS works with constant index.
4255 if (isa<ConstantSDNode>(Op.getOperand(1)))
4256 return Op;
Nate Begemand77e59e2008-02-11 04:19:36 +00004257 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004258 return SDValue();
Nate Begemand77e59e2008-02-11 04:19:36 +00004259}
4260
4261
Dan Gohman8181bd12008-07-27 21:46:04 +00004262SDValue
4263X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004264 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman8181bd12008-07-27 21:46:04 +00004265 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004266
Evan Cheng6c249332008-03-24 21:52:23 +00004267 if (Subtarget->hasSSE41()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004268 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004269 if (Res.getNode())
Evan Cheng6c249332008-03-24 21:52:23 +00004270 return Res;
4271 }
Nate Begemand77e59e2008-02-11 04:19:36 +00004272
Duncan Sands92c43912008-06-06 12:08:01 +00004273 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004274 // TODO: handle v16i8.
Duncan Sands92c43912008-06-06 12:08:01 +00004275 if (VT.getSizeInBits() == 16) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004276 SDValue Vec = Op.getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004277 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00004278 if (Idx == 0)
4279 return DAG.getNode(ISD::TRUNCATE, MVT::i16,
4280 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i32,
4281 DAG.getNode(ISD::BIT_CONVERT, MVT::v4i32, Vec),
4282 Op.getOperand(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004283 // Transform it so it match pextrw which produces a 32-bit result.
Duncan Sands92c43912008-06-06 12:08:01 +00004284 MVT EVT = (MVT::SimpleValueType)(VT.getSimpleVT()+1);
Dan Gohman8181bd12008-07-27 21:46:04 +00004285 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, EVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004286 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8181bd12008-07-27 21:46:04 +00004287 SDValue Assert = DAG.getNode(ISD::AssertZext, EVT, Extract,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004288 DAG.getValueType(VT));
4289 return DAG.getNode(ISD::TRUNCATE, VT, Assert);
Duncan Sands92c43912008-06-06 12:08:01 +00004290 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004291 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004292 if (Idx == 0)
4293 return Op;
4294 // SHUFPS the element to the lowest double word, then movss.
Duncan Sands92c43912008-06-06 12:08:01 +00004295 MVT MaskVT = MVT::getIntVectorWithNumElements(4);
Dan Gohman8181bd12008-07-27 21:46:04 +00004296 SmallVector<SDValue, 8> IdxVec;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004297 IdxVec.
Duncan Sands92c43912008-06-06 12:08:01 +00004298 push_back(DAG.getConstant(Idx, MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004299 IdxVec.
Duncan Sands92c43912008-06-06 12:08:01 +00004300 push_back(DAG.getNode(ISD::UNDEF, MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004301 IdxVec.
Duncan Sands92c43912008-06-06 12:08:01 +00004302 push_back(DAG.getNode(ISD::UNDEF, MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004303 IdxVec.
Duncan Sands92c43912008-06-06 12:08:01 +00004304 push_back(DAG.getNode(ISD::UNDEF, MaskVT.getVectorElementType()));
Dan Gohman8181bd12008-07-27 21:46:04 +00004305 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004306 &IdxVec[0], IdxVec.size());
Dan Gohman8181bd12008-07-27 21:46:04 +00004307 SDValue Vec = Op.getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004308 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, Vec.getValueType(),
4309 Vec, DAG.getNode(ISD::UNDEF, Vec.getValueType()), Mask);
4310 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00004311 DAG.getIntPtrConstant(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004312 } else if (VT.getSizeInBits() == 64) {
Nate Begemand77e59e2008-02-11 04:19:36 +00004313 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
4314 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
4315 // to match extract_elt for f64.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004316 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004317 if (Idx == 0)
4318 return Op;
4319
4320 // UNPCKHPD the element to the lowest double word, then movsd.
4321 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
4322 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Duncan Sandsd3ace282008-07-21 10:20:31 +00004323 MVT MaskVT = MVT::getIntVectorWithNumElements(2);
Dan Gohman8181bd12008-07-27 21:46:04 +00004324 SmallVector<SDValue, 8> IdxVec;
Duncan Sands92c43912008-06-06 12:08:01 +00004325 IdxVec.push_back(DAG.getConstant(1, MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004326 IdxVec.
Duncan Sands92c43912008-06-06 12:08:01 +00004327 push_back(DAG.getNode(ISD::UNDEF, MaskVT.getVectorElementType()));
Dan Gohman8181bd12008-07-27 21:46:04 +00004328 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004329 &IdxVec[0], IdxVec.size());
Dan Gohman8181bd12008-07-27 21:46:04 +00004330 SDValue Vec = Op.getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004331 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, Vec.getValueType(),
4332 Vec, DAG.getNode(ISD::UNDEF, Vec.getValueType()), Mask);
4333 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00004334 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004335 }
4336
Dan Gohman8181bd12008-07-27 21:46:04 +00004337 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004338}
4339
Dan Gohman8181bd12008-07-27 21:46:04 +00004340SDValue
4341X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG){
Duncan Sands92c43912008-06-06 12:08:01 +00004342 MVT VT = Op.getValueType();
4343 MVT EVT = VT.getVectorElementType();
Nate Begemand77e59e2008-02-11 04:19:36 +00004344
Dan Gohman8181bd12008-07-27 21:46:04 +00004345 SDValue N0 = Op.getOperand(0);
4346 SDValue N1 = Op.getOperand(1);
4347 SDValue N2 = Op.getOperand(2);
Nate Begemand77e59e2008-02-11 04:19:36 +00004348
Dan Gohman5a7af042008-08-14 22:53:18 +00004349 if ((EVT.getSizeInBits() == 8 || EVT.getSizeInBits() == 16) &&
4350 isa<ConstantSDNode>(N2)) {
Duncan Sands92c43912008-06-06 12:08:01 +00004351 unsigned Opc = (EVT.getSizeInBits() == 8) ? X86ISD::PINSRB
Nate Begemand77e59e2008-02-11 04:19:36 +00004352 : X86ISD::PINSRW;
4353 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
4354 // argument.
4355 if (N1.getValueType() != MVT::i32)
4356 N1 = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, N1);
4357 if (N2.getValueType() != MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004358 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Nate Begemand77e59e2008-02-11 04:19:36 +00004359 return DAG.getNode(Opc, VT, N0, N1, N2);
Dan Gohmanfd7369a2008-08-14 22:43:26 +00004360 } else if (EVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begemand77e59e2008-02-11 04:19:36 +00004361 // Bits [7:6] of the constant are the source select. This will always be
4362 // zero here. The DAG Combiner may combine an extract_elt index into these
4363 // bits. For example (insert (extract, 3), 2) could be matched by putting
4364 // the '3' into bits [7:6] of X86ISD::INSERTPS.
4365 // Bits [5:4] of the constant are the destination select. This is the
4366 // value of the incoming immediate.
4367 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
4368 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004369 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Nate Begemand77e59e2008-02-11 04:19:36 +00004370 return DAG.getNode(X86ISD::INSERTPS, VT, N0, N1, N2);
Mon P Wangac2a3c52009-01-15 21:10:20 +00004371 } else if (EVT == MVT::i32) {
4372 // InsertPS works with constant index.
4373 if (isa<ConstantSDNode>(N2))
4374 return Op;
Nate Begemand77e59e2008-02-11 04:19:36 +00004375 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004376 return SDValue();
Nate Begemand77e59e2008-02-11 04:19:36 +00004377}
4378
Dan Gohman8181bd12008-07-27 21:46:04 +00004379SDValue
4380X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004381 MVT VT = Op.getValueType();
4382 MVT EVT = VT.getVectorElementType();
Nate Begemand77e59e2008-02-11 04:19:36 +00004383
4384 if (Subtarget->hasSSE41())
4385 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
4386
Evan Chenge12a7eb2007-12-12 07:55:34 +00004387 if (EVT == MVT::i8)
Dan Gohman8181bd12008-07-27 21:46:04 +00004388 return SDValue();
Evan Chenge12a7eb2007-12-12 07:55:34 +00004389
Dan Gohman8181bd12008-07-27 21:46:04 +00004390 SDValue N0 = Op.getOperand(0);
4391 SDValue N1 = Op.getOperand(1);
4392 SDValue N2 = Op.getOperand(2);
Evan Chenge12a7eb2007-12-12 07:55:34 +00004393
Duncan Sands92c43912008-06-06 12:08:01 +00004394 if (EVT.getSizeInBits() == 16) {
Evan Chenge12a7eb2007-12-12 07:55:34 +00004395 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
4396 // as its second argument.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004397 if (N1.getValueType() != MVT::i32)
4398 N1 = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, N1);
4399 if (N2.getValueType() != MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004400 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004401 return DAG.getNode(X86ISD::PINSRW, VT, N0, N1, N2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004402 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004403 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004404}
4405
Dan Gohman8181bd12008-07-27 21:46:04 +00004406SDValue
4407X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Evan Cheng759fe022008-07-22 18:39:19 +00004408 if (Op.getValueType() == MVT::v2f32)
4409 return DAG.getNode(ISD::BIT_CONVERT, MVT::v2f32,
4410 DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v2i32,
4411 DAG.getNode(ISD::BIT_CONVERT, MVT::i32,
4412 Op.getOperand(0))));
4413
Dan Gohman8181bd12008-07-27 21:46:04 +00004414 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, Op.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004415 MVT VT = MVT::v2i32;
4416 switch (Op.getValueType().getSimpleVT()) {
Evan Chengd1045a62008-02-18 23:04:32 +00004417 default: break;
4418 case MVT::v16i8:
4419 case MVT::v8i16:
4420 VT = MVT::v4i32;
4421 break;
4422 }
4423 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(),
4424 DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, AnyExt));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004425}
4426
Bill Wendlingfef06052008-09-16 21:48:12 +00004427// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
4428// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
4429// one of the above mentioned nodes. It has to be wrapped because otherwise
4430// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
4431// be used to form addressing mode. These wrapped nodes will be selected
4432// into MOV32ri.
Dan Gohman8181bd12008-07-27 21:46:04 +00004433SDValue
4434X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004435 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohman8181bd12008-07-27 21:46:04 +00004436 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004437 getPointerTy(),
4438 CP->getAlignment());
4439 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
4440 // With PIC, the address is actually $g + Offset.
4441 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4442 !Subtarget->isPICStyleRIPRel()) {
4443 Result = DAG.getNode(ISD::ADD, getPointerTy(),
4444 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
4445 Result);
4446 }
4447
4448 return Result;
4449}
4450
Dan Gohman8181bd12008-07-27 21:46:04 +00004451SDValue
Evan Cheng7f250d62008-09-24 00:05:32 +00004452X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV,
Dan Gohman36322c72008-10-18 02:06:02 +00004453 int64_t Offset,
Evan Cheng7f250d62008-09-24 00:05:32 +00004454 SelectionDAG &DAG) const {
Dan Gohman36322c72008-10-18 02:06:02 +00004455 bool IsPic = getTargetMachine().getRelocationModel() == Reloc::PIC_;
4456 bool ExtraLoadRequired =
4457 Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false);
4458
4459 // Create the TargetGlobalAddress node, folding in the constant
4460 // offset if it is legal.
4461 SDValue Result;
Dan Gohman3d5257c2008-10-21 03:38:42 +00004462 if (!IsPic && !ExtraLoadRequired && isInt32(Offset)) {
Dan Gohman36322c72008-10-18 02:06:02 +00004463 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
4464 Offset = 0;
4465 } else
4466 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004467 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
Dan Gohman36322c72008-10-18 02:06:02 +00004468
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004469 // With PIC, the address is actually $g + Offset.
Dan Gohman36322c72008-10-18 02:06:02 +00004470 if (IsPic && !Subtarget->isPICStyleRIPRel()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004471 Result = DAG.getNode(ISD::ADD, getPointerTy(),
4472 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
4473 Result);
4474 }
4475
4476 // For Darwin & Mingw32, external and weak symbols are indirect, so we want to
4477 // load the value at address GV, not the value of GV itself. This means that
4478 // the GlobalAddress must be in the base or index register of the address, not
4479 // the GV offset field. Platform check is inside GVRequiresExtraLoad() call
4480 // The same applies for external symbols during PIC codegen
Dan Gohman36322c72008-10-18 02:06:02 +00004481 if (ExtraLoadRequired)
Dan Gohman12a9c082008-02-06 22:27:42 +00004482 Result = DAG.getLoad(getPointerTy(), DAG.getEntryNode(), Result,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004483 PseudoSourceValue::getGOT(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004484
Dan Gohman36322c72008-10-18 02:06:02 +00004485 // If there was a non-zero offset that we didn't fold, create an explicit
4486 // addition for it.
4487 if (Offset != 0)
4488 Result = DAG.getNode(ISD::ADD, getPointerTy(), Result,
4489 DAG.getConstant(Offset, getPointerTy()));
4490
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004491 return Result;
4492}
4493
Evan Cheng7f250d62008-09-24 00:05:32 +00004494SDValue
4495X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) {
4496 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman36322c72008-10-18 02:06:02 +00004497 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
4498 return LowerGlobalAddress(GV, Offset, DAG);
Evan Cheng7f250d62008-09-24 00:05:32 +00004499}
4500
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004501// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman8181bd12008-07-27 21:46:04 +00004502static SDValue
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004503LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00004504 const MVT PtrVT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004505 SDValue InFlag;
4506 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), X86::EBX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004507 DAG.getNode(X86ISD::GlobalBaseReg,
4508 PtrVT), InFlag);
4509 InFlag = Chain.getValue(1);
4510
4511 // emit leal symbol@TLSGD(,%ebx,1), %eax
4512 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004513 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004514 GA->getValueType(0),
4515 GA->getOffset());
Dan Gohman8181bd12008-07-27 21:46:04 +00004516 SDValue Ops[] = { Chain, TGA, InFlag };
4517 SDValue Result = DAG.getNode(X86ISD::TLSADDR, NodeTys, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004518 InFlag = Result.getValue(2);
4519 Chain = Result.getValue(1);
4520
4521 // call ___tls_get_addr. This function receives its argument in
4522 // the register EAX.
4523 Chain = DAG.getCopyToReg(Chain, X86::EAX, Result, InFlag);
4524 InFlag = Chain.getValue(1);
4525
4526 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004527 SDValue Ops1[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00004528 DAG.getTargetExternalSymbol("___tls_get_addr",
4529 PtrVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004530 DAG.getRegister(X86::EAX, PtrVT),
4531 DAG.getRegister(X86::EBX, PtrVT),
4532 InFlag };
4533 Chain = DAG.getNode(X86ISD::CALL, NodeTys, Ops1, 5);
4534 InFlag = Chain.getValue(1);
4535
4536 return DAG.getCopyFromReg(Chain, X86::EAX, PtrVT, InFlag);
4537}
4538
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004539// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman8181bd12008-07-27 21:46:04 +00004540static SDValue
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004541LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00004542 const MVT PtrVT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004543 SDValue InFlag, Chain;
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004544
4545 // emit leaq symbol@TLSGD(%rip), %rdi
4546 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004547 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004548 GA->getValueType(0),
4549 GA->getOffset());
Dan Gohman8181bd12008-07-27 21:46:04 +00004550 SDValue Ops[] = { DAG.getEntryNode(), TGA};
4551 SDValue Result = DAG.getNode(X86ISD::TLSADDR, NodeTys, Ops, 2);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004552 Chain = Result.getValue(1);
4553 InFlag = Result.getValue(2);
4554
aslb204cd52008-08-16 12:58:29 +00004555 // call __tls_get_addr. This function receives its argument in
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004556 // the register RDI.
4557 Chain = DAG.getCopyToReg(Chain, X86::RDI, Result, InFlag);
4558 InFlag = Chain.getValue(1);
4559
4560 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004561 SDValue Ops1[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00004562 DAG.getTargetExternalSymbol("__tls_get_addr",
4563 PtrVT),
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004564 DAG.getRegister(X86::RDI, PtrVT),
4565 InFlag };
4566 Chain = DAG.getNode(X86ISD::CALL, NodeTys, Ops1, 4);
4567 InFlag = Chain.getValue(1);
4568
4569 return DAG.getCopyFromReg(Chain, X86::RAX, PtrVT, InFlag);
4570}
4571
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004572// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
4573// "local exec" model.
Dan Gohman8181bd12008-07-27 21:46:04 +00004574static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00004575 const MVT PtrVT) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004576 // Get the Thread Pointer
Dan Gohman8181bd12008-07-27 21:46:04 +00004577 SDValue ThreadPointer = DAG.getNode(X86ISD::THREAD_POINTER, PtrVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004578 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
4579 // exec)
Dan Gohman8181bd12008-07-27 21:46:04 +00004580 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004581 GA->getValueType(0),
4582 GA->getOffset());
Dan Gohman8181bd12008-07-27 21:46:04 +00004583 SDValue Offset = DAG.getNode(X86ISD::Wrapper, PtrVT, TGA);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004584
4585 if (GA->getGlobal()->isDeclaration()) // initial exec TLS model
Dan Gohman12a9c082008-02-06 22:27:42 +00004586 Offset = DAG.getLoad(PtrVT, DAG.getEntryNode(), Offset,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004587 PseudoSourceValue::getGOT(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004588
4589 // The address of the thread local variable is the add of the thread
4590 // pointer with the offset of the variable.
4591 return DAG.getNode(ISD::ADD, PtrVT, ThreadPointer, Offset);
4592}
4593
Dan Gohman8181bd12008-07-27 21:46:04 +00004594SDValue
4595X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004596 // TODO: implement the "local dynamic" model
4597 // TODO: implement the "initial exec"model for pic executables
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004598 assert(Subtarget->isTargetELF() &&
4599 "TLS not implemented for non-ELF targets");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004600 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
4601 // If the relocation model is PIC, use the "General Dynamic" TLS Model,
4602 // otherwise use the "Local Exec"TLS Model
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004603 if (Subtarget->is64Bit()) {
4604 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
4605 } else {
4606 if (getTargetMachine().getRelocationModel() == Reloc::PIC_)
4607 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
4608 else
4609 return LowerToTLSExecModel(GA, DAG, getPointerTy());
4610 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004611}
4612
Dan Gohman8181bd12008-07-27 21:46:04 +00004613SDValue
4614X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) {
Bill Wendlingfef06052008-09-16 21:48:12 +00004615 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
4616 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004617 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
4618 // With PIC, the address is actually $g + Offset.
4619 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4620 !Subtarget->isPICStyleRIPRel()) {
4621 Result = DAG.getNode(ISD::ADD, getPointerTy(),
4622 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
4623 Result);
4624 }
4625
4626 return Result;
4627}
4628
Dan Gohman8181bd12008-07-27 21:46:04 +00004629SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004630 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dan Gohman8181bd12008-07-27 21:46:04 +00004631 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004632 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
4633 // With PIC, the address is actually $g + Offset.
4634 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4635 !Subtarget->isPICStyleRIPRel()) {
4636 Result = DAG.getNode(ISD::ADD, getPointerTy(),
4637 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
4638 Result);
4639 }
4640
4641 return Result;
4642}
4643
Chris Lattner62814a32007-10-17 06:02:13 +00004644/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
4645/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohman8181bd12008-07-27 21:46:04 +00004646SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) {
Dan Gohman092014e2008-03-03 22:22:09 +00004647 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Duncan Sands92c43912008-06-06 12:08:01 +00004648 MVT VT = Op.getValueType();
4649 unsigned VTBits = VT.getSizeInBits();
Chris Lattner62814a32007-10-17 06:02:13 +00004650 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman8181bd12008-07-27 21:46:04 +00004651 SDValue ShOpLo = Op.getOperand(0);
4652 SDValue ShOpHi = Op.getOperand(1);
4653 SDValue ShAmt = Op.getOperand(2);
4654 SDValue Tmp1 = isSRA ?
Dan Gohman092014e2008-03-03 22:22:09 +00004655 DAG.getNode(ISD::SRA, VT, ShOpHi, DAG.getConstant(VTBits - 1, MVT::i8)) :
4656 DAG.getConstant(0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004657
Dan Gohman8181bd12008-07-27 21:46:04 +00004658 SDValue Tmp2, Tmp3;
Chris Lattner62814a32007-10-17 06:02:13 +00004659 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dan Gohman092014e2008-03-03 22:22:09 +00004660 Tmp2 = DAG.getNode(X86ISD::SHLD, VT, ShOpHi, ShOpLo, ShAmt);
4661 Tmp3 = DAG.getNode(ISD::SHL, VT, ShOpLo, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00004662 } else {
Dan Gohman092014e2008-03-03 22:22:09 +00004663 Tmp2 = DAG.getNode(X86ISD::SHRD, VT, ShOpLo, ShOpHi, ShAmt);
4664 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, VT, ShOpHi, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00004665 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004666
Dan Gohman8181bd12008-07-27 21:46:04 +00004667 SDValue AndNode = DAG.getNode(ISD::AND, MVT::i8, ShAmt,
Dan Gohman092014e2008-03-03 22:22:09 +00004668 DAG.getConstant(VTBits, MVT::i8));
Dan Gohman8181bd12008-07-27 21:46:04 +00004669 SDValue Cond = DAG.getNode(X86ISD::CMP, VT,
Chris Lattner62814a32007-10-17 06:02:13 +00004670 AndNode, DAG.getConstant(0, MVT::i8));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004671
Dan Gohman8181bd12008-07-27 21:46:04 +00004672 SDValue Hi, Lo;
4673 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
4674 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
4675 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf19591c2008-06-30 10:19:09 +00004676
Chris Lattner62814a32007-10-17 06:02:13 +00004677 if (Op.getOpcode() == ISD::SHL_PARTS) {
Duncan Sandsf19591c2008-06-30 10:19:09 +00004678 Hi = DAG.getNode(X86ISD::CMOV, VT, Ops0, 4);
4679 Lo = DAG.getNode(X86ISD::CMOV, VT, Ops1, 4);
Chris Lattner62814a32007-10-17 06:02:13 +00004680 } else {
Duncan Sandsf19591c2008-06-30 10:19:09 +00004681 Lo = DAG.getNode(X86ISD::CMOV, VT, Ops0, 4);
4682 Hi = DAG.getNode(X86ISD::CMOV, VT, Ops1, 4);
Chris Lattner62814a32007-10-17 06:02:13 +00004683 }
4684
Dan Gohman8181bd12008-07-27 21:46:04 +00004685 SDValue Ops[2] = { Lo, Hi };
Duncan Sands698842f2008-07-02 17:40:58 +00004686 return DAG.getMergeValues(Ops, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004687}
4688
Dan Gohman8181bd12008-07-27 21:46:04 +00004689SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004690 MVT SrcVT = Op.getOperand(0).getValueType();
Duncan Sandsec142ee2008-06-08 20:54:56 +00004691 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004692 "Unknown SINT_TO_FP to lower!");
4693
4694 // These are really Legal; caller falls through into that case.
4695 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Dan Gohman8181bd12008-07-27 21:46:04 +00004696 return SDValue();
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004697 if (SrcVT == MVT::i64 && Op.getValueType() != MVT::f80 &&
4698 Subtarget->is64Bit())
Dan Gohman8181bd12008-07-27 21:46:04 +00004699 return SDValue();
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004700
Duncan Sands92c43912008-06-06 12:08:01 +00004701 unsigned Size = SrcVT.getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004702 MachineFunction &MF = DAG.getMachineFunction();
4703 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
Dan Gohman8181bd12008-07-27 21:46:04 +00004704 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
4705 SDValue Chain = DAG.getStore(DAG.getEntryNode(), Op.getOperand(0),
Dan Gohman12a9c082008-02-06 22:27:42 +00004706 StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004707 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004708
4709 // Build the FILD
4710 SDVTList Tys;
Chris Lattnercf515b52008-01-16 06:24:21 +00004711 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen2fc20782007-09-14 22:26:36 +00004712 if (useSSE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004713 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
4714 else
4715 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00004716 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004717 Ops.push_back(Chain);
4718 Ops.push_back(StackSlot);
4719 Ops.push_back(DAG.getValueType(SrcVT));
Dan Gohman8181bd12008-07-27 21:46:04 +00004720 SDValue Result = DAG.getNode(useSSE ? X86ISD::FILD_FLAG : X86ISD::FILD,
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004721 Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004722
Dale Johannesen2fc20782007-09-14 22:26:36 +00004723 if (useSSE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004724 Chain = Result.getValue(1);
Dan Gohman8181bd12008-07-27 21:46:04 +00004725 SDValue InFlag = Result.getValue(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004726
4727 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
4728 // shouldn't be necessary except that RFP cannot be live across
4729 // multiple blocks. When stackifier is fixed, they can be uncoupled.
4730 MachineFunction &MF = DAG.getMachineFunction();
4731 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
Dan Gohman8181bd12008-07-27 21:46:04 +00004732 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004733 Tys = DAG.getVTList(MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00004734 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004735 Ops.push_back(Chain);
4736 Ops.push_back(Result);
4737 Ops.push_back(StackSlot);
4738 Ops.push_back(DAG.getValueType(Op.getValueType()));
4739 Ops.push_back(InFlag);
4740 Chain = DAG.getNode(X86ISD::FST, Tys, &Ops[0], Ops.size());
Dan Gohman12a9c082008-02-06 22:27:42 +00004741 Result = DAG.getLoad(Op.getValueType(), Chain, StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004742 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004743 }
4744
4745 return Result;
4746}
4747
Bill Wendling14a30ef2009-01-17 03:56:04 +00004748// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
4749SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op, SelectionDAG &DAG) {
4750 // This algorithm is not obvious. Here it is in C code, more or less:
4751 /*
4752 double uint64_to_double( uint32_t hi, uint32_t lo ) {
4753 static const __m128i exp = { 0x4330000045300000ULL, 0 };
4754 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesenfb019af2008-10-21 23:07:49 +00004755
Bill Wendling14a30ef2009-01-17 03:56:04 +00004756 // Copy ints to xmm registers.
4757 __m128i xh = _mm_cvtsi32_si128( hi );
4758 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesenfb019af2008-10-21 23:07:49 +00004759
Bill Wendling14a30ef2009-01-17 03:56:04 +00004760 // Combine into low half of a single xmm register.
4761 __m128i x = _mm_unpacklo_epi32( xh, xl );
4762 __m128d d;
4763 double sd;
Dale Johannesenfb019af2008-10-21 23:07:49 +00004764
Bill Wendling14a30ef2009-01-17 03:56:04 +00004765 // Merge in appropriate exponents to give the integer bits the right
4766 // magnitude.
4767 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesenfb019af2008-10-21 23:07:49 +00004768
Bill Wendling14a30ef2009-01-17 03:56:04 +00004769 // Subtract away the biases to deal with the IEEE-754 double precision
4770 // implicit 1.
4771 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesenfb019af2008-10-21 23:07:49 +00004772
Bill Wendling14a30ef2009-01-17 03:56:04 +00004773 // All conversions up to here are exact. The correctly rounded result is
4774 // calculated using the current rounding mode using the following
4775 // horizontal add.
4776 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
4777 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
4778 // store doesn't really need to be here (except
4779 // maybe to zero the other double)
4780 return sd;
4781 }
4782 */
Dale Johannesenfb019af2008-10-21 23:07:49 +00004783
Dale Johannesena359b8b2008-10-21 20:50:01 +00004784 // Build some magic constants.
Bill Wendling14a30ef2009-01-17 03:56:04 +00004785 std::vector<Constant*> CV0;
Dale Johannesena359b8b2008-10-21 20:50:01 +00004786 CV0.push_back(ConstantInt::get(APInt(32, 0x45300000)));
4787 CV0.push_back(ConstantInt::get(APInt(32, 0x43300000)));
4788 CV0.push_back(ConstantInt::get(APInt(32, 0)));
4789 CV0.push_back(ConstantInt::get(APInt(32, 0)));
4790 Constant *C0 = ConstantVector::get(CV0);
4791 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 4);
4792
Bill Wendling14a30ef2009-01-17 03:56:04 +00004793 std::vector<Constant*> CV1;
Dale Johannesena359b8b2008-10-21 20:50:01 +00004794 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4530000000000000ULL))));
4795 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4330000000000000ULL))));
4796 Constant *C1 = ConstantVector::get(CV1);
4797 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 4);
4798
4799 SmallVector<SDValue, 4> MaskVec;
4800 MaskVec.push_back(DAG.getConstant(0, MVT::i32));
4801 MaskVec.push_back(DAG.getConstant(4, MVT::i32));
4802 MaskVec.push_back(DAG.getConstant(1, MVT::i32));
4803 MaskVec.push_back(DAG.getConstant(5, MVT::i32));
4804 SDValue UnpcklMask = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, &MaskVec[0],
4805 MaskVec.size());
4806 SmallVector<SDValue, 4> MaskVec2;
Duncan Sandsca872ca2008-10-22 11:24:12 +00004807 MaskVec2.push_back(DAG.getConstant(1, MVT::i32));
4808 MaskVec2.push_back(DAG.getConstant(0, MVT::i32));
4809 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i32, &MaskVec2[0],
Dale Johannesena359b8b2008-10-21 20:50:01 +00004810 MaskVec2.size());
4811
4812 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v4i32,
Duncan Sandsca872ca2008-10-22 11:24:12 +00004813 DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
4814 Op.getOperand(0),
4815 DAG.getIntPtrConstant(1)));
Dale Johannesena359b8b2008-10-21 20:50:01 +00004816 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v4i32,
Duncan Sandsca872ca2008-10-22 11:24:12 +00004817 DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
4818 Op.getOperand(0),
4819 DAG.getIntPtrConstant(0)));
Dale Johannesena359b8b2008-10-21 20:50:01 +00004820 SDValue Unpck1 = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v4i32,
4821 XR1, XR2, UnpcklMask);
4822 SDValue CLod0 = DAG.getLoad(MVT::v4i32, DAG.getEntryNode(), CPIdx0,
Bill Wendling14a30ef2009-01-17 03:56:04 +00004823 PseudoSourceValue::getConstantPool(), 0,
4824 false, 16);
Dale Johannesena359b8b2008-10-21 20:50:01 +00004825 SDValue Unpck2 = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v4i32,
Bill Wendling14a30ef2009-01-17 03:56:04 +00004826 Unpck1, CLod0, UnpcklMask);
Dale Johannesena359b8b2008-10-21 20:50:01 +00004827 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, MVT::v2f64, Unpck2);
4828 SDValue CLod1 = DAG.getLoad(MVT::v2f64, CLod0.getValue(1), CPIdx1,
Bill Wendling14a30ef2009-01-17 03:56:04 +00004829 PseudoSourceValue::getConstantPool(), 0,
4830 false, 16);
Dale Johannesena359b8b2008-10-21 20:50:01 +00004831 SDValue Sub = DAG.getNode(ISD::FSUB, MVT::v2f64, XR2F, CLod1);
Bill Wendling14a30ef2009-01-17 03:56:04 +00004832
Dale Johannesena359b8b2008-10-21 20:50:01 +00004833 // Add the halves; easiest way is to swap them into another reg first.
4834 SDValue Shuf = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v2f64,
4835 Sub, Sub, ShufMask);
4836 SDValue Add = DAG.getNode(ISD::FADD, MVT::v2f64, Shuf, Sub);
4837 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::f64, Add,
4838 DAG.getIntPtrConstant(0));
4839}
4840
Bill Wendling14a30ef2009-01-17 03:56:04 +00004841// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
4842SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op, SelectionDAG &DAG) {
4843 // FP constant to bias correct the final result.
4844 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
4845 MVT::f64);
4846
4847 // Load the 32-bit value into an XMM register.
4848 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v4i32,
4849 DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
4850 Op.getOperand(0),
4851 DAG.getIntPtrConstant(0)));
4852
4853 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::f64,
4854 DAG.getNode(ISD::BIT_CONVERT, MVT::v2f64, Load),
4855 DAG.getIntPtrConstant(0));
4856
4857 // Or the load with the bias.
4858 SDValue Or = DAG.getNode(ISD::OR, MVT::v2i64,
4859 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64,
4860 DAG.getNode(ISD::SCALAR_TO_VECTOR,
Evan Chengc0ab5e52009-01-19 08:19:57 +00004861 MVT::v2f64, Load)),
Bill Wendling14a30ef2009-01-17 03:56:04 +00004862 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64,
4863 DAG.getNode(ISD::SCALAR_TO_VECTOR,
Evan Chengc0ab5e52009-01-19 08:19:57 +00004864 MVT::v2f64, Bias)));
Bill Wendling14a30ef2009-01-17 03:56:04 +00004865 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::f64,
4866 DAG.getNode(ISD::BIT_CONVERT, MVT::v2f64, Or),
4867 DAG.getIntPtrConstant(0));
4868
4869 // Subtract the bias.
4870 SDValue Sub = DAG.getNode(ISD::FSUB, MVT::f64, Or, Bias);
4871
4872 // Handle final rounding.
Bill Wendlingdb547de2009-01-17 07:40:19 +00004873 MVT DestVT = Op.getValueType();
4874
4875 if (DestVT.bitsLT(MVT::f64)) {
4876 return DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
4877 DAG.getIntPtrConstant(0));
4878 } else if (DestVT.bitsGT(MVT::f64)) {
4879 return DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
4880 }
4881
4882 // Handle final rounding.
4883 return Sub;
Bill Wendling14a30ef2009-01-17 03:56:04 +00004884}
4885
4886SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Evan Cheng44fd2392009-01-19 08:08:22 +00004887 SDValue N0 = Op.getOperand(0);
Bill Wendling14a30ef2009-01-17 03:56:04 +00004888
Evan Cheng44fd2392009-01-19 08:08:22 +00004889 // Now not UINT_TO_FP is legal (it's marked custom), dag combiner won't
4890 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
4891 // the optimization here.
4892 if (DAG.SignBitIsZero(N0))
4893 return DAG.getNode(ISD::SINT_TO_FP, Op.getValueType(), N0);
4894
4895 MVT SrcVT = N0.getValueType();
Bill Wendling14a30ef2009-01-17 03:56:04 +00004896 if (SrcVT == MVT::i64) {
4897 // We only handle SSE2 f64 target here; caller can handle the rest.
4898 if (Op.getValueType() != MVT::f64 || !X86ScalarSSEf64)
4899 return SDValue();
Bill Wendlingdb547de2009-01-17 07:40:19 +00004900
Bill Wendling14a30ef2009-01-17 03:56:04 +00004901 return LowerUINT_TO_FP_i64(Op, DAG);
4902 } else if (SrcVT == MVT::i32) {
Bill Wendling14a30ef2009-01-17 03:56:04 +00004903 return LowerUINT_TO_FP_i32(Op, DAG);
4904 }
4905
4906 assert(0 && "Unknown UINT_TO_FP to lower!");
4907 return SDValue();
4908}
4909
Dan Gohman8181bd12008-07-27 21:46:04 +00004910std::pair<SDValue,SDValue> X86TargetLowering::
4911FP_TO_SINTHelper(SDValue Op, SelectionDAG &DAG) {
Duncan Sandsec142ee2008-06-08 20:54:56 +00004912 assert(Op.getValueType().getSimpleVT() <= MVT::i64 &&
4913 Op.getValueType().getSimpleVT() >= MVT::i16 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004914 "Unknown FP_TO_SINT to lower!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004915
Dale Johannesen2fc20782007-09-14 22:26:36 +00004916 // These are really Legal.
Dale Johannesene0e0fd02007-09-23 14:52:20 +00004917 if (Op.getValueType() == MVT::i32 &&
Chris Lattnercf515b52008-01-16 06:24:21 +00004918 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman8181bd12008-07-27 21:46:04 +00004919 return std::make_pair(SDValue(), SDValue());
Dale Johannesen958b08b2007-09-19 23:55:34 +00004920 if (Subtarget->is64Bit() &&
4921 Op.getValueType() == MVT::i64 &&
4922 Op.getOperand(0).getValueType() != MVT::f80)
Dan Gohman8181bd12008-07-27 21:46:04 +00004923 return std::make_pair(SDValue(), SDValue());
Dale Johannesen2fc20782007-09-14 22:26:36 +00004924
Evan Cheng05441e62007-10-15 20:11:21 +00004925 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
4926 // stack slot.
4927 MachineFunction &MF = DAG.getMachineFunction();
Duncan Sands92c43912008-06-06 12:08:01 +00004928 unsigned MemSize = Op.getValueType().getSizeInBits()/8;
Evan Cheng05441e62007-10-15 20:11:21 +00004929 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
Dan Gohman8181bd12008-07-27 21:46:04 +00004930 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004931 unsigned Opc;
Duncan Sands92c43912008-06-06 12:08:01 +00004932 switch (Op.getValueType().getSimpleVT()) {
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004933 default: assert(0 && "Invalid FP_TO_SINT to lower!");
4934 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
4935 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
4936 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004937 }
4938
Dan Gohman8181bd12008-07-27 21:46:04 +00004939 SDValue Chain = DAG.getEntryNode();
4940 SDValue Value = Op.getOperand(0);
Chris Lattnercf515b52008-01-16 06:24:21 +00004941 if (isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004942 assert(Op.getValueType() == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Dan Gohman12a9c082008-02-06 22:27:42 +00004943 Chain = DAG.getStore(Chain, Value, StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004944 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004945 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00004946 SDValue Ops[] = {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004947 Chain, StackSlot, DAG.getValueType(Op.getOperand(0).getValueType())
4948 };
4949 Value = DAG.getNode(X86ISD::FLD, Tys, Ops, 3);
4950 Chain = Value.getValue(1);
4951 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
4952 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
4953 }
4954
4955 // Build the FP_TO_INT*_IN_MEM
Dan Gohman8181bd12008-07-27 21:46:04 +00004956 SDValue Ops[] = { Chain, Value, StackSlot };
4957 SDValue FIST = DAG.getNode(Opc, MVT::Other, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004958
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004959 return std::make_pair(FIST, StackSlot);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004960}
4961
Dan Gohman8181bd12008-07-27 21:46:04 +00004962SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) {
4963 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(Op, DAG);
4964 SDValue FIST = Vals.first, StackSlot = Vals.second;
Gabor Greif1c80d112008-08-28 21:40:38 +00004965 if (FIST.getNode() == 0) return SDValue();
Chris Lattnerdfb947d2007-11-24 07:07:01 +00004966
4967 // Load the result.
4968 return DAG.getLoad(Op.getValueType(), FIST, StackSlot, NULL, 0);
4969}
4970
Dan Gohman8181bd12008-07-27 21:46:04 +00004971SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004972 MVT VT = Op.getValueType();
4973 MVT EltVT = VT;
4974 if (VT.isVector())
4975 EltVT = VT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004976 std::vector<Constant*> CV;
4977 if (EltVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00004978 Constant *C = ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004979 CV.push_back(C);
4980 CV.push_back(C);
4981 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00004982 Constant *C = ConstantFP::get(APFloat(APInt(32, ~(1U << 31))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004983 CV.push_back(C);
4984 CV.push_back(C);
4985 CV.push_back(C);
4986 CV.push_back(C);
4987 }
Dan Gohman11821702007-07-27 17:16:43 +00004988 Constant *C = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00004989 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
4990 SDValue Mask = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004991 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00004992 false, 16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004993 return DAG.getNode(X86ISD::FAND, VT, Op.getOperand(0), Mask);
4994}
4995
Dan Gohman8181bd12008-07-27 21:46:04 +00004996SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004997 MVT VT = Op.getValueType();
4998 MVT EltVT = VT;
Evan Cheng92b8f782007-07-19 23:36:01 +00004999 unsigned EltNum = 1;
Duncan Sands92c43912008-06-06 12:08:01 +00005000 if (VT.isVector()) {
5001 EltVT = VT.getVectorElementType();
5002 EltNum = VT.getVectorNumElements();
Evan Cheng92b8f782007-07-19 23:36:01 +00005003 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005004 std::vector<Constant*> CV;
5005 if (EltVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005006 Constant *C = ConstantFP::get(APFloat(APInt(64, 1ULL << 63)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005007 CV.push_back(C);
5008 CV.push_back(C);
5009 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005010 Constant *C = ConstantFP::get(APFloat(APInt(32, 1U << 31)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005011 CV.push_back(C);
5012 CV.push_back(C);
5013 CV.push_back(C);
5014 CV.push_back(C);
5015 }
Dan Gohman11821702007-07-27 17:16:43 +00005016 Constant *C = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005017 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
5018 SDValue Mask = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005019 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005020 false, 16);
Duncan Sands92c43912008-06-06 12:08:01 +00005021 if (VT.isVector()) {
Evan Cheng92b8f782007-07-19 23:36:01 +00005022 return DAG.getNode(ISD::BIT_CONVERT, VT,
5023 DAG.getNode(ISD::XOR, MVT::v2i64,
5024 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64, Op.getOperand(0)),
5025 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64, Mask)));
5026 } else {
Evan Cheng92b8f782007-07-19 23:36:01 +00005027 return DAG.getNode(X86ISD::FXOR, VT, Op.getOperand(0), Mask);
5028 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005029}
5030
Dan Gohman8181bd12008-07-27 21:46:04 +00005031SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
5032 SDValue Op0 = Op.getOperand(0);
5033 SDValue Op1 = Op.getOperand(1);
Duncan Sands92c43912008-06-06 12:08:01 +00005034 MVT VT = Op.getValueType();
5035 MVT SrcVT = Op1.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005036
5037 // If second operand is smaller, extend it first.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005038 if (SrcVT.bitsLT(VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005039 Op1 = DAG.getNode(ISD::FP_EXTEND, VT, Op1);
5040 SrcVT = VT;
5041 }
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005042 // And if it is bigger, shrink it first.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005043 if (SrcVT.bitsGT(VT)) {
Chris Lattner5872a362008-01-17 07:00:52 +00005044 Op1 = DAG.getNode(ISD::FP_ROUND, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005045 SrcVT = VT;
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005046 }
5047
5048 // At this point the operands and the result should have the same
5049 // type, and that won't be f80 since that is not custom lowered.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005050
5051 // First get the sign bit of second operand.
5052 std::vector<Constant*> CV;
5053 if (SrcVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005054 CV.push_back(ConstantFP::get(APFloat(APInt(64, 1ULL << 63))));
5055 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005056 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005057 CV.push_back(ConstantFP::get(APFloat(APInt(32, 1U << 31))));
5058 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5059 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5060 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005061 }
Dan Gohman11821702007-07-27 17:16:43 +00005062 Constant *C = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005063 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
5064 SDValue Mask1 = DAG.getLoad(SrcVT, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005065 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005066 false, 16);
Dan Gohman8181bd12008-07-27 21:46:04 +00005067 SDValue SignBit = DAG.getNode(X86ISD::FAND, SrcVT, Op1, Mask1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005068
5069 // Shift sign bit right or left if the two operands have different types.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005070 if (SrcVT.bitsGT(VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005071 // Op0 is MVT::f32, Op1 is MVT::f64.
5072 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v2f64, SignBit);
5073 SignBit = DAG.getNode(X86ISD::FSRL, MVT::v2f64, SignBit,
5074 DAG.getConstant(32, MVT::i32));
5075 SignBit = DAG.getNode(ISD::BIT_CONVERT, MVT::v4f32, SignBit);
5076 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::f32, SignBit,
Chris Lattner5872a362008-01-17 07:00:52 +00005077 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005078 }
5079
5080 // Clear first operand sign bit.
5081 CV.clear();
5082 if (VT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005083 CV.push_back(ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63)))));
5084 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005085 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005086 CV.push_back(ConstantFP::get(APFloat(APInt(32, ~(1U << 31)))));
5087 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5088 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5089 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005090 }
Dan Gohman11821702007-07-27 17:16:43 +00005091 C = ConstantVector::get(CV);
5092 CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dan Gohman8181bd12008-07-27 21:46:04 +00005093 SDValue Mask2 = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005094 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005095 false, 16);
Dan Gohman8181bd12008-07-27 21:46:04 +00005096 SDValue Val = DAG.getNode(X86ISD::FAND, VT, Op0, Mask2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005097
5098 // Or the value with the sign bit.
5099 return DAG.getNode(X86ISD::FOR, VT, Val, SignBit);
5100}
5101
Dan Gohman8181bd12008-07-27 21:46:04 +00005102SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
Evan Cheng950aac02007-09-25 01:57:46 +00005103 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
Dan Gohman8181bd12008-07-27 21:46:04 +00005104 SDValue Op0 = Op.getOperand(0);
5105 SDValue Op1 = Op.getOperand(1);
Chris Lattner77a62312008-12-25 05:34:37 +00005106 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
5107
5108 // Lower (X & (1 << N)) == 0 to BT.
5109 // Lower ((X >>u N) & 1) != 0 to BT.
5110 // Lower ((X >>s N) & 1) != 0 to BT.
Dan Gohman13dd9522009-01-13 23:25:30 +00005111 if (Op0.getOpcode() == ISD::AND &&
5112 Op0.hasOneUse() &&
5113 Op1.getOpcode() == ISD::Constant &&
Chris Lattner77a62312008-12-25 05:34:37 +00005114 Op0.getOperand(1).getOpcode() == ISD::Constant &&
5115 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
5116 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op0.getOperand(1));
5117 ConstantSDNode *CmpRHS = cast<ConstantSDNode>(Op1);
5118 SDValue AndLHS = Op0.getOperand(0);
5119 if (CmpRHS->getZExtValue() == 0 && AndRHS->getZExtValue() == 1 &&
5120 AndLHS.getOpcode() == ISD::SRL) {
5121 SDValue LHS = AndLHS.getOperand(0);
5122 SDValue RHS = AndLHS.getOperand(1);
Evan Cheng950aac02007-09-25 01:57:46 +00005123
Chris Lattner77a62312008-12-25 05:34:37 +00005124 // If LHS is i8, promote it to i16 with any_extend. There is no i8 BT
5125 // instruction. Since the shift amount is in-range-or-undefined, we know
5126 // that doing a bittest on the i16 value is ok. We extend to i32 because
5127 // the encoding for the i16 version is larger than the i32 version.
5128 if (LHS.getValueType() == MVT::i8)
5129 LHS = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, LHS);
5130
5131 // If the operand types disagree, extend the shift amount to match. Since
5132 // BT ignores high bits (like shifts) we can use anyextend.
5133 if (LHS.getValueType() != RHS.getValueType())
5134 RHS = DAG.getNode(ISD::ANY_EXTEND, LHS.getValueType(), RHS);
5135
5136 SDValue BT = DAG.getNode(X86ISD::BT, MVT::i32, LHS, RHS);
Dan Gohman0fc9ed62009-01-07 00:15:08 +00005137 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Chris Lattner77a62312008-12-25 05:34:37 +00005138 return DAG.getNode(X86ISD::SETCC, MVT::i8,
5139 DAG.getConstant(Cond, MVT::i8), BT);
5140 }
5141 }
5142
5143 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
5144 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Chris Lattner60435922008-12-24 00:11:37 +00005145
Chris Lattner77a62312008-12-25 05:34:37 +00005146 SDValue Cond = DAG.getNode(X86ISD::CMP, MVT::i32, Op0, Op1);
Chris Lattner60435922008-12-24 00:11:37 +00005147 return DAG.getNode(X86ISD::SETCC, MVT::i8,
5148 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng950aac02007-09-25 01:57:46 +00005149}
5150
Dan Gohman8181bd12008-07-27 21:46:04 +00005151SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
5152 SDValue Cond;
5153 SDValue Op0 = Op.getOperand(0);
5154 SDValue Op1 = Op.getOperand(1);
5155 SDValue CC = Op.getOperand(2);
Nate Begeman03605a02008-07-17 16:51:19 +00005156 MVT VT = Op.getValueType();
5157 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
5158 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
5159
5160 if (isFP) {
5161 unsigned SSECC = 8;
Evan Cheng33754092008-08-05 22:19:15 +00005162 MVT VT0 = Op0.getValueType();
5163 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
5164 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman03605a02008-07-17 16:51:19 +00005165 bool Swap = false;
5166
5167 switch (SetCCOpcode) {
5168 default: break;
Nate Begeman6357f9d2008-07-25 19:05:58 +00005169 case ISD::SETOEQ:
Nate Begeman03605a02008-07-17 16:51:19 +00005170 case ISD::SETEQ: SSECC = 0; break;
5171 case ISD::SETOGT:
5172 case ISD::SETGT: Swap = true; // Fallthrough
5173 case ISD::SETLT:
5174 case ISD::SETOLT: SSECC = 1; break;
5175 case ISD::SETOGE:
5176 case ISD::SETGE: Swap = true; // Fallthrough
5177 case ISD::SETLE:
5178 case ISD::SETOLE: SSECC = 2; break;
5179 case ISD::SETUO: SSECC = 3; break;
Nate Begeman6357f9d2008-07-25 19:05:58 +00005180 case ISD::SETUNE:
Nate Begeman03605a02008-07-17 16:51:19 +00005181 case ISD::SETNE: SSECC = 4; break;
5182 case ISD::SETULE: Swap = true;
5183 case ISD::SETUGE: SSECC = 5; break;
5184 case ISD::SETULT: Swap = true;
5185 case ISD::SETUGT: SSECC = 6; break;
5186 case ISD::SETO: SSECC = 7; break;
5187 }
5188 if (Swap)
5189 std::swap(Op0, Op1);
5190
Nate Begeman6357f9d2008-07-25 19:05:58 +00005191 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman03605a02008-07-17 16:51:19 +00005192 if (SSECC == 8) {
Nate Begeman6357f9d2008-07-25 19:05:58 +00005193 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005194 SDValue UNORD, EQ;
Nate Begeman6357f9d2008-07-25 19:05:58 +00005195 UNORD = DAG.getNode(Opc, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
5196 EQ = DAG.getNode(Opc, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
5197 return DAG.getNode(ISD::OR, VT, UNORD, EQ);
5198 }
5199 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005200 SDValue ORD, NEQ;
Nate Begeman6357f9d2008-07-25 19:05:58 +00005201 ORD = DAG.getNode(Opc, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
5202 NEQ = DAG.getNode(Opc, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
5203 return DAG.getNode(ISD::AND, VT, ORD, NEQ);
5204 }
5205 assert(0 && "Illegal FP comparison");
Nate Begeman03605a02008-07-17 16:51:19 +00005206 }
5207 // Handle all other FP comparisons here.
5208 return DAG.getNode(Opc, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
5209 }
5210
5211 // We are handling one of the integer comparisons here. Since SSE only has
5212 // GT and EQ comparisons for integer, swapping operands and multiple
5213 // operations may be required for some comparisons.
5214 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
5215 bool Swap = false, Invert = false, FlipSigns = false;
5216
5217 switch (VT.getSimpleVT()) {
5218 default: break;
5219 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
5220 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
5221 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
5222 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
5223 }
5224
5225 switch (SetCCOpcode) {
5226 default: break;
5227 case ISD::SETNE: Invert = true;
5228 case ISD::SETEQ: Opc = EQOpc; break;
5229 case ISD::SETLT: Swap = true;
5230 case ISD::SETGT: Opc = GTOpc; break;
5231 case ISD::SETGE: Swap = true;
5232 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
5233 case ISD::SETULT: Swap = true;
5234 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
5235 case ISD::SETUGE: Swap = true;
5236 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
5237 }
5238 if (Swap)
5239 std::swap(Op0, Op1);
5240
5241 // Since SSE has no unsigned integer comparisons, we need to flip the sign
5242 // bits of the inputs before performing those operations.
5243 if (FlipSigns) {
5244 MVT EltVT = VT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00005245 SDValue SignBit = DAG.getConstant(EltVT.getIntegerVTSignBit(), EltVT);
5246 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
5247 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, VT, &SignBits[0],
Nate Begeman03605a02008-07-17 16:51:19 +00005248 SignBits.size());
5249 Op0 = DAG.getNode(ISD::XOR, VT, Op0, SignVec);
5250 Op1 = DAG.getNode(ISD::XOR, VT, Op1, SignVec);
5251 }
5252
Dan Gohman8181bd12008-07-27 21:46:04 +00005253 SDValue Result = DAG.getNode(Opc, VT, Op0, Op1);
Nate Begeman03605a02008-07-17 16:51:19 +00005254
5255 // If the logical-not of the result is required, perform that now.
5256 if (Invert) {
5257 MVT EltVT = VT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00005258 SDValue NegOne = DAG.getConstant(EltVT.getIntegerVTBitMask(), EltVT);
5259 std::vector<SDValue> NegOnes(VT.getVectorNumElements(), NegOne);
5260 SDValue NegOneV = DAG.getNode(ISD::BUILD_VECTOR, VT, &NegOnes[0],
Nate Begeman03605a02008-07-17 16:51:19 +00005261 NegOnes.size());
5262 Result = DAG.getNode(ISD::XOR, VT, Result, NegOneV);
5263 }
5264 return Result;
5265}
Evan Cheng950aac02007-09-25 01:57:46 +00005266
Evan Chengd580f022008-12-03 08:38:43 +00005267// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
5268static bool isX86LogicalCmp(unsigned Opc) {
5269 return Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI;
5270}
5271
Dan Gohman8181bd12008-07-27 21:46:04 +00005272SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005273 bool addTest = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00005274 SDValue Cond = Op.getOperand(0);
5275 SDValue CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005276
5277 if (Cond.getOpcode() == ISD::SETCC)
Evan Cheng621216e2007-09-29 00:00:36 +00005278 Cond = LowerSETCC(Cond, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005279
Evan Cheng50d37ab2007-10-08 22:16:29 +00005280 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5281 // setting operand in place of the X86ISD::SETCC.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005282 if (Cond.getOpcode() == X86ISD::SETCC) {
5283 CC = Cond.getOperand(0);
5284
Dan Gohman8181bd12008-07-27 21:46:04 +00005285 SDValue Cmp = Cond.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005286 unsigned Opc = Cmp.getOpcode();
Duncan Sands92c43912008-06-06 12:08:01 +00005287 MVT VT = Op.getValueType();
Chris Lattnerfca7f222008-01-16 06:19:45 +00005288
Evan Cheng50d37ab2007-10-08 22:16:29 +00005289 bool IllegalFPCMov = false;
Duncan Sands92c43912008-06-06 12:08:01 +00005290 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattnercf515b52008-01-16 06:24:21 +00005291 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman40686732008-09-26 21:54:37 +00005292 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Chris Lattnerfca7f222008-01-16 06:19:45 +00005293
Evan Chengd580f022008-12-03 08:38:43 +00005294 if (isX86LogicalCmp(Opc) && !IllegalFPCMov) {
Evan Cheng50d37ab2007-10-08 22:16:29 +00005295 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00005296 addTest = false;
5297 }
5298 }
5299
5300 if (addTest) {
5301 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng50d37ab2007-10-08 22:16:29 +00005302 Cond= DAG.getNode(X86ISD::CMP, MVT::i32, Cond, DAG.getConstant(0, MVT::i8));
Evan Cheng950aac02007-09-25 01:57:46 +00005303 }
5304
Duncan Sands92c43912008-06-06 12:08:01 +00005305 const MVT *VTs = DAG.getNodeValueTypes(Op.getValueType(),
Evan Cheng950aac02007-09-25 01:57:46 +00005306 MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005307 SmallVector<SDValue, 4> Ops;
Evan Cheng950aac02007-09-25 01:57:46 +00005308 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
5309 // condition is true.
5310 Ops.push_back(Op.getOperand(2));
5311 Ops.push_back(Op.getOperand(1));
5312 Ops.push_back(CC);
5313 Ops.push_back(Cond);
Evan Cheng621216e2007-09-29 00:00:36 +00005314 return DAG.getNode(X86ISD::CMOV, VTs, 2, &Ops[0], Ops.size());
Evan Cheng950aac02007-09-25 01:57:46 +00005315}
5316
Evan Chengd580f022008-12-03 08:38:43 +00005317// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
5318// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
5319// from the AND / OR.
5320static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
5321 Opc = Op.getOpcode();
5322 if (Opc != ISD::OR && Opc != ISD::AND)
5323 return false;
5324 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5325 Op.getOperand(0).hasOneUse() &&
5326 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
5327 Op.getOperand(1).hasOneUse());
5328}
5329
Dan Gohman8181bd12008-07-27 21:46:04 +00005330SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005331 bool addTest = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00005332 SDValue Chain = Op.getOperand(0);
5333 SDValue Cond = Op.getOperand(1);
5334 SDValue Dest = Op.getOperand(2);
5335 SDValue CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005336
5337 if (Cond.getOpcode() == ISD::SETCC)
Evan Cheng621216e2007-09-29 00:00:36 +00005338 Cond = LowerSETCC(Cond, DAG);
Chris Lattner77a62312008-12-25 05:34:37 +00005339#if 0
5340 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingf5399032008-12-12 21:15:41 +00005341 else if (Cond.getOpcode() == X86ISD::ADD ||
5342 Cond.getOpcode() == X86ISD::SUB ||
5343 Cond.getOpcode() == X86ISD::SMUL ||
5344 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling7e04be62008-12-09 22:08:41 +00005345 Cond = LowerXALUO(Cond, DAG);
Chris Lattner77a62312008-12-25 05:34:37 +00005346#endif
5347
Evan Cheng50d37ab2007-10-08 22:16:29 +00005348 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5349 // setting operand in place of the X86ISD::SETCC.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005350 if (Cond.getOpcode() == X86ISD::SETCC) {
5351 CC = Cond.getOperand(0);
5352
Dan Gohman8181bd12008-07-27 21:46:04 +00005353 SDValue Cmp = Cond.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005354 unsigned Opc = Cmp.getOpcode();
Chris Lattner77a62312008-12-25 05:34:37 +00005355 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
5356 if (isX86LogicalCmp(Opc) || Opc == X86ISD::BT) {
Evan Cheng50d37ab2007-10-08 22:16:29 +00005357 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00005358 addTest = false;
Bill Wendlingd3511522008-12-02 01:06:39 +00005359 } else {
Evan Chengd580f022008-12-03 08:38:43 +00005360 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling809e7bd2008-12-03 08:32:02 +00005361 default: break;
5362 case X86::COND_O:
Dan Gohman0fc9ed62009-01-07 00:15:08 +00005363 case X86::COND_B:
Chris Lattner77a62312008-12-25 05:34:37 +00005364 // These can only come from an arithmetic instruction with overflow,
5365 // e.g. SADDO, UADDO.
Bill Wendling809e7bd2008-12-03 08:32:02 +00005366 Cond = Cond.getNode()->getOperand(1);
5367 addTest = false;
5368 break;
Bill Wendlingd3511522008-12-02 01:06:39 +00005369 }
Evan Cheng950aac02007-09-25 01:57:46 +00005370 }
Evan Chengd580f022008-12-03 08:38:43 +00005371 } else {
5372 unsigned CondOpc;
5373 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
5374 SDValue Cmp = Cond.getOperand(0).getOperand(1);
5375 unsigned Opc = Cmp.getOpcode();
5376 if (CondOpc == ISD::OR) {
5377 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
5378 // two branches instead of an explicit OR instruction with a
5379 // separate test.
5380 if (Cmp == Cond.getOperand(1).getOperand(1) &&
5381 isX86LogicalCmp(Opc)) {
5382 CC = Cond.getOperand(0).getOperand(0);
5383 Chain = DAG.getNode(X86ISD::BRCOND, Op.getValueType(),
5384 Chain, Dest, CC, Cmp);
5385 CC = Cond.getOperand(1).getOperand(0);
5386 Cond = Cmp;
5387 addTest = false;
5388 }
5389 } else { // ISD::AND
5390 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
5391 // two branches instead of an explicit AND instruction with a
5392 // separate test. However, we only do this if this block doesn't
5393 // have a fall-through edge, because this requires an explicit
5394 // jmp when the condition is false.
5395 if (Cmp == Cond.getOperand(1).getOperand(1) &&
5396 isX86LogicalCmp(Opc) &&
5397 Op.getNode()->hasOneUse()) {
5398 X86::CondCode CCode =
5399 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5400 CCode = X86::GetOppositeBranchCondition(CCode);
5401 CC = DAG.getConstant(CCode, MVT::i8);
5402 SDValue User = SDValue(*Op.getNode()->use_begin(), 0);
5403 // Look for an unconditional branch following this conditional branch.
5404 // We need this because we need to reverse the successors in order
5405 // to implement FCMP_OEQ.
5406 if (User.getOpcode() == ISD::BR) {
5407 SDValue FalseBB = User.getOperand(1);
5408 SDValue NewBR =
5409 DAG.UpdateNodeOperands(User, User.getOperand(0), Dest);
5410 assert(NewBR == User);
5411 Dest = FalseBB;
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005412
Evan Chengd580f022008-12-03 08:38:43 +00005413 Chain = DAG.getNode(X86ISD::BRCOND, Op.getValueType(),
5414 Chain, Dest, CC, Cmp);
5415 X86::CondCode CCode =
5416 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
5417 CCode = X86::GetOppositeBranchCondition(CCode);
5418 CC = DAG.getConstant(CCode, MVT::i8);
5419 Cond = Cmp;
5420 addTest = false;
5421 }
5422 }
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005423 }
5424 }
Evan Cheng950aac02007-09-25 01:57:46 +00005425 }
5426
5427 if (addTest) {
5428 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng621216e2007-09-29 00:00:36 +00005429 Cond= DAG.getNode(X86ISD::CMP, MVT::i32, Cond, DAG.getConstant(0, MVT::i8));
Evan Cheng950aac02007-09-25 01:57:46 +00005430 }
Evan Cheng621216e2007-09-29 00:00:36 +00005431 return DAG.getNode(X86ISD::BRCOND, Op.getValueType(),
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005432 Chain, Dest, CC, Cond);
Evan Cheng950aac02007-09-25 01:57:46 +00005433}
5434
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005435
5436// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
5437// Calls to _alloca is needed to probe the stack when allocating more than 4k
5438// bytes in one go. Touching the stack at 4K increments is necessary to ensure
5439// that the guard pages used by the OS virtual memory manager are allocated in
5440// correct sequence.
Dan Gohman8181bd12008-07-27 21:46:04 +00005441SDValue
5442X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005443 SelectionDAG &DAG) {
5444 assert(Subtarget->isTargetCygMing() &&
5445 "This should be used only on Cygwin/Mingw targets");
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005446
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005447 // Get the inputs.
Dan Gohman8181bd12008-07-27 21:46:04 +00005448 SDValue Chain = Op.getOperand(0);
5449 SDValue Size = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005450 // FIXME: Ensure alignment here
5451
Dan Gohman8181bd12008-07-27 21:46:04 +00005452 SDValue Flag;
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005453
Duncan Sands92c43912008-06-06 12:08:01 +00005454 MVT IntPtr = getPointerTy();
5455 MVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005456
Chris Lattnerfe5d4022008-10-11 22:08:30 +00005457 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005458
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005459 Chain = DAG.getCopyToReg(Chain, X86::EAX, Size, Flag);
5460 Flag = Chain.getValue(1);
5461
5462 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005463 SDValue Ops[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00005464 DAG.getTargetExternalSymbol("_alloca", IntPtr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005465 DAG.getRegister(X86::EAX, IntPtr),
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005466 DAG.getRegister(X86StackPtr, SPTy),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005467 Flag };
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005468 Chain = DAG.getNode(X86ISD::CALL, NodeTys, Ops, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005469 Flag = Chain.getValue(1);
5470
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005471 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnerfe5d4022008-10-11 22:08:30 +00005472 DAG.getIntPtrConstant(0, true),
5473 DAG.getIntPtrConstant(0, true),
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005474 Flag);
5475
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005476 Chain = DAG.getCopyFromReg(Chain, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005477
Dan Gohman8181bd12008-07-27 21:46:04 +00005478 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Duncan Sands698842f2008-07-02 17:40:58 +00005479 return DAG.getMergeValues(Ops1, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005480}
5481
Dan Gohman8181bd12008-07-27 21:46:04 +00005482SDValue
Dan Gohmane8b391e2008-04-12 04:36:06 +00005483X86TargetLowering::EmitTargetCodeForMemset(SelectionDAG &DAG,
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005484 SDValue Chain,
5485 SDValue Dst, SDValue Src,
5486 SDValue Size, unsigned Align,
5487 const Value *DstSV,
Bill Wendling4b2e3782008-10-01 00:59:58 +00005488 uint64_t DstSVOff) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00005489 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005490
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005491 // If not DWORD aligned or size is more than the threshold, call the library.
5492 // The libc version is likely to be faster for these cases. It can use the
5493 // address value and run time information about the CPU.
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005494 if ((Align & 3) != 0 ||
Dan Gohmane8b391e2008-04-12 04:36:06 +00005495 !ConstantSize ||
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005496 ConstantSize->getZExtValue() >
5497 getSubtarget()->getMaxInlineSizeThreshold()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005498 SDValue InFlag(0, 0);
Dan Gohmanf95c2bf2008-04-01 20:38:36 +00005499
5500 // Check to see if there is a specialized entry-point for memory zeroing.
Dan Gohmane8b391e2008-04-12 04:36:06 +00005501 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005502
Bill Wendling4b2e3782008-10-01 00:59:58 +00005503 if (const char *bzeroEntry = V &&
5504 V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
5505 MVT IntPtr = getPointerTy();
5506 const Type *IntPtrTy = TD->getIntPtrType();
5507 TargetLowering::ArgListTy Args;
5508 TargetLowering::ArgListEntry Entry;
5509 Entry.Node = Dst;
5510 Entry.Ty = IntPtrTy;
5511 Args.push_back(Entry);
5512 Entry.Node = Size;
5513 Args.push_back(Entry);
5514 std::pair<SDValue,SDValue> CallResult =
5515 LowerCallTo(Chain, Type::VoidTy, false, false, false, false,
5516 CallingConv::C, false,
5517 DAG.getExternalSymbol(bzeroEntry, IntPtr), Args, DAG);
5518 return CallResult.second;
Dan Gohmanf95c2bf2008-04-01 20:38:36 +00005519 }
5520
Dan Gohmane8b391e2008-04-12 04:36:06 +00005521 // Otherwise have the target-independent code call memset.
Dan Gohman8181bd12008-07-27 21:46:04 +00005522 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005523 }
5524
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005525 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00005526 SDValue InFlag(0, 0);
Duncan Sands92c43912008-06-06 12:08:01 +00005527 MVT AVT;
Dan Gohman8181bd12008-07-27 21:46:04 +00005528 SDValue Count;
Dan Gohmane8b391e2008-04-12 04:36:06 +00005529 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005530 unsigned BytesLeft = 0;
5531 bool TwoRepStos = false;
5532 if (ValC) {
5533 unsigned ValReg;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005534 uint64_t Val = ValC->getZExtValue() & 255;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005535
5536 // If the value is a constant, then we can potentially use larger sets.
5537 switch (Align & 3) {
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005538 case 2: // WORD aligned
5539 AVT = MVT::i16;
5540 ValReg = X86::AX;
5541 Val = (Val << 8) | Val;
5542 break;
5543 case 0: // DWORD aligned
5544 AVT = MVT::i32;
5545 ValReg = X86::EAX;
5546 Val = (Val << 8) | Val;
5547 Val = (Val << 16) | Val;
5548 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
5549 AVT = MVT::i64;
5550 ValReg = X86::RAX;
5551 Val = (Val << 32) | Val;
5552 }
5553 break;
5554 default: // Byte aligned
5555 AVT = MVT::i8;
5556 ValReg = X86::AL;
5557 Count = DAG.getIntPtrConstant(SizeVal);
5558 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005559 }
5560
Duncan Sandsec142ee2008-06-08 20:54:56 +00005561 if (AVT.bitsGT(MVT::i8)) {
Duncan Sands92c43912008-06-06 12:08:01 +00005562 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohmane8b391e2008-04-12 04:36:06 +00005563 Count = DAG.getIntPtrConstant(SizeVal / UBytes);
5564 BytesLeft = SizeVal % UBytes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005565 }
5566
5567 Chain = DAG.getCopyToReg(Chain, ValReg, DAG.getConstant(Val, AVT),
5568 InFlag);
5569 InFlag = Chain.getValue(1);
5570 } else {
5571 AVT = MVT::i8;
Dan Gohman271d1c22008-04-16 01:32:32 +00005572 Count = DAG.getIntPtrConstant(SizeVal);
Dan Gohmane8b391e2008-04-12 04:36:06 +00005573 Chain = DAG.getCopyToReg(Chain, X86::AL, Src, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005574 InFlag = Chain.getValue(1);
5575 }
5576
5577 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RCX : X86::ECX,
5578 Count, InFlag);
5579 InFlag = Chain.getValue(1);
5580 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RDI : X86::EDI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00005581 Dst, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005582 InFlag = Chain.getValue(1);
5583
5584 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005585 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005586 Ops.push_back(Chain);
5587 Ops.push_back(DAG.getValueType(AVT));
5588 Ops.push_back(InFlag);
5589 Chain = DAG.getNode(X86ISD::REP_STOS, Tys, &Ops[0], Ops.size());
5590
5591 if (TwoRepStos) {
5592 InFlag = Chain.getValue(1);
Dan Gohmane8b391e2008-04-12 04:36:06 +00005593 Count = Size;
Duncan Sands92c43912008-06-06 12:08:01 +00005594 MVT CVT = Count.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00005595 SDValue Left = DAG.getNode(ISD::AND, CVT, Count,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005596 DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
5597 Chain = DAG.getCopyToReg(Chain, (CVT == MVT::i64) ? X86::RCX : X86::ECX,
5598 Left, InFlag);
5599 InFlag = Chain.getValue(1);
5600 Tys = DAG.getVTList(MVT::Other, MVT::Flag);
5601 Ops.clear();
5602 Ops.push_back(Chain);
5603 Ops.push_back(DAG.getValueType(MVT::i8));
5604 Ops.push_back(InFlag);
5605 Chain = DAG.getNode(X86ISD::REP_STOS, Tys, &Ops[0], Ops.size());
5606 } else if (BytesLeft) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00005607 // Handle the last 1 - 7 bytes.
5608 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands92c43912008-06-06 12:08:01 +00005609 MVT AddrVT = Dst.getValueType();
5610 MVT SizeVT = Size.getValueType();
Dan Gohmane8b391e2008-04-12 04:36:06 +00005611
5612 Chain = DAG.getMemset(Chain,
5613 DAG.getNode(ISD::ADD, AddrVT, Dst,
5614 DAG.getConstant(Offset, AddrVT)),
5615 Src,
5616 DAG.getConstant(BytesLeft, SizeVT),
Dan Gohman65118f42008-04-28 17:15:20 +00005617 Align, DstSV, DstSVOff + Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005618 }
5619
Dan Gohmane8b391e2008-04-12 04:36:06 +00005620 // TODO: Use a Tokenfactor, as in memcpy, instead of a single chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005621 return Chain;
5622}
5623
Dan Gohman8181bd12008-07-27 21:46:04 +00005624SDValue
Dan Gohmane8b391e2008-04-12 04:36:06 +00005625X86TargetLowering::EmitTargetCodeForMemcpy(SelectionDAG &DAG,
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005626 SDValue Chain, SDValue Dst, SDValue Src,
5627 SDValue Size, unsigned Align,
5628 bool AlwaysInline,
5629 const Value *DstSV, uint64_t DstSVOff,
5630 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00005631 // This requires the copy size to be a constant, preferrably
5632 // within a subtarget-specific limit.
5633 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
5634 if (!ConstantSize)
Dan Gohman8181bd12008-07-27 21:46:04 +00005635 return SDValue();
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005636 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohmane8b391e2008-04-12 04:36:06 +00005637 if (!AlwaysInline && SizeVal > getSubtarget()->getMaxInlineSizeThreshold())
Dan Gohman8181bd12008-07-27 21:46:04 +00005638 return SDValue();
Dan Gohmane8b391e2008-04-12 04:36:06 +00005639
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005640 /// If not DWORD aligned, call the library.
5641 if ((Align & 3) != 0)
5642 return SDValue();
5643
5644 // DWORD aligned
5645 MVT AVT = MVT::i32;
5646 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) // QWORD aligned
Dan Gohmane8b391e2008-04-12 04:36:06 +00005647 AVT = MVT::i64;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005648
Duncan Sands92c43912008-06-06 12:08:01 +00005649 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohmane8b391e2008-04-12 04:36:06 +00005650 unsigned CountVal = SizeVal / UBytes;
Dan Gohman8181bd12008-07-27 21:46:04 +00005651 SDValue Count = DAG.getIntPtrConstant(CountVal);
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005652 unsigned BytesLeft = SizeVal % UBytes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005653
Dan Gohman8181bd12008-07-27 21:46:04 +00005654 SDValue InFlag(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005655 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RCX : X86::ECX,
5656 Count, InFlag);
5657 InFlag = Chain.getValue(1);
5658 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RDI : X86::EDI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00005659 Dst, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005660 InFlag = Chain.getValue(1);
5661 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RSI : X86::ESI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00005662 Src, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005663 InFlag = Chain.getValue(1);
5664
5665 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005666 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005667 Ops.push_back(Chain);
5668 Ops.push_back(DAG.getValueType(AVT));
5669 Ops.push_back(InFlag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005670 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005671
Dan Gohman8181bd12008-07-27 21:46:04 +00005672 SmallVector<SDValue, 4> Results;
Evan Cheng38d3c522008-04-25 00:26:43 +00005673 Results.push_back(RepMovs);
Rafael Espindolaf12f3a92007-09-28 12:53:01 +00005674 if (BytesLeft) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00005675 // Handle the last 1 - 7 bytes.
5676 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands92c43912008-06-06 12:08:01 +00005677 MVT DstVT = Dst.getValueType();
5678 MVT SrcVT = Src.getValueType();
5679 MVT SizeVT = Size.getValueType();
Evan Cheng38d3c522008-04-25 00:26:43 +00005680 Results.push_back(DAG.getMemcpy(Chain,
Dan Gohmane8b391e2008-04-12 04:36:06 +00005681 DAG.getNode(ISD::ADD, DstVT, Dst,
Evan Cheng38d3c522008-04-25 00:26:43 +00005682 DAG.getConstant(Offset, DstVT)),
Dan Gohmane8b391e2008-04-12 04:36:06 +00005683 DAG.getNode(ISD::ADD, SrcVT, Src,
Evan Cheng38d3c522008-04-25 00:26:43 +00005684 DAG.getConstant(Offset, SrcVT)),
Dan Gohmane8b391e2008-04-12 04:36:06 +00005685 DAG.getConstant(BytesLeft, SizeVT),
5686 Align, AlwaysInline,
Dan Gohman65118f42008-04-28 17:15:20 +00005687 DstSV, DstSVOff + Offset,
5688 SrcSV, SrcSVOff + Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005689 }
5690
Dan Gohmane8b391e2008-04-12 04:36:06 +00005691 return DAG.getNode(ISD::TokenFactor, MVT::Other, &Results[0], Results.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005692}
5693
Dan Gohman8181bd12008-07-27 21:46:04 +00005694SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) {
Dan Gohman12a9c082008-02-06 22:27:42 +00005695 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005696
5697 if (!Subtarget->is64Bit()) {
5698 // vastart just stores the address of the VarArgsFrameIndex slot into the
5699 // memory location argument.
Dan Gohman8181bd12008-07-27 21:46:04 +00005700 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dan Gohman12a9c082008-02-06 22:27:42 +00005701 return DAG.getStore(Op.getOperand(0), FR,Op.getOperand(1), SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005702 }
5703
5704 // __va_list_tag:
5705 // gp_offset (0 - 6 * 8)
5706 // fp_offset (48 - 48 + 8 * 16)
5707 // overflow_arg_area (point to parameters coming in memory).
5708 // reg_save_area
Dan Gohman8181bd12008-07-27 21:46:04 +00005709 SmallVector<SDValue, 8> MemOps;
5710 SDValue FIN = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005711 // Store gp_offset
Dan Gohman8181bd12008-07-27 21:46:04 +00005712 SDValue Store = DAG.getStore(Op.getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005713 DAG.getConstant(VarArgsGPOffset, MVT::i32),
Dan Gohman12a9c082008-02-06 22:27:42 +00005714 FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005715 MemOps.push_back(Store);
5716
5717 // Store fp_offset
Chris Lattner5872a362008-01-17 07:00:52 +00005718 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN, DAG.getIntPtrConstant(4));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005719 Store = DAG.getStore(Op.getOperand(0),
5720 DAG.getConstant(VarArgsFPOffset, MVT::i32),
Dan Gohman12a9c082008-02-06 22:27:42 +00005721 FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005722 MemOps.push_back(Store);
5723
5724 // Store ptr to overflow_arg_area
Chris Lattner5872a362008-01-17 07:00:52 +00005725 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN, DAG.getIntPtrConstant(4));
Dan Gohman8181bd12008-07-27 21:46:04 +00005726 SDValue OVFIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dan Gohman12a9c082008-02-06 22:27:42 +00005727 Store = DAG.getStore(Op.getOperand(0), OVFIN, FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005728 MemOps.push_back(Store);
5729
5730 // Store ptr to reg_save_area.
Chris Lattner5872a362008-01-17 07:00:52 +00005731 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN, DAG.getIntPtrConstant(8));
Dan Gohman8181bd12008-07-27 21:46:04 +00005732 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dan Gohman12a9c082008-02-06 22:27:42 +00005733 Store = DAG.getStore(Op.getOperand(0), RSFIN, FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005734 MemOps.push_back(Store);
5735 return DAG.getNode(ISD::TokenFactor, MVT::Other, &MemOps[0], MemOps.size());
5736}
5737
Dan Gohman8181bd12008-07-27 21:46:04 +00005738SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) {
Dan Gohman827cb1f2008-05-10 01:26:14 +00005739 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
5740 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_arg!");
Dan Gohman8181bd12008-07-27 21:46:04 +00005741 SDValue Chain = Op.getOperand(0);
5742 SDValue SrcPtr = Op.getOperand(1);
5743 SDValue SrcSV = Op.getOperand(2);
Dan Gohman827cb1f2008-05-10 01:26:14 +00005744
5745 assert(0 && "VAArgInst is not yet implemented for x86-64!");
5746 abort();
Dan Gohman8181bd12008-07-27 21:46:04 +00005747 return SDValue();
Dan Gohman827cb1f2008-05-10 01:26:14 +00005748}
5749
Dan Gohman8181bd12008-07-27 21:46:04 +00005750SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005751 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman840ff5c2008-04-18 20:55:41 +00005752 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman8181bd12008-07-27 21:46:04 +00005753 SDValue Chain = Op.getOperand(0);
5754 SDValue DstPtr = Op.getOperand(1);
5755 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman12a9c082008-02-06 22:27:42 +00005756 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
5757 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005758
Dan Gohman840ff5c2008-04-18 20:55:41 +00005759 return DAG.getMemcpy(Chain, DstPtr, SrcPtr,
5760 DAG.getIntPtrConstant(24), 8, false,
5761 DstSV, 0, SrcSV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005762}
5763
Dan Gohman8181bd12008-07-27 21:46:04 +00005764SDValue
5765X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005766 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005767 switch (IntNo) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005768 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng9f69f9d2008-05-04 09:15:50 +00005769 // Comparison intrinsics.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005770 case Intrinsic::x86_sse_comieq_ss:
5771 case Intrinsic::x86_sse_comilt_ss:
5772 case Intrinsic::x86_sse_comile_ss:
5773 case Intrinsic::x86_sse_comigt_ss:
5774 case Intrinsic::x86_sse_comige_ss:
5775 case Intrinsic::x86_sse_comineq_ss:
5776 case Intrinsic::x86_sse_ucomieq_ss:
5777 case Intrinsic::x86_sse_ucomilt_ss:
5778 case Intrinsic::x86_sse_ucomile_ss:
5779 case Intrinsic::x86_sse_ucomigt_ss:
5780 case Intrinsic::x86_sse_ucomige_ss:
5781 case Intrinsic::x86_sse_ucomineq_ss:
5782 case Intrinsic::x86_sse2_comieq_sd:
5783 case Intrinsic::x86_sse2_comilt_sd:
5784 case Intrinsic::x86_sse2_comile_sd:
5785 case Intrinsic::x86_sse2_comigt_sd:
5786 case Intrinsic::x86_sse2_comige_sd:
5787 case Intrinsic::x86_sse2_comineq_sd:
5788 case Intrinsic::x86_sse2_ucomieq_sd:
5789 case Intrinsic::x86_sse2_ucomilt_sd:
5790 case Intrinsic::x86_sse2_ucomile_sd:
5791 case Intrinsic::x86_sse2_ucomigt_sd:
5792 case Intrinsic::x86_sse2_ucomige_sd:
5793 case Intrinsic::x86_sse2_ucomineq_sd: {
5794 unsigned Opc = 0;
5795 ISD::CondCode CC = ISD::SETCC_INVALID;
5796 switch (IntNo) {
5797 default: break;
5798 case Intrinsic::x86_sse_comieq_ss:
5799 case Intrinsic::x86_sse2_comieq_sd:
5800 Opc = X86ISD::COMI;
5801 CC = ISD::SETEQ;
5802 break;
5803 case Intrinsic::x86_sse_comilt_ss:
5804 case Intrinsic::x86_sse2_comilt_sd:
5805 Opc = X86ISD::COMI;
5806 CC = ISD::SETLT;
5807 break;
5808 case Intrinsic::x86_sse_comile_ss:
5809 case Intrinsic::x86_sse2_comile_sd:
5810 Opc = X86ISD::COMI;
5811 CC = ISD::SETLE;
5812 break;
5813 case Intrinsic::x86_sse_comigt_ss:
5814 case Intrinsic::x86_sse2_comigt_sd:
5815 Opc = X86ISD::COMI;
5816 CC = ISD::SETGT;
5817 break;
5818 case Intrinsic::x86_sse_comige_ss:
5819 case Intrinsic::x86_sse2_comige_sd:
5820 Opc = X86ISD::COMI;
5821 CC = ISD::SETGE;
5822 break;
5823 case Intrinsic::x86_sse_comineq_ss:
5824 case Intrinsic::x86_sse2_comineq_sd:
5825 Opc = X86ISD::COMI;
5826 CC = ISD::SETNE;
5827 break;
5828 case Intrinsic::x86_sse_ucomieq_ss:
5829 case Intrinsic::x86_sse2_ucomieq_sd:
5830 Opc = X86ISD::UCOMI;
5831 CC = ISD::SETEQ;
5832 break;
5833 case Intrinsic::x86_sse_ucomilt_ss:
5834 case Intrinsic::x86_sse2_ucomilt_sd:
5835 Opc = X86ISD::UCOMI;
5836 CC = ISD::SETLT;
5837 break;
5838 case Intrinsic::x86_sse_ucomile_ss:
5839 case Intrinsic::x86_sse2_ucomile_sd:
5840 Opc = X86ISD::UCOMI;
5841 CC = ISD::SETLE;
5842 break;
5843 case Intrinsic::x86_sse_ucomigt_ss:
5844 case Intrinsic::x86_sse2_ucomigt_sd:
5845 Opc = X86ISD::UCOMI;
5846 CC = ISD::SETGT;
5847 break;
5848 case Intrinsic::x86_sse_ucomige_ss:
5849 case Intrinsic::x86_sse2_ucomige_sd:
5850 Opc = X86ISD::UCOMI;
5851 CC = ISD::SETGE;
5852 break;
5853 case Intrinsic::x86_sse_ucomineq_ss:
5854 case Intrinsic::x86_sse2_ucomineq_sd:
5855 Opc = X86ISD::UCOMI;
5856 CC = ISD::SETNE;
5857 break;
5858 }
5859
Dan Gohman8181bd12008-07-27 21:46:04 +00005860 SDValue LHS = Op.getOperand(1);
5861 SDValue RHS = Op.getOperand(2);
Chris Lattnerebb91142008-12-24 23:53:05 +00005862 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman8181bd12008-07-27 21:46:04 +00005863 SDValue Cond = DAG.getNode(Opc, MVT::i32, LHS, RHS);
5864 SDValue SetCC = DAG.getNode(X86ISD::SETCC, MVT::i8,
Evan Cheng89c17632008-08-17 19:22:34 +00005865 DAG.getConstant(X86CC, MVT::i8), Cond);
5866 return DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, SetCC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005867 }
Evan Cheng9f69f9d2008-05-04 09:15:50 +00005868
5869 // Fix vector shift instructions where the last operand is a non-immediate
5870 // i32 value.
5871 case Intrinsic::x86_sse2_pslli_w:
5872 case Intrinsic::x86_sse2_pslli_d:
5873 case Intrinsic::x86_sse2_pslli_q:
5874 case Intrinsic::x86_sse2_psrli_w:
5875 case Intrinsic::x86_sse2_psrli_d:
5876 case Intrinsic::x86_sse2_psrli_q:
5877 case Intrinsic::x86_sse2_psrai_w:
5878 case Intrinsic::x86_sse2_psrai_d:
5879 case Intrinsic::x86_mmx_pslli_w:
5880 case Intrinsic::x86_mmx_pslli_d:
5881 case Intrinsic::x86_mmx_pslli_q:
5882 case Intrinsic::x86_mmx_psrli_w:
5883 case Intrinsic::x86_mmx_psrli_d:
5884 case Intrinsic::x86_mmx_psrli_q:
5885 case Intrinsic::x86_mmx_psrai_w:
5886 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman8181bd12008-07-27 21:46:04 +00005887 SDValue ShAmt = Op.getOperand(2);
Evan Cheng9f69f9d2008-05-04 09:15:50 +00005888 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman8181bd12008-07-27 21:46:04 +00005889 return SDValue();
Evan Cheng9f69f9d2008-05-04 09:15:50 +00005890
5891 unsigned NewIntNo = 0;
Duncan Sands92c43912008-06-06 12:08:01 +00005892 MVT ShAmtVT = MVT::v4i32;
Evan Cheng9f69f9d2008-05-04 09:15:50 +00005893 switch (IntNo) {
5894 case Intrinsic::x86_sse2_pslli_w:
5895 NewIntNo = Intrinsic::x86_sse2_psll_w;
5896 break;
5897 case Intrinsic::x86_sse2_pslli_d:
5898 NewIntNo = Intrinsic::x86_sse2_psll_d;
5899 break;
5900 case Intrinsic::x86_sse2_pslli_q:
5901 NewIntNo = Intrinsic::x86_sse2_psll_q;
5902 break;
5903 case Intrinsic::x86_sse2_psrli_w:
5904 NewIntNo = Intrinsic::x86_sse2_psrl_w;
5905 break;
5906 case Intrinsic::x86_sse2_psrli_d:
5907 NewIntNo = Intrinsic::x86_sse2_psrl_d;
5908 break;
5909 case Intrinsic::x86_sse2_psrli_q:
5910 NewIntNo = Intrinsic::x86_sse2_psrl_q;
5911 break;
5912 case Intrinsic::x86_sse2_psrai_w:
5913 NewIntNo = Intrinsic::x86_sse2_psra_w;
5914 break;
5915 case Intrinsic::x86_sse2_psrai_d:
5916 NewIntNo = Intrinsic::x86_sse2_psra_d;
5917 break;
5918 default: {
5919 ShAmtVT = MVT::v2i32;
5920 switch (IntNo) {
5921 case Intrinsic::x86_mmx_pslli_w:
5922 NewIntNo = Intrinsic::x86_mmx_psll_w;
5923 break;
5924 case Intrinsic::x86_mmx_pslli_d:
5925 NewIntNo = Intrinsic::x86_mmx_psll_d;
5926 break;
5927 case Intrinsic::x86_mmx_pslli_q:
5928 NewIntNo = Intrinsic::x86_mmx_psll_q;
5929 break;
5930 case Intrinsic::x86_mmx_psrli_w:
5931 NewIntNo = Intrinsic::x86_mmx_psrl_w;
5932 break;
5933 case Intrinsic::x86_mmx_psrli_d:
5934 NewIntNo = Intrinsic::x86_mmx_psrl_d;
5935 break;
5936 case Intrinsic::x86_mmx_psrli_q:
5937 NewIntNo = Intrinsic::x86_mmx_psrl_q;
5938 break;
5939 case Intrinsic::x86_mmx_psrai_w:
5940 NewIntNo = Intrinsic::x86_mmx_psra_w;
5941 break;
5942 case Intrinsic::x86_mmx_psrai_d:
5943 NewIntNo = Intrinsic::x86_mmx_psra_d;
5944 break;
5945 default: abort(); // Can't reach here.
5946 }
5947 break;
5948 }
5949 }
Duncan Sands92c43912008-06-06 12:08:01 +00005950 MVT VT = Op.getValueType();
Evan Cheng9f69f9d2008-05-04 09:15:50 +00005951 ShAmt = DAG.getNode(ISD::BIT_CONVERT, VT,
5952 DAG.getNode(ISD::SCALAR_TO_VECTOR, ShAmtVT, ShAmt));
5953 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
5954 DAG.getConstant(NewIntNo, MVT::i32),
5955 Op.getOperand(1), ShAmt);
5956 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005957 }
5958}
5959
Dan Gohman8181bd12008-07-27 21:46:04 +00005960SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
Bill Wendling6ddc87b2009-01-16 19:25:27 +00005961 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
5962
5963 if (Depth > 0) {
5964 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
5965 SDValue Offset =
5966 DAG.getConstant(TD->getPointerSize(),
5967 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
5968 return DAG.getLoad(getPointerTy(), DAG.getEntryNode(),
5969 DAG.getNode(ISD::ADD, getPointerTy(), FrameAddr, Offset),
5970 NULL, 0);
5971 }
5972
5973 // Just load the return address.
Dan Gohman8181bd12008-07-27 21:46:04 +00005974 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005975 return DAG.getLoad(getPointerTy(), DAG.getEntryNode(), RetAddrFI, NULL, 0);
5976}
5977
Dan Gohman8181bd12008-07-27 21:46:04 +00005978SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
Evan Cheng33633672008-09-27 01:56:22 +00005979 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5980 MFI->setFrameAddressIsTaken(true);
5981 MVT VT = Op.getValueType();
5982 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
5983 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
5984 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), FrameReg, VT);
5985 while (Depth--)
5986 FrameAddr = DAG.getLoad(VT, DAG.getEntryNode(), FrameAddr, NULL, 0);
5987 return FrameAddr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005988}
5989
Dan Gohman8181bd12008-07-27 21:46:04 +00005990SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Anton Korobeynikov566f9d92008-09-08 21:12:11 +00005991 SelectionDAG &DAG) {
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00005992 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005993}
5994
Dan Gohman8181bd12008-07-27 21:46:04 +00005995SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005996{
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005997 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman8181bd12008-07-27 21:46:04 +00005998 SDValue Chain = Op.getOperand(0);
5999 SDValue Offset = Op.getOperand(1);
6000 SDValue Handler = Op.getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006001
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006002 SDValue Frame = DAG.getRegister(Subtarget->is64Bit() ? X86::RBP : X86::EBP,
6003 getPointerTy());
6004 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006005
Dan Gohman8181bd12008-07-27 21:46:04 +00006006 SDValue StoreAddr = DAG.getNode(ISD::SUB, getPointerTy(), Frame,
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006007 DAG.getIntPtrConstant(-TD->getPointerSize()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006008 StoreAddr = DAG.getNode(ISD::ADD, getPointerTy(), StoreAddr, Offset);
6009 Chain = DAG.getStore(Chain, Handler, StoreAddr, NULL, 0);
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006010 Chain = DAG.getCopyToReg(Chain, StoreAddrReg, StoreAddr);
6011 MF.getRegInfo().addLiveOut(StoreAddrReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006012
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006013 return DAG.getNode(X86ISD::EH_RETURN,
6014 MVT::Other,
6015 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006016}
6017
Dan Gohman8181bd12008-07-27 21:46:04 +00006018SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006019 SelectionDAG &DAG) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006020 SDValue Root = Op.getOperand(0);
6021 SDValue Trmp = Op.getOperand(1); // trampoline
6022 SDValue FPtr = Op.getOperand(2); // nested function
6023 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006024
Dan Gohman12a9c082008-02-06 22:27:42 +00006025 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006026
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006027 const X86InstrInfo *TII =
6028 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
6029
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006030 if (Subtarget->is64Bit()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006031 SDValue OutChains[6];
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006032
6033 // Large code-model.
6034
6035 const unsigned char JMP64r = TII->getBaseOpcodeFor(X86::JMP64r);
6036 const unsigned char MOV64ri = TII->getBaseOpcodeFor(X86::MOV64ri);
6037
Dan Gohmanb41dfba2008-05-14 01:58:56 +00006038 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
6039 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006040
6041 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
6042
6043 // Load the pointer to the nested function into R11.
6044 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman8181bd12008-07-27 21:46:04 +00006045 SDValue Addr = Trmp;
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006046 OutChains[0] = DAG.getStore(Root, DAG.getConstant(OpCode, MVT::i16), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00006047 TrmpAddr, 0);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006048
6049 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(2, MVT::i64));
Dan Gohman12a9c082008-02-06 22:27:42 +00006050 OutChains[1] = DAG.getStore(Root, FPtr, Addr, TrmpAddr, 2, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006051
6052 // Load the 'nest' parameter value into R10.
6053 // R10 is specified in X86CallingConv.td
6054 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
6055 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(10, MVT::i64));
6056 OutChains[2] = DAG.getStore(Root, DAG.getConstant(OpCode, MVT::i16), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00006057 TrmpAddr, 10);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006058
6059 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(12, MVT::i64));
Dan Gohman12a9c082008-02-06 22:27:42 +00006060 OutChains[3] = DAG.getStore(Root, Nest, Addr, TrmpAddr, 12, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006061
6062 // Jump to the nested function.
6063 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
6064 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(20, MVT::i64));
6065 OutChains[4] = DAG.getStore(Root, DAG.getConstant(OpCode, MVT::i16), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00006066 TrmpAddr, 20);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006067
6068 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
6069 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(22, MVT::i64));
6070 OutChains[5] = DAG.getStore(Root, DAG.getConstant(ModRM, MVT::i8), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00006071 TrmpAddr, 22);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006072
Dan Gohman8181bd12008-07-27 21:46:04 +00006073 SDValue Ops[] =
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006074 { Trmp, DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains, 6) };
Duncan Sands698842f2008-07-02 17:40:58 +00006075 return DAG.getMergeValues(Ops, 2);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006076 } else {
Dan Gohman0bd70702008-01-31 01:01:48 +00006077 const Function *Func =
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006078 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
6079 unsigned CC = Func->getCallingConv();
Duncan Sands466eadd2007-08-29 19:01:20 +00006080 unsigned NestReg;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006081
6082 switch (CC) {
6083 default:
6084 assert(0 && "Unsupported calling convention");
6085 case CallingConv::C:
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006086 case CallingConv::X86_StdCall: {
6087 // Pass 'nest' parameter in ECX.
6088 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00006089 NestReg = X86::ECX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006090
6091 // Check that ECX wasn't needed by an 'inreg' parameter.
6092 const FunctionType *FTy = Func->getFunctionType();
Devang Pateld222f862008-09-25 21:00:45 +00006093 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006094
Chris Lattner1c8733e2008-03-12 17:45:29 +00006095 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006096 unsigned InRegCount = 0;
6097 unsigned Idx = 1;
6098
6099 for (FunctionType::param_iterator I = FTy->param_begin(),
6100 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Pateld222f862008-09-25 21:00:45 +00006101 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006102 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006103 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006104
6105 if (InRegCount > 2) {
6106 cerr << "Nest register in use - reduce number of inreg parameters!\n";
6107 abort();
6108 }
6109 }
6110 break;
6111 }
6112 case CallingConv::X86_FastCall:
Duncan Sands162c1d52008-09-10 13:22:10 +00006113 case CallingConv::Fast:
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006114 // Pass 'nest' parameter in EAX.
6115 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00006116 NestReg = X86::EAX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006117 break;
6118 }
6119
Dan Gohman8181bd12008-07-27 21:46:04 +00006120 SDValue OutChains[4];
6121 SDValue Addr, Disp;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006122
6123 Addr = DAG.getNode(ISD::ADD, MVT::i32, Trmp, DAG.getConstant(10, MVT::i32));
6124 Disp = DAG.getNode(ISD::SUB, MVT::i32, FPtr, Addr);
6125
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006126 const unsigned char MOV32ri = TII->getBaseOpcodeFor(X86::MOV32ri);
Dan Gohmanb41dfba2008-05-14 01:58:56 +00006127 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Duncan Sands466eadd2007-08-29 19:01:20 +00006128 OutChains[0] = DAG.getStore(Root, DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Dan Gohman12a9c082008-02-06 22:27:42 +00006129 Trmp, TrmpAddr, 0);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006130
6131 Addr = DAG.getNode(ISD::ADD, MVT::i32, Trmp, DAG.getConstant(1, MVT::i32));
Dan Gohman12a9c082008-02-06 22:27:42 +00006132 OutChains[1] = DAG.getStore(Root, Nest, Addr, TrmpAddr, 1, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006133
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006134 const unsigned char JMP = TII->getBaseOpcodeFor(X86::JMP);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006135 Addr = DAG.getNode(ISD::ADD, MVT::i32, Trmp, DAG.getConstant(5, MVT::i32));
6136 OutChains[2] = DAG.getStore(Root, DAG.getConstant(JMP, MVT::i8), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00006137 TrmpAddr, 5, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006138
6139 Addr = DAG.getNode(ISD::ADD, MVT::i32, Trmp, DAG.getConstant(6, MVT::i32));
Dan Gohman12a9c082008-02-06 22:27:42 +00006140 OutChains[3] = DAG.getStore(Root, Disp, Addr, TrmpAddr, 6, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006141
Dan Gohman8181bd12008-07-27 21:46:04 +00006142 SDValue Ops[] =
Duncan Sands7407a9f2007-09-11 14:10:23 +00006143 { Trmp, DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains, 4) };
Duncan Sands698842f2008-07-02 17:40:58 +00006144 return DAG.getMergeValues(Ops, 2);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006145 }
6146}
6147
Dan Gohman8181bd12008-07-27 21:46:04 +00006148SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006149 /*
6150 The rounding mode is in bits 11:10 of FPSR, and has the following
6151 settings:
6152 00 Round to nearest
6153 01 Round to -inf
6154 10 Round to +inf
6155 11 Round to 0
6156
6157 FLT_ROUNDS, on the other hand, expects the following:
6158 -1 Undefined
6159 0 Round to 0
6160 1 Round to nearest
6161 2 Round to +inf
6162 3 Round to -inf
6163
6164 To perform the conversion, we do:
6165 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
6166 */
6167
6168 MachineFunction &MF = DAG.getMachineFunction();
6169 const TargetMachine &TM = MF.getTarget();
6170 const TargetFrameInfo &TFI = *TM.getFrameInfo();
6171 unsigned StackAlignment = TFI.getStackAlignment();
Duncan Sands92c43912008-06-06 12:08:01 +00006172 MVT VT = Op.getValueType();
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006173
6174 // Save FP Control Word to stack slot
6175 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment);
Dan Gohman8181bd12008-07-27 21:46:04 +00006176 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006177
Dan Gohman8181bd12008-07-27 21:46:04 +00006178 SDValue Chain = DAG.getNode(X86ISD::FNSTCW16m, MVT::Other,
Evan Cheng6617eed2008-09-24 23:26:36 +00006179 DAG.getEntryNode(), StackSlot);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006180
6181 // Load FP Control Word from stack slot
Dan Gohman8181bd12008-07-27 21:46:04 +00006182 SDValue CWD = DAG.getLoad(MVT::i16, Chain, StackSlot, NULL, 0);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006183
6184 // Transform as necessary
Dan Gohman8181bd12008-07-27 21:46:04 +00006185 SDValue CWD1 =
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006186 DAG.getNode(ISD::SRL, MVT::i16,
6187 DAG.getNode(ISD::AND, MVT::i16,
6188 CWD, DAG.getConstant(0x800, MVT::i16)),
6189 DAG.getConstant(11, MVT::i8));
Dan Gohman8181bd12008-07-27 21:46:04 +00006190 SDValue CWD2 =
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006191 DAG.getNode(ISD::SRL, MVT::i16,
6192 DAG.getNode(ISD::AND, MVT::i16,
6193 CWD, DAG.getConstant(0x400, MVT::i16)),
6194 DAG.getConstant(9, MVT::i8));
6195
Dan Gohman8181bd12008-07-27 21:46:04 +00006196 SDValue RetVal =
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006197 DAG.getNode(ISD::AND, MVT::i16,
6198 DAG.getNode(ISD::ADD, MVT::i16,
6199 DAG.getNode(ISD::OR, MVT::i16, CWD1, CWD2),
6200 DAG.getConstant(1, MVT::i16)),
6201 DAG.getConstant(3, MVT::i16));
6202
6203
Duncan Sands92c43912008-06-06 12:08:01 +00006204 return DAG.getNode((VT.getSizeInBits() < 16 ?
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006205 ISD::TRUNCATE : ISD::ZERO_EXTEND), VT, RetVal);
6206}
6207
Dan Gohman8181bd12008-07-27 21:46:04 +00006208SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00006209 MVT VT = Op.getValueType();
6210 MVT OpVT = VT;
6211 unsigned NumBits = VT.getSizeInBits();
Evan Cheng48679f42007-12-14 02:13:44 +00006212
6213 Op = Op.getOperand(0);
6214 if (VT == MVT::i8) {
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006215 // Zero extend to i32 since there is not an i8 bsr.
Evan Cheng48679f42007-12-14 02:13:44 +00006216 OpVT = MVT::i32;
6217 Op = DAG.getNode(ISD::ZERO_EXTEND, OpVT, Op);
6218 }
Evan Cheng48679f42007-12-14 02:13:44 +00006219
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006220 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
6221 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
6222 Op = DAG.getNode(X86ISD::BSR, VTs, Op);
6223
6224 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Dan Gohman8181bd12008-07-27 21:46:04 +00006225 SmallVector<SDValue, 4> Ops;
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006226 Ops.push_back(Op);
6227 Ops.push_back(DAG.getConstant(NumBits+NumBits-1, OpVT));
6228 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6229 Ops.push_back(Op.getValue(1));
6230 Op = DAG.getNode(X86ISD::CMOV, OpVT, &Ops[0], 4);
6231
6232 // Finally xor with NumBits-1.
6233 Op = DAG.getNode(ISD::XOR, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
6234
Evan Cheng48679f42007-12-14 02:13:44 +00006235 if (VT == MVT::i8)
6236 Op = DAG.getNode(ISD::TRUNCATE, MVT::i8, Op);
6237 return Op;
6238}
6239
Dan Gohman8181bd12008-07-27 21:46:04 +00006240SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00006241 MVT VT = Op.getValueType();
6242 MVT OpVT = VT;
6243 unsigned NumBits = VT.getSizeInBits();
Evan Cheng48679f42007-12-14 02:13:44 +00006244
6245 Op = Op.getOperand(0);
6246 if (VT == MVT::i8) {
6247 OpVT = MVT::i32;
6248 Op = DAG.getNode(ISD::ZERO_EXTEND, OpVT, Op);
6249 }
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006250
6251 // Issue a bsf (scan bits forward) which also sets EFLAGS.
6252 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
6253 Op = DAG.getNode(X86ISD::BSF, VTs, Op);
6254
6255 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Dan Gohman8181bd12008-07-27 21:46:04 +00006256 SmallVector<SDValue, 4> Ops;
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006257 Ops.push_back(Op);
6258 Ops.push_back(DAG.getConstant(NumBits, OpVT));
6259 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6260 Ops.push_back(Op.getValue(1));
6261 Op = DAG.getNode(X86ISD::CMOV, OpVT, &Ops[0], 4);
6262
Evan Cheng48679f42007-12-14 02:13:44 +00006263 if (VT == MVT::i8)
6264 Op = DAG.getNode(ISD::TRUNCATE, MVT::i8, Op);
6265 return Op;
6266}
6267
Mon P Wang14edb092008-12-18 21:42:19 +00006268SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) {
6269 MVT VT = Op.getValueType();
6270 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
6271
6272 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
6273 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
6274 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
6275 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
6276 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
6277 //
6278 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
6279 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
6280 // return AloBlo + AloBhi + AhiBlo;
6281
6282 SDValue A = Op.getOperand(0);
6283 SDValue B = Op.getOperand(1);
6284
6285 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6286 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6287 A, DAG.getConstant(32, MVT::i32));
6288 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6289 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6290 B, DAG.getConstant(32, MVT::i32));
6291 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6292 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6293 A, B);
6294 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6295 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6296 A, Bhi);
6297 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6298 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6299 Ahi, B);
6300 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6301 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6302 AloBhi, DAG.getConstant(32, MVT::i32));
6303 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6304 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6305 AhiBlo, DAG.getConstant(32, MVT::i32));
6306 SDValue Res = DAG.getNode(ISD::ADD, VT, AloBlo, AloBhi);
6307 Res = DAG.getNode(ISD::ADD, VT, Res, AhiBlo);
6308 return Res;
6309}
6310
6311
Bill Wendling7e04be62008-12-09 22:08:41 +00006312SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) {
6313 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
6314 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendlingd3511522008-12-02 01:06:39 +00006315 // looks for this combo and may remove the "setcc" instruction if the "setcc"
6316 // has only one use.
Bill Wendlingd06b4202008-11-26 22:37:40 +00006317 SDNode *N = Op.getNode();
Bill Wendlingd3511522008-12-02 01:06:39 +00006318 SDValue LHS = N->getOperand(0);
6319 SDValue RHS = N->getOperand(1);
Bill Wendling7e04be62008-12-09 22:08:41 +00006320 unsigned BaseOp = 0;
6321 unsigned Cond = 0;
6322
6323 switch (Op.getOpcode()) {
6324 default: assert(0 && "Unknown ovf instruction!");
6325 case ISD::SADDO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006326 BaseOp = X86ISD::ADD;
Bill Wendling7e04be62008-12-09 22:08:41 +00006327 Cond = X86::COND_O;
6328 break;
6329 case ISD::UADDO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006330 BaseOp = X86ISD::ADD;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006331 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006332 break;
6333 case ISD::SSUBO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006334 BaseOp = X86ISD::SUB;
Bill Wendling7e04be62008-12-09 22:08:41 +00006335 Cond = X86::COND_O;
6336 break;
6337 case ISD::USUBO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006338 BaseOp = X86ISD::SUB;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006339 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006340 break;
6341 case ISD::SMULO:
Bill Wendlingf5399032008-12-12 21:15:41 +00006342 BaseOp = X86ISD::SMUL;
Bill Wendling7e04be62008-12-09 22:08:41 +00006343 Cond = X86::COND_O;
6344 break;
6345 case ISD::UMULO:
Bill Wendlingf5399032008-12-12 21:15:41 +00006346 BaseOp = X86ISD::UMUL;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006347 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006348 break;
6349 }
Bill Wendlingd06b4202008-11-26 22:37:40 +00006350
Bill Wendlingd3511522008-12-02 01:06:39 +00006351 // Also sets EFLAGS.
6352 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Bill Wendling7e04be62008-12-09 22:08:41 +00006353 SDValue Sum = DAG.getNode(BaseOp, VTs, LHS, RHS);
Bill Wendlingd06b4202008-11-26 22:37:40 +00006354
Bill Wendlingd3511522008-12-02 01:06:39 +00006355 SDValue SetCC =
6356 DAG.getNode(X86ISD::SETCC, N->getValueType(1),
Bill Wendling35f1a9d2008-12-10 02:01:32 +00006357 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendlingd06b4202008-11-26 22:37:40 +00006358
Bill Wendlingd3511522008-12-02 01:06:39 +00006359 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
6360 return Sum;
Bill Wendling4c134df2008-11-24 19:21:46 +00006361}
6362
Dan Gohman8181bd12008-07-27 21:46:04 +00006363SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanc70fa752008-06-25 16:07:49 +00006364 MVT T = Op.getValueType();
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00006365 unsigned Reg = 0;
6366 unsigned size = 0;
Duncan Sands92c43912008-06-06 12:08:01 +00006367 switch(T.getSimpleVT()) {
6368 default:
6369 assert(false && "Invalid value type!");
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006370 case MVT::i8: Reg = X86::AL; size = 1; break;
6371 case MVT::i16: Reg = X86::AX; size = 2; break;
6372 case MVT::i32: Reg = X86::EAX; size = 4; break;
Andrew Lenharth81580822008-03-05 01:15:49 +00006373 case MVT::i64:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006374 assert(Subtarget->is64Bit() && "Node not type legal!");
6375 Reg = X86::RAX; size = 8;
Andrew Lenharth81580822008-03-05 01:15:49 +00006376 break;
Bill Wendlingd3511522008-12-02 01:06:39 +00006377 }
Dan Gohman8181bd12008-07-27 21:46:04 +00006378 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), Reg,
Dale Johannesenddb761b2008-09-11 03:12:59 +00006379 Op.getOperand(2), SDValue());
Dan Gohman8181bd12008-07-27 21:46:04 +00006380 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng6617eed2008-09-24 23:26:36 +00006381 Op.getOperand(1),
6382 Op.getOperand(3),
6383 DAG.getTargetConstant(size, MVT::i8),
6384 cpIn.getValue(1) };
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006385 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006386 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG_DAG, Tys, Ops, 5);
6387 SDValue cpOut =
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006388 DAG.getCopyFromReg(Result.getValue(0), Reg, T, Result.getValue(1));
6389 return cpOut;
6390}
6391
Duncan Sands7d9834b2008-12-01 11:39:25 +00006392SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Gabor Greif825aa892008-08-28 23:19:51 +00006393 SelectionDAG &DAG) {
Duncan Sands7d9834b2008-12-01 11:39:25 +00006394 assert(Subtarget->is64Bit() && "Result not type legalized?");
Andrew Lenharth81580822008-03-05 01:15:49 +00006395 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands7d9834b2008-12-01 11:39:25 +00006396 SDValue TheChain = Op.getOperand(0);
6397 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, Tys, &TheChain, 1);
6398 SDValue rax = DAG.getCopyFromReg(rd, X86::RAX, MVT::i64, rd.getValue(1));
6399 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), X86::RDX, MVT::i64,
6400 rax.getValue(2));
6401 SDValue Tmp = DAG.getNode(ISD::SHL, MVT::i64, rdx,
6402 DAG.getConstant(32, MVT::i8));
6403 SDValue Ops[] = {
6404 DAG.getNode(ISD::OR, MVT::i64, rax, Tmp),
6405 rdx.getValue(1)
6406 };
6407 return DAG.getMergeValues(Ops, 2);
Dale Johannesenf160d802008-10-02 18:53:47 +00006408}
6409
Dale Johannesen9011d872008-09-29 22:25:26 +00006410SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
6411 SDNode *Node = Op.getNode();
6412 MVT T = Node->getValueType(0);
Dan Gohman8181bd12008-07-27 21:46:04 +00006413 SDValue negOp = DAG.getNode(ISD::SUB, T,
Dale Johannesen9011d872008-09-29 22:25:26 +00006414 DAG.getConstant(0, T), Node->getOperand(2));
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006415 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD,
6416 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen9011d872008-09-29 22:25:26 +00006417 Node->getOperand(0),
6418 Node->getOperand(1), negOp,
6419 cast<AtomicSDNode>(Node)->getSrcValue(),
6420 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang078a62d2008-05-05 19:05:59 +00006421}
6422
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006423/// LowerOperation - Provide custom lowering hooks for some operations.
6424///
Dan Gohman8181bd12008-07-27 21:46:04 +00006425SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006426 switch (Op.getOpcode()) {
6427 default: assert(0 && "Should not custom lower this!");
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006428 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
6429 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006430 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
6431 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6432 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6433 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
6434 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
6435 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
6436 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
6437 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendlingfef06052008-09-16 21:48:12 +00006438 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006439 case ISD::SHL_PARTS:
6440 case ISD::SRA_PARTS:
6441 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
6442 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesena359b8b2008-10-21 20:50:01 +00006443 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006444 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
6445 case ISD::FABS: return LowerFABS(Op, DAG);
6446 case ISD::FNEG: return LowerFNEG(Op, DAG);
6447 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Cheng621216e2007-09-29 00:00:36 +00006448 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman03605a02008-07-17 16:51:19 +00006449 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Cheng621216e2007-09-29 00:00:36 +00006450 case ISD::SELECT: return LowerSELECT(Op, DAG);
6451 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006452 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
6453 case ISD::CALL: return LowerCALL(Op, DAG);
6454 case ISD::RET: return LowerRET(Op, DAG);
6455 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006456 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman827cb1f2008-05-10 01:26:14 +00006457 case ISD::VAARG: return LowerVAARG(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006458 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
6459 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
6460 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
6461 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
6462 case ISD::FRAME_TO_ARGS_OFFSET:
6463 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
6464 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
6465 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006466 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman819574c2008-01-31 00:41:03 +00006467 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng48679f42007-12-14 02:13:44 +00006468 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
6469 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wang14edb092008-12-18 21:42:19 +00006470 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Bill Wendling7e04be62008-12-09 22:08:41 +00006471 case ISD::SADDO:
6472 case ISD::UADDO:
6473 case ISD::SSUBO:
6474 case ISD::USUBO:
6475 case ISD::SMULO:
6476 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands7d9834b2008-12-01 11:39:25 +00006477 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006478 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006479}
6480
Duncan Sands7d9834b2008-12-01 11:39:25 +00006481void X86TargetLowering::
6482ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
6483 SelectionDAG &DAG, unsigned NewOp) {
6484 MVT T = Node->getValueType(0);
6485 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
6486
6487 SDValue Chain = Node->getOperand(0);
6488 SDValue In1 = Node->getOperand(1);
6489 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
6490 Node->getOperand(2), DAG.getIntPtrConstant(0));
6491 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
6492 Node->getOperand(2), DAG.getIntPtrConstant(1));
6493 // This is a generalized SDNode, not an AtomicSDNode, so it doesn't
6494 // have a MemOperand. Pass the info through as a normal operand.
6495 SDValue LSI = DAG.getMemOperand(cast<MemSDNode>(Node)->getMemOperand());
6496 SDValue Ops[] = { Chain, In1, In2L, In2H, LSI };
6497 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
6498 SDValue Result = DAG.getNode(NewOp, Tys, Ops, 5);
6499 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
6500 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, MVT::i64, OpsF, 2));
6501 Results.push_back(Result.getValue(2));
6502}
6503
Duncan Sandsac496a12008-07-04 11:47:58 +00006504/// ReplaceNodeResults - Replace a node with an illegal result type
6505/// with a new node built out of custom code.
Duncan Sands7d9834b2008-12-01 11:39:25 +00006506void X86TargetLowering::ReplaceNodeResults(SDNode *N,
6507 SmallVectorImpl<SDValue>&Results,
6508 SelectionDAG &DAG) {
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006509 switch (N->getOpcode()) {
Duncan Sands8ec7aa72008-10-20 15:56:33 +00006510 default:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006511 assert(false && "Do not know how to custom type legalize this operation!");
6512 return;
6513 case ISD::FP_TO_SINT: {
6514 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(SDValue(N, 0), DAG);
6515 SDValue FIST = Vals.first, StackSlot = Vals.second;
6516 if (FIST.getNode() != 0) {
6517 MVT VT = N->getValueType(0);
6518 // Return a load from the stack slot.
6519 Results.push_back(DAG.getLoad(VT, FIST, StackSlot, NULL, 0));
6520 }
6521 return;
6522 }
6523 case ISD::READCYCLECOUNTER: {
6524 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6525 SDValue TheChain = N->getOperand(0);
6526 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, Tys, &TheChain, 1);
6527 SDValue eax = DAG.getCopyFromReg(rd, X86::EAX, MVT::i32, rd.getValue(1));
6528 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), X86::EDX, MVT::i32,
6529 eax.getValue(2));
6530 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
6531 SDValue Ops[] = { eax, edx };
6532 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Ops, 2));
6533 Results.push_back(edx.getValue(1));
6534 return;
6535 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006536 case ISD::ATOMIC_CMP_SWAP: {
Duncan Sands7d9834b2008-12-01 11:39:25 +00006537 MVT T = N->getValueType(0);
6538 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
6539 SDValue cpInL, cpInH;
6540 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, N->getOperand(2),
6541 DAG.getConstant(0, MVT::i32));
6542 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, N->getOperand(2),
6543 DAG.getConstant(1, MVT::i32));
6544 cpInL = DAG.getCopyToReg(N->getOperand(0), X86::EAX, cpInL, SDValue());
6545 cpInH = DAG.getCopyToReg(cpInL.getValue(0), X86::EDX, cpInH,
6546 cpInL.getValue(1));
6547 SDValue swapInL, swapInH;
6548 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, N->getOperand(3),
6549 DAG.getConstant(0, MVT::i32));
6550 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, N->getOperand(3),
6551 DAG.getConstant(1, MVT::i32));
6552 swapInL = DAG.getCopyToReg(cpInH.getValue(0), X86::EBX, swapInL,
6553 cpInH.getValue(1));
6554 swapInH = DAG.getCopyToReg(swapInL.getValue(0), X86::ECX, swapInH,
6555 swapInL.getValue(1));
6556 SDValue Ops[] = { swapInH.getValue(0),
6557 N->getOperand(1),
6558 swapInH.getValue(1) };
6559 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6560 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG8_DAG, Tys, Ops, 3);
6561 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), X86::EAX, MVT::i32,
6562 Result.getValue(1));
6563 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), X86::EDX, MVT::i32,
6564 cpOutL.getValue(2));
6565 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
6566 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, MVT::i64, OpsF, 2));
6567 Results.push_back(cpOutH.getValue(1));
6568 return;
6569 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006570 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006571 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
6572 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006573 case ISD::ATOMIC_LOAD_AND:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006574 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
6575 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006576 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006577 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
6578 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006579 case ISD::ATOMIC_LOAD_OR:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006580 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
6581 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006582 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006583 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
6584 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006585 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006586 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
6587 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006588 case ISD::ATOMIC_SWAP:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006589 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
6590 return;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006591 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006592}
6593
6594const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
6595 switch (Opcode) {
6596 default: return NULL;
Evan Cheng48679f42007-12-14 02:13:44 +00006597 case X86ISD::BSF: return "X86ISD::BSF";
6598 case X86ISD::BSR: return "X86ISD::BSR";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006599 case X86ISD::SHLD: return "X86ISD::SHLD";
6600 case X86ISD::SHRD: return "X86ISD::SHRD";
6601 case X86ISD::FAND: return "X86ISD::FAND";
6602 case X86ISD::FOR: return "X86ISD::FOR";
6603 case X86ISD::FXOR: return "X86ISD::FXOR";
6604 case X86ISD::FSRL: return "X86ISD::FSRL";
6605 case X86ISD::FILD: return "X86ISD::FILD";
6606 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
6607 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
6608 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
6609 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
6610 case X86ISD::FLD: return "X86ISD::FLD";
6611 case X86ISD::FST: return "X86ISD::FST";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006612 case X86ISD::CALL: return "X86ISD::CALL";
6613 case X86ISD::TAILCALL: return "X86ISD::TAILCALL";
6614 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohman7fe9b7f2008-12-23 22:45:23 +00006615 case X86ISD::BT: return "X86ISD::BT";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006616 case X86ISD::CMP: return "X86ISD::CMP";
6617 case X86ISD::COMI: return "X86ISD::COMI";
6618 case X86ISD::UCOMI: return "X86ISD::UCOMI";
6619 case X86ISD::SETCC: return "X86ISD::SETCC";
6620 case X86ISD::CMOV: return "X86ISD::CMOV";
6621 case X86ISD::BRCOND: return "X86ISD::BRCOND";
6622 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
6623 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
6624 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006625 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
6626 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Nate Begemand77e59e2008-02-11 04:19:36 +00006627 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006628 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begemand77e59e2008-02-11 04:19:36 +00006629 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
6630 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006631 case X86ISD::PINSRW: return "X86ISD::PINSRW";
6632 case X86ISD::FMAX: return "X86ISD::FMAX";
6633 case X86ISD::FMIN: return "X86ISD::FMIN";
6634 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
6635 case X86ISD::FRCP: return "X86ISD::FRCP";
6636 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
6637 case X86ISD::THREAD_POINTER: return "X86ISD::THREAD_POINTER";
6638 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00006639 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006640 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng40ee6e52008-05-08 00:57:18 +00006641 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
6642 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesenf160d802008-10-02 18:53:47 +00006643 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
6644 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
6645 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
6646 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
6647 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
6648 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chenge9b9c672008-05-09 21:53:03 +00006649 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
6650 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengdea99362008-05-29 08:22:04 +00006651 case X86ISD::VSHL: return "X86ISD::VSHL";
6652 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman03605a02008-07-17 16:51:19 +00006653 case X86ISD::CMPPD: return "X86ISD::CMPPD";
6654 case X86ISD::CMPPS: return "X86ISD::CMPPS";
6655 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
6656 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
6657 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
6658 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
6659 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
6660 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
6661 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
6662 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingae034ed2008-12-12 00:56:36 +00006663 case X86ISD::ADD: return "X86ISD::ADD";
6664 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingf5399032008-12-12 21:15:41 +00006665 case X86ISD::SMUL: return "X86ISD::SMUL";
6666 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006667 }
6668}
6669
6670// isLegalAddressingMode - Return true if the addressing mode represented
6671// by AM is legal for this target, for a load/store of the specified type.
6672bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
6673 const Type *Ty) const {
6674 // X86 supports extremely general addressing modes.
6675
6676 // X86 allows a sign-extended 32-bit immediate field as a displacement.
6677 if (AM.BaseOffs <= -(1LL << 32) || AM.BaseOffs >= (1LL << 32)-1)
6678 return false;
6679
6680 if (AM.BaseGV) {
Evan Cheng6a1f3f12007-08-01 23:46:47 +00006681 // We can only fold this if we don't need an extra load.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006682 if (Subtarget->GVRequiresExtraLoad(AM.BaseGV, getTargetMachine(), false))
6683 return false;
Dale Johannesen64660e92008-12-05 21:47:27 +00006684 // If BaseGV requires a register, we cannot also have a BaseReg.
6685 if (Subtarget->GVRequiresRegister(AM.BaseGV, getTargetMachine(), false) &&
6686 AM.HasBaseReg)
6687 return false;
Evan Cheng6a1f3f12007-08-01 23:46:47 +00006688
6689 // X86-64 only supports addr of globals in small code model.
6690 if (Subtarget->is64Bit()) {
6691 if (getTargetMachine().getCodeModel() != CodeModel::Small)
6692 return false;
6693 // If lower 4G is not available, then we must use rip-relative addressing.
6694 if (AM.BaseOffs || AM.Scale > 1)
6695 return false;
6696 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006697 }
6698
6699 switch (AM.Scale) {
6700 case 0:
6701 case 1:
6702 case 2:
6703 case 4:
6704 case 8:
6705 // These scales always work.
6706 break;
6707 case 3:
6708 case 5:
6709 case 9:
6710 // These scales are formed with basereg+scalereg. Only accept if there is
6711 // no basereg yet.
6712 if (AM.HasBaseReg)
6713 return false;
6714 break;
6715 default: // Other stuff never works.
6716 return false;
6717 }
6718
6719 return true;
6720}
6721
6722
Evan Cheng27a820a2007-10-26 01:56:11 +00006723bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
6724 if (!Ty1->isInteger() || !Ty2->isInteger())
6725 return false;
Evan Cheng7f152602007-10-29 07:57:50 +00006726 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
6727 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Chengca0e80f2008-03-20 02:18:41 +00006728 if (NumBits1 <= NumBits2)
Evan Cheng7f152602007-10-29 07:57:50 +00006729 return false;
6730 return Subtarget->is64Bit() || NumBits1 < 64;
Evan Cheng27a820a2007-10-26 01:56:11 +00006731}
6732
Duncan Sands92c43912008-06-06 12:08:01 +00006733bool X86TargetLowering::isTruncateFree(MVT VT1, MVT VT2) const {
6734 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng9decb332007-10-29 19:58:20 +00006735 return false;
Duncan Sands92c43912008-06-06 12:08:01 +00006736 unsigned NumBits1 = VT1.getSizeInBits();
6737 unsigned NumBits2 = VT2.getSizeInBits();
Evan Chengca0e80f2008-03-20 02:18:41 +00006738 if (NumBits1 <= NumBits2)
Evan Cheng9decb332007-10-29 19:58:20 +00006739 return false;
6740 return Subtarget->is64Bit() || NumBits1 < 64;
6741}
Evan Cheng27a820a2007-10-26 01:56:11 +00006742
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006743/// isShuffleMaskLegal - Targets can use this to indicate that they only
6744/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
6745/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
6746/// are assumed to be legal.
6747bool
Dan Gohman8181bd12008-07-27 21:46:04 +00006748X86TargetLowering::isShuffleMaskLegal(SDValue Mask, MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006749 // Only do shuffles on 128-bit vector types for now.
Duncan Sands92c43912008-06-06 12:08:01 +00006750 if (VT.getSizeInBits() == 64) return false;
Gabor Greif1c80d112008-08-28 21:40:38 +00006751 return (Mask.getNode()->getNumOperands() <= 4 ||
6752 isIdentityMask(Mask.getNode()) ||
6753 isIdentityMask(Mask.getNode(), true) ||
6754 isSplatMask(Mask.getNode()) ||
6755 isPSHUFHW_PSHUFLWMask(Mask.getNode()) ||
6756 X86::isUNPCKLMask(Mask.getNode()) ||
6757 X86::isUNPCKHMask(Mask.getNode()) ||
6758 X86::isUNPCKL_v_undef_Mask(Mask.getNode()) ||
6759 X86::isUNPCKH_v_undef_Mask(Mask.getNode()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006760}
6761
Dan Gohman48d5f062008-04-09 20:09:42 +00006762bool
Dan Gohman8181bd12008-07-27 21:46:04 +00006763X86TargetLowering::isVectorClearMaskLegal(const std::vector<SDValue> &BVOps,
Duncan Sands92c43912008-06-06 12:08:01 +00006764 MVT EVT, SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006765 unsigned NumElts = BVOps.size();
6766 // Only do shuffles on 128-bit vector types for now.
Duncan Sands92c43912008-06-06 12:08:01 +00006767 if (EVT.getSizeInBits() * NumElts == 64) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006768 if (NumElts == 2) return true;
6769 if (NumElts == 4) {
6770 return (isMOVLMask(&BVOps[0], 4) ||
6771 isCommutedMOVL(&BVOps[0], 4, true) ||
6772 isSHUFPMask(&BVOps[0], 4) ||
6773 isCommutedSHUFP(&BVOps[0], 4));
6774 }
6775 return false;
6776}
6777
6778//===----------------------------------------------------------------------===//
6779// X86 Scheduler Hooks
6780//===----------------------------------------------------------------------===//
6781
Mon P Wang078a62d2008-05-05 19:05:59 +00006782// private utility function
6783MachineBasicBlock *
6784X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
6785 MachineBasicBlock *MBB,
6786 unsigned regOpc,
Andrew Lenharthaf02d592008-06-14 05:48:15 +00006787 unsigned immOpc,
Dale Johannesend20e4452008-08-19 18:47:28 +00006788 unsigned LoadOpc,
6789 unsigned CXchgOpc,
6790 unsigned copyOpc,
6791 unsigned notOpc,
6792 unsigned EAXreg,
6793 TargetRegisterClass *RC,
Andrew Lenharthaf02d592008-06-14 05:48:15 +00006794 bool invSrc) {
Mon P Wang078a62d2008-05-05 19:05:59 +00006795 // For the atomic bitwise operator, we generate
6796 // thisMBB:
6797 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00006798 // ld t1 = [bitinstr.addr]
6799 // op t2 = t1, [bitinstr.val]
6800 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00006801 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
6802 // bz newMBB
6803 // fallthrough -->nextMBB
6804 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6805 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00006806 MachineFunction::iterator MBBIter = MBB;
Mon P Wang078a62d2008-05-05 19:05:59 +00006807 ++MBBIter;
6808
6809 /// First build the CFG
6810 MachineFunction *F = MBB->getParent();
6811 MachineBasicBlock *thisMBB = MBB;
Dan Gohman221a4372008-07-07 23:14:23 +00006812 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
6813 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
6814 F->insert(MBBIter, newMBB);
6815 F->insert(MBBIter, nextMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00006816
6817 // Move all successors to thisMBB to nextMBB
6818 nextMBB->transferSuccessors(thisMBB);
6819
6820 // Update thisMBB to fall through to newMBB
6821 thisMBB->addSuccessor(newMBB);
6822
6823 // newMBB jumps to itself and fall through to nextMBB
6824 newMBB->addSuccessor(nextMBB);
6825 newMBB->addSuccessor(newMBB);
6826
6827 // Insert instructions into newMBB based on incoming instruction
6828 assert(bInstr->getNumOperands() < 8 && "unexpected number of operands");
6829 MachineOperand& destOper = bInstr->getOperand(0);
6830 MachineOperand* argOpers[6];
6831 int numArgs = bInstr->getNumOperands() - 1;
6832 for (int i=0; i < numArgs; ++i)
6833 argOpers[i] = &bInstr->getOperand(i+1);
6834
6835 // x86 address has 4 operands: base, index, scale, and displacement
6836 int lastAddrIndx = 3; // [0,3]
6837 int valArgIndx = 4;
6838
Dale Johannesend20e4452008-08-19 18:47:28 +00006839 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
6840 MachineInstrBuilder MIB = BuildMI(newMBB, TII->get(LoadOpc), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00006841 for (int i=0; i <= lastAddrIndx; ++i)
6842 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00006843
Dale Johannesend20e4452008-08-19 18:47:28 +00006844 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00006845 if (invSrc) {
Dale Johannesend20e4452008-08-19 18:47:28 +00006846 MIB = BuildMI(newMBB, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00006847 }
6848 else
6849 tt = t1;
6850
Dale Johannesend20e4452008-08-19 18:47:28 +00006851 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00006852 assert((argOpers[valArgIndx]->isReg() ||
6853 argOpers[valArgIndx]->isImm()) &&
Dan Gohman7f7f3652008-09-13 17:58:21 +00006854 "invalid operand");
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00006855 if (argOpers[valArgIndx]->isReg())
Mon P Wang078a62d2008-05-05 19:05:59 +00006856 MIB = BuildMI(newMBB, TII->get(regOpc), t2);
6857 else
6858 MIB = BuildMI(newMBB, TII->get(immOpc), t2);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00006859 MIB.addReg(tt);
Mon P Wang078a62d2008-05-05 19:05:59 +00006860 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00006861
Dale Johannesend20e4452008-08-19 18:47:28 +00006862 MIB = BuildMI(newMBB, TII->get(copyOpc), EAXreg);
Mon P Wang318b0372008-05-05 22:56:23 +00006863 MIB.addReg(t1);
6864
Dale Johannesend20e4452008-08-19 18:47:28 +00006865 MIB = BuildMI(newMBB, TII->get(CXchgOpc));
Mon P Wang078a62d2008-05-05 19:05:59 +00006866 for (int i=0; i <= lastAddrIndx; ++i)
6867 (*MIB).addOperand(*argOpers[i]);
6868 MIB.addReg(t2);
Mon P Wang50584a62008-07-17 04:54:06 +00006869 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
6870 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
6871
Dale Johannesend20e4452008-08-19 18:47:28 +00006872 MIB = BuildMI(newMBB, TII->get(copyOpc), destOper.getReg());
6873 MIB.addReg(EAXreg);
Mon P Wang078a62d2008-05-05 19:05:59 +00006874
6875 // insert branch
6876 BuildMI(newMBB, TII->get(X86::JNE)).addMBB(newMBB);
6877
Dan Gohman221a4372008-07-07 23:14:23 +00006878 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
Mon P Wang078a62d2008-05-05 19:05:59 +00006879 return nextMBB;
6880}
6881
Dale Johannesen44eb5372008-10-03 19:41:08 +00006882// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang078a62d2008-05-05 19:05:59 +00006883MachineBasicBlock *
Dale Johannesenf160d802008-10-02 18:53:47 +00006884X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
6885 MachineBasicBlock *MBB,
6886 unsigned regOpcL,
6887 unsigned regOpcH,
6888 unsigned immOpcL,
6889 unsigned immOpcH,
6890 bool invSrc) {
6891 // For the atomic bitwise operator, we generate
6892 // thisMBB (instructions are in pairs, except cmpxchg8b)
6893 // ld t1,t2 = [bitinstr.addr]
6894 // newMBB:
6895 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
6896 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen51c58ee2008-10-03 22:25:52 +00006897 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesenf160d802008-10-02 18:53:47 +00006898 // mov ECX, EBX <- t5, t6
6899 // mov EAX, EDX <- t1, t2
6900 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
6901 // mov t3, t4 <- EAX, EDX
6902 // bz newMBB
6903 // result in out1, out2
6904 // fallthrough -->nextMBB
6905
6906 const TargetRegisterClass *RC = X86::GR32RegisterClass;
6907 const unsigned LoadOpc = X86::MOV32rm;
6908 const unsigned copyOpc = X86::MOV32rr;
6909 const unsigned NotOpc = X86::NOT32r;
6910 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6911 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
6912 MachineFunction::iterator MBBIter = MBB;
6913 ++MBBIter;
6914
6915 /// First build the CFG
6916 MachineFunction *F = MBB->getParent();
6917 MachineBasicBlock *thisMBB = MBB;
6918 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
6919 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
6920 F->insert(MBBIter, newMBB);
6921 F->insert(MBBIter, nextMBB);
6922
6923 // Move all successors to thisMBB to nextMBB
6924 nextMBB->transferSuccessors(thisMBB);
6925
6926 // Update thisMBB to fall through to newMBB
6927 thisMBB->addSuccessor(newMBB);
6928
6929 // newMBB jumps to itself and fall through to nextMBB
6930 newMBB->addSuccessor(nextMBB);
6931 newMBB->addSuccessor(newMBB);
6932
6933 // Insert instructions into newMBB based on incoming instruction
6934 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
6935 assert(bInstr->getNumOperands() < 18 && "unexpected number of operands");
6936 MachineOperand& dest1Oper = bInstr->getOperand(0);
6937 MachineOperand& dest2Oper = bInstr->getOperand(1);
6938 MachineOperand* argOpers[6];
6939 for (int i=0; i < 6; ++i)
6940 argOpers[i] = &bInstr->getOperand(i+2);
6941
6942 // x86 address has 4 operands: base, index, scale, and displacement
6943 int lastAddrIndx = 3; // [0,3]
6944
6945 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
6946 MachineInstrBuilder MIB = BuildMI(thisMBB, TII->get(LoadOpc), t1);
6947 for (int i=0; i <= lastAddrIndx; ++i)
6948 (*MIB).addOperand(*argOpers[i]);
6949 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
6950 MIB = BuildMI(thisMBB, TII->get(LoadOpc), t2);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00006951 // add 4 to displacement.
Dale Johannesenf160d802008-10-02 18:53:47 +00006952 for (int i=0; i <= lastAddrIndx-1; ++i)
6953 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00006954 MachineOperand newOp3 = *(argOpers[3]);
6955 if (newOp3.isImm())
6956 newOp3.setImm(newOp3.getImm()+4);
6957 else
6958 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesenf160d802008-10-02 18:53:47 +00006959 (*MIB).addOperand(newOp3);
6960
6961 // t3/4 are defined later, at the bottom of the loop
6962 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
6963 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
6964 BuildMI(newMBB, TII->get(X86::PHI), dest1Oper.getReg())
6965 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
6966 BuildMI(newMBB, TII->get(X86::PHI), dest2Oper.getReg())
6967 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
6968
6969 unsigned tt1 = F->getRegInfo().createVirtualRegister(RC);
6970 unsigned tt2 = F->getRegInfo().createVirtualRegister(RC);
6971 if (invSrc) {
6972 MIB = BuildMI(newMBB, TII->get(NotOpc), tt1).addReg(t1);
6973 MIB = BuildMI(newMBB, TII->get(NotOpc), tt2).addReg(t2);
6974 } else {
6975 tt1 = t1;
6976 tt2 = t2;
6977 }
6978
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00006979 assert((argOpers[4]->isReg() || argOpers[4]->isImm()) &&
Dale Johannesenf160d802008-10-02 18:53:47 +00006980 "invalid operand");
6981 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
6982 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00006983 if (argOpers[4]->isReg())
Dale Johannesenf160d802008-10-02 18:53:47 +00006984 MIB = BuildMI(newMBB, TII->get(regOpcL), t5);
6985 else
6986 MIB = BuildMI(newMBB, TII->get(immOpcL), t5);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00006987 if (regOpcL != X86::MOV32rr)
6988 MIB.addReg(tt1);
Dale Johannesenf160d802008-10-02 18:53:47 +00006989 (*MIB).addOperand(*argOpers[4]);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00006990 assert(argOpers[5]->isReg() == argOpers[4]->isReg());
6991 assert(argOpers[5]->isImm() == argOpers[4]->isImm());
6992 if (argOpers[5]->isReg())
Dale Johannesenf160d802008-10-02 18:53:47 +00006993 MIB = BuildMI(newMBB, TII->get(regOpcH), t6);
6994 else
6995 MIB = BuildMI(newMBB, TII->get(immOpcH), t6);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00006996 if (regOpcH != X86::MOV32rr)
6997 MIB.addReg(tt2);
Dale Johannesenf160d802008-10-02 18:53:47 +00006998 (*MIB).addOperand(*argOpers[5]);
6999
7000 MIB = BuildMI(newMBB, TII->get(copyOpc), X86::EAX);
7001 MIB.addReg(t1);
7002 MIB = BuildMI(newMBB, TII->get(copyOpc), X86::EDX);
7003 MIB.addReg(t2);
7004
7005 MIB = BuildMI(newMBB, TII->get(copyOpc), X86::EBX);
7006 MIB.addReg(t5);
7007 MIB = BuildMI(newMBB, TII->get(copyOpc), X86::ECX);
7008 MIB.addReg(t6);
7009
7010 MIB = BuildMI(newMBB, TII->get(X86::LCMPXCHG8B));
7011 for (int i=0; i <= lastAddrIndx; ++i)
7012 (*MIB).addOperand(*argOpers[i]);
7013
7014 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7015 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7016
7017 MIB = BuildMI(newMBB, TII->get(copyOpc), t3);
7018 MIB.addReg(X86::EAX);
7019 MIB = BuildMI(newMBB, TII->get(copyOpc), t4);
7020 MIB.addReg(X86::EDX);
7021
7022 // insert branch
7023 BuildMI(newMBB, TII->get(X86::JNE)).addMBB(newMBB);
7024
7025 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
7026 return nextMBB;
7027}
7028
7029// private utility function
7030MachineBasicBlock *
Mon P Wang078a62d2008-05-05 19:05:59 +00007031X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
7032 MachineBasicBlock *MBB,
7033 unsigned cmovOpc) {
7034 // For the atomic min/max operator, we generate
7035 // thisMBB:
7036 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00007037 // ld t1 = [min/max.addr]
Mon P Wang078a62d2008-05-05 19:05:59 +00007038 // mov t2 = [min/max.val]
7039 // cmp t1, t2
7040 // cmov[cond] t2 = t1
Mon P Wang318b0372008-05-05 22:56:23 +00007041 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00007042 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7043 // bz newMBB
7044 // fallthrough -->nextMBB
7045 //
7046 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7047 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007048 MachineFunction::iterator MBBIter = MBB;
Mon P Wang078a62d2008-05-05 19:05:59 +00007049 ++MBBIter;
7050
7051 /// First build the CFG
7052 MachineFunction *F = MBB->getParent();
7053 MachineBasicBlock *thisMBB = MBB;
Dan Gohman221a4372008-07-07 23:14:23 +00007054 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7055 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7056 F->insert(MBBIter, newMBB);
7057 F->insert(MBBIter, nextMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007058
7059 // Move all successors to thisMBB to nextMBB
7060 nextMBB->transferSuccessors(thisMBB);
7061
7062 // Update thisMBB to fall through to newMBB
7063 thisMBB->addSuccessor(newMBB);
7064
7065 // newMBB jumps to newMBB and fall through to nextMBB
7066 newMBB->addSuccessor(nextMBB);
7067 newMBB->addSuccessor(newMBB);
7068
7069 // Insert instructions into newMBB based on incoming instruction
7070 assert(mInstr->getNumOperands() < 8 && "unexpected number of operands");
7071 MachineOperand& destOper = mInstr->getOperand(0);
7072 MachineOperand* argOpers[6];
7073 int numArgs = mInstr->getNumOperands() - 1;
7074 for (int i=0; i < numArgs; ++i)
7075 argOpers[i] = &mInstr->getOperand(i+1);
7076
7077 // x86 address has 4 operands: base, index, scale, and displacement
7078 int lastAddrIndx = 3; // [0,3]
7079 int valArgIndx = 4;
7080
Mon P Wang318b0372008-05-05 22:56:23 +00007081 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
7082 MachineInstrBuilder MIB = BuildMI(newMBB, TII->get(X86::MOV32rm), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00007083 for (int i=0; i <= lastAddrIndx; ++i)
7084 (*MIB).addOperand(*argOpers[i]);
Mon P Wang318b0372008-05-05 22:56:23 +00007085
Mon P Wang078a62d2008-05-05 19:05:59 +00007086 // We only support register and immediate values
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007087 assert((argOpers[valArgIndx]->isReg() ||
7088 argOpers[valArgIndx]->isImm()) &&
Dan Gohman7f7f3652008-09-13 17:58:21 +00007089 "invalid operand");
Mon P Wang078a62d2008-05-05 19:05:59 +00007090
7091 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007092 if (argOpers[valArgIndx]->isReg())
Mon P Wang078a62d2008-05-05 19:05:59 +00007093 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), t2);
7094 else
7095 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), t2);
7096 (*MIB).addOperand(*argOpers[valArgIndx]);
7097
Mon P Wang318b0372008-05-05 22:56:23 +00007098 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), X86::EAX);
7099 MIB.addReg(t1);
7100
Mon P Wang078a62d2008-05-05 19:05:59 +00007101 MIB = BuildMI(newMBB, TII->get(X86::CMP32rr));
7102 MIB.addReg(t1);
7103 MIB.addReg(t2);
7104
7105 // Generate movc
7106 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
7107 MIB = BuildMI(newMBB, TII->get(cmovOpc),t3);
7108 MIB.addReg(t2);
7109 MIB.addReg(t1);
7110
7111 // Cmp and exchange if none has modified the memory location
7112 MIB = BuildMI(newMBB, TII->get(X86::LCMPXCHG32));
7113 for (int i=0; i <= lastAddrIndx; ++i)
7114 (*MIB).addOperand(*argOpers[i]);
7115 MIB.addReg(t3);
Mon P Wang50584a62008-07-17 04:54:06 +00007116 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7117 (*MIB).addMemOperand(*F, *mInstr->memoperands_begin());
Mon P Wang078a62d2008-05-05 19:05:59 +00007118
7119 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), destOper.getReg());
7120 MIB.addReg(X86::EAX);
7121
7122 // insert branch
7123 BuildMI(newMBB, TII->get(X86::JNE)).addMBB(newMBB);
7124
Dan Gohman221a4372008-07-07 23:14:23 +00007125 F->DeleteMachineInstr(mInstr); // The pseudo instruction is gone now.
Mon P Wang078a62d2008-05-05 19:05:59 +00007126 return nextMBB;
7127}
7128
7129
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007130MachineBasicBlock *
Evan Chenge637db12008-01-30 18:18:23 +00007131X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
7132 MachineBasicBlock *BB) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007133 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7134 switch (MI->getOpcode()) {
7135 default: assert(false && "Unexpected instr type to insert");
Mon P Wang83edba52008-12-12 01:25:51 +00007136 case X86::CMOV_V1I64:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007137 case X86::CMOV_FR32:
7138 case X86::CMOV_FR64:
7139 case X86::CMOV_V4F32:
7140 case X86::CMOV_V2F64:
Evan Cheng621216e2007-09-29 00:00:36 +00007141 case X86::CMOV_V2I64: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007142 // To "insert" a SELECT_CC instruction, we actually have to insert the
7143 // diamond control-flow pattern. The incoming instruction knows the
7144 // destination vreg to set, the condition code register to branch on, the
7145 // true/false values to select between, and a branch opcode to use.
7146 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007147 MachineFunction::iterator It = BB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007148 ++It;
7149
7150 // thisMBB:
7151 // ...
7152 // TrueVal = ...
7153 // cmpTY ccX, r1, r2
7154 // bCC copy1MBB
7155 // fallthrough --> copy0MBB
7156 MachineBasicBlock *thisMBB = BB;
Dan Gohman221a4372008-07-07 23:14:23 +00007157 MachineFunction *F = BB->getParent();
7158 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7159 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007160 unsigned Opc =
7161 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
7162 BuildMI(BB, TII->get(Opc)).addMBB(sinkMBB);
Dan Gohman221a4372008-07-07 23:14:23 +00007163 F->insert(It, copy0MBB);
7164 F->insert(It, sinkMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007165 // Update machine-CFG edges by transferring all successors of the current
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007166 // block to the new block which will contain the Phi node for the select.
Mon P Wang078a62d2008-05-05 19:05:59 +00007167 sinkMBB->transferSuccessors(BB);
7168
7169 // Add the true and fallthrough blocks as its successors.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007170 BB->addSuccessor(copy0MBB);
7171 BB->addSuccessor(sinkMBB);
7172
7173 // copy0MBB:
7174 // %FalseValue = ...
7175 // # fallthrough to sinkMBB
7176 BB = copy0MBB;
7177
7178 // Update machine-CFG edges
7179 BB->addSuccessor(sinkMBB);
7180
7181 // sinkMBB:
7182 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7183 // ...
7184 BB = sinkMBB;
7185 BuildMI(BB, TII->get(X86::PHI), MI->getOperand(0).getReg())
7186 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7187 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7188
Dan Gohman221a4372008-07-07 23:14:23 +00007189 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007190 return BB;
7191 }
7192
7193 case X86::FP32_TO_INT16_IN_MEM:
7194 case X86::FP32_TO_INT32_IN_MEM:
7195 case X86::FP32_TO_INT64_IN_MEM:
7196 case X86::FP64_TO_INT16_IN_MEM:
7197 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00007198 case X86::FP64_TO_INT64_IN_MEM:
7199 case X86::FP80_TO_INT16_IN_MEM:
7200 case X86::FP80_TO_INT32_IN_MEM:
7201 case X86::FP80_TO_INT64_IN_MEM: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007202 // Change the floating point control register to use "round towards zero"
7203 // mode when truncating to an integer value.
7204 MachineFunction *F = BB->getParent();
7205 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
7206 addFrameReference(BuildMI(BB, TII->get(X86::FNSTCW16m)), CWFrameIdx);
7207
7208 // Load the old value of the high byte of the control word...
7209 unsigned OldCW =
Chris Lattner1b989192007-12-31 04:13:23 +00007210 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007211 addFrameReference(BuildMI(BB, TII->get(X86::MOV16rm), OldCW), CWFrameIdx);
7212
7213 // Set the high part to be round to zero...
7214 addFrameReference(BuildMI(BB, TII->get(X86::MOV16mi)), CWFrameIdx)
7215 .addImm(0xC7F);
7216
7217 // Reload the modified control word now...
7218 addFrameReference(BuildMI(BB, TII->get(X86::FLDCW16m)), CWFrameIdx);
7219
7220 // Restore the memory image of control word to original value
7221 addFrameReference(BuildMI(BB, TII->get(X86::MOV16mr)), CWFrameIdx)
7222 .addReg(OldCW);
7223
7224 // Get the X86 opcode to use.
7225 unsigned Opc;
7226 switch (MI->getOpcode()) {
7227 default: assert(0 && "illegal opcode!");
7228 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
7229 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
7230 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
7231 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
7232 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
7233 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00007234 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
7235 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
7236 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007237 }
7238
7239 X86AddressMode AM;
7240 MachineOperand &Op = MI->getOperand(0);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007241 if (Op.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007242 AM.BaseType = X86AddressMode::RegBase;
7243 AM.Base.Reg = Op.getReg();
7244 } else {
7245 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner6017d482007-12-30 23:10:15 +00007246 AM.Base.FrameIndex = Op.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007247 }
7248 Op = MI->getOperand(1);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007249 if (Op.isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007250 AM.Scale = Op.getImm();
7251 Op = MI->getOperand(2);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007252 if (Op.isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007253 AM.IndexReg = Op.getImm();
7254 Op = MI->getOperand(3);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007255 if (Op.isGlobal()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007256 AM.GV = Op.getGlobal();
7257 } else {
7258 AM.Disp = Op.getImm();
7259 }
7260 addFullAddress(BuildMI(BB, TII->get(Opc)), AM)
7261 .addReg(MI->getOperand(4).getReg());
7262
7263 // Reload the original control word now.
7264 addFrameReference(BuildMI(BB, TII->get(X86::FLDCW16m)), CWFrameIdx);
7265
Dan Gohman221a4372008-07-07 23:14:23 +00007266 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007267 return BB;
7268 }
Mon P Wang078a62d2008-05-05 19:05:59 +00007269 case X86::ATOMAND32:
7270 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007271 X86::AND32ri, X86::MOV32rm,
7272 X86::LCMPXCHG32, X86::MOV32rr,
7273 X86::NOT32r, X86::EAX,
7274 X86::GR32RegisterClass);
Mon P Wang078a62d2008-05-05 19:05:59 +00007275 case X86::ATOMOR32:
7276 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007277 X86::OR32ri, X86::MOV32rm,
7278 X86::LCMPXCHG32, X86::MOV32rr,
7279 X86::NOT32r, X86::EAX,
7280 X86::GR32RegisterClass);
Mon P Wang078a62d2008-05-05 19:05:59 +00007281 case X86::ATOMXOR32:
7282 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007283 X86::XOR32ri, X86::MOV32rm,
7284 X86::LCMPXCHG32, X86::MOV32rr,
7285 X86::NOT32r, X86::EAX,
7286 X86::GR32RegisterClass);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007287 case X86::ATOMNAND32:
7288 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007289 X86::AND32ri, X86::MOV32rm,
7290 X86::LCMPXCHG32, X86::MOV32rr,
7291 X86::NOT32r, X86::EAX,
7292 X86::GR32RegisterClass, true);
Mon P Wang078a62d2008-05-05 19:05:59 +00007293 case X86::ATOMMIN32:
7294 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
7295 case X86::ATOMMAX32:
7296 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
7297 case X86::ATOMUMIN32:
7298 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
7299 case X86::ATOMUMAX32:
7300 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesend20e4452008-08-19 18:47:28 +00007301
7302 case X86::ATOMAND16:
7303 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7304 X86::AND16ri, X86::MOV16rm,
7305 X86::LCMPXCHG16, X86::MOV16rr,
7306 X86::NOT16r, X86::AX,
7307 X86::GR16RegisterClass);
7308 case X86::ATOMOR16:
7309 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
7310 X86::OR16ri, X86::MOV16rm,
7311 X86::LCMPXCHG16, X86::MOV16rr,
7312 X86::NOT16r, X86::AX,
7313 X86::GR16RegisterClass);
7314 case X86::ATOMXOR16:
7315 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
7316 X86::XOR16ri, X86::MOV16rm,
7317 X86::LCMPXCHG16, X86::MOV16rr,
7318 X86::NOT16r, X86::AX,
7319 X86::GR16RegisterClass);
7320 case X86::ATOMNAND16:
7321 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7322 X86::AND16ri, X86::MOV16rm,
7323 X86::LCMPXCHG16, X86::MOV16rr,
7324 X86::NOT16r, X86::AX,
7325 X86::GR16RegisterClass, true);
7326 case X86::ATOMMIN16:
7327 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
7328 case X86::ATOMMAX16:
7329 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
7330 case X86::ATOMUMIN16:
7331 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
7332 case X86::ATOMUMAX16:
7333 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
7334
7335 case X86::ATOMAND8:
7336 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7337 X86::AND8ri, X86::MOV8rm,
7338 X86::LCMPXCHG8, X86::MOV8rr,
7339 X86::NOT8r, X86::AL,
7340 X86::GR8RegisterClass);
7341 case X86::ATOMOR8:
7342 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
7343 X86::OR8ri, X86::MOV8rm,
7344 X86::LCMPXCHG8, X86::MOV8rr,
7345 X86::NOT8r, X86::AL,
7346 X86::GR8RegisterClass);
7347 case X86::ATOMXOR8:
7348 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
7349 X86::XOR8ri, X86::MOV8rm,
7350 X86::LCMPXCHG8, X86::MOV8rr,
7351 X86::NOT8r, X86::AL,
7352 X86::GR8RegisterClass);
7353 case X86::ATOMNAND8:
7354 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7355 X86::AND8ri, X86::MOV8rm,
7356 X86::LCMPXCHG8, X86::MOV8rr,
7357 X86::NOT8r, X86::AL,
7358 X86::GR8RegisterClass, true);
7359 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesenf160d802008-10-02 18:53:47 +00007360 // This group is for 64-bit host.
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007361 case X86::ATOMAND64:
7362 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
7363 X86::AND64ri32, X86::MOV64rm,
7364 X86::LCMPXCHG64, X86::MOV64rr,
7365 X86::NOT64r, X86::RAX,
7366 X86::GR64RegisterClass);
7367 case X86::ATOMOR64:
7368 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
7369 X86::OR64ri32, X86::MOV64rm,
7370 X86::LCMPXCHG64, X86::MOV64rr,
7371 X86::NOT64r, X86::RAX,
7372 X86::GR64RegisterClass);
7373 case X86::ATOMXOR64:
7374 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
7375 X86::XOR64ri32, X86::MOV64rm,
7376 X86::LCMPXCHG64, X86::MOV64rr,
7377 X86::NOT64r, X86::RAX,
7378 X86::GR64RegisterClass);
7379 case X86::ATOMNAND64:
7380 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
7381 X86::AND64ri32, X86::MOV64rm,
7382 X86::LCMPXCHG64, X86::MOV64rr,
7383 X86::NOT64r, X86::RAX,
7384 X86::GR64RegisterClass, true);
7385 case X86::ATOMMIN64:
7386 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
7387 case X86::ATOMMAX64:
7388 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
7389 case X86::ATOMUMIN64:
7390 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
7391 case X86::ATOMUMAX64:
7392 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesenf160d802008-10-02 18:53:47 +00007393
7394 // This group does 64-bit operations on a 32-bit host.
7395 case X86::ATOMAND6432:
7396 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7397 X86::AND32rr, X86::AND32rr,
7398 X86::AND32ri, X86::AND32ri,
7399 false);
7400 case X86::ATOMOR6432:
7401 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7402 X86::OR32rr, X86::OR32rr,
7403 X86::OR32ri, X86::OR32ri,
7404 false);
7405 case X86::ATOMXOR6432:
7406 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7407 X86::XOR32rr, X86::XOR32rr,
7408 X86::XOR32ri, X86::XOR32ri,
7409 false);
7410 case X86::ATOMNAND6432:
7411 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7412 X86::AND32rr, X86::AND32rr,
7413 X86::AND32ri, X86::AND32ri,
7414 true);
Dale Johannesenf160d802008-10-02 18:53:47 +00007415 case X86::ATOMADD6432:
7416 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7417 X86::ADD32rr, X86::ADC32rr,
7418 X86::ADD32ri, X86::ADC32ri,
7419 false);
Dale Johannesenf160d802008-10-02 18:53:47 +00007420 case X86::ATOMSUB6432:
7421 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7422 X86::SUB32rr, X86::SBB32rr,
7423 X86::SUB32ri, X86::SBB32ri,
7424 false);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007425 case X86::ATOMSWAP6432:
7426 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7427 X86::MOV32rr, X86::MOV32rr,
7428 X86::MOV32ri, X86::MOV32ri,
7429 false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007430 }
7431}
7432
7433//===----------------------------------------------------------------------===//
7434// X86 Optimization Hooks
7435//===----------------------------------------------------------------------===//
7436
Dan Gohman8181bd12008-07-27 21:46:04 +00007437void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmand0dfc772008-02-13 22:28:48 +00007438 const APInt &Mask,
Dan Gohman229fa052008-02-13 00:35:47 +00007439 APInt &KnownZero,
7440 APInt &KnownOne,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007441 const SelectionDAG &DAG,
7442 unsigned Depth) const {
7443 unsigned Opc = Op.getOpcode();
7444 assert((Opc >= ISD::BUILTIN_OP_END ||
7445 Opc == ISD::INTRINSIC_WO_CHAIN ||
7446 Opc == ISD::INTRINSIC_W_CHAIN ||
7447 Opc == ISD::INTRINSIC_VOID) &&
7448 "Should use MaskedValueIsZero if you don't know whether Op"
7449 " is a target node!");
7450
Dan Gohman1d79e432008-02-13 23:07:24 +00007451 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007452 switch (Opc) {
7453 default: break;
7454 case X86ISD::SETCC:
Dan Gohman229fa052008-02-13 00:35:47 +00007455 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
7456 Mask.getBitWidth() - 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007457 break;
7458 }
7459}
7460
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007461/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengef7be082008-05-12 19:56:52 +00007462/// node is a GlobalAddress + offset.
7463bool X86TargetLowering::isGAPlusOffset(SDNode *N,
7464 GlobalValue* &GA, int64_t &Offset) const{
7465 if (N->getOpcode() == X86ISD::Wrapper) {
7466 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007467 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman36322c72008-10-18 02:06:02 +00007468 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007469 return true;
7470 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007471 }
Evan Chengef7be082008-05-12 19:56:52 +00007472 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007473}
7474
Evan Chengef7be082008-05-12 19:56:52 +00007475static bool isBaseAlignmentOfN(unsigned N, SDNode *Base,
7476 const TargetLowering &TLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007477 GlobalValue *GV;
Nick Lewycky4bd3fca2008-02-02 08:29:58 +00007478 int64_t Offset = 0;
Evan Chengef7be082008-05-12 19:56:52 +00007479 if (TLI.isGAPlusOffset(Base, GV, Offset))
Evan Cheng40ee6e52008-05-08 00:57:18 +00007480 return (GV->getAlignment() >= N && (Offset % N) == 0);
Chris Lattner3834cf32008-01-26 20:07:42 +00007481 // DAG combine handles the stack object case.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007482 return false;
7483}
7484
Dan Gohman8181bd12008-07-27 21:46:04 +00007485static bool EltsFromConsecutiveLoads(SDNode *N, SDValue PermMask,
Duncan Sands92c43912008-06-06 12:08:01 +00007486 unsigned NumElems, MVT EVT,
Evan Chengef7be082008-05-12 19:56:52 +00007487 SDNode *&Base,
7488 SelectionDAG &DAG, MachineFrameInfo *MFI,
7489 const TargetLowering &TLI) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00007490 Base = NULL;
7491 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007492 SDValue Idx = PermMask.getOperand(i);
Evan Cheng40ee6e52008-05-08 00:57:18 +00007493 if (Idx.getOpcode() == ISD::UNDEF) {
7494 if (!Base)
7495 return false;
7496 continue;
7497 }
7498
Dan Gohman8181bd12008-07-27 21:46:04 +00007499 SDValue Elt = DAG.getShuffleScalarElt(N, i);
Gabor Greif1c80d112008-08-28 21:40:38 +00007500 if (!Elt.getNode() ||
7501 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
Evan Cheng40ee6e52008-05-08 00:57:18 +00007502 return false;
7503 if (!Base) {
Gabor Greif1c80d112008-08-28 21:40:38 +00007504 Base = Elt.getNode();
Evan Cheng92ee6822008-05-10 06:46:49 +00007505 if (Base->getOpcode() == ISD::UNDEF)
7506 return false;
Evan Cheng40ee6e52008-05-08 00:57:18 +00007507 continue;
7508 }
7509 if (Elt.getOpcode() == ISD::UNDEF)
7510 continue;
7511
Gabor Greif1c80d112008-08-28 21:40:38 +00007512 if (!TLI.isConsecutiveLoad(Elt.getNode(), Base,
Duncan Sands92c43912008-06-06 12:08:01 +00007513 EVT.getSizeInBits()/8, i, MFI))
Evan Cheng40ee6e52008-05-08 00:57:18 +00007514 return false;
7515 }
7516 return true;
7517}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007518
7519/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
7520/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
7521/// if the load addresses are consecutive, non-overlapping, and in the right
7522/// order.
Dan Gohman8181bd12008-07-27 21:46:04 +00007523static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Evan Chengef7be082008-05-12 19:56:52 +00007524 const TargetLowering &TLI) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00007525 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Duncan Sands92c43912008-06-06 12:08:01 +00007526 MVT VT = N->getValueType(0);
7527 MVT EVT = VT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00007528 SDValue PermMask = N->getOperand(2);
Evan Chengbad18452008-05-05 22:12:23 +00007529 unsigned NumElems = PermMask.getNumOperands();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007530 SDNode *Base = NULL;
Evan Chengef7be082008-05-12 19:56:52 +00007531 if (!EltsFromConsecutiveLoads(N, PermMask, NumElems, EVT, Base,
7532 DAG, MFI, TLI))
Dan Gohman8181bd12008-07-27 21:46:04 +00007533 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007534
Dan Gohman11821702007-07-27 17:16:43 +00007535 LoadSDNode *LD = cast<LoadSDNode>(Base);
Gabor Greif1c80d112008-08-28 21:40:38 +00007536 if (isBaseAlignmentOfN(16, Base->getOperand(1).getNode(), TLI))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007537 return DAG.getLoad(VT, LD->getChain(), LD->getBasePtr(), LD->getSrcValue(),
Dan Gohman11821702007-07-27 17:16:43 +00007538 LD->getSrcValueOffset(), LD->isVolatile());
Evan Chengbad18452008-05-05 22:12:23 +00007539 return DAG.getLoad(VT, LD->getChain(), LD->getBasePtr(), LD->getSrcValue(),
7540 LD->getSrcValueOffset(), LD->isVolatile(),
7541 LD->getAlignment());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007542}
7543
Evan Chengb6290462008-05-12 23:04:07 +00007544/// PerformBuildVectorCombine - build_vector 0,(load i64 / f64) -> movq / movsd.
Dan Gohman8181bd12008-07-27 21:46:04 +00007545static SDValue PerformBuildVectorCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng6617eed2008-09-24 23:26:36 +00007546 const X86Subtarget *Subtarget,
7547 const TargetLowering &TLI) {
Evan Chengdea99362008-05-29 08:22:04 +00007548 unsigned NumOps = N->getNumOperands();
7549
Evan Chenge9b9c672008-05-09 21:53:03 +00007550 // Ignore single operand BUILD_VECTOR.
Evan Chengdea99362008-05-29 08:22:04 +00007551 if (NumOps == 1)
Dan Gohman8181bd12008-07-27 21:46:04 +00007552 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00007553
Duncan Sands92c43912008-06-06 12:08:01 +00007554 MVT VT = N->getValueType(0);
7555 MVT EVT = VT.getVectorElementType();
Evan Chenge9b9c672008-05-09 21:53:03 +00007556 if ((EVT != MVT::i64 && EVT != MVT::f64) || Subtarget->is64Bit())
7557 // We are looking for load i64 and zero extend. We want to transform
7558 // it before legalizer has a chance to expand it. Also look for i64
7559 // BUILD_PAIR bit casted to f64.
Dan Gohman8181bd12008-07-27 21:46:04 +00007560 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00007561 // This must be an insertion into a zero vector.
Dan Gohman8181bd12008-07-27 21:46:04 +00007562 SDValue HighElt = N->getOperand(1);
Evan Cheng5b0c30e2008-05-10 00:58:41 +00007563 if (!isZeroNode(HighElt))
Dan Gohman8181bd12008-07-27 21:46:04 +00007564 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00007565
7566 // Value must be a load.
Gabor Greif1c80d112008-08-28 21:40:38 +00007567 SDNode *Base = N->getOperand(0).getNode();
Evan Chenge9b9c672008-05-09 21:53:03 +00007568 if (!isa<LoadSDNode>(Base)) {
Evan Chengb6290462008-05-12 23:04:07 +00007569 if (Base->getOpcode() != ISD::BIT_CONVERT)
Dan Gohman8181bd12008-07-27 21:46:04 +00007570 return SDValue();
Gabor Greif1c80d112008-08-28 21:40:38 +00007571 Base = Base->getOperand(0).getNode();
Evan Chengb6290462008-05-12 23:04:07 +00007572 if (!isa<LoadSDNode>(Base))
Dan Gohman8181bd12008-07-27 21:46:04 +00007573 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00007574 }
Evan Chenge9b9c672008-05-09 21:53:03 +00007575
7576 // Transform it into VZEXT_LOAD addr.
Evan Chengb6290462008-05-12 23:04:07 +00007577 LoadSDNode *LD = cast<LoadSDNode>(Base);
Nate Begeman211c4742008-05-28 00:24:25 +00007578
7579 // Load must not be an extload.
7580 if (LD->getExtensionType() != ISD::NON_EXTLOAD)
Dan Gohman8181bd12008-07-27 21:46:04 +00007581 return SDValue();
Nate Begeman211c4742008-05-28 00:24:25 +00007582
Evan Cheng6617eed2008-09-24 23:26:36 +00007583 SDVTList Tys = DAG.getVTList(VT, MVT::Other);
7584 SDValue Ops[] = { LD->getChain(), LD->getBasePtr() };
7585 SDValue ResNode = DAG.getNode(X86ISD::VZEXT_LOAD, Tys, Ops, 2);
7586 DAG.ReplaceAllUsesOfValueWith(SDValue(Base, 1), ResNode.getValue(1));
7587 return ResNode;
Evan Chenge9b9c672008-05-09 21:53:03 +00007588}
7589
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007590/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00007591static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007592 const X86Subtarget *Subtarget) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007593 SDValue Cond = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007594
7595 // If we have SSE[12] support, try to form min/max nodes.
7596 if (Subtarget->hasSSE2() &&
7597 (N->getValueType(0) == MVT::f32 || N->getValueType(0) == MVT::f64)) {
7598 if (Cond.getOpcode() == ISD::SETCC) {
7599 // Get the LHS/RHS of the select.
Dan Gohman8181bd12008-07-27 21:46:04 +00007600 SDValue LHS = N->getOperand(1);
7601 SDValue RHS = N->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007602 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
7603
7604 unsigned Opcode = 0;
7605 if (LHS == Cond.getOperand(0) && RHS == Cond.getOperand(1)) {
7606 switch (CC) {
7607 default: break;
7608 case ISD::SETOLE: // (X <= Y) ? X : Y -> min
7609 case ISD::SETULE:
7610 case ISD::SETLE:
7611 if (!UnsafeFPMath) break;
7612 // FALL THROUGH.
7613 case ISD::SETOLT: // (X olt/lt Y) ? X : Y -> min
7614 case ISD::SETLT:
7615 Opcode = X86ISD::FMIN;
7616 break;
7617
7618 case ISD::SETOGT: // (X > Y) ? X : Y -> max
7619 case ISD::SETUGT:
7620 case ISD::SETGT:
7621 if (!UnsafeFPMath) break;
7622 // FALL THROUGH.
7623 case ISD::SETUGE: // (X uge/ge Y) ? X : Y -> max
7624 case ISD::SETGE:
7625 Opcode = X86ISD::FMAX;
7626 break;
7627 }
7628 } else if (LHS == Cond.getOperand(1) && RHS == Cond.getOperand(0)) {
7629 switch (CC) {
7630 default: break;
7631 case ISD::SETOGT: // (X > Y) ? Y : X -> min
7632 case ISD::SETUGT:
7633 case ISD::SETGT:
7634 if (!UnsafeFPMath) break;
7635 // FALL THROUGH.
7636 case ISD::SETUGE: // (X uge/ge Y) ? Y : X -> min
7637 case ISD::SETGE:
7638 Opcode = X86ISD::FMIN;
7639 break;
7640
7641 case ISD::SETOLE: // (X <= Y) ? Y : X -> max
7642 case ISD::SETULE:
7643 case ISD::SETLE:
7644 if (!UnsafeFPMath) break;
7645 // FALL THROUGH.
7646 case ISD::SETOLT: // (X olt/lt Y) ? Y : X -> max
7647 case ISD::SETLT:
7648 Opcode = X86ISD::FMAX;
7649 break;
7650 }
7651 }
7652
7653 if (Opcode)
7654 return DAG.getNode(Opcode, N->getValueType(0), LHS, RHS);
7655 }
7656
7657 }
7658
Dan Gohman8181bd12008-07-27 21:46:04 +00007659 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007660}
7661
Chris Lattnerce84ae42008-02-22 02:09:43 +00007662/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00007663static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Chris Lattnerce84ae42008-02-22 02:09:43 +00007664 const X86Subtarget *Subtarget) {
7665 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
7666 // the FP state in cases where an emms may be missing.
Dale Johannesend112b802008-02-25 19:20:14 +00007667 // A preferable solution to the general problem is to figure out the right
7668 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng40ee6e52008-05-08 00:57:18 +00007669 StoreSDNode *St = cast<StoreSDNode>(N);
Duncan Sands92c43912008-06-06 12:08:01 +00007670 if (St->getValue().getValueType().isVector() &&
7671 St->getValue().getValueType().getSizeInBits() == 64 &&
Dale Johannesend112b802008-02-25 19:20:14 +00007672 isa<LoadSDNode>(St->getValue()) &&
7673 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
7674 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greif1c80d112008-08-28 21:40:38 +00007675 SDNode* LdVal = St->getValue().getNode();
Dale Johannesend112b802008-02-25 19:20:14 +00007676 LoadSDNode *Ld = 0;
7677 int TokenFactorIndex = -1;
Dan Gohman8181bd12008-07-27 21:46:04 +00007678 SmallVector<SDValue, 8> Ops;
Gabor Greif1c80d112008-08-28 21:40:38 +00007679 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesend112b802008-02-25 19:20:14 +00007680 // Must be a store of a load. We currently handle two cases: the load
7681 // is a direct child, and it's under an intervening TokenFactor. It is
7682 // possible to dig deeper under nested TokenFactors.
Dale Johannesen49151bc2008-02-25 22:29:22 +00007683 if (ChainVal == LdVal)
Dale Johannesend112b802008-02-25 19:20:14 +00007684 Ld = cast<LoadSDNode>(St->getChain());
7685 else if (St->getValue().hasOneUse() &&
7686 ChainVal->getOpcode() == ISD::TokenFactor) {
7687 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greif1c80d112008-08-28 21:40:38 +00007688 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesend112b802008-02-25 19:20:14 +00007689 TokenFactorIndex = i;
7690 Ld = cast<LoadSDNode>(St->getValue());
7691 } else
7692 Ops.push_back(ChainVal->getOperand(i));
7693 }
7694 }
7695 if (Ld) {
7696 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
7697 if (Subtarget->is64Bit()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007698 SDValue NewLd = DAG.getLoad(MVT::i64, Ld->getChain(),
Dale Johannesend112b802008-02-25 19:20:14 +00007699 Ld->getBasePtr(), Ld->getSrcValue(),
7700 Ld->getSrcValueOffset(), Ld->isVolatile(),
7701 Ld->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +00007702 SDValue NewChain = NewLd.getValue(1);
Dale Johannesend112b802008-02-25 19:20:14 +00007703 if (TokenFactorIndex != -1) {
Dan Gohman72032662008-03-28 23:45:16 +00007704 Ops.push_back(NewChain);
Dale Johannesend112b802008-02-25 19:20:14 +00007705 NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Ops[0],
7706 Ops.size());
7707 }
7708 return DAG.getStore(NewChain, NewLd, St->getBasePtr(),
7709 St->getSrcValue(), St->getSrcValueOffset(),
7710 St->isVolatile(), St->getAlignment());
7711 }
7712
7713 // Otherwise, lower to two 32-bit copies.
Dan Gohman8181bd12008-07-27 21:46:04 +00007714 SDValue LoAddr = Ld->getBasePtr();
7715 SDValue HiAddr = DAG.getNode(ISD::ADD, MVT::i32, LoAddr,
Duncan Sands92c43912008-06-06 12:08:01 +00007716 DAG.getConstant(4, MVT::i32));
Dale Johannesend112b802008-02-25 19:20:14 +00007717
Dan Gohman8181bd12008-07-27 21:46:04 +00007718 SDValue LoLd = DAG.getLoad(MVT::i32, Ld->getChain(), LoAddr,
Dale Johannesend112b802008-02-25 19:20:14 +00007719 Ld->getSrcValue(), Ld->getSrcValueOffset(),
7720 Ld->isVolatile(), Ld->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +00007721 SDValue HiLd = DAG.getLoad(MVT::i32, Ld->getChain(), HiAddr,
Dale Johannesend112b802008-02-25 19:20:14 +00007722 Ld->getSrcValue(), Ld->getSrcValueOffset()+4,
7723 Ld->isVolatile(),
7724 MinAlign(Ld->getAlignment(), 4));
7725
Dan Gohman8181bd12008-07-27 21:46:04 +00007726 SDValue NewChain = LoLd.getValue(1);
Dale Johannesend112b802008-02-25 19:20:14 +00007727 if (TokenFactorIndex != -1) {
7728 Ops.push_back(LoLd);
7729 Ops.push_back(HiLd);
7730 NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Ops[0],
7731 Ops.size());
7732 }
7733
7734 LoAddr = St->getBasePtr();
7735 HiAddr = DAG.getNode(ISD::ADD, MVT::i32, LoAddr,
Duncan Sands92c43912008-06-06 12:08:01 +00007736 DAG.getConstant(4, MVT::i32));
Dale Johannesend112b802008-02-25 19:20:14 +00007737
Dan Gohman8181bd12008-07-27 21:46:04 +00007738 SDValue LoSt = DAG.getStore(NewChain, LoLd, LoAddr,
Chris Lattnerce84ae42008-02-22 02:09:43 +00007739 St->getSrcValue(), St->getSrcValueOffset(),
7740 St->isVolatile(), St->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +00007741 SDValue HiSt = DAG.getStore(NewChain, HiLd, HiAddr,
Gabor Greif825aa892008-08-28 23:19:51 +00007742 St->getSrcValue(),
7743 St->getSrcValueOffset() + 4,
Dale Johannesend112b802008-02-25 19:20:14 +00007744 St->isVolatile(),
7745 MinAlign(St->getAlignment(), 4));
7746 return DAG.getNode(ISD::TokenFactor, MVT::Other, LoSt, HiSt);
Chris Lattnerce84ae42008-02-22 02:09:43 +00007747 }
Chris Lattnerce84ae42008-02-22 02:09:43 +00007748 }
Dan Gohman8181bd12008-07-27 21:46:04 +00007749 return SDValue();
Chris Lattnerce84ae42008-02-22 02:09:43 +00007750}
7751
Chris Lattner470d5dc2008-01-25 06:14:17 +00007752/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
7753/// X86ISD::FXOR nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00007754static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner470d5dc2008-01-25 06:14:17 +00007755 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
7756 // F[X]OR(0.0, x) -> x
7757 // F[X]OR(x, 0.0) -> x
Chris Lattnerf82998f2008-01-25 05:46:26 +00007758 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
7759 if (C->getValueAPF().isPosZero())
7760 return N->getOperand(1);
7761 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
7762 if (C->getValueAPF().isPosZero())
7763 return N->getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +00007764 return SDValue();
Chris Lattnerf82998f2008-01-25 05:46:26 +00007765}
7766
7767/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00007768static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattnerf82998f2008-01-25 05:46:26 +00007769 // FAND(0.0, x) -> 0.0
7770 // FAND(x, 0.0) -> 0.0
7771 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
7772 if (C->getValueAPF().isPosZero())
7773 return N->getOperand(0);
7774 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
7775 if (C->getValueAPF().isPosZero())
7776 return N->getOperand(1);
Dan Gohman8181bd12008-07-27 21:46:04 +00007777 return SDValue();
Chris Lattnerf82998f2008-01-25 05:46:26 +00007778}
7779
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007780
Dan Gohman8181bd12008-07-27 21:46:04 +00007781SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng62370f32008-11-05 06:03:38 +00007782 DAGCombinerInfo &DCI) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007783 SelectionDAG &DAG = DCI.DAG;
7784 switch (N->getOpcode()) {
7785 default: break;
Evan Chengef7be082008-05-12 19:56:52 +00007786 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
7787 case ISD::BUILD_VECTOR:
7788 return PerformBuildVectorCombine(N, DAG, Subtarget, *this);
Chris Lattnerf82998f2008-01-25 05:46:26 +00007789 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Evan Cheng40ee6e52008-05-08 00:57:18 +00007790 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner470d5dc2008-01-25 06:14:17 +00007791 case X86ISD::FXOR:
Chris Lattnerf82998f2008-01-25 05:46:26 +00007792 case X86ISD::FOR: return PerformFORCombine(N, DAG);
7793 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007794 }
7795
Dan Gohman8181bd12008-07-27 21:46:04 +00007796 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007797}
7798
7799//===----------------------------------------------------------------------===//
7800// X86 Inline Assembly Support
7801//===----------------------------------------------------------------------===//
7802
7803/// getConstraintType - Given a constraint letter, return the type of
7804/// constraint it is for this target.
7805X86TargetLowering::ConstraintType
7806X86TargetLowering::getConstraintType(const std::string &Constraint) const {
7807 if (Constraint.size() == 1) {
7808 switch (Constraint[0]) {
7809 case 'A':
Dale Johannesen73920c02008-11-13 21:52:36 +00007810 return C_Register;
Chris Lattner267805f2008-03-11 19:06:29 +00007811 case 'f':
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007812 case 'r':
7813 case 'R':
7814 case 'l':
7815 case 'q':
7816 case 'Q':
7817 case 'x':
Dale Johannesen9ab553f2008-04-01 00:57:48 +00007818 case 'y':
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007819 case 'Y':
7820 return C_RegisterClass;
7821 default:
7822 break;
7823 }
7824 }
7825 return TargetLowering::getConstraintType(Constraint);
7826}
7827
Dale Johannesene99fc902008-01-29 02:21:21 +00007828/// LowerXConstraint - try to replace an X constraint, which matches anything,
7829/// with another that has more specific requirements based on the type of the
7830/// corresponding operand.
Chris Lattnereca405c2008-04-26 23:02:14 +00007831const char *X86TargetLowering::
Duncan Sands92c43912008-06-06 12:08:01 +00007832LowerXConstraint(MVT ConstraintVT) const {
Chris Lattnereca405c2008-04-26 23:02:14 +00007833 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
7834 // 'f' like normal targets.
Duncan Sands92c43912008-06-06 12:08:01 +00007835 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesene99fc902008-01-29 02:21:21 +00007836 if (Subtarget->hasSSE2())
Chris Lattnereca405c2008-04-26 23:02:14 +00007837 return "Y";
7838 if (Subtarget->hasSSE1())
7839 return "x";
7840 }
7841
7842 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesene99fc902008-01-29 02:21:21 +00007843}
7844
Chris Lattnera531abc2007-08-25 00:47:38 +00007845/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
7846/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman8181bd12008-07-27 21:46:04 +00007847void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattnera531abc2007-08-25 00:47:38 +00007848 char Constraint,
Evan Cheng7f250d62008-09-24 00:05:32 +00007849 bool hasMemory,
Dan Gohman8181bd12008-07-27 21:46:04 +00007850 std::vector<SDValue>&Ops,
Chris Lattnereca405c2008-04-26 23:02:14 +00007851 SelectionDAG &DAG) const {
Dan Gohman8181bd12008-07-27 21:46:04 +00007852 SDValue Result(0, 0);
Chris Lattnera531abc2007-08-25 00:47:38 +00007853
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007854 switch (Constraint) {
7855 default: break;
7856 case 'I':
7857 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007858 if (C->getZExtValue() <= 31) {
7859 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattnera531abc2007-08-25 00:47:38 +00007860 break;
7861 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007862 }
Chris Lattnera531abc2007-08-25 00:47:38 +00007863 return;
Evan Cheng4fb2c0f2008-09-22 23:57:37 +00007864 case 'J':
7865 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
7866 if (C->getZExtValue() <= 63) {
7867 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
7868 break;
7869 }
7870 }
7871 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007872 case 'N':
7873 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007874 if (C->getZExtValue() <= 255) {
7875 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattnera531abc2007-08-25 00:47:38 +00007876 break;
7877 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007878 }
Chris Lattnera531abc2007-08-25 00:47:38 +00007879 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007880 case 'i': {
7881 // Literal immediates are always ok.
Chris Lattnera531abc2007-08-25 00:47:38 +00007882 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007883 Result = DAG.getTargetConstant(CST->getZExtValue(), Op.getValueType());
Chris Lattnera531abc2007-08-25 00:47:38 +00007884 break;
7885 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007886
7887 // If we are in non-pic codegen mode, we allow the address of a global (with
7888 // an optional displacement) to be used with 'i'.
7889 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
7890 int64_t Offset = 0;
7891
7892 // Match either (GA) or (GA+C)
7893 if (GA) {
7894 Offset = GA->getOffset();
7895 } else if (Op.getOpcode() == ISD::ADD) {
7896 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7897 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
7898 if (C && GA) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007899 Offset = GA->getOffset()+C->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007900 } else {
7901 C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7902 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
7903 if (C && GA)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007904 Offset = GA->getOffset()+C->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007905 else
7906 C = 0, GA = 0;
7907 }
7908 }
7909
7910 if (GA) {
Evan Cheng7f250d62008-09-24 00:05:32 +00007911 if (hasMemory)
Dan Gohman36322c72008-10-18 02:06:02 +00007912 Op = LowerGlobalAddress(GA->getGlobal(), Offset, DAG);
Evan Cheng7f250d62008-09-24 00:05:32 +00007913 else
7914 Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
7915 Offset);
Chris Lattnera531abc2007-08-25 00:47:38 +00007916 Result = Op;
7917 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007918 }
7919
7920 // Otherwise, not valid for this mode.
Chris Lattnera531abc2007-08-25 00:47:38 +00007921 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007922 }
7923 }
Chris Lattnera531abc2007-08-25 00:47:38 +00007924
Gabor Greif1c80d112008-08-28 21:40:38 +00007925 if (Result.getNode()) {
Chris Lattnera531abc2007-08-25 00:47:38 +00007926 Ops.push_back(Result);
7927 return;
7928 }
Evan Cheng7f250d62008-09-24 00:05:32 +00007929 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, hasMemory,
7930 Ops, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007931}
7932
7933std::vector<unsigned> X86TargetLowering::
7934getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +00007935 MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007936 if (Constraint.size() == 1) {
7937 // FIXME: not handling fp-stack yet!
7938 switch (Constraint[0]) { // GCC X86 Constraint Letters
7939 default: break; // Unknown constraint letter
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007940 case 'q': // Q_REGS (GENERAL_REGS in 64-bit mode)
7941 case 'Q': // Q_REGS
7942 if (VT == MVT::i32)
7943 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
7944 else if (VT == MVT::i16)
7945 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
7946 else if (VT == MVT::i8)
Evan Chengf85c10f2007-08-13 23:27:11 +00007947 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Chris Lattner35032592007-11-04 06:51:12 +00007948 else if (VT == MVT::i64)
7949 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
7950 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007951 }
7952 }
7953
7954 return std::vector<unsigned>();
7955}
7956
7957std::pair<unsigned, const TargetRegisterClass*>
7958X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +00007959 MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007960 // First, see if this is a constraint that directly corresponds to an LLVM
7961 // register class.
7962 if (Constraint.size() == 1) {
7963 // GCC Constraint Letters
7964 switch (Constraint[0]) {
7965 default: break;
7966 case 'r': // GENERAL_REGS
7967 case 'R': // LEGACY_REGS
7968 case 'l': // INDEX_REGS
Chris Lattnerbbfea052008-10-17 18:15:05 +00007969 if (VT == MVT::i8)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007970 return std::make_pair(0U, X86::GR8RegisterClass);
Chris Lattnerbbfea052008-10-17 18:15:05 +00007971 if (VT == MVT::i16)
7972 return std::make_pair(0U, X86::GR16RegisterClass);
7973 if (VT == MVT::i32 || !Subtarget->is64Bit())
7974 return std::make_pair(0U, X86::GR32RegisterClass);
7975 return std::make_pair(0U, X86::GR64RegisterClass);
Chris Lattner267805f2008-03-11 19:06:29 +00007976 case 'f': // FP Stack registers.
7977 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
7978 // value to the correct fpstack register class.
7979 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
7980 return std::make_pair(0U, X86::RFP32RegisterClass);
7981 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
7982 return std::make_pair(0U, X86::RFP64RegisterClass);
7983 return std::make_pair(0U, X86::RFP80RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007984 case 'y': // MMX_REGS if MMX allowed.
7985 if (!Subtarget->hasMMX()) break;
7986 return std::make_pair(0U, X86::VR64RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007987 case 'Y': // SSE_REGS if SSE2 allowed
7988 if (!Subtarget->hasSSE2()) break;
7989 // FALL THROUGH.
7990 case 'x': // SSE_REGS if SSE1 allowed
7991 if (!Subtarget->hasSSE1()) break;
Duncan Sands92c43912008-06-06 12:08:01 +00007992
7993 switch (VT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007994 default: break;
7995 // Scalar SSE types.
7996 case MVT::f32:
7997 case MVT::i32:
7998 return std::make_pair(0U, X86::FR32RegisterClass);
7999 case MVT::f64:
8000 case MVT::i64:
8001 return std::make_pair(0U, X86::FR64RegisterClass);
8002 // Vector types.
8003 case MVT::v16i8:
8004 case MVT::v8i16:
8005 case MVT::v4i32:
8006 case MVT::v2i64:
8007 case MVT::v4f32:
8008 case MVT::v2f64:
8009 return std::make_pair(0U, X86::VR128RegisterClass);
8010 }
8011 break;
8012 }
8013 }
8014
8015 // Use the default implementation in TargetLowering to convert the register
8016 // constraint into a member of a register class.
8017 std::pair<unsigned, const TargetRegisterClass*> Res;
8018 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
8019
8020 // Not found as a standard register?
8021 if (Res.second == 0) {
8022 // GCC calls "st(0)" just plain "st".
8023 if (StringsEqualNoCase("{st}", Constraint)) {
8024 Res.first = X86::ST0;
Chris Lattner3cfe51b2007-09-24 05:27:37 +00008025 Res.second = X86::RFP80RegisterClass;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008026 }
Dale Johannesen73920c02008-11-13 21:52:36 +00008027 // 'A' means EAX + EDX.
8028 if (Constraint == "A") {
8029 Res.first = X86::EAX;
8030 Res.second = X86::GRADRegisterClass;
8031 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008032 return Res;
8033 }
8034
8035 // Otherwise, check to see if this is a register class of the wrong value
8036 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
8037 // turn into {ax},{dx}.
8038 if (Res.second->hasType(VT))
8039 return Res; // Correct type already, nothing to do.
8040
8041 // All of the single-register GCC register classes map their values onto
8042 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
8043 // really want an 8-bit or 32-bit register, map to the appropriate register
8044 // class and return the appropriate register.
Chris Lattnere9d7f792008-08-26 06:19:02 +00008045 if (Res.second == X86::GR16RegisterClass) {
8046 if (VT == MVT::i8) {
8047 unsigned DestReg = 0;
8048 switch (Res.first) {
8049 default: break;
8050 case X86::AX: DestReg = X86::AL; break;
8051 case X86::DX: DestReg = X86::DL; break;
8052 case X86::CX: DestReg = X86::CL; break;
8053 case X86::BX: DestReg = X86::BL; break;
8054 }
8055 if (DestReg) {
8056 Res.first = DestReg;
8057 Res.second = Res.second = X86::GR8RegisterClass;
8058 }
8059 } else if (VT == MVT::i32) {
8060 unsigned DestReg = 0;
8061 switch (Res.first) {
8062 default: break;
8063 case X86::AX: DestReg = X86::EAX; break;
8064 case X86::DX: DestReg = X86::EDX; break;
8065 case X86::CX: DestReg = X86::ECX; break;
8066 case X86::BX: DestReg = X86::EBX; break;
8067 case X86::SI: DestReg = X86::ESI; break;
8068 case X86::DI: DestReg = X86::EDI; break;
8069 case X86::BP: DestReg = X86::EBP; break;
8070 case X86::SP: DestReg = X86::ESP; break;
8071 }
8072 if (DestReg) {
8073 Res.first = DestReg;
8074 Res.second = Res.second = X86::GR32RegisterClass;
8075 }
8076 } else if (VT == MVT::i64) {
8077 unsigned DestReg = 0;
8078 switch (Res.first) {
8079 default: break;
8080 case X86::AX: DestReg = X86::RAX; break;
8081 case X86::DX: DestReg = X86::RDX; break;
8082 case X86::CX: DestReg = X86::RCX; break;
8083 case X86::BX: DestReg = X86::RBX; break;
8084 case X86::SI: DestReg = X86::RSI; break;
8085 case X86::DI: DestReg = X86::RDI; break;
8086 case X86::BP: DestReg = X86::RBP; break;
8087 case X86::SP: DestReg = X86::RSP; break;
8088 }
8089 if (DestReg) {
8090 Res.first = DestReg;
8091 Res.second = Res.second = X86::GR64RegisterClass;
8092 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008093 }
Chris Lattnere9d7f792008-08-26 06:19:02 +00008094 } else if (Res.second == X86::FR32RegisterClass ||
8095 Res.second == X86::FR64RegisterClass ||
8096 Res.second == X86::VR128RegisterClass) {
8097 // Handle references to XMM physical registers that got mapped into the
8098 // wrong class. This can happen with constraints like {xmm0} where the
8099 // target independent register mapper will just pick the first match it can
8100 // find, ignoring the required type.
8101 if (VT == MVT::f32)
8102 Res.second = X86::FR32RegisterClass;
8103 else if (VT == MVT::f64)
8104 Res.second = X86::FR64RegisterClass;
8105 else if (X86::VR128RegisterClass->hasType(VT))
8106 Res.second = X86::VR128RegisterClass;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008107 }
8108
8109 return Res;
8110}
Mon P Wang1448aad2008-10-30 08:01:45 +00008111
8112//===----------------------------------------------------------------------===//
8113// X86 Widen vector type
8114//===----------------------------------------------------------------------===//
8115
8116/// getWidenVectorType: given a vector type, returns the type to widen
8117/// to (e.g., v7i8 to v8i8). If the vector type is legal, it returns itself.
8118/// If there is no vector type that we want to widen to, returns MVT::Other
Mon P Wanga5a239f2008-11-06 05:31:54 +00008119/// When and where to widen is target dependent based on the cost of
Mon P Wang1448aad2008-10-30 08:01:45 +00008120/// scalarizing vs using the wider vector type.
8121
Dan Gohman0fe66c92009-01-15 17:34:08 +00008122MVT X86TargetLowering::getWidenVectorType(MVT VT) const {
Mon P Wang1448aad2008-10-30 08:01:45 +00008123 assert(VT.isVector());
8124 if (isTypeLegal(VT))
8125 return VT;
8126
8127 // TODO: In computeRegisterProperty, we can compute the list of legal vector
8128 // type based on element type. This would speed up our search (though
8129 // it may not be worth it since the size of the list is relatively
8130 // small).
8131 MVT EltVT = VT.getVectorElementType();
8132 unsigned NElts = VT.getVectorNumElements();
8133
8134 // On X86, it make sense to widen any vector wider than 1
8135 if (NElts <= 1)
8136 return MVT::Other;
8137
8138 for (unsigned nVT = MVT::FIRST_VECTOR_VALUETYPE;
8139 nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
8140 MVT SVT = (MVT::SimpleValueType)nVT;
8141
8142 if (isTypeLegal(SVT) &&
8143 SVT.getVectorElementType() == EltVT &&
8144 SVT.getVectorNumElements() > NElts)
8145 return SVT;
8146 }
8147 return MVT::Other;
8148}