blob: 674a633244d56172e84c057594bb2e4d4644b316 [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.
Dale Johannesence0805b2009-02-03 19:33:06 +000048static SDValue getMOVLMask(unsigned NumElems, SelectionDAG &DAG, DebugLoc dl);
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 }
Scott Michel91099d62009-02-17 22:15:04 +000083
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084 // 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
Scott Michel91099d62009-02-17 22:15:04 +000093 // We don't accept any truncstore of integer registers.
Chris Lattner3bc08502008-01-17 19:59:44 +000094 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);
Scott Michel91099d62009-02-17 22:15:04 +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
Evan Cheng0b84fe12009-02-13 22:36:38 +0000378 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000379 // 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 }
Evan Cheng0b84fe12009-02-13 22:36:38 +0000416 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000417 // 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);
Scott Michel91099d62009-02-17 22:15:04 +0000451 setConvertAction(MVT::f80, MVT::f32, Expand);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000452 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 }
Evan Cheng0b84fe12009-02-13 22:36:38 +0000461 } else if (!UseSoftFloat) {
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) {
Scott Michel91099d62009-02-17 22:15:04 +0000476 setConvertAction(MVT::f80, MVT::f32, Expand);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000477 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.
Evan Cheng0b84fe12009-02-13 22:36:38 +0000496 if (!UseSoftFloat) {
497 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
498 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
499 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
500 {
501 bool ignored;
502 APFloat TmpFlt(+0.0);
503 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
504 &ignored);
505 addLegalFPImmediate(TmpFlt); // FLD0
506 TmpFlt.changeSign();
507 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
508 APFloat TmpFlt2(+1.0);
509 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
510 &ignored);
511 addLegalFPImmediate(TmpFlt2); // FLD1
512 TmpFlt2.changeSign();
513 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
514 }
Scott Michel91099d62009-02-17 22:15:04 +0000515
Evan Cheng0b84fe12009-02-13 22:36:38 +0000516 if (!UnsafeFPMath) {
517 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
518 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
519 }
Dale Johannesen7f1076b2007-09-26 21:10:55 +0000520 }
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000521
Dan Gohman2f7b1982007-10-11 23:21:31 +0000522 // Always use a library call for pow.
523 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
524 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
525 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
526
Dale Johannesen92b33082008-09-04 00:47:13 +0000527 setOperationAction(ISD::FLOG, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000528 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000529 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000530 setOperationAction(ISD::FEXP, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000531 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
532
Mon P Wanga5a239f2008-11-06 05:31:54 +0000533 // First set operation action for all vector types to either promote
Mon P Wang1448aad2008-10-30 08:01:45 +0000534 // (for widening) or expand (for scalarization). Then we will selectively
535 // turn on ones that can be effectively codegen'd.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000536 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
537 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
Duncan Sands92c43912008-06-06 12:08:01 +0000538 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
539 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
540 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
541 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
542 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
543 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
544 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
545 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
546 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
547 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
548 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
549 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
550 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
Gabor Greif825aa892008-08-28 23:19:51 +0000551 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
552 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
553 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
Duncan Sands92c43912008-06-06 12:08:01 +0000554 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
555 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
556 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
557 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
558 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
559 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
560 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
561 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
562 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
563 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
564 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
565 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
566 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
567 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
568 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
574 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
Dale Johannesen177edff2008-09-10 17:31:40 +0000576 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
577 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
579 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
580 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 }
582
Evan Cheng0b84fe12009-02-13 22:36:38 +0000583 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
584 // with -msoft-float, disable use of MMX as well.
585 if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 addRegisterClass(MVT::v8i8, X86::VR64RegisterClass);
587 addRegisterClass(MVT::v4i16, X86::VR64RegisterClass);
588 addRegisterClass(MVT::v2i32, X86::VR64RegisterClass);
Dale Johannesena585daf2008-06-24 22:01:44 +0000589 addRegisterClass(MVT::v2f32, X86::VR64RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000590 addRegisterClass(MVT::v1i64, X86::VR64RegisterClass);
591
592 // FIXME: add MMX packed arithmetics
593
594 setOperationAction(ISD::ADD, MVT::v8i8, Legal);
595 setOperationAction(ISD::ADD, MVT::v4i16, Legal);
596 setOperationAction(ISD::ADD, MVT::v2i32, Legal);
597 setOperationAction(ISD::ADD, MVT::v1i64, Legal);
598
599 setOperationAction(ISD::SUB, MVT::v8i8, Legal);
600 setOperationAction(ISD::SUB, MVT::v4i16, Legal);
601 setOperationAction(ISD::SUB, MVT::v2i32, Legal);
Dale Johannesen6b65c332007-10-30 01:18:38 +0000602 setOperationAction(ISD::SUB, MVT::v1i64, Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000603
604 setOperationAction(ISD::MULHS, MVT::v4i16, Legal);
605 setOperationAction(ISD::MUL, MVT::v4i16, Legal);
606
607 setOperationAction(ISD::AND, MVT::v8i8, Promote);
608 AddPromotedToType (ISD::AND, MVT::v8i8, MVT::v1i64);
609 setOperationAction(ISD::AND, MVT::v4i16, Promote);
610 AddPromotedToType (ISD::AND, MVT::v4i16, MVT::v1i64);
611 setOperationAction(ISD::AND, MVT::v2i32, Promote);
612 AddPromotedToType (ISD::AND, MVT::v2i32, MVT::v1i64);
613 setOperationAction(ISD::AND, MVT::v1i64, Legal);
614
615 setOperationAction(ISD::OR, MVT::v8i8, Promote);
616 AddPromotedToType (ISD::OR, MVT::v8i8, MVT::v1i64);
617 setOperationAction(ISD::OR, MVT::v4i16, Promote);
618 AddPromotedToType (ISD::OR, MVT::v4i16, MVT::v1i64);
619 setOperationAction(ISD::OR, MVT::v2i32, Promote);
620 AddPromotedToType (ISD::OR, MVT::v2i32, MVT::v1i64);
621 setOperationAction(ISD::OR, MVT::v1i64, Legal);
622
623 setOperationAction(ISD::XOR, MVT::v8i8, Promote);
624 AddPromotedToType (ISD::XOR, MVT::v8i8, MVT::v1i64);
625 setOperationAction(ISD::XOR, MVT::v4i16, Promote);
626 AddPromotedToType (ISD::XOR, MVT::v4i16, MVT::v1i64);
627 setOperationAction(ISD::XOR, MVT::v2i32, Promote);
628 AddPromotedToType (ISD::XOR, MVT::v2i32, MVT::v1i64);
629 setOperationAction(ISD::XOR, MVT::v1i64, Legal);
630
631 setOperationAction(ISD::LOAD, MVT::v8i8, Promote);
632 AddPromotedToType (ISD::LOAD, MVT::v8i8, MVT::v1i64);
633 setOperationAction(ISD::LOAD, MVT::v4i16, Promote);
634 AddPromotedToType (ISD::LOAD, MVT::v4i16, MVT::v1i64);
635 setOperationAction(ISD::LOAD, MVT::v2i32, Promote);
636 AddPromotedToType (ISD::LOAD, MVT::v2i32, MVT::v1i64);
Dale Johannesena585daf2008-06-24 22:01:44 +0000637 setOperationAction(ISD::LOAD, MVT::v2f32, Promote);
638 AddPromotedToType (ISD::LOAD, MVT::v2f32, MVT::v1i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639 setOperationAction(ISD::LOAD, MVT::v1i64, Legal);
640
641 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i8, Custom);
642 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i16, Custom);
643 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i32, Custom);
Dale Johannesena585daf2008-06-24 22:01:44 +0000644 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000645 setOperationAction(ISD::BUILD_VECTOR, MVT::v1i64, Custom);
646
647 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
648 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
649 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i32, Custom);
650 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v1i64, Custom);
651
Evan Cheng759fe022008-07-22 18:39:19 +0000652 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000653 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Custom);
654 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Custom);
Bill Wendlingb9e5f802008-07-20 02:32:23 +0000656
657 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i16, Custom);
Mon P Wang83edba52008-12-12 01:25:51 +0000658
659 setTruncStoreAction(MVT::v8i16, MVT::v8i8, Expand);
660 setOperationAction(ISD::TRUNCATE, MVT::v8i8, Expand);
661 setOperationAction(ISD::SELECT, MVT::v8i8, Promote);
662 setOperationAction(ISD::SELECT, MVT::v4i16, Promote);
663 setOperationAction(ISD::SELECT, MVT::v2i32, Promote);
664 setOperationAction(ISD::SELECT, MVT::v1i64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000665 }
666
Evan Cheng0b84fe12009-02-13 22:36:38 +0000667 if (!UseSoftFloat && Subtarget->hasSSE1()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000668 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
669
670 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
671 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
672 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
673 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
674 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
675 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
677 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
678 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
679 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
680 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Nate Begeman03605a02008-07-17 16:51:19 +0000681 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000682 }
683
Evan Cheng0b84fe12009-02-13 22:36:38 +0000684 if (!UseSoftFloat && Subtarget->hasSSE2()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000685 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Cheng0b84fe12009-02-13 22:36:38 +0000686
687 // FIXME: Unfortunately -soft-float means XMM registers cannot be used even
688 // for integer operations.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000689 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
690 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
691 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
692 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
693
694 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
695 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
696 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
697 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Mon P Wang14edb092008-12-18 21:42:19 +0000698 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000699 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
700 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
701 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
702 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
703 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
704 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
705 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
706 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
707 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
708 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
709 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000710
Nate Begeman03605a02008-07-17 16:51:19 +0000711 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
712 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
713 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
714 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begeman061db5f2008-05-12 20:34:32 +0000715
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000716 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
717 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
718 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
719 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000720 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
721
722 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Duncan Sands92c43912008-06-06 12:08:01 +0000723 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
724 MVT VT = (MVT::SimpleValueType)i;
Nate Begemanc16406d2007-12-11 01:41:33 +0000725 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands92c43912008-06-06 12:08:01 +0000726 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begemanc16406d2007-12-11 01:41:33 +0000727 continue;
Duncan Sands92c43912008-06-06 12:08:01 +0000728 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
729 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
730 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000731 }
732 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
733 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
734 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
735 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000736 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000737 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000738 if (Subtarget->is64Bit()) {
739 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
Dale Johannesen2ff963d2007-10-31 00:32:36 +0000740 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000741 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000742
743 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
744 for (unsigned VT = (unsigned)MVT::v16i8; VT != (unsigned)MVT::v2i64; VT++) {
Duncan Sands92c43912008-06-06 12:08:01 +0000745 setOperationAction(ISD::AND, (MVT::SimpleValueType)VT, Promote);
746 AddPromotedToType (ISD::AND, (MVT::SimpleValueType)VT, MVT::v2i64);
747 setOperationAction(ISD::OR, (MVT::SimpleValueType)VT, Promote);
748 AddPromotedToType (ISD::OR, (MVT::SimpleValueType)VT, MVT::v2i64);
749 setOperationAction(ISD::XOR, (MVT::SimpleValueType)VT, Promote);
750 AddPromotedToType (ISD::XOR, (MVT::SimpleValueType)VT, MVT::v2i64);
751 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Promote);
752 AddPromotedToType (ISD::LOAD, (MVT::SimpleValueType)VT, MVT::v2i64);
753 setOperationAction(ISD::SELECT, (MVT::SimpleValueType)VT, Promote);
754 AddPromotedToType (ISD::SELECT, (MVT::SimpleValueType)VT, MVT::v2i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000755 }
756
Chris Lattner3bc08502008-01-17 19:59:44 +0000757 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000758
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000759 // Custom lower v2i64 and v2f64 selects.
760 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
761 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
762 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
763 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michel91099d62009-02-17 22:15:04 +0000764
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000765 }
Evan Cheng0b84fe12009-02-13 22:36:38 +0000766
Nate Begemand77e59e2008-02-11 04:19:36 +0000767 if (Subtarget->hasSSE41()) {
768 // FIXME: Do we need to handle scalar-to-vector here?
769 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
770
771 // i8 and i16 vectors are custom , because the source register and source
772 // source memory operand types are not the same width. f32 vectors are
773 // custom since the immediate controlling the insert encodes additional
774 // information.
775 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
776 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangac2a3c52009-01-15 21:10:20 +0000777 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Nate Begemand77e59e2008-02-11 04:19:36 +0000778 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
779
780 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
781 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangac2a3c52009-01-15 21:10:20 +0000782 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
Evan Cheng6c249332008-03-24 21:52:23 +0000783 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begemand77e59e2008-02-11 04:19:36 +0000784
785 if (Subtarget->is64Bit()) {
Nate Begeman4294c1f2008-02-12 22:51:28 +0000786 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
787 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begemand77e59e2008-02-11 04:19:36 +0000788 }
789 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000790
Nate Begeman03605a02008-07-17 16:51:19 +0000791 if (Subtarget->hasSSE42()) {
792 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
793 }
Scott Michel91099d62009-02-17 22:15:04 +0000794
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000795 // We want to custom lower some of our intrinsics.
796 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
797
Bill Wendling7e04be62008-12-09 22:08:41 +0000798 // Add/Sub/Mul with overflow operations are custom lowered.
Bill Wendling4c134df2008-11-24 19:21:46 +0000799 setOperationAction(ISD::SADDO, MVT::i32, Custom);
800 setOperationAction(ISD::SADDO, MVT::i64, Custom);
801 setOperationAction(ISD::UADDO, MVT::i32, Custom);
802 setOperationAction(ISD::UADDO, MVT::i64, Custom);
Bill Wendling7e04be62008-12-09 22:08:41 +0000803 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
804 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
805 setOperationAction(ISD::USUBO, MVT::i32, Custom);
806 setOperationAction(ISD::USUBO, MVT::i64, Custom);
807 setOperationAction(ISD::SMULO, MVT::i32, Custom);
808 setOperationAction(ISD::SMULO, MVT::i64, Custom);
809 setOperationAction(ISD::UMULO, MVT::i32, Custom);
810 setOperationAction(ISD::UMULO, MVT::i64, Custom);
Bill Wendling4c134df2008-11-24 19:21:46 +0000811
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000812 // We have target-specific dag combine patterns for the following nodes:
813 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Evan Chenge9b9c672008-05-09 21:53:03 +0000814 setTargetDAGCombine(ISD::BUILD_VECTOR);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000815 setTargetDAGCombine(ISD::SELECT);
sampo025b75c2009-01-26 00:52:55 +0000816 setTargetDAGCombine(ISD::SHL);
817 setTargetDAGCombine(ISD::SRA);
818 setTargetDAGCombine(ISD::SRL);
Chris Lattnerce84ae42008-02-22 02:09:43 +0000819 setTargetDAGCombine(ISD::STORE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000820
821 computeRegisterProperties();
822
823 // FIXME: These should be based on subtarget info. Plus, the values should
824 // be smaller when we are in optimizing for size mode.
Dan Gohman97fab242008-06-30 21:00:56 +0000825 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
826 maxStoresPerMemcpy = 16; // For @llvm.memcpy -> sequence of stores
827 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000828 allowUnalignedMemoryAccesses = true; // x86 supports it!
Evan Cheng45c1edb2008-02-28 00:43:03 +0000829 setPrefLoopAlignment(16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000830}
831
Scott Michel502151f2008-03-10 15:42:14 +0000832
Duncan Sands4a361272009-01-01 15:52:00 +0000833MVT X86TargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel502151f2008-03-10 15:42:14 +0000834 return MVT::i8;
835}
836
837
Evan Cheng5a67b812008-01-23 23:17:41 +0000838/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
839/// the desired ByVal argument alignment.
840static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
841 if (MaxAlign == 16)
842 return;
843 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
844 if (VTy->getBitWidth() == 128)
845 MaxAlign = 16;
Evan Cheng5a67b812008-01-23 23:17:41 +0000846 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
847 unsigned EltAlign = 0;
848 getMaxByValAlign(ATy->getElementType(), EltAlign);
849 if (EltAlign > MaxAlign)
850 MaxAlign = EltAlign;
851 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
852 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
853 unsigned EltAlign = 0;
854 getMaxByValAlign(STy->getElementType(i), EltAlign);
855 if (EltAlign > MaxAlign)
856 MaxAlign = EltAlign;
857 if (MaxAlign == 16)
858 break;
859 }
860 }
861 return;
862}
863
864/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
865/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesena58b8622008-02-08 19:48:20 +0000866/// that contain SSE vectors are placed at 16-byte boundaries while the rest
867/// are at 4-byte boundaries.
Evan Cheng5a67b812008-01-23 23:17:41 +0000868unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng9a6e0fa2008-08-21 21:00:15 +0000869 if (Subtarget->is64Bit()) {
870 // Max of 8 and alignment of type.
Anton Korobeynikovd0fef972008-09-09 18:22:57 +0000871 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng9a6e0fa2008-08-21 21:00:15 +0000872 if (TyAlign > 8)
873 return TyAlign;
874 return 8;
875 }
876
Evan Cheng5a67b812008-01-23 23:17:41 +0000877 unsigned Align = 4;
Dale Johannesena58b8622008-02-08 19:48:20 +0000878 if (Subtarget->hasSSE1())
879 getMaxByValAlign(Ty, Align);
Evan Cheng5a67b812008-01-23 23:17:41 +0000880 return Align;
881}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000882
Evan Cheng8c590372008-05-15 08:39:06 +0000883/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng2f1033e2008-05-15 22:13:02 +0000884/// and store operations as a result of memset, memcpy, and memmove
885/// lowering. It returns MVT::iAny if SelectionDAG should be responsible for
Evan Cheng8c590372008-05-15 08:39:06 +0000886/// determining it.
Duncan Sands92c43912008-06-06 12:08:01 +0000887MVT
Evan Cheng8c590372008-05-15 08:39:06 +0000888X86TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned Align,
889 bool isSrcConst, bool isSrcStr) const {
Chris Lattnerf0bf1062008-10-28 05:49:35 +0000890 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
891 // linux. This is because the stack realignment code can't handle certain
892 // cases like PR2962. This should be removed when PR2962 is fixed.
893 if (Subtarget->getStackAlignment() >= 16) {
894 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE2() && Size >= 16)
895 return MVT::v4i32;
896 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE1() && Size >= 16)
897 return MVT::v4f32;
898 }
Evan Cheng8c590372008-05-15 08:39:06 +0000899 if (Subtarget->is64Bit() && Size >= 8)
900 return MVT::i64;
901 return MVT::i32;
902}
903
904
Evan Cheng6fb06762007-11-09 01:32:10 +0000905/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
906/// jumptable.
Dan Gohman8181bd12008-07-27 21:46:04 +0000907SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Evan Cheng6fb06762007-11-09 01:32:10 +0000908 SelectionDAG &DAG) const {
909 if (usesGlobalOffsetTable())
Dale Johannesen24dd9a52009-02-07 00:55:49 +0000910 return DAG.getGLOBAL_OFFSET_TABLE(getPointerTy());
Evan Cheng6fb06762007-11-09 01:32:10 +0000911 if (!Subtarget->isPICStyleRIPRel())
Dale Johannesen24dd9a52009-02-07 00:55:49 +0000912 // This doesn't have DebugLoc associated with it, but is not really the
913 // same as a Register.
914 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc::getUnknownLoc(),
915 getPointerTy());
Evan Cheng6fb06762007-11-09 01:32:10 +0000916 return Table;
917}
918
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000919//===----------------------------------------------------------------------===//
920// Return Value Calling Convention Implementation
921//===----------------------------------------------------------------------===//
922
923#include "X86GenCallingConv.inc"
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000924
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000925/// LowerRET - Lower an ISD::RET node.
Dan Gohman8181bd12008-07-27 21:46:04 +0000926SDValue X86TargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +0000927 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000928 assert((Op.getNumOperands() & 1) == 1 && "ISD::RET should have odd # args");
Scott Michel91099d62009-02-17 22:15:04 +0000929
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000930 SmallVector<CCValAssign, 16> RVLocs;
931 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
932 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
933 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Gabor Greif1c80d112008-08-28 21:40:38 +0000934 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_X86);
Scott Michel91099d62009-02-17 22:15:04 +0000935
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000936 // If this is the first return lowered for this function, add the regs to the
937 // liveout set for the function.
Chris Lattner1b989192007-12-31 04:13:23 +0000938 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000939 for (unsigned i = 0; i != RVLocs.size(); ++i)
940 if (RVLocs[i].isRegLoc())
Chris Lattner1b989192007-12-31 04:13:23 +0000941 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000942 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000943 SDValue Chain = Op.getOperand(0);
Scott Michel91099d62009-02-17 22:15:04 +0000944
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000945 // Handle tail call return.
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000946 Chain = GetPossiblePreceedingTailCall(Chain, X86ISD::TAILCALL);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000947 if (Chain.getOpcode() == X86ISD::TAILCALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000948 SDValue TailCall = Chain;
949 SDValue TargetAddress = TailCall.getOperand(1);
950 SDValue StackAdjustment = TailCall.getOperand(2);
Chris Lattnerf8decf52008-01-16 05:52:18 +0000951 assert(((TargetAddress.getOpcode() == ISD::Register &&
Arnold Schwaighofer4da27f62008-09-22 14:50:07 +0000952 (cast<RegisterSDNode>(TargetAddress)->getReg() == X86::EAX ||
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000953 cast<RegisterSDNode>(TargetAddress)->getReg() == X86::R9)) ||
Bill Wendlingfef06052008-09-16 21:48:12 +0000954 TargetAddress.getOpcode() == ISD::TargetExternalSymbol ||
Scott Michel91099d62009-02-17 22:15:04 +0000955 TargetAddress.getOpcode() == ISD::TargetGlobalAddress) &&
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000956 "Expecting an global address, external symbol, or register");
Chris Lattnerf8decf52008-01-16 05:52:18 +0000957 assert(StackAdjustment.getOpcode() == ISD::Constant &&
958 "Expecting a const value");
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000959
Dan Gohman8181bd12008-07-27 21:46:04 +0000960 SmallVector<SDValue,8> Operands;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000961 Operands.push_back(Chain.getOperand(0));
962 Operands.push_back(TargetAddress);
963 Operands.push_back(StackAdjustment);
964 // Copy registers used by the call. Last operand is a flag so it is not
965 // copied.
Arnold Schwaighofer10202b32007-10-16 09:05:00 +0000966 for (unsigned i=3; i < TailCall.getNumOperands()-1; i++) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000967 Operands.push_back(Chain.getOperand(i));
968 }
Scott Michel91099d62009-02-17 22:15:04 +0000969 return DAG.getNode(X86ISD::TC_RETURN, dl, MVT::Other, &Operands[0],
Arnold Schwaighofer10202b32007-10-16 09:05:00 +0000970 Operands.size());
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000971 }
Scott Michel91099d62009-02-17 22:15:04 +0000972
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000973 // Regular return.
Dan Gohman8181bd12008-07-27 21:46:04 +0000974 SDValue Flag;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000975
Dan Gohman8181bd12008-07-27 21:46:04 +0000976 SmallVector<SDValue, 6> RetOps;
Chris Lattnerb56cc342008-03-11 03:23:40 +0000977 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
978 // Operand #1 = Bytes To Pop
979 RetOps.push_back(DAG.getConstant(getBytesToPopOnReturn(), MVT::i16));
Scott Michel91099d62009-02-17 22:15:04 +0000980
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000981 // Copy the result values into the output registers.
Chris Lattnere22e1fb2008-03-10 21:08:41 +0000982 for (unsigned i = 0; i != RVLocs.size(); ++i) {
983 CCValAssign &VA = RVLocs[i];
984 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohman8181bd12008-07-27 21:46:04 +0000985 SDValue ValToCopy = Op.getOperand(i*2+1);
Scott Michel91099d62009-02-17 22:15:04 +0000986
Chris Lattnerb56cc342008-03-11 03:23:40 +0000987 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
988 // the RET instruction and handled by the FP Stackifier.
Dan Gohman6c4be722009-02-04 17:28:58 +0000989 if (VA.getLocReg() == X86::ST0 ||
990 VA.getLocReg() == X86::ST1) {
Chris Lattnerb56cc342008-03-11 03:23:40 +0000991 // If this is a copy from an xmm register to ST(0), use an FPExtend to
992 // change the value to the FP stack register class.
Dan Gohman6c4be722009-02-04 17:28:58 +0000993 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Dale Johannesence0805b2009-02-03 19:33:06 +0000994 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattnerb56cc342008-03-11 03:23:40 +0000995 RetOps.push_back(ValToCopy);
996 // Don't emit a copytoreg.
997 continue;
998 }
Dale Johannesena585daf2008-06-24 22:01:44 +0000999
Evan Chenge8db6e02009-02-22 08:05:12 +00001000 // 64-bit vector (MMX) values are returned in RAX.
1001 if (Subtarget->is64Bit()) {
1002 MVT ValVT = ValToCopy.getValueType();
1003 if (VA.getLocReg() == X86::RAX &&
1004 ValVT.isVector() && ValVT.getSizeInBits() == 64)
1005 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy);
1006 }
1007
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001008 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001009 Flag = Chain.getValue(1);
1010 }
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001011
1012 // The x86-64 ABI for returning structs by value requires that we copy
1013 // the sret argument into %rax for the return. We saved the argument into
1014 // a virtual register in the entry block, so now we copy the value out
1015 // and into %rax.
1016 if (Subtarget->is64Bit() &&
1017 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1018 MachineFunction &MF = DAG.getMachineFunction();
1019 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1020 unsigned Reg = FuncInfo->getSRetReturnReg();
1021 if (!Reg) {
1022 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1023 FuncInfo->setSRetReturnReg(Reg);
1024 }
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001025 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001026
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001027 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001028 Flag = Chain.getValue(1);
1029 }
Scott Michel91099d62009-02-17 22:15:04 +00001030
Chris Lattnerb56cc342008-03-11 03:23:40 +00001031 RetOps[0] = Chain; // Update chain.
1032
1033 // Add the flag if we have it.
Gabor Greif1c80d112008-08-28 21:40:38 +00001034 if (Flag.getNode())
Chris Lattnerb56cc342008-03-11 03:23:40 +00001035 RetOps.push_back(Flag);
Scott Michel91099d62009-02-17 22:15:04 +00001036
1037 return DAG.getNode(X86ISD::RET_FLAG, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00001038 MVT::Other, &RetOps[0], RetOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001039}
1040
1041
1042/// LowerCallResult - Lower the result values of an ISD::CALL into the
1043/// appropriate copies out of appropriate physical registers. This assumes that
1044/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
1045/// being lowered. The returns a SDNode with the same number of values as the
1046/// ISD::CALL.
1047SDNode *X86TargetLowering::
Scott Michel91099d62009-02-17 22:15:04 +00001048LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001049 unsigned CallingConv, SelectionDAG &DAG) {
Dale Johannesence0805b2009-02-03 19:33:06 +00001050
Scott Michel91099d62009-02-17 22:15:04 +00001051 DebugLoc dl = TheCall->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052 // Assign locations to each value returned by this call.
1053 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman705e3f72008-09-13 01:54:27 +00001054 bool isVarArg = TheCall->isVarArg();
Edwin Törökaf8e1332009-02-01 18:15:56 +00001055 bool Is64Bit = Subtarget->is64Bit();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001056 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
1057 CCInfo.AnalyzeCallResult(TheCall, RetCC_X86);
1058
Dan Gohman8181bd12008-07-27 21:46:04 +00001059 SmallVector<SDValue, 8> ResultVals;
Scott Michel91099d62009-02-17 22:15:04 +00001060
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001061 // Copy all of the result registers out of their specified physreg.
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001062 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman6c4be722009-02-04 17:28:58 +00001063 CCValAssign &VA = RVLocs[i];
1064 MVT CopyVT = VA.getValVT();
Scott Michel91099d62009-02-17 22:15:04 +00001065
Edwin Törökaf8e1332009-02-01 18:15:56 +00001066 // If this is x86-64, and we disabled SSE, we can't return FP values
Scott Michel91099d62009-02-17 22:15:04 +00001067 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Edwin Törökaf8e1332009-02-01 18:15:56 +00001068 ((Is64Bit || TheCall->isInreg()) && !Subtarget->hasSSE1())) {
1069 cerr << "SSE register return with SSE disabled\n";
1070 exit(1);
1071 }
1072
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001073 // If this is a call to a function that returns an fp value on the floating
1074 // point stack, but where we prefer to use the value in xmm registers, copy
1075 // it out as F80 and use a truncate to move it from fp stack reg to xmm reg.
Dan Gohman6c4be722009-02-04 17:28:58 +00001076 if ((VA.getLocReg() == X86::ST0 ||
1077 VA.getLocReg() == X86::ST1) &&
1078 isScalarFPTypeInSSEReg(VA.getValVT())) {
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001079 CopyVT = MVT::f80;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001080 }
Scott Michel91099d62009-02-17 22:15:04 +00001081
Evan Cheng9cc600e2009-02-20 20:43:02 +00001082 SDValue Val;
1083 if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Chenge8db6e02009-02-22 08:05:12 +00001084 // For x86-64, MMX values are returned in RAX.
Evan Cheng9cc600e2009-02-20 20:43:02 +00001085 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Evan Chenge8db6e02009-02-22 08:05:12 +00001086 MVT::i64, InFlag).getValue(1);
Evan Cheng9cc600e2009-02-20 20:43:02 +00001087 Val = Chain.getValue(0);
Evan Cheng9cc600e2009-02-20 20:43:02 +00001088 Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val);
1089 } else {
1090 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1091 CopyVT, InFlag).getValue(1);
1092 Val = Chain.getValue(0);
1093 }
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001094 InFlag = Chain.getValue(2);
Chris Lattner40758732007-12-29 06:41:28 +00001095
Dan Gohman6c4be722009-02-04 17:28:58 +00001096 if (CopyVT != VA.getValVT()) {
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001097 // Round the F80 the right size, which also moves to the appropriate xmm
1098 // register.
Dan Gohman6c4be722009-02-04 17:28:58 +00001099 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001100 // This truncation won't change the value.
1101 DAG.getIntPtrConstant(1));
1102 }
Scott Michel91099d62009-02-17 22:15:04 +00001103
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001104 ResultVals.push_back(Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001105 }
Duncan Sands698842f2008-07-02 17:40:58 +00001106
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001107 // Merge everything together with a MERGE_VALUES node.
1108 ResultVals.push_back(Chain);
Dale Johannesence0805b2009-02-03 19:33:06 +00001109 return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(),
1110 &ResultVals[0], ResultVals.size()).getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001111}
1112
1113
1114//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001115// C & StdCall & Fast Calling Convention implementation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001116//===----------------------------------------------------------------------===//
1117// StdCall calling convention seems to be standard for many Windows' API
1118// routines and around. It differs from C calling convention just a little:
1119// callee should clean up the stack, not caller. Symbols should be also
1120// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001121// For info on fast calling convention see Fast Calling Convention (tail call)
1122// implementation LowerX86_32FastCCCallTo.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001123
1124/// AddLiveIn - This helper function adds the specified physical register to the
1125/// MachineFunction as a live in value. It also creates a corresponding virtual
1126/// register for it.
1127static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
1128 const TargetRegisterClass *RC) {
1129 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner1b989192007-12-31 04:13:23 +00001130 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
1131 MF.getRegInfo().addLiveIn(PReg, VReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001132 return VReg;
1133}
1134
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001135/// CallIsStructReturn - Determines whether a CALL node uses struct return
1136/// semantics.
Dan Gohman705e3f72008-09-13 01:54:27 +00001137static bool CallIsStructReturn(CallSDNode *TheCall) {
1138 unsigned NumOps = TheCall->getNumArgs();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001139 if (!NumOps)
1140 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001141
Dan Gohman705e3f72008-09-13 01:54:27 +00001142 return TheCall->getArgFlags(0).isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001143}
1144
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001145/// ArgsAreStructReturn - Determines whether a FORMAL_ARGUMENTS node uses struct
1146/// return semantics.
Dan Gohman8181bd12008-07-27 21:46:04 +00001147static bool ArgsAreStructReturn(SDValue Op) {
Gabor Greif1c80d112008-08-28 21:40:38 +00001148 unsigned NumArgs = Op.getNode()->getNumValues() - 1;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001149 if (!NumArgs)
1150 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001151
1152 return cast<ARG_FLAGSSDNode>(Op.getOperand(3))->getArgFlags().isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001153}
1154
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001155/// IsCalleePop - Determines whether a CALL or FORMAL_ARGUMENTS node requires
1156/// the callee to pop its own arguments. Callee pop is necessary to support tail
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001157/// calls.
Dan Gohman705e3f72008-09-13 01:54:27 +00001158bool X86TargetLowering::IsCalleePop(bool IsVarArg, unsigned CallingConv) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001159 if (IsVarArg)
1160 return false;
1161
Dan Gohman705e3f72008-09-13 01:54:27 +00001162 switch (CallingConv) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001163 default:
1164 return false;
1165 case CallingConv::X86_StdCall:
1166 return !Subtarget->is64Bit();
1167 case CallingConv::X86_FastCall:
1168 return !Subtarget->is64Bit();
1169 case CallingConv::Fast:
1170 return PerformTailCallOpt;
1171 }
1172}
1173
Dan Gohman705e3f72008-09-13 01:54:27 +00001174/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1175/// given CallingConvention value.
1176CCAssignFn *X86TargetLowering::CCAssignFnForNode(unsigned CC) const {
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001177 if (Subtarget->is64Bit()) {
Anton Korobeynikov06d49b02008-03-22 20:57:27 +00001178 if (Subtarget->isTargetWin64())
Anton Korobeynikov99bd1882008-03-22 20:37:30 +00001179 return CC_X86_Win64_C;
Evan Chengded8f902008-09-07 09:07:23 +00001180 else if (CC == CallingConv::Fast && PerformTailCallOpt)
1181 return CC_X86_64_TailCall;
1182 else
1183 return CC_X86_64_C;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001184 }
1185
Gordon Henriksen18ace102008-01-05 16:56:59 +00001186 if (CC == CallingConv::X86_FastCall)
1187 return CC_X86_32_FastCall;
Evan Chenga9d15b92008-09-10 18:25:29 +00001188 else if (CC == CallingConv::Fast)
1189 return CC_X86_32_FastCC;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001190 else
1191 return CC_X86_32_C;
1192}
1193
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001194/// NameDecorationForFORMAL_ARGUMENTS - Selects the appropriate decoration to
1195/// apply to a MachineFunction containing a given FORMAL_ARGUMENTS node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001196NameDecorationStyle
Dan Gohman8181bd12008-07-27 21:46:04 +00001197X86TargetLowering::NameDecorationForFORMAL_ARGUMENTS(SDValue Op) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001198 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001199 if (CC == CallingConv::X86_FastCall)
1200 return FastCall;
1201 else if (CC == CallingConv::X86_StdCall)
1202 return StdCall;
1203 return None;
1204}
1205
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001206
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001207/// CallRequiresGOTInRegister - Check whether the call requires the GOT pointer
1208/// in a register before calling.
1209bool X86TargetLowering::CallRequiresGOTPtrInReg(bool Is64Bit, bool IsTailCall) {
1210 return !IsTailCall && !Is64Bit &&
1211 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1212 Subtarget->isPICStyleGOT();
1213}
1214
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001215/// CallRequiresFnAddressInReg - Check whether the call requires the function
1216/// address to be loaded in a register.
Scott Michel91099d62009-02-17 22:15:04 +00001217bool
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001218X86TargetLowering::CallRequiresFnAddressInReg(bool Is64Bit, bool IsTailCall) {
Scott Michel91099d62009-02-17 22:15:04 +00001219 return !Is64Bit && IsTailCall &&
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001220 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1221 Subtarget->isPICStyleGOT();
1222}
1223
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001224/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1225/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001226/// the specific parameter attribute. The copy will be passed as a byval
1227/// function parameter.
Scott Michel91099d62009-02-17 22:15:04 +00001228static SDValue
Dan Gohman8181bd12008-07-27 21:46:04 +00001229CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001230 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1231 DebugLoc dl) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001232 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001233 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001234 /*AlwaysInline=*/true, NULL, 0, NULL, 0);
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001235}
1236
Dan Gohman8181bd12008-07-27 21:46:04 +00001237SDValue X86TargetLowering::LowerMemArgument(SDValue Op, SelectionDAG &DAG,
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001238 const CCValAssign &VA,
1239 MachineFrameInfo *MFI,
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001240 unsigned CC,
Dan Gohman8181bd12008-07-27 21:46:04 +00001241 SDValue Root, unsigned i) {
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001242 // Create the nodes corresponding to a load from this parameter slot.
Duncan Sandsc93fae32008-03-21 09:14:45 +00001243 ISD::ArgFlagsTy Flags =
1244 cast<ARG_FLAGSSDNode>(Op.getOperand(3 + i))->getArgFlags();
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001245 bool AlwaysUseMutable = (CC==CallingConv::Fast) && PerformTailCallOpt;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001246 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Evan Cheng3e42a522008-01-10 02:24:25 +00001247
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001248 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michel91099d62009-02-17 22:15:04 +00001249 // changed with more analysis.
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001250 // In case of tail call optimization mark all arguments mutable. Since they
1251 // could be overwritten by lowering of arguments in case of a tail call.
Duncan Sands92c43912008-06-06 12:08:01 +00001252 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001253 VA.getLocMemOffset(), isImmutable);
Dan Gohman8181bd12008-07-27 21:46:04 +00001254 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Duncan Sandsc93fae32008-03-21 09:14:45 +00001255 if (Flags.isByVal())
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001256 return FIN;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00001257 return DAG.getLoad(VA.getValVT(), Op.getDebugLoc(), Root, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001258 PseudoSourceValue::getFixedStack(FI), 0);
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001259}
1260
Dan Gohman8181bd12008-07-27 21:46:04 +00001261SDValue
1262X86TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001263 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001264 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00001265 DebugLoc dl = Op.getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00001266
Gordon Henriksen18ace102008-01-05 16:56:59 +00001267 const Function* Fn = MF.getFunction();
1268 if (Fn->hasExternalLinkage() &&
1269 Subtarget->isTargetCygMing() &&
1270 Fn->getName() == "main")
1271 FuncInfo->setForceFramePointer(true);
1272
1273 // Decorate the function name.
1274 FuncInfo->setDecorationStyle(NameDecorationForFORMAL_ARGUMENTS(Op));
Scott Michel91099d62009-02-17 22:15:04 +00001275
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001276 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman8181bd12008-07-27 21:46:04 +00001277 SDValue Root = Op.getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001278 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001279 unsigned CC = MF.getFunction()->getCallingConv();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001280 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001281 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001282
1283 assert(!(isVarArg && CC == CallingConv::Fast) &&
1284 "Var args not supported with calling convention fastcc");
1285
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001286 // Assign locations to all of the incoming arguments.
1287 SmallVector<CCValAssign, 16> ArgLocs;
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001288 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman705e3f72008-09-13 01:54:27 +00001289 CCInfo.AnalyzeFormalArguments(Op.getNode(), CCAssignFnForNode(CC));
Scott Michel91099d62009-02-17 22:15:04 +00001290
Dan Gohman8181bd12008-07-27 21:46:04 +00001291 SmallVector<SDValue, 8> ArgValues;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001292 unsigned LastVal = ~0U;
1293 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1294 CCValAssign &VA = ArgLocs[i];
1295 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1296 // places.
1297 assert(VA.getValNo() != LastVal &&
1298 "Don't support value assigned to multiple locs yet");
1299 LastVal = VA.getValNo();
Scott Michel91099d62009-02-17 22:15:04 +00001300
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001301 if (VA.isRegLoc()) {
Duncan Sands92c43912008-06-06 12:08:01 +00001302 MVT RegVT = VA.getLocVT();
Devang Patelf3707e82009-01-05 17:31:22 +00001303 TargetRegisterClass *RC = NULL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001304 if (RegVT == MVT::i32)
1305 RC = X86::GR32RegisterClass;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001306 else if (Is64Bit && RegVT == MVT::i64)
1307 RC = X86::GR64RegisterClass;
Dale Johannesen51552f62008-02-05 20:46:33 +00001308 else if (RegVT == MVT::f32)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001309 RC = X86::FR32RegisterClass;
Dale Johannesen51552f62008-02-05 20:46:33 +00001310 else if (RegVT == MVT::f64)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001311 RC = X86::FR64RegisterClass;
Duncan Sands92c43912008-06-06 12:08:01 +00001312 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengf5af6fe2008-04-25 07:56:45 +00001313 RC = X86::VR128RegisterClass;
Duncan Sands92c43912008-06-06 12:08:01 +00001314 else if (RegVT.isVector()) {
1315 assert(RegVT.getSizeInBits() == 64);
Evan Chengf5af6fe2008-04-25 07:56:45 +00001316 if (!Is64Bit)
1317 RC = X86::VR64RegisterClass; // MMX values are passed in MMXs.
1318 else {
1319 // Darwin calling convention passes MMX values in either GPRs or
1320 // XMMs in x86-64. Other targets pass them in memory.
1321 if (RegVT != MVT::v1i64 && Subtarget->hasSSE2()) {
1322 RC = X86::VR128RegisterClass; // MMX values are passed in XMMs.
1323 RegVT = MVT::v2i64;
1324 } else {
1325 RC = X86::GR64RegisterClass; // v1i64 values are passed in GPRs.
1326 RegVT = MVT::i64;
1327 }
1328 }
1329 } else {
1330 assert(0 && "Unknown argument type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001331 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001332
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001333 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001334 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, RegVT);
Scott Michel91099d62009-02-17 22:15:04 +00001335
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001336 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1337 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1338 // right size.
1339 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesence0805b2009-02-03 19:33:06 +00001340 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001341 DAG.getValueType(VA.getValVT()));
1342 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesence0805b2009-02-03 19:33:06 +00001343 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001344 DAG.getValueType(VA.getValVT()));
Scott Michel91099d62009-02-17 22:15:04 +00001345
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001346 if (VA.getLocInfo() != CCValAssign::Full)
Dale Johannesence0805b2009-02-03 19:33:06 +00001347 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Scott Michel91099d62009-02-17 22:15:04 +00001348
Gordon Henriksen18ace102008-01-05 16:56:59 +00001349 // Handle MMX values passed in GPRs.
Evan Chengad6980b2008-04-25 20:13:28 +00001350 if (Is64Bit && RegVT != VA.getLocVT()) {
Duncan Sands92c43912008-06-06 12:08:01 +00001351 if (RegVT.getSizeInBits() == 64 && RC == X86::GR64RegisterClass)
Dale Johannesence0805b2009-02-03 19:33:06 +00001352 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Chengad6980b2008-04-25 20:13:28 +00001353 else if (RC == X86::VR128RegisterClass) {
Dale Johannesence0805b2009-02-03 19:33:06 +00001354 ArgValue = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1355 ArgValue, DAG.getConstant(0, MVT::i64));
1356 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Chengad6980b2008-04-25 20:13:28 +00001357 }
1358 }
Scott Michel91099d62009-02-17 22:15:04 +00001359
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001360 ArgValues.push_back(ArgValue);
1361 } else {
1362 assert(VA.isMemLoc());
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001363 ArgValues.push_back(LowerMemArgument(Op, DAG, VA, MFI, CC, Root, i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001364 }
1365 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001366
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001367 // The x86-64 ABI for returning structs by value requires that we copy
1368 // the sret argument into %rax for the return. Save the argument into
1369 // a virtual register so that we can access it from the return points.
1370 if (Is64Bit && DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1371 MachineFunction &MF = DAG.getMachineFunction();
1372 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1373 unsigned Reg = FuncInfo->getSRetReturnReg();
1374 if (!Reg) {
1375 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1376 FuncInfo->setSRetReturnReg(Reg);
1377 }
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001378 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, ArgValues[0]);
Dale Johannesence0805b2009-02-03 19:33:06 +00001379 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Root);
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001380 }
1381
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001382 unsigned StackSize = CCInfo.getNextStackOffset();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001383 // align stack specially for tail calls
Evan Chengded8f902008-09-07 09:07:23 +00001384 if (PerformTailCallOpt && CC == CallingConv::Fast)
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001385 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001386
1387 // If the function takes variable number of arguments, make a frame index for
1388 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001389 if (isVarArg) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001390 if (Is64Bit || CC != CallingConv::X86_FastCall) {
1391 VarArgsFrameIndex = MFI->CreateFixedObject(1, StackSize);
1392 }
1393 if (Is64Bit) {
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001394 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1395
1396 // FIXME: We should really autogenerate these arrays
1397 static const unsigned GPR64ArgRegsWin64[] = {
1398 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen18ace102008-01-05 16:56:59 +00001399 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001400 static const unsigned XMMArgRegsWin64[] = {
1401 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3
1402 };
1403 static const unsigned GPR64ArgRegs64Bit[] = {
1404 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1405 };
1406 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001407 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1408 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1409 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001410 const unsigned *GPR64ArgRegs, *XMMArgRegs;
1411
1412 if (IsWin64) {
1413 TotalNumIntRegs = 4; TotalNumXMMRegs = 4;
1414 GPR64ArgRegs = GPR64ArgRegsWin64;
1415 XMMArgRegs = XMMArgRegsWin64;
1416 } else {
1417 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1418 GPR64ArgRegs = GPR64ArgRegs64Bit;
1419 XMMArgRegs = XMMArgRegs64Bit;
1420 }
1421 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1422 TotalNumIntRegs);
1423 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs,
1424 TotalNumXMMRegs);
1425
Evan Cheng0b84fe12009-02-13 22:36:38 +00001426 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Edwin Törökaf8e1332009-02-01 18:15:56 +00001427 "SSE register cannot be used when SSE is disabled!");
Evan Cheng0b84fe12009-02-13 22:36:38 +00001428 assert(!(NumXMMRegs && UseSoftFloat) &&
1429 "SSE register cannot be used when SSE is disabled!");
1430 if (UseSoftFloat || !Subtarget->hasSSE1()) {
Edwin Törökaf8e1332009-02-01 18:15:56 +00001431 // Kernel mode asks for SSE to be disabled, so don't push them
1432 // on the stack.
1433 TotalNumXMMRegs = 0;
1434 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001435 // For X86-64, if there are vararg parameters that are passed via
1436 // registers, then we must store them to their spots on the stack so they
1437 // may be loaded by deferencing the result of va_next.
1438 VarArgsGPOffset = NumIntRegs * 8;
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001439 VarArgsFPOffset = TotalNumIntRegs * 8 + NumXMMRegs * 16;
1440 RegSaveFrameIndex = MFI->CreateStackObject(TotalNumIntRegs * 8 +
1441 TotalNumXMMRegs * 16, 16);
1442
Gordon Henriksen18ace102008-01-05 16:56:59 +00001443 // Store the integer parameter registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00001444 SmallVector<SDValue, 8> MemOps;
1445 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00001446 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001447 DAG.getIntPtrConstant(VarArgsGPOffset));
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001448 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001449 unsigned VReg = AddLiveIn(MF, GPR64ArgRegs[NumIntRegs],
1450 X86::GR64RegisterClass);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001451 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::i64);
Dan Gohman8181bd12008-07-27 21:46:04 +00001452 SDValue Store =
Dale Johannesence0805b2009-02-03 19:33:06 +00001453 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001454 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001455 MemOps.push_back(Store);
Dale Johannesence0805b2009-02-03 19:33:06 +00001456 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001457 DAG.getIntPtrConstant(8));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001458 }
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001459
Gordon Henriksen18ace102008-01-05 16:56:59 +00001460 // Now store the XMM (fp + vector) parameter registers.
Dale Johannesence0805b2009-02-03 19:33:06 +00001461 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001462 DAG.getIntPtrConstant(VarArgsFPOffset));
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001463 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001464 unsigned VReg = AddLiveIn(MF, XMMArgRegs[NumXMMRegs],
1465 X86::VR128RegisterClass);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001466 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::v4f32);
Dan Gohman8181bd12008-07-27 21:46:04 +00001467 SDValue Store =
Dale Johannesence0805b2009-02-03 19:33:06 +00001468 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001469 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001470 MemOps.push_back(Store);
Dale Johannesence0805b2009-02-03 19:33:06 +00001471 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001472 DAG.getIntPtrConstant(16));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001473 }
1474 if (!MemOps.empty())
Dale Johannesence0805b2009-02-03 19:33:06 +00001475 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Gordon Henriksen18ace102008-01-05 16:56:59 +00001476 &MemOps[0], MemOps.size());
1477 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001478 }
Scott Michel91099d62009-02-17 22:15:04 +00001479
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001480 ArgValues.push_back(Root);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001481
Gordon Henriksen18ace102008-01-05 16:56:59 +00001482 // Some CCs need callee pop.
Dan Gohman705e3f72008-09-13 01:54:27 +00001483 if (IsCalleePop(isVarArg, CC)) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001484 BytesToPopOnReturn = StackSize; // Callee pops everything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001485 BytesCallerReserves = 0;
1486 } else {
1487 BytesToPopOnReturn = 0; // Callee pops nothing.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001488 // If this is an sret function, the return should pop the hidden pointer.
Evan Chenga9d15b92008-09-10 18:25:29 +00001489 if (!Is64Bit && CC != CallingConv::Fast && ArgsAreStructReturn(Op))
Scott Michel91099d62009-02-17 22:15:04 +00001490 BytesToPopOnReturn = 4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001491 BytesCallerReserves = StackSize;
1492 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001493
Gordon Henriksen18ace102008-01-05 16:56:59 +00001494 if (!Is64Bit) {
1495 RegSaveFrameIndex = 0xAAAAAAA; // RegSaveFrameIndex is X86-64 only.
1496 if (CC == CallingConv::X86_FastCall)
1497 VarArgsFrameIndex = 0xAAAAAAA; // fastcc functions can't have varargs.
1498 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001499
Anton Korobeynikove844e472007-08-15 17:12:32 +00001500 FuncInfo->setBytesToPopOnReturn(BytesToPopOnReturn);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001501
1502 // Return the new list of results.
Dale Johannesence0805b2009-02-03 19:33:06 +00001503 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
Duncan Sands42d7bb82008-12-01 11:41:29 +00001504 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001505}
1506
Dan Gohman8181bd12008-07-27 21:46:04 +00001507SDValue
Dan Gohman705e3f72008-09-13 01:54:27 +00001508X86TargetLowering::LowerMemOpCallTo(CallSDNode *TheCall, SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00001509 const SDValue &StackPtr,
Evan Chengbc077bf2008-01-10 00:09:10 +00001510 const CCValAssign &VA,
Dan Gohman8181bd12008-07-27 21:46:04 +00001511 SDValue Chain,
Dan Gohman705e3f72008-09-13 01:54:27 +00001512 SDValue Arg, ISD::ArgFlagsTy Flags) {
Dale Johannesence0805b2009-02-03 19:33:06 +00001513 DebugLoc dl = TheCall->getDebugLoc();
Dan Gohman1190f3a2008-02-07 16:28:05 +00001514 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman8181bd12008-07-27 21:46:04 +00001515 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesence0805b2009-02-03 19:33:06 +00001516 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Duncan Sandsc93fae32008-03-21 09:14:45 +00001517 if (Flags.isByVal()) {
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001518 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Evan Chengbc077bf2008-01-10 00:09:10 +00001519 }
Dale Johannesence0805b2009-02-03 19:33:06 +00001520 return DAG.getStore(Chain, dl, Arg, PtrOff,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001521 PseudoSourceValue::getStack(), LocMemOffset);
Evan Chengbc077bf2008-01-10 00:09:10 +00001522}
1523
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001524/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001525/// optimization is performed and it is required.
Scott Michel91099d62009-02-17 22:15:04 +00001526SDValue
1527X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00001528 SDValue &OutRetAddr,
Scott Michel91099d62009-02-17 22:15:04 +00001529 SDValue Chain,
1530 bool IsTailCall,
1531 bool Is64Bit,
Dale Johannesence0805b2009-02-03 19:33:06 +00001532 int FPDiff,
1533 DebugLoc dl) {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001534 if (!IsTailCall || FPDiff==0) return Chain;
1535
1536 // Adjust the Return address stack slot.
Duncan Sands92c43912008-06-06 12:08:01 +00001537 MVT VT = getPointerTy();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001538 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001539
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001540 // Load the "old" Return address.
Dale Johannesence0805b2009-02-03 19:33:06 +00001541 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, NULL, 0);
Gabor Greif1c80d112008-08-28 21:40:38 +00001542 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001543}
1544
1545/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1546/// optimization is performed and it is required (FPDiff!=0).
Scott Michel91099d62009-02-17 22:15:04 +00001547static SDValue
1548EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman8181bd12008-07-27 21:46:04 +00001549 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesence0805b2009-02-03 19:33:06 +00001550 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001551 // Store the return address to the appropriate stack slot.
1552 if (!FPDiff) return Chain;
1553 // Calculate the new stack slot for the return address.
1554 int SlotSize = Is64Bit ? 8 : 4;
Scott Michel91099d62009-02-17 22:15:04 +00001555 int NewReturnAddrFI =
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001556 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize);
Duncan Sands92c43912008-06-06 12:08:01 +00001557 MVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman8181bd12008-07-27 21:46:04 +00001558 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michel91099d62009-02-17 22:15:04 +00001559 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001560 PseudoSourceValue::getFixedStack(NewReturnAddrFI), 0);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001561 return Chain;
1562}
1563
Dan Gohman8181bd12008-07-27 21:46:04 +00001564SDValue X86TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001565 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman705e3f72008-09-13 01:54:27 +00001566 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
1567 SDValue Chain = TheCall->getChain();
1568 unsigned CC = TheCall->getCallingConv();
1569 bool isVarArg = TheCall->isVarArg();
1570 bool IsTailCall = TheCall->isTailCall() &&
1571 CC == CallingConv::Fast && PerformTailCallOpt;
1572 SDValue Callee = TheCall->getCallee();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001573 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman705e3f72008-09-13 01:54:27 +00001574 bool IsStructRet = CallIsStructReturn(TheCall);
Dale Johannesence0805b2009-02-03 19:33:06 +00001575 DebugLoc dl = TheCall->getDebugLoc();
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001576
1577 assert(!(isVarArg && CC == CallingConv::Fast) &&
1578 "Var args not supported with calling convention fastcc");
1579
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001580 // Analyze operands of the call, assigning locations to each operand.
1581 SmallVector<CCValAssign, 16> ArgLocs;
1582 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman705e3f72008-09-13 01:54:27 +00001583 CCInfo.AnalyzeCallOperands(TheCall, CCAssignFnForNode(CC));
Scott Michel91099d62009-02-17 22:15:04 +00001584
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001585 // Get a count of how many bytes are to be pushed on the stack.
1586 unsigned NumBytes = CCInfo.getNextStackOffset();
Arnold Schwaighofere91fdbf2008-09-11 20:28:43 +00001587 if (PerformTailCallOpt && CC == CallingConv::Fast)
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001588 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001589
Gordon Henriksen18ace102008-01-05 16:56:59 +00001590 int FPDiff = 0;
1591 if (IsTailCall) {
1592 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michel91099d62009-02-17 22:15:04 +00001593 unsigned NumBytesCallerPushed =
Gordon Henriksen18ace102008-01-05 16:56:59 +00001594 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1595 FPDiff = NumBytesCallerPushed - NumBytes;
1596
1597 // Set the delta of movement of the returnaddr stackslot.
1598 // But only set if delta is greater than previous delta.
1599 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1600 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1601 }
1602
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001603 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001604
Dan Gohman8181bd12008-07-27 21:46:04 +00001605 SDValue RetAddrFrIdx;
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001606 // Load return adress for tail calls.
1607 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, IsTailCall, Is64Bit,
Dale Johannesence0805b2009-02-03 19:33:06 +00001608 FPDiff, dl);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001609
Dan Gohman8181bd12008-07-27 21:46:04 +00001610 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1611 SmallVector<SDValue, 8> MemOpChains;
1612 SDValue StackPtr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001613
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001614 // Walk the register/memloc assignments, inserting copies/loads. In the case
1615 // of tail call optimization arguments are handle later.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001616 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1617 CCValAssign &VA = ArgLocs[i];
Dan Gohman705e3f72008-09-13 01:54:27 +00001618 SDValue Arg = TheCall->getArg(i);
1619 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
1620 bool isByVal = Flags.isByVal();
Scott Michel91099d62009-02-17 22:15:04 +00001621
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001622 // Promote the value if needed.
1623 switch (VA.getLocInfo()) {
1624 default: assert(0 && "Unknown loc info!");
1625 case CCValAssign::Full: break;
1626 case CCValAssign::SExt:
Dale Johannesence0805b2009-02-03 19:33:06 +00001627 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001628 break;
1629 case CCValAssign::ZExt:
Dale Johannesence0805b2009-02-03 19:33:06 +00001630 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001631 break;
1632 case CCValAssign::AExt:
Dale Johannesence0805b2009-02-03 19:33:06 +00001633 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001634 break;
1635 }
Scott Michel91099d62009-02-17 22:15:04 +00001636
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001637 if (VA.isRegLoc()) {
Evan Cheng2aea0b42008-04-25 19:11:04 +00001638 if (Is64Bit) {
Duncan Sands92c43912008-06-06 12:08:01 +00001639 MVT RegVT = VA.getLocVT();
1640 if (RegVT.isVector() && RegVT.getSizeInBits() == 64)
Evan Cheng2aea0b42008-04-25 19:11:04 +00001641 switch (VA.getLocReg()) {
1642 default:
1643 break;
1644 case X86::RDI: case X86::RSI: case X86::RDX: case X86::RCX:
1645 case X86::R8: {
1646 // Special case: passing MMX values in GPR registers.
Dale Johannesence0805b2009-02-03 19:33:06 +00001647 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
Evan Cheng2aea0b42008-04-25 19:11:04 +00001648 break;
1649 }
1650 case X86::XMM0: case X86::XMM1: case X86::XMM2: case X86::XMM3:
1651 case X86::XMM4: case X86::XMM5: case X86::XMM6: case X86::XMM7: {
1652 // Special case: passing MMX values in XMM registers.
Dale Johannesence0805b2009-02-03 19:33:06 +00001653 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1654 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1655 Arg = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2i64,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00001656 DAG.getUNDEF(MVT::v2i64), Arg,
Dale Johannesence0805b2009-02-03 19:33:06 +00001657 getMOVLMask(2, DAG, dl));
Evan Cheng2aea0b42008-04-25 19:11:04 +00001658 break;
1659 }
1660 }
1661 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001662 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1663 } else {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001664 if (!IsTailCall || (IsTailCall && isByVal)) {
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001665 assert(VA.isMemLoc());
Gabor Greif1c80d112008-08-28 21:40:38 +00001666 if (StackPtr.getNode() == 0)
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001667 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
Scott Michel91099d62009-02-17 22:15:04 +00001668
Dan Gohman705e3f72008-09-13 01:54:27 +00001669 MemOpChains.push_back(LowerMemOpCallTo(TheCall, DAG, StackPtr, VA,
1670 Chain, Arg, Flags));
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001671 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001672 }
1673 }
Scott Michel91099d62009-02-17 22:15:04 +00001674
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001675 if (!MemOpChains.empty())
Dale Johannesence0805b2009-02-03 19:33:06 +00001676 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001677 &MemOpChains[0], MemOpChains.size());
1678
1679 // Build a sequence of copy-to-reg nodes chained together with token chain
1680 // and flag operands which copy the outgoing args into registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00001681 SDValue InFlag;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001682 // Tail call byval lowering might overwrite argument registers so in case of
1683 // tail call optimization the copies to registers are lowered later.
1684 if (!IsTailCall)
1685 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00001686 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001687 RegsToPass[i].second, InFlag);
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001688 InFlag = Chain.getValue(1);
1689 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001690
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001691 // ELF / PIC requires GOT in the EBX register before function calls via PLT
Scott Michel91099d62009-02-17 22:15:04 +00001692 // GOT pointer.
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001693 if (CallRequiresGOTPtrInReg(Is64Bit, IsTailCall)) {
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001694 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
Scott Michel91099d62009-02-17 22:15:04 +00001695 DAG.getNode(X86ISD::GlobalBaseReg,
1696 DebugLoc::getUnknownLoc(),
Dale Johannesen24dd9a52009-02-07 00:55:49 +00001697 getPointerTy()),
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001698 InFlag);
1699 InFlag = Chain.getValue(1);
1700 }
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001701 // If we are tail calling and generating PIC/GOT style code load the address
1702 // of the callee into ecx. The value in ecx is used as target of the tail
1703 // jump. This is done to circumvent the ebx/callee-saved problem for tail
1704 // calls on PIC/GOT architectures. Normally we would just put the address of
1705 // GOT into ebx and then call target@PLT. But for tail callss ebx would be
1706 // restored (since ebx is callee saved) before jumping to the target@PLT.
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001707 if (CallRequiresFnAddressInReg(Is64Bit, IsTailCall)) {
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001708 // Note: The actual moving to ecx is done further down.
1709 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
Evan Cheng7f250d62008-09-24 00:05:32 +00001710 if (G && !G->getGlobal()->hasHiddenVisibility() &&
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001711 !G->getGlobal()->hasProtectedVisibility())
1712 Callee = LowerGlobalAddress(Callee, DAG);
Bill Wendlingfef06052008-09-16 21:48:12 +00001713 else if (isa<ExternalSymbolSDNode>(Callee))
1714 Callee = LowerExternalSymbol(Callee,DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001715 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001716
Gordon Henriksen18ace102008-01-05 16:56:59 +00001717 if (Is64Bit && isVarArg) {
1718 // From AMD64 ABI document:
1719 // For calls that may call functions that use varargs or stdargs
1720 // (prototype-less calls or calls to functions containing ellipsis (...) in
1721 // the declaration) %al is used as hidden argument to specify the number
1722 // of SSE registers used. The contents of %al do not need to match exactly
1723 // the number of registers, but must be an ubound on the number of SSE
1724 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001725
1726 // FIXME: Verify this on Win64
Gordon Henriksen18ace102008-01-05 16:56:59 +00001727 // Count the number of XMM registers allocated.
1728 static const unsigned XMMArgRegs[] = {
1729 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1730 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1731 };
1732 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michel91099d62009-02-17 22:15:04 +00001733 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Edwin Törökaf8e1332009-02-01 18:15:56 +00001734 && "SSE registers cannot be used when SSE is disabled");
Scott Michel91099d62009-02-17 22:15:04 +00001735
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001736 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Gordon Henriksen18ace102008-01-05 16:56:59 +00001737 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
1738 InFlag = Chain.getValue(1);
1739 }
1740
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001741
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001742 // For tail calls lower the arguments to the 'real' stack slot.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001743 if (IsTailCall) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001744 SmallVector<SDValue, 8> MemOpChains2;
1745 SDValue FIN;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001746 int FI = 0;
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001747 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman8181bd12008-07-27 21:46:04 +00001748 InFlag = SDValue();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001749 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1750 CCValAssign &VA = ArgLocs[i];
1751 if (!VA.isRegLoc()) {
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001752 assert(VA.isMemLoc());
Dan Gohman705e3f72008-09-13 01:54:27 +00001753 SDValue Arg = TheCall->getArg(i);
1754 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001755 // Create frame index.
1756 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands92c43912008-06-06 12:08:01 +00001757 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001758 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001759 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001760
Duncan Sandsc93fae32008-03-21 09:14:45 +00001761 if (Flags.isByVal()) {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001762 // Copy relative to framepointer.
Dan Gohman8181bd12008-07-27 21:46:04 +00001763 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greif1c80d112008-08-28 21:40:38 +00001764 if (StackPtr.getNode() == 0)
Scott Michel91099d62009-02-17 22:15:04 +00001765 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001766 getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00001767 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001768
1769 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN, Chain,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001770 Flags, DAG, dl));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001771 } else {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001772 // Store relative to framepointer.
Dan Gohman12a9c082008-02-06 22:27:42 +00001773 MemOpChains2.push_back(
Dale Johannesence0805b2009-02-03 19:33:06 +00001774 DAG.getStore(Chain, dl, Arg, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001775 PseudoSourceValue::getFixedStack(FI), 0));
Scott Michel91099d62009-02-17 22:15:04 +00001776 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001777 }
1778 }
1779
1780 if (!MemOpChains2.empty())
Dale Johannesence0805b2009-02-03 19:33:06 +00001781 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighoferdfb21302008-01-11 14:34:56 +00001782 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001783
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001784 // Copy arguments to their registers.
1785 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00001786 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001787 RegsToPass[i].second, InFlag);
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001788 InFlag = Chain.getValue(1);
1789 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001790 InFlag =SDValue();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001791
Gordon Henriksen18ace102008-01-05 16:56:59 +00001792 // Store the return address to the appropriate stack slot.
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001793 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesence0805b2009-02-03 19:33:06 +00001794 FPDiff, dl);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001795 }
1796
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001797 // If the callee is a GlobalAddress node (quite common, every direct call is)
1798 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
1799 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1800 // We should use extra load for direct calls to dllimported functions in
1801 // non-JIT mode.
Evan Cheng1f282202008-07-16 01:34:02 +00001802 if (!Subtarget->GVRequiresExtraLoad(G->getGlobal(),
1803 getTargetMachine(), true))
Dan Gohman36322c72008-10-18 02:06:02 +00001804 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy(),
1805 G->getOffset());
Bill Wendlingfef06052008-09-16 21:48:12 +00001806 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1807 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001808 } else if (IsTailCall) {
Arnold Schwaighofer4da27f62008-09-22 14:50:07 +00001809 unsigned Opc = Is64Bit ? X86::R9 : X86::EAX;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001810
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001811 Chain = DAG.getCopyToReg(Chain, dl,
Scott Michel91099d62009-02-17 22:15:04 +00001812 DAG.getRegister(Opc, getPointerTy()),
Gordon Henriksen18ace102008-01-05 16:56:59 +00001813 Callee,InFlag);
1814 Callee = DAG.getRegister(Opc, getPointerTy());
1815 // Add register as live out.
1816 DAG.getMachineFunction().getRegInfo().addLiveOut(Opc);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001817 }
Scott Michel91099d62009-02-17 22:15:04 +00001818
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001819 // Returns a chain & a flag for retval copy to use.
1820 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00001821 SmallVector<SDValue, 8> Ops;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001822
1823 if (IsTailCall) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00001824 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1825 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001826 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00001827
Gordon Henriksen18ace102008-01-05 16:56:59 +00001828 // Returns a chain & a flag for retval copy to use.
1829 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1830 Ops.clear();
1831 }
Scott Michel91099d62009-02-17 22:15:04 +00001832
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001833 Ops.push_back(Chain);
1834 Ops.push_back(Callee);
1835
Gordon Henriksen18ace102008-01-05 16:56:59 +00001836 if (IsTailCall)
1837 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001838
Gordon Henriksen18ace102008-01-05 16:56:59 +00001839 // Add argument registers to the end of the list so that they are known live
1840 // into the call.
Evan Chenge14fc242008-01-07 23:08:23 +00001841 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1842 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1843 RegsToPass[i].second.getValueType()));
Scott Michel91099d62009-02-17 22:15:04 +00001844
Evan Cheng8ba45e62008-03-18 23:36:35 +00001845 // Add an implicit use GOT pointer in EBX.
1846 if (!IsTailCall && !Is64Bit &&
1847 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1848 Subtarget->isPICStyleGOT())
1849 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
1850
1851 // Add an implicit use of AL for x86 vararg functions.
1852 if (Is64Bit && isVarArg)
1853 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
1854
Gabor Greif1c80d112008-08-28 21:40:38 +00001855 if (InFlag.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001856 Ops.push_back(InFlag);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001857
Gordon Henriksen18ace102008-01-05 16:56:59 +00001858 if (IsTailCall) {
Scott Michel91099d62009-02-17 22:15:04 +00001859 assert(InFlag.getNode() &&
Gordon Henriksen18ace102008-01-05 16:56:59 +00001860 "Flag must be set. Depend on flag being set in LowerRET");
Dale Johannesence0805b2009-02-03 19:33:06 +00001861 Chain = DAG.getNode(X86ISD::TAILCALL, dl,
Dan Gohman705e3f72008-09-13 01:54:27 +00001862 TheCall->getVTList(), &Ops[0], Ops.size());
Scott Michel91099d62009-02-17 22:15:04 +00001863
Gabor Greif1c80d112008-08-28 21:40:38 +00001864 return SDValue(Chain.getNode(), Op.getResNo());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001865 }
1866
Dale Johannesence0805b2009-02-03 19:33:06 +00001867 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001868 InFlag = Chain.getValue(1);
1869
1870 // Create the CALLSEQ_END node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001871 unsigned NumBytesForCalleeToPush;
Dan Gohman705e3f72008-09-13 01:54:27 +00001872 if (IsCalleePop(isVarArg, CC))
Gordon Henriksen18ace102008-01-05 16:56:59 +00001873 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Evan Chenga9d15b92008-09-10 18:25:29 +00001874 else if (!Is64Bit && CC != CallingConv::Fast && IsStructRet)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001875 // If this is is a call to a struct-return function, the callee
1876 // pops the hidden struct pointer, so we have to push it back.
1877 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001878 NumBytesForCalleeToPush = 4;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001879 else
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001880 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michel91099d62009-02-17 22:15:04 +00001881
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001882 // Returns a flag for retval copy to use.
Bill Wendling22f8deb2007-11-13 00:44:25 +00001883 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001884 DAG.getIntPtrConstant(NumBytes, true),
1885 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
1886 true),
Bill Wendling22f8deb2007-11-13 00:44:25 +00001887 InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001888 InFlag = Chain.getValue(1);
1889
1890 // Handle result values, copying them out of physregs into vregs that we
1891 // return.
Dan Gohman705e3f72008-09-13 01:54:27 +00001892 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG),
Gabor Greif825aa892008-08-28 23:19:51 +00001893 Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001894}
1895
1896
1897//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001898// Fast Calling Convention (tail call) implementation
1899//===----------------------------------------------------------------------===//
1900
1901// Like std call, callee cleans arguments, convention except that ECX is
1902// reserved for storing the tail called function address. Only 2 registers are
1903// free for argument passing (inreg). Tail call optimization is performed
1904// provided:
1905// * tailcallopt is enabled
1906// * caller/callee are fastcc
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001907// On X86_64 architecture with GOT-style position independent code only local
1908// (within module) calls are supported at the moment.
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00001909// To keep the stack aligned according to platform abi the function
1910// GetAlignedArgumentStackSize ensures that argument delta is always multiples
1911// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001912// If a tail called function callee has more arguments than the caller the
1913// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00001914// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001915// original REtADDR, but before the saved framepointer or the spilled registers
1916// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
1917// stack layout:
1918// arg1
1919// arg2
1920// RETADDR
Scott Michel91099d62009-02-17 22:15:04 +00001921// [ new RETADDR
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001922// move area ]
1923// (possible EBP)
1924// ESI
1925// EDI
1926// local1 ..
1927
1928/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
1929/// for a 16 byte align requirement.
Scott Michel91099d62009-02-17 22:15:04 +00001930unsigned X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001931 SelectionDAG& DAG) {
Evan Chengded8f902008-09-07 09:07:23 +00001932 MachineFunction &MF = DAG.getMachineFunction();
1933 const TargetMachine &TM = MF.getTarget();
1934 const TargetFrameInfo &TFI = *TM.getFrameInfo();
1935 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michel91099d62009-02-17 22:15:04 +00001936 uint64_t AlignMask = StackAlignment - 1;
Evan Chengded8f902008-09-07 09:07:23 +00001937 int64_t Offset = StackSize;
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00001938 uint64_t SlotSize = TD->getPointerSize();
Evan Chengded8f902008-09-07 09:07:23 +00001939 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
1940 // Number smaller than 12 so just add the difference.
1941 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
1942 } else {
1943 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michel91099d62009-02-17 22:15:04 +00001944 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chengded8f902008-09-07 09:07:23 +00001945 (StackAlignment-SlotSize);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001946 }
Evan Chengded8f902008-09-07 09:07:23 +00001947 return Offset;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001948}
1949
1950/// IsEligibleForTailCallElimination - Check to see whether the next instruction
Evan Chenge7a87392007-11-02 01:26:22 +00001951/// following the call is a return. A function is eligible if caller/callee
1952/// calling conventions match, currently only fastcc supports tail calls, and
1953/// the function CALL is immediatly followed by a RET.
Dan Gohman705e3f72008-09-13 01:54:27 +00001954bool X86TargetLowering::IsEligibleForTailCallOptimization(CallSDNode *TheCall,
Dan Gohman8181bd12008-07-27 21:46:04 +00001955 SDValue Ret,
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001956 SelectionDAG& DAG) const {
Evan Chenge7a87392007-11-02 01:26:22 +00001957 if (!PerformTailCallOpt)
1958 return false;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001959
Dan Gohman705e3f72008-09-13 01:54:27 +00001960 if (CheckTailCallReturnConstraints(TheCall, Ret)) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001961 MachineFunction &MF = DAG.getMachineFunction();
1962 unsigned CallerCC = MF.getFunction()->getCallingConv();
Dan Gohman705e3f72008-09-13 01:54:27 +00001963 unsigned CalleeCC= TheCall->getCallingConv();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001964 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
Dan Gohman705e3f72008-09-13 01:54:27 +00001965 SDValue Callee = TheCall->getCallee();
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001966 // On x86/32Bit PIC/GOT tail calls are supported.
Evan Chenge7a87392007-11-02 01:26:22 +00001967 if (getTargetMachine().getRelocationModel() != Reloc::PIC_ ||
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001968 !Subtarget->isPICStyleGOT()|| !Subtarget->is64Bit())
Evan Chenge7a87392007-11-02 01:26:22 +00001969 return true;
1970
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001971 // Can only do local tail calls (in same module, hidden or protected) on
1972 // x86_64 PIC/GOT at the moment.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001973 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1974 return G->getGlobal()->hasHiddenVisibility()
1975 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001976 }
1977 }
Evan Chenge7a87392007-11-02 01:26:22 +00001978
1979 return false;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001980}
1981
Dan Gohmanca4857a2008-09-03 23:12:08 +00001982FastISel *
1983X86TargetLowering::createFastISel(MachineFunction &mf,
Dan Gohman76dd96e2008-09-23 21:53:34 +00001984 MachineModuleInfo *mmo,
Devang Patelfcf1c752009-01-13 00:35:13 +00001985 DwarfWriter *dw,
Dan Gohmanca4857a2008-09-03 23:12:08 +00001986 DenseMap<const Value *, unsigned> &vm,
1987 DenseMap<const BasicBlock *,
Dan Gohmand6211a72008-09-10 20:11:02 +00001988 MachineBasicBlock *> &bm,
Dan Gohman9dd43582008-10-14 23:54:11 +00001989 DenseMap<const AllocaInst *, int> &am
1990#ifndef NDEBUG
1991 , SmallSet<Instruction*, 8> &cil
1992#endif
1993 ) {
Devang Patelfcf1c752009-01-13 00:35:13 +00001994 return X86::createFastISel(mf, mmo, dw, vm, bm, am
Dan Gohman9dd43582008-10-14 23:54:11 +00001995#ifndef NDEBUG
1996 , cil
1997#endif
1998 );
Dan Gohman97805ee2008-08-19 21:32:53 +00001999}
2000
2001
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002002//===----------------------------------------------------------------------===//
2003// Other Lowering Hooks
2004//===----------------------------------------------------------------------===//
2005
2006
Dan Gohman8181bd12008-07-27 21:46:04 +00002007SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
Anton Korobeynikove844e472007-08-15 17:12:32 +00002008 MachineFunction &MF = DAG.getMachineFunction();
2009 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2010 int ReturnAddrIndex = FuncInfo->getRAIndex();
2011
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002012 if (ReturnAddrIndex == 0) {
2013 // Set up a frame object for the return address.
Bill Wendling6ddc87b2009-01-16 19:25:27 +00002014 uint64_t SlotSize = TD->getPointerSize();
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00002015 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize);
Anton Korobeynikove844e472007-08-15 17:12:32 +00002016 FuncInfo->setRAIndex(ReturnAddrIndex);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002017 }
2018
2019 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
2020}
2021
2022
Chris Lattnerebb91142008-12-24 23:53:05 +00002023/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2024/// specific condition code, returning the condition code and the LHS/RHS of the
2025/// comparison to make.
2026static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2027 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002028 if (!isFP) {
2029 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2030 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2031 // X > -1 -> X == 0, jump !sign.
2032 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattnerebb91142008-12-24 23:53:05 +00002033 return X86::COND_NS;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002034 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2035 // X < 0 -> X == 0, jump on sign.
Chris Lattnerebb91142008-12-24 23:53:05 +00002036 return X86::COND_S;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002037 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman37b34262007-09-17 14:49:27 +00002038 // X < 1 -> X <= 0
2039 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattnerebb91142008-12-24 23:53:05 +00002040 return X86::COND_LE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002041 }
2042 }
2043
2044 switch (SetCCOpcode) {
Chris Lattnerb8397512008-12-23 23:42:27 +00002045 default: assert(0 && "Invalid integer condition!");
Chris Lattnerebb91142008-12-24 23:53:05 +00002046 case ISD::SETEQ: return X86::COND_E;
2047 case ISD::SETGT: return X86::COND_G;
2048 case ISD::SETGE: return X86::COND_GE;
2049 case ISD::SETLT: return X86::COND_L;
2050 case ISD::SETLE: return X86::COND_LE;
2051 case ISD::SETNE: return X86::COND_NE;
2052 case ISD::SETULT: return X86::COND_B;
2053 case ISD::SETUGT: return X86::COND_A;
2054 case ISD::SETULE: return X86::COND_BE;
2055 case ISD::SETUGE: return X86::COND_AE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002056 }
Chris Lattnerb8397512008-12-23 23:42:27 +00002057 }
Scott Michel91099d62009-02-17 22:15:04 +00002058
Chris Lattnerb8397512008-12-23 23:42:27 +00002059 // First determine if it is required or is profitable to flip the operands.
Duncan Sandsc2a04622008-10-24 13:03:10 +00002060
Chris Lattnerb8397512008-12-23 23:42:27 +00002061 // If LHS is a foldable load, but RHS is not, flip the condition.
2062 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2063 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2064 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2065 std::swap(LHS, RHS);
Evan Chengfc937c92008-08-28 23:48:31 +00002066 }
2067
Chris Lattnerb8397512008-12-23 23:42:27 +00002068 switch (SetCCOpcode) {
2069 default: break;
2070 case ISD::SETOLT:
2071 case ISD::SETOLE:
2072 case ISD::SETUGT:
2073 case ISD::SETUGE:
2074 std::swap(LHS, RHS);
2075 break;
2076 }
2077
2078 // On a floating point condition, the flags are set as follows:
2079 // ZF PF CF op
2080 // 0 | 0 | 0 | X > Y
2081 // 0 | 0 | 1 | X < Y
2082 // 1 | 0 | 0 | X == Y
2083 // 1 | 1 | 1 | unordered
2084 switch (SetCCOpcode) {
Chris Lattnerebb91142008-12-24 23:53:05 +00002085 default: assert(0 && "Condcode should be pre-legalized away");
Chris Lattnerb8397512008-12-23 23:42:27 +00002086 case ISD::SETUEQ:
Chris Lattnerebb91142008-12-24 23:53:05 +00002087 case ISD::SETEQ: return X86::COND_E;
Chris Lattnerb8397512008-12-23 23:42:27 +00002088 case ISD::SETOLT: // flipped
2089 case ISD::SETOGT:
Chris Lattnerebb91142008-12-24 23:53:05 +00002090 case ISD::SETGT: return X86::COND_A;
Chris Lattnerb8397512008-12-23 23:42:27 +00002091 case ISD::SETOLE: // flipped
2092 case ISD::SETOGE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002093 case ISD::SETGE: return X86::COND_AE;
Chris Lattnerb8397512008-12-23 23:42:27 +00002094 case ISD::SETUGT: // flipped
2095 case ISD::SETULT:
Chris Lattnerebb91142008-12-24 23:53:05 +00002096 case ISD::SETLT: return X86::COND_B;
Chris Lattnerb8397512008-12-23 23:42:27 +00002097 case ISD::SETUGE: // flipped
2098 case ISD::SETULE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002099 case ISD::SETLE: return X86::COND_BE;
Chris Lattnerb8397512008-12-23 23:42:27 +00002100 case ISD::SETONE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002101 case ISD::SETNE: return X86::COND_NE;
2102 case ISD::SETUO: return X86::COND_P;
2103 case ISD::SETO: return X86::COND_NP;
Chris Lattnerb8397512008-12-23 23:42:27 +00002104 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002105}
2106
2107/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2108/// code. Current x86 isa includes the following FP cmov instructions:
2109/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
2110static bool hasFPCMov(unsigned X86CC) {
2111 switch (X86CC) {
2112 default:
2113 return false;
2114 case X86::COND_B:
2115 case X86::COND_BE:
2116 case X86::COND_E:
2117 case X86::COND_P:
2118 case X86::COND_A:
2119 case X86::COND_AE:
2120 case X86::COND_NE:
2121 case X86::COND_NP:
2122 return true;
2123 }
2124}
2125
2126/// isUndefOrInRange - Op is either an undef node or a ConstantSDNode. Return
2127/// true if Op is undef or if its value falls within the specified range (L, H].
Dan Gohman8181bd12008-07-27 21:46:04 +00002128static bool isUndefOrInRange(SDValue Op, unsigned Low, unsigned Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002129 if (Op.getOpcode() == ISD::UNDEF)
2130 return true;
2131
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002132 unsigned Val = cast<ConstantSDNode>(Op)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002133 return (Val >= Low && Val < Hi);
2134}
2135
2136/// isUndefOrEqual - Op is either an undef node or a ConstantSDNode. Return
2137/// true if Op is undef or if its value equal to the specified value.
Dan Gohman8181bd12008-07-27 21:46:04 +00002138static bool isUndefOrEqual(SDValue Op, unsigned Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002139 if (Op.getOpcode() == ISD::UNDEF)
2140 return true;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002141 return cast<ConstantSDNode>(Op)->getZExtValue() == Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002142}
2143
2144/// isPSHUFDMask - Return true if the specified VECTOR_SHUFFLE operand
2145/// specifies a shuffle of elements that is suitable for input to PSHUFD.
2146bool X86::isPSHUFDMask(SDNode *N) {
2147 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2148
Dan Gohman7dc19012007-08-02 21:17:01 +00002149 if (N->getNumOperands() != 2 && N->getNumOperands() != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002150 return false;
2151
2152 // Check if the value doesn't reference the second vector.
2153 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002154 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002155 if (Arg.getOpcode() == ISD::UNDEF) continue;
2156 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002157 if (cast<ConstantSDNode>(Arg)->getZExtValue() >= e)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002158 return false;
2159 }
2160
2161 return true;
2162}
2163
2164/// isPSHUFHWMask - Return true if the specified VECTOR_SHUFFLE operand
2165/// specifies a shuffle of elements that is suitable for input to PSHUFHW.
2166bool X86::isPSHUFHWMask(SDNode *N) {
2167 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2168
2169 if (N->getNumOperands() != 8)
2170 return false;
2171
2172 // Lower quadword copied in order.
2173 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002174 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002175 if (Arg.getOpcode() == ISD::UNDEF) continue;
2176 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002177 if (cast<ConstantSDNode>(Arg)->getZExtValue() != i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002178 return false;
2179 }
2180
2181 // Upper quadword shuffled.
2182 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002183 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002184 if (Arg.getOpcode() == ISD::UNDEF) continue;
2185 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002186 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002187 if (Val < 4 || Val > 7)
2188 return false;
2189 }
2190
2191 return true;
2192}
2193
2194/// isPSHUFLWMask - Return true if the specified VECTOR_SHUFFLE operand
2195/// specifies a shuffle of elements that is suitable for input to PSHUFLW.
2196bool X86::isPSHUFLWMask(SDNode *N) {
2197 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2198
2199 if (N->getNumOperands() != 8)
2200 return false;
2201
2202 // Upper quadword copied in order.
2203 for (unsigned i = 4; i != 8; ++i)
2204 if (!isUndefOrEqual(N->getOperand(i), i))
2205 return false;
2206
2207 // Lower quadword shuffled.
2208 for (unsigned i = 0; i != 4; ++i)
2209 if (!isUndefOrInRange(N->getOperand(i), 0, 4))
2210 return false;
2211
2212 return true;
2213}
2214
2215/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2216/// specifies a shuffle of elements that is suitable for input to SHUFP*.
djgc2517d32009-01-26 04:35:06 +00002217template<class SDOperand>
2218static bool isSHUFPMask(SDOperand *Elems, unsigned NumElems) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002219 if (NumElems != 2 && NumElems != 4) return false;
2220
2221 unsigned Half = NumElems / 2;
2222 for (unsigned i = 0; i < Half; ++i)
2223 if (!isUndefOrInRange(Elems[i], 0, NumElems))
2224 return false;
2225 for (unsigned i = Half; i < NumElems; ++i)
2226 if (!isUndefOrInRange(Elems[i], NumElems, NumElems*2))
2227 return false;
2228
2229 return true;
2230}
2231
2232bool X86::isSHUFPMask(SDNode *N) {
2233 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2234 return ::isSHUFPMask(N->op_begin(), N->getNumOperands());
2235}
2236
2237/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
2238/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2239/// half elements to come from vector 1 (which would equal the dest.) and
2240/// the upper half to come from vector 2.
djgc2517d32009-01-26 04:35:06 +00002241template<class SDOperand>
2242static bool isCommutedSHUFP(SDOperand *Ops, unsigned NumOps) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002243 if (NumOps != 2 && NumOps != 4) return false;
2244
2245 unsigned Half = NumOps / 2;
2246 for (unsigned i = 0; i < Half; ++i)
2247 if (!isUndefOrInRange(Ops[i], NumOps, NumOps*2))
2248 return false;
2249 for (unsigned i = Half; i < NumOps; ++i)
2250 if (!isUndefOrInRange(Ops[i], 0, NumOps))
2251 return false;
2252 return true;
2253}
2254
2255static bool isCommutedSHUFP(SDNode *N) {
2256 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2257 return isCommutedSHUFP(N->op_begin(), N->getNumOperands());
2258}
2259
2260/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2261/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
2262bool X86::isMOVHLPSMask(SDNode *N) {
2263 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2264
2265 if (N->getNumOperands() != 4)
2266 return false;
2267
2268 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
2269 return isUndefOrEqual(N->getOperand(0), 6) &&
2270 isUndefOrEqual(N->getOperand(1), 7) &&
2271 isUndefOrEqual(N->getOperand(2), 2) &&
2272 isUndefOrEqual(N->getOperand(3), 3);
2273}
2274
2275/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2276/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2277/// <2, 3, 2, 3>
2278bool X86::isMOVHLPS_v_undef_Mask(SDNode *N) {
2279 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2280
2281 if (N->getNumOperands() != 4)
2282 return false;
2283
2284 // Expect bit0 == 2, bit1 == 3, bit2 == 2, bit3 == 3
2285 return isUndefOrEqual(N->getOperand(0), 2) &&
2286 isUndefOrEqual(N->getOperand(1), 3) &&
2287 isUndefOrEqual(N->getOperand(2), 2) &&
2288 isUndefOrEqual(N->getOperand(3), 3);
2289}
2290
2291/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
2292/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
2293bool X86::isMOVLPMask(SDNode *N) {
2294 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2295
2296 unsigned NumElems = N->getNumOperands();
2297 if (NumElems != 2 && NumElems != 4)
2298 return false;
2299
2300 for (unsigned i = 0; i < NumElems/2; ++i)
2301 if (!isUndefOrEqual(N->getOperand(i), i + NumElems))
2302 return false;
2303
2304 for (unsigned i = NumElems/2; i < NumElems; ++i)
2305 if (!isUndefOrEqual(N->getOperand(i), i))
2306 return false;
2307
2308 return true;
2309}
2310
2311/// isMOVHPMask - Return true if the specified VECTOR_SHUFFLE operand
2312/// specifies a shuffle of elements that is suitable for input to MOVHP{S|D}
2313/// and MOVLHPS.
2314bool X86::isMOVHPMask(SDNode *N) {
2315 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2316
2317 unsigned NumElems = N->getNumOperands();
2318 if (NumElems != 2 && NumElems != 4)
2319 return false;
2320
2321 for (unsigned i = 0; i < NumElems/2; ++i)
2322 if (!isUndefOrEqual(N->getOperand(i), i))
2323 return false;
2324
2325 for (unsigned i = 0; i < NumElems/2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002326 SDValue Arg = N->getOperand(i + NumElems/2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002327 if (!isUndefOrEqual(Arg, i + NumElems))
2328 return false;
2329 }
2330
2331 return true;
2332}
2333
2334/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
2335/// specifies a shuffle of elements that is suitable for input to UNPCKL.
djgc2517d32009-01-26 04:35:06 +00002336template<class SDOperand>
2337bool static isUNPCKLMask(SDOperand *Elts, unsigned NumElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002338 bool V2IsSplat = false) {
2339 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2340 return false;
2341
2342 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002343 SDValue BitI = Elts[i];
2344 SDValue BitI1 = Elts[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002345 if (!isUndefOrEqual(BitI, j))
2346 return false;
2347 if (V2IsSplat) {
Mon P Wang56d91642009-02-04 01:16:59 +00002348 if (!isUndefOrEqual(BitI1, NumElts))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002349 return false;
2350 } else {
2351 if (!isUndefOrEqual(BitI1, j + NumElts))
2352 return false;
2353 }
2354 }
2355
2356 return true;
2357}
2358
2359bool X86::isUNPCKLMask(SDNode *N, bool V2IsSplat) {
2360 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2361 return ::isUNPCKLMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
2362}
2363
2364/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
2365/// specifies a shuffle of elements that is suitable for input to UNPCKH.
djgc2517d32009-01-26 04:35:06 +00002366template<class SDOperand>
2367bool static isUNPCKHMask(SDOperand *Elts, unsigned NumElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002368 bool V2IsSplat = false) {
2369 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2370 return false;
2371
2372 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002373 SDValue BitI = Elts[i];
2374 SDValue BitI1 = Elts[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002375 if (!isUndefOrEqual(BitI, j + NumElts/2))
2376 return false;
2377 if (V2IsSplat) {
2378 if (isUndefOrEqual(BitI1, NumElts))
2379 return false;
2380 } else {
2381 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
2382 return false;
2383 }
2384 }
2385
2386 return true;
2387}
2388
2389bool X86::isUNPCKHMask(SDNode *N, bool V2IsSplat) {
2390 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2391 return ::isUNPCKHMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
2392}
2393
2394/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
2395/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
2396/// <0, 0, 1, 1>
2397bool X86::isUNPCKL_v_undef_Mask(SDNode *N) {
2398 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2399
2400 unsigned NumElems = N->getNumOperands();
2401 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2402 return false;
2403
2404 for (unsigned i = 0, j = 0; i != NumElems; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002405 SDValue BitI = N->getOperand(i);
2406 SDValue BitI1 = N->getOperand(i+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002407
2408 if (!isUndefOrEqual(BitI, j))
2409 return false;
2410 if (!isUndefOrEqual(BitI1, j))
2411 return false;
2412 }
2413
2414 return true;
2415}
2416
2417/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
2418/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
2419/// <2, 2, 3, 3>
2420bool X86::isUNPCKH_v_undef_Mask(SDNode *N) {
2421 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2422
2423 unsigned NumElems = N->getNumOperands();
2424 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2425 return false;
2426
2427 for (unsigned i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002428 SDValue BitI = N->getOperand(i);
2429 SDValue BitI1 = N->getOperand(i + 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002430
2431 if (!isUndefOrEqual(BitI, j))
2432 return false;
2433 if (!isUndefOrEqual(BitI1, j))
2434 return false;
2435 }
2436
2437 return true;
2438}
2439
2440/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
2441/// specifies a shuffle of elements that is suitable for input to MOVSS,
2442/// MOVSD, and MOVD, i.e. setting the lowest element.
djgc2517d32009-01-26 04:35:06 +00002443template<class SDOperand>
2444static bool isMOVLMask(SDOperand *Elts, unsigned NumElts) {
Evan Cheng62cdc642007-12-06 22:14:22 +00002445 if (NumElts != 2 && NumElts != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002446 return false;
2447
2448 if (!isUndefOrEqual(Elts[0], NumElts))
2449 return false;
2450
2451 for (unsigned i = 1; i < NumElts; ++i) {
2452 if (!isUndefOrEqual(Elts[i], i))
2453 return false;
2454 }
2455
2456 return true;
2457}
2458
2459bool X86::isMOVLMask(SDNode *N) {
2460 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2461 return ::isMOVLMask(N->op_begin(), N->getNumOperands());
2462}
2463
2464/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
2465/// of what x86 movss want. X86 movs requires the lowest element to be lowest
2466/// element of vector 2 and the other elements to come from vector 1 in order.
djgc2517d32009-01-26 04:35:06 +00002467template<class SDOperand>
2468static bool isCommutedMOVL(SDOperand *Ops, unsigned NumOps,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002469 bool V2IsSplat = false,
2470 bool V2IsUndef = false) {
2471 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
2472 return false;
2473
2474 if (!isUndefOrEqual(Ops[0], 0))
2475 return false;
2476
2477 for (unsigned i = 1; i < NumOps; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002478 SDValue Arg = Ops[i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002479 if (!(isUndefOrEqual(Arg, i+NumOps) ||
2480 (V2IsUndef && isUndefOrInRange(Arg, NumOps, NumOps*2)) ||
2481 (V2IsSplat && isUndefOrEqual(Arg, NumOps))))
2482 return false;
2483 }
2484
2485 return true;
2486}
2487
2488static bool isCommutedMOVL(SDNode *N, bool V2IsSplat = false,
2489 bool V2IsUndef = false) {
2490 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2491 return isCommutedMOVL(N->op_begin(), N->getNumOperands(),
2492 V2IsSplat, V2IsUndef);
2493}
2494
2495/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2496/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
2497bool X86::isMOVSHDUPMask(SDNode *N) {
2498 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2499
2500 if (N->getNumOperands() != 4)
2501 return false;
2502
2503 // Expect 1, 1, 3, 3
2504 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002505 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002506 if (Arg.getOpcode() == ISD::UNDEF) continue;
2507 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002508 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002509 if (Val != 1) return false;
2510 }
2511
2512 bool HasHi = false;
2513 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002514 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002515 if (Arg.getOpcode() == ISD::UNDEF) continue;
2516 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002517 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002518 if (Val != 3) return false;
2519 HasHi = true;
2520 }
2521
2522 // Don't use movshdup if it can be done with a shufps.
2523 return HasHi;
2524}
2525
2526/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2527/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
2528bool X86::isMOVSLDUPMask(SDNode *N) {
2529 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2530
2531 if (N->getNumOperands() != 4)
2532 return false;
2533
2534 // Expect 0, 0, 2, 2
2535 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002536 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002537 if (Arg.getOpcode() == ISD::UNDEF) continue;
2538 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002539 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002540 if (Val != 0) return false;
2541 }
2542
2543 bool HasHi = false;
2544 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002545 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002546 if (Arg.getOpcode() == ISD::UNDEF) continue;
2547 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002548 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002549 if (Val != 2) return false;
2550 HasHi = true;
2551 }
2552
2553 // Don't use movshdup if it can be done with a shufps.
2554 return HasHi;
2555}
2556
2557/// isIdentityMask - Return true if the specified VECTOR_SHUFFLE operand
2558/// specifies a identity operation on the LHS or RHS.
2559static bool isIdentityMask(SDNode *N, bool RHS = false) {
2560 unsigned NumElems = N->getNumOperands();
2561 for (unsigned i = 0; i < NumElems; ++i)
2562 if (!isUndefOrEqual(N->getOperand(i), i + (RHS ? NumElems : 0)))
2563 return false;
2564 return true;
2565}
2566
2567/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2568/// a splat of a single element.
2569static bool isSplatMask(SDNode *N) {
2570 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2571
2572 // This is a splat operation if each element of the permute is the same, and
2573 // if the value doesn't reference the second vector.
2574 unsigned NumElems = N->getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002575 SDValue ElementBase;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002576 unsigned i = 0;
2577 for (; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002578 SDValue Elt = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002579 if (isa<ConstantSDNode>(Elt)) {
2580 ElementBase = Elt;
2581 break;
2582 }
2583 }
2584
Gabor Greif1c80d112008-08-28 21:40:38 +00002585 if (!ElementBase.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002586 return false;
2587
2588 for (; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002589 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002590 if (Arg.getOpcode() == ISD::UNDEF) continue;
2591 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2592 if (Arg != ElementBase) return false;
2593 }
2594
2595 // Make sure it is a splat of the first vector operand.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002596 return cast<ConstantSDNode>(ElementBase)->getZExtValue() < NumElems;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002597}
2598
Mon P Wang532c9632008-12-23 04:03:27 +00002599/// getSplatMaskEltNo - Given a splat mask, return the index to the element
2600/// we want to splat.
2601static SDValue getSplatMaskEltNo(SDNode *N) {
2602 assert(isSplatMask(N) && "Not a splat mask");
2603 unsigned NumElems = N->getNumOperands();
2604 SDValue ElementBase;
2605 unsigned i = 0;
2606 for (; i != NumElems; ++i) {
2607 SDValue Elt = N->getOperand(i);
2608 if (isa<ConstantSDNode>(Elt))
2609 return Elt;
2610 }
2611 assert(0 && " No splat value found!");
2612 return SDValue();
2613}
2614
2615
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002616/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2617/// a splat of a single element and it's a 2 or 4 element mask.
2618bool X86::isSplatMask(SDNode *N) {
2619 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2620
2621 // We can only splat 64-bit, and 32-bit quantities with a single instruction.
2622 if (N->getNumOperands() != 4 && N->getNumOperands() != 2)
2623 return false;
2624 return ::isSplatMask(N);
2625}
2626
2627/// isSplatLoMask - Return true if the specified VECTOR_SHUFFLE operand
2628/// specifies a splat of zero element.
2629bool X86::isSplatLoMask(SDNode *N) {
2630 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2631
2632 for (unsigned i = 0, e = N->getNumOperands(); i < e; ++i)
2633 if (!isUndefOrEqual(N->getOperand(i), 0))
2634 return false;
2635 return true;
2636}
2637
Evan Chenga2497eb2008-09-25 20:50:48 +00002638/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2639/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
2640bool X86::isMOVDDUPMask(SDNode *N) {
2641 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2642
2643 unsigned e = N->getNumOperands() / 2;
2644 for (unsigned i = 0; i < e; ++i)
2645 if (!isUndefOrEqual(N->getOperand(i), i))
2646 return false;
2647 for (unsigned i = 0; i < e; ++i)
2648 if (!isUndefOrEqual(N->getOperand(e+i), i))
2649 return false;
2650 return true;
2651}
2652
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002653/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
2654/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUF* and SHUFP*
2655/// instructions.
2656unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
2657 unsigned NumOperands = N->getNumOperands();
2658 unsigned Shift = (NumOperands == 4) ? 2 : 1;
2659 unsigned Mask = 0;
2660 for (unsigned i = 0; i < NumOperands; ++i) {
2661 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002662 SDValue Arg = N->getOperand(NumOperands-i-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002663 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002664 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002665 if (Val >= NumOperands) Val -= NumOperands;
2666 Mask |= Val;
2667 if (i != NumOperands - 1)
2668 Mask <<= Shift;
2669 }
2670
2671 return Mask;
2672}
2673
2674/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
2675/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFHW
2676/// instructions.
2677unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
2678 unsigned Mask = 0;
2679 // 8 nodes, but we only care about the last 4.
2680 for (unsigned i = 7; i >= 4; --i) {
2681 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002682 SDValue Arg = N->getOperand(i);
Mon P Wang56d91642009-02-04 01:16:59 +00002683 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002684 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Mon P Wang56d91642009-02-04 01:16:59 +00002685 Mask |= (Val - 4);
2686 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002687 if (i != 4)
2688 Mask <<= 2;
2689 }
2690
2691 return Mask;
2692}
2693
2694/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
2695/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFLW
2696/// instructions.
2697unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
2698 unsigned Mask = 0;
2699 // 8 nodes, but we only care about the first 4.
2700 for (int i = 3; i >= 0; --i) {
2701 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002702 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002703 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002704 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002705 Mask |= Val;
2706 if (i != 0)
2707 Mask <<= 2;
2708 }
2709
2710 return Mask;
2711}
2712
2713/// isPSHUFHW_PSHUFLWMask - true if the specified VECTOR_SHUFFLE operand
2714/// specifies a 8 element shuffle that can be broken into a pair of
2715/// PSHUFHW and PSHUFLW.
2716static bool isPSHUFHW_PSHUFLWMask(SDNode *N) {
2717 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2718
2719 if (N->getNumOperands() != 8)
2720 return false;
2721
2722 // Lower quadword shuffled.
2723 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002724 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002725 if (Arg.getOpcode() == ISD::UNDEF) continue;
2726 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002727 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00002728 if (Val >= 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002729 return false;
2730 }
2731
2732 // Upper quadword shuffled.
2733 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002734 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002735 if (Arg.getOpcode() == ISD::UNDEF) continue;
2736 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002737 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002738 if (Val < 4 || Val > 7)
2739 return false;
2740 }
2741
2742 return true;
2743}
2744
Chris Lattnere6aa3862007-11-25 00:24:49 +00002745/// CommuteVectorShuffle - Swap vector_shuffle operands as well as
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002746/// values in ther permute mask.
Dan Gohman8181bd12008-07-27 21:46:04 +00002747static SDValue CommuteVectorShuffle(SDValue Op, SDValue &V1,
2748 SDValue &V2, SDValue &Mask,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002749 SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00002750 MVT VT = Op.getValueType();
2751 MVT MaskVT = Mask.getValueType();
2752 MVT EltVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002753 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002754 SmallVector<SDValue, 8> MaskVec;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00002755 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002756
2757 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002758 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002759 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00002760 MaskVec.push_back(DAG.getUNDEF(EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002761 continue;
2762 }
2763 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002764 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002765 if (Val < NumElems)
2766 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2767 else
2768 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2769 }
2770
2771 std::swap(V1, V2);
Dale Johannesence0805b2009-02-03 19:33:06 +00002772 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], NumElems);
2773 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002774}
2775
Evan Chenga6769df2007-12-07 21:30:01 +00002776/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
2777/// the two vector operands have swapped position.
Evan Chengfca29242007-12-07 08:07:39 +00002778static
Dale Johannesence0805b2009-02-03 19:33:06 +00002779SDValue CommuteVectorShuffleMask(SDValue Mask, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002780 MVT MaskVT = Mask.getValueType();
2781 MVT EltVT = MaskVT.getVectorElementType();
Evan Chengfca29242007-12-07 08:07:39 +00002782 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002783 SmallVector<SDValue, 8> MaskVec;
Evan Chengfca29242007-12-07 08:07:39 +00002784 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002785 SDValue Arg = Mask.getOperand(i);
Evan Chengfca29242007-12-07 08:07:39 +00002786 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00002787 MaskVec.push_back(DAG.getUNDEF(EltVT));
Evan Chengfca29242007-12-07 08:07:39 +00002788 continue;
2789 }
2790 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002791 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengfca29242007-12-07 08:07:39 +00002792 if (Val < NumElems)
2793 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2794 else
2795 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2796 }
Dale Johannesence0805b2009-02-03 19:33:06 +00002797 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], NumElems);
Evan Chengfca29242007-12-07 08:07:39 +00002798}
2799
2800
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002801/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
2802/// match movhlps. The lower half elements should come from upper half of
2803/// V1 (and in order), and the upper half elements should come from the upper
2804/// half of V2 (and in order).
2805static bool ShouldXformToMOVHLPS(SDNode *Mask) {
2806 unsigned NumElems = Mask->getNumOperands();
2807 if (NumElems != 4)
2808 return false;
2809 for (unsigned i = 0, e = 2; i != e; ++i)
2810 if (!isUndefOrEqual(Mask->getOperand(i), i+2))
2811 return false;
2812 for (unsigned i = 2; i != 4; ++i)
2813 if (!isUndefOrEqual(Mask->getOperand(i), i+4))
2814 return false;
2815 return true;
2816}
2817
2818/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng40ee6e52008-05-08 00:57:18 +00002819/// is promoted to a vector. It also returns the LoadSDNode by reference if
2820/// required.
2821static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Chenga2497eb2008-09-25 20:50:48 +00002822 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
2823 return false;
2824 N = N->getOperand(0).getNode();
2825 if (!ISD::isNON_EXTLoad(N))
2826 return false;
2827 if (LD)
2828 *LD = cast<LoadSDNode>(N);
2829 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002830}
2831
2832/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
2833/// match movlp{s|d}. The lower half elements should come from lower half of
2834/// V1 (and in order), and the upper half elements should come from the upper
2835/// half of V2 (and in order). And since V1 will become the source of the
2836/// MOVLP, it must be either a vector load or a scalar load to vector.
2837static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2, SDNode *Mask) {
2838 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
2839 return false;
2840 // Is V2 is a vector load, don't do this transformation. We will try to use
2841 // load folding shufps op.
2842 if (ISD::isNON_EXTLoad(V2))
2843 return false;
2844
2845 unsigned NumElems = Mask->getNumOperands();
2846 if (NumElems != 2 && NumElems != 4)
2847 return false;
2848 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
2849 if (!isUndefOrEqual(Mask->getOperand(i), i))
2850 return false;
2851 for (unsigned i = NumElems/2; i != NumElems; ++i)
2852 if (!isUndefOrEqual(Mask->getOperand(i), i+NumElems))
2853 return false;
2854 return true;
2855}
2856
2857/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
2858/// all the same.
2859static bool isSplatVector(SDNode *N) {
2860 if (N->getOpcode() != ISD::BUILD_VECTOR)
2861 return false;
2862
Dan Gohman8181bd12008-07-27 21:46:04 +00002863 SDValue SplatValue = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002864 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
2865 if (N->getOperand(i) != SplatValue)
2866 return false;
2867 return true;
2868}
2869
2870/// isUndefShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2871/// to an undef.
2872static bool isUndefShuffle(SDNode *N) {
2873 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2874 return false;
2875
Dan Gohman8181bd12008-07-27 21:46:04 +00002876 SDValue V1 = N->getOperand(0);
2877 SDValue V2 = N->getOperand(1);
2878 SDValue Mask = N->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002879 unsigned NumElems = Mask.getNumOperands();
2880 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002881 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002882 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002883 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002884 if (Val < NumElems && V1.getOpcode() != ISD::UNDEF)
2885 return false;
2886 else if (Val >= NumElems && V2.getOpcode() != ISD::UNDEF)
2887 return false;
2888 }
2889 }
2890 return true;
2891}
2892
2893/// isZeroNode - Returns true if Elt is a constant zero or a floating point
2894/// constant +0.0.
Dan Gohman8181bd12008-07-27 21:46:04 +00002895static inline bool isZeroNode(SDValue Elt) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002896 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002897 cast<ConstantSDNode>(Elt)->getZExtValue() == 0) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002898 (isa<ConstantFPSDNode>(Elt) &&
Dale Johannesendf8a8312007-08-31 04:03:46 +00002899 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002900}
2901
2902/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2903/// to an zero vector.
2904static bool isZeroShuffle(SDNode *N) {
2905 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2906 return false;
2907
Dan Gohman8181bd12008-07-27 21:46:04 +00002908 SDValue V1 = N->getOperand(0);
2909 SDValue V2 = N->getOperand(1);
2910 SDValue Mask = N->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002911 unsigned NumElems = Mask.getNumOperands();
2912 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002913 SDValue Arg = Mask.getOperand(i);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002914 if (Arg.getOpcode() == ISD::UNDEF)
2915 continue;
Scott Michel91099d62009-02-17 22:15:04 +00002916
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002917 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Chris Lattnere6aa3862007-11-25 00:24:49 +00002918 if (Idx < NumElems) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002919 unsigned Opc = V1.getNode()->getOpcode();
2920 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002921 continue;
2922 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greif1c80d112008-08-28 21:40:38 +00002923 !isZeroNode(V1.getNode()->getOperand(Idx)))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002924 return false;
2925 } else if (Idx >= NumElems) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002926 unsigned Opc = V2.getNode()->getOpcode();
2927 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002928 continue;
2929 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greif1c80d112008-08-28 21:40:38 +00002930 !isZeroNode(V2.getNode()->getOperand(Idx - NumElems)))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002931 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002932 }
2933 }
2934 return true;
2935}
2936
2937/// getZeroVector - Returns a vector of specified type with all zero elements.
2938///
Dale Johannesence0805b2009-02-03 19:33:06 +00002939static SDValue getZeroVector(MVT VT, bool HasSSE2, SelectionDAG &DAG,
2940 DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002941 assert(VT.isVector() && "Expected a vector type");
Scott Michel91099d62009-02-17 22:15:04 +00002942
Chris Lattnere6aa3862007-11-25 00:24:49 +00002943 // Always build zero vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2944 // type. This ensures they get CSE'd.
Dan Gohman8181bd12008-07-27 21:46:04 +00002945 SDValue Vec;
Duncan Sands92c43912008-06-06 12:08:01 +00002946 if (VT.getSizeInBits() == 64) { // MMX
Dan Gohman8181bd12008-07-27 21:46:04 +00002947 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Dale Johannesence0805b2009-02-03 19:33:06 +00002948 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002949 } else if (HasSSE2) { // SSE2
Dan Gohman8181bd12008-07-27 21:46:04 +00002950 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Dale Johannesence0805b2009-02-03 19:33:06 +00002951 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002952 } else { // SSE1
Dan Gohman8181bd12008-07-27 21:46:04 +00002953 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Dale Johannesence0805b2009-02-03 19:33:06 +00002954 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002955 }
Dale Johannesence0805b2009-02-03 19:33:06 +00002956 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002957}
2958
Chris Lattnere6aa3862007-11-25 00:24:49 +00002959/// getOnesVector - Returns a vector of specified type with all bits set.
2960///
Dale Johannesence0805b2009-02-03 19:33:06 +00002961static SDValue getOnesVector(MVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002962 assert(VT.isVector() && "Expected a vector type");
Scott Michel91099d62009-02-17 22:15:04 +00002963
Chris Lattnere6aa3862007-11-25 00:24:49 +00002964 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2965 // type. This ensures they get CSE'd.
Dan Gohman8181bd12008-07-27 21:46:04 +00002966 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
2967 SDValue Vec;
Duncan Sands92c43912008-06-06 12:08:01 +00002968 if (VT.getSizeInBits() == 64) // MMX
Dale Johannesence0805b2009-02-03 19:33:06 +00002969 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002970 else // SSE
Dale Johannesence0805b2009-02-03 19:33:06 +00002971 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
2972 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002973}
2974
2975
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002976/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
2977/// that point to V2 points to its first element.
Dan Gohman8181bd12008-07-27 21:46:04 +00002978static SDValue NormalizeMask(SDValue Mask, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002979 assert(Mask.getOpcode() == ISD::BUILD_VECTOR);
2980
2981 bool Changed = false;
Dan Gohman8181bd12008-07-27 21:46:04 +00002982 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002983 unsigned NumElems = Mask.getNumOperands();
2984 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002985 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002986 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002987 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002988 if (Val > NumElems) {
2989 Arg = DAG.getConstant(NumElems, Arg.getValueType());
2990 Changed = true;
2991 }
2992 }
2993 MaskVec.push_back(Arg);
2994 }
2995
2996 if (Changed)
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00002997 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getDebugLoc(),
Dale Johannesence0805b2009-02-03 19:33:06 +00002998 Mask.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002999 &MaskVec[0], MaskVec.size());
3000 return Mask;
3001}
3002
3003/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3004/// operation of specified width.
Dale Johannesence0805b2009-02-03 19:33:06 +00003005static SDValue getMOVLMask(unsigned NumElems, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003006 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3007 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003008
Dan Gohman8181bd12008-07-27 21:46:04 +00003009 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003010 MaskVec.push_back(DAG.getConstant(NumElems, BaseVT));
3011 for (unsigned i = 1; i != NumElems; ++i)
3012 MaskVec.push_back(DAG.getConstant(i, BaseVT));
Scott Michel91099d62009-02-17 22:15:04 +00003013 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dale Johannesence0805b2009-02-03 19:33:06 +00003014 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003015}
3016
3017/// getUnpacklMask - Returns a vector_shuffle mask for an unpackl operation
3018/// of specified width.
Scott Michel91099d62009-02-17 22:15:04 +00003019static SDValue getUnpacklMask(unsigned NumElems, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003020 DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003021 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3022 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003023 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003024 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
3025 MaskVec.push_back(DAG.getConstant(i, BaseVT));
3026 MaskVec.push_back(DAG.getConstant(i + NumElems, BaseVT));
3027 }
Scott Michel91099d62009-02-17 22:15:04 +00003028 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dale Johannesence0805b2009-02-03 19:33:06 +00003029 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003030}
3031
3032/// getUnpackhMask - Returns a vector_shuffle mask for an unpackh operation
3033/// of specified width.
Dale Johannesence0805b2009-02-03 19:33:06 +00003034static SDValue getUnpackhMask(unsigned NumElems, SelectionDAG &DAG,
3035 DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003036 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3037 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003038 unsigned Half = NumElems/2;
Dan Gohman8181bd12008-07-27 21:46:04 +00003039 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003040 for (unsigned i = 0; i != Half; ++i) {
3041 MaskVec.push_back(DAG.getConstant(i + Half, BaseVT));
3042 MaskVec.push_back(DAG.getConstant(i + NumElems + Half, BaseVT));
3043 }
Scott Michel91099d62009-02-17 22:15:04 +00003044 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dale Johannesence0805b2009-02-03 19:33:06 +00003045 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003046}
3047
Chris Lattner2d91b962008-03-09 01:05:04 +00003048/// getSwapEltZeroMask - Returns a vector_shuffle mask for a shuffle that swaps
3049/// element #0 of a vector with the specified index, leaving the rest of the
3050/// elements in place.
Dan Gohman8181bd12008-07-27 21:46:04 +00003051static SDValue getSwapEltZeroMask(unsigned NumElems, unsigned DestElt,
Dale Johannesence0805b2009-02-03 19:33:06 +00003052 SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003053 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3054 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003055 SmallVector<SDValue, 8> MaskVec;
Chris Lattner2d91b962008-03-09 01:05:04 +00003056 // Element #0 of the result gets the elt we are replacing.
3057 MaskVec.push_back(DAG.getConstant(DestElt, BaseVT));
3058 for (unsigned i = 1; i != NumElems; ++i)
3059 MaskVec.push_back(DAG.getConstant(i == DestElt ? 0 : i, BaseVT));
Scott Michel91099d62009-02-17 22:15:04 +00003060 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dale Johannesence0805b2009-02-03 19:33:06 +00003061 &MaskVec[0], MaskVec.size());
Chris Lattner2d91b962008-03-09 01:05:04 +00003062}
3063
Evan Chengbf8b2c52008-04-05 00:30:36 +00003064/// PromoteSplat - Promote a splat of v4f32, v8i16 or v16i8 to v4i32.
Dan Gohman8181bd12008-07-27 21:46:04 +00003065static SDValue PromoteSplat(SDValue Op, SelectionDAG &DAG, bool HasSSE2) {
Duncan Sands92c43912008-06-06 12:08:01 +00003066 MVT PVT = HasSSE2 ? MVT::v4i32 : MVT::v4f32;
3067 MVT VT = Op.getValueType();
Evan Chengbf8b2c52008-04-05 00:30:36 +00003068 if (PVT == VT)
3069 return Op;
Dan Gohman8181bd12008-07-27 21:46:04 +00003070 SDValue V1 = Op.getOperand(0);
3071 SDValue Mask = Op.getOperand(2);
Mon P Wang532c9632008-12-23 04:03:27 +00003072 unsigned MaskNumElems = Mask.getNumOperands();
3073 unsigned NumElems = MaskNumElems;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003074 DebugLoc dl = Op.getDebugLoc();
Evan Chengbf8b2c52008-04-05 00:30:36 +00003075 // Special handling of v4f32 -> v4i32.
3076 if (VT != MVT::v4f32) {
Mon P Wang532c9632008-12-23 04:03:27 +00003077 // Find which element we want to splat.
3078 SDNode* EltNoNode = getSplatMaskEltNo(Mask.getNode()).getNode();
3079 unsigned EltNo = cast<ConstantSDNode>(EltNoNode)->getZExtValue();
3080 // unpack elements to the correct location
Evan Chengbf8b2c52008-04-05 00:30:36 +00003081 while (NumElems > 4) {
Mon P Wang532c9632008-12-23 04:03:27 +00003082 if (EltNo < NumElems/2) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003083 Mask = getUnpacklMask(MaskNumElems, DAG, dl);
Mon P Wang532c9632008-12-23 04:03:27 +00003084 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00003085 Mask = getUnpackhMask(MaskNumElems, DAG, dl);
Mon P Wang532c9632008-12-23 04:03:27 +00003086 EltNo -= NumElems/2;
3087 }
Dale Johannesence0805b2009-02-03 19:33:06 +00003088 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V1, Mask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00003089 NumElems >>= 1;
3090 }
Mon P Wang532c9632008-12-23 04:03:27 +00003091 SDValue Cst = DAG.getConstant(EltNo, MVT::i32);
Dale Johannesence0805b2009-02-03 19:33:06 +00003092 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003093 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003094
Dale Johannesence0805b2009-02-03 19:33:06 +00003095 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
3096 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, PVT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003097 DAG.getUNDEF(PVT), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00003098 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Shuffle);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003099}
3100
Evan Chenga2497eb2008-09-25 20:50:48 +00003101/// isVectorLoad - Returns true if the node is a vector load, a scalar
3102/// load that's promoted to vector, or a load bitcasted.
3103static bool isVectorLoad(SDValue Op) {
3104 assert(Op.getValueType().isVector() && "Expected a vector type");
3105 if (Op.getOpcode() == ISD::SCALAR_TO_VECTOR ||
3106 Op.getOpcode() == ISD::BIT_CONVERT) {
3107 return isa<LoadSDNode>(Op.getOperand(0));
3108 }
3109 return isa<LoadSDNode>(Op);
3110}
3111
3112
3113/// CanonicalizeMovddup - Cannonicalize movddup shuffle to v2f64.
3114///
3115static SDValue CanonicalizeMovddup(SDValue Op, SDValue V1, SDValue Mask,
3116 SelectionDAG &DAG, bool HasSSE3) {
3117 // If we have sse3 and shuffle has more than one use or input is a load, then
3118 // use movddup. Otherwise, use movlhps.
3119 bool UseMovddup = HasSSE3 && (!Op.hasOneUse() || isVectorLoad(V1));
3120 MVT PVT = UseMovddup ? MVT::v2f64 : MVT::v4f32;
3121 MVT VT = Op.getValueType();
3122 if (VT == PVT)
3123 return Op;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003124 DebugLoc dl = Op.getDebugLoc();
Evan Chenga2497eb2008-09-25 20:50:48 +00003125 unsigned NumElems = PVT.getVectorNumElements();
3126 if (NumElems == 2) {
3127 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Dale Johannesence0805b2009-02-03 19:33:06 +00003128 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Chenga2497eb2008-09-25 20:50:48 +00003129 } else {
3130 assert(NumElems == 4);
3131 SDValue Cst0 = DAG.getTargetConstant(0, MVT::i32);
3132 SDValue Cst1 = DAG.getTargetConstant(1, MVT::i32);
Scott Michel91099d62009-02-17 22:15:04 +00003133 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Dale Johannesence0805b2009-02-03 19:33:06 +00003134 Cst0, Cst1, Cst0, Cst1);
Evan Chenga2497eb2008-09-25 20:50:48 +00003135 }
3136
Dale Johannesence0805b2009-02-03 19:33:06 +00003137 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
3138 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, PVT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003139 DAG.getUNDEF(PVT), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00003140 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Shuffle);
Evan Chenga2497eb2008-09-25 20:50:48 +00003141}
3142
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003143/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattnere6aa3862007-11-25 00:24:49 +00003144/// vector of zero or undef vector. This produces a shuffle where the low
3145/// element of V2 is swizzled into the zero/undef vector, landing at element
3146/// 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 +00003147static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Cheng8c590372008-05-15 08:39:06 +00003148 bool isZero, bool HasSSE2,
3149 SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003150 DebugLoc dl = V2.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00003151 MVT VT = V2.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003152 SDValue V1 = isZero
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003153 ? getZeroVector(VT, HasSSE2, DAG, dl) : DAG.getUNDEF(VT);
Duncan Sands92c43912008-06-06 12:08:01 +00003154 unsigned NumElems = V2.getValueType().getVectorNumElements();
3155 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3156 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003157 SmallVector<SDValue, 16> MaskVec;
Chris Lattnere6aa3862007-11-25 00:24:49 +00003158 for (unsigned i = 0; i != NumElems; ++i)
3159 if (i == Idx) // If this is the insertion idx, put the low elt of V2 here.
3160 MaskVec.push_back(DAG.getConstant(NumElems, EVT));
3161 else
3162 MaskVec.push_back(DAG.getConstant(i, EVT));
Dale Johannesence0805b2009-02-03 19:33:06 +00003163 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003164 &MaskVec[0], MaskVec.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00003165 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003166}
3167
Evan Chengdea99362008-05-29 08:22:04 +00003168/// getNumOfConsecutiveZeros - Return the number of elements in a result of
3169/// a shuffle that is zero.
3170static
Dan Gohman8181bd12008-07-27 21:46:04 +00003171unsigned getNumOfConsecutiveZeros(SDValue Op, SDValue Mask,
Evan Chengdea99362008-05-29 08:22:04 +00003172 unsigned NumElems, bool Low,
3173 SelectionDAG &DAG) {
3174 unsigned NumZeros = 0;
3175 for (unsigned i = 0; i < NumElems; ++i) {
Evan Cheng57db53b2008-06-25 20:52:59 +00003176 unsigned Index = Low ? i : NumElems-i-1;
Dan Gohman8181bd12008-07-27 21:46:04 +00003177 SDValue Idx = Mask.getOperand(Index);
Evan Chengdea99362008-05-29 08:22:04 +00003178 if (Idx.getOpcode() == ISD::UNDEF) {
3179 ++NumZeros;
3180 continue;
3181 }
Gabor Greif1c80d112008-08-28 21:40:38 +00003182 SDValue Elt = DAG.getShuffleScalarElt(Op.getNode(), Index);
3183 if (Elt.getNode() && isZeroNode(Elt))
Evan Chengdea99362008-05-29 08:22:04 +00003184 ++NumZeros;
3185 else
3186 break;
3187 }
3188 return NumZeros;
3189}
3190
3191/// isVectorShift - Returns true if the shuffle can be implemented as a
3192/// logical left or right shift of a vector.
Dan Gohman8181bd12008-07-27 21:46:04 +00003193static bool isVectorShift(SDValue Op, SDValue Mask, SelectionDAG &DAG,
3194 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Evan Chengdea99362008-05-29 08:22:04 +00003195 unsigned NumElems = Mask.getNumOperands();
3196
3197 isLeft = true;
3198 unsigned NumZeros= getNumOfConsecutiveZeros(Op, Mask, NumElems, true, DAG);
3199 if (!NumZeros) {
3200 isLeft = false;
3201 NumZeros = getNumOfConsecutiveZeros(Op, Mask, NumElems, false, DAG);
3202 if (!NumZeros)
3203 return false;
3204 }
3205
3206 bool SeenV1 = false;
3207 bool SeenV2 = false;
3208 for (unsigned i = NumZeros; i < NumElems; ++i) {
3209 unsigned Val = isLeft ? (i - NumZeros) : i;
Dan Gohman8181bd12008-07-27 21:46:04 +00003210 SDValue Idx = Mask.getOperand(isLeft ? i : (i - NumZeros));
Evan Chengdea99362008-05-29 08:22:04 +00003211 if (Idx.getOpcode() == ISD::UNDEF)
3212 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003213 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Chengdea99362008-05-29 08:22:04 +00003214 if (Index < NumElems)
3215 SeenV1 = true;
3216 else {
3217 Index -= NumElems;
3218 SeenV2 = true;
3219 }
3220 if (Index != Val)
3221 return false;
3222 }
3223 if (SeenV1 && SeenV2)
3224 return false;
3225
3226 ShVal = SeenV1 ? Op.getOperand(0) : Op.getOperand(1);
3227 ShAmt = NumZeros;
3228 return true;
3229}
3230
3231
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003232/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3233///
Dan Gohman8181bd12008-07-27 21:46:04 +00003234static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003235 unsigned NumNonZero, unsigned NumZero,
3236 SelectionDAG &DAG, TargetLowering &TLI) {
3237 if (NumNonZero > 8)
Dan Gohman8181bd12008-07-27 21:46:04 +00003238 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003239
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003240 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00003241 SDValue V(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003242 bool First = true;
3243 for (unsigned i = 0; i < 16; ++i) {
3244 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3245 if (ThisIsNonZero && First) {
3246 if (NumZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003247 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003248 else
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003249 V = DAG.getUNDEF(MVT::v8i16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003250 First = false;
3251 }
3252
3253 if ((i & 1) != 0) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003254 SDValue ThisElt(0, 0), LastElt(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003255 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3256 if (LastIsNonZero) {
Scott Michel91099d62009-02-17 22:15:04 +00003257 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00003258 MVT::i16, Op.getOperand(i-1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003259 }
3260 if (ThisIsNonZero) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003261 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3262 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003263 ThisElt, DAG.getConstant(8, MVT::i8));
3264 if (LastIsNonZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003265 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003266 } else
3267 ThisElt = LastElt;
3268
Gabor Greif1c80d112008-08-28 21:40:38 +00003269 if (ThisElt.getNode())
Dale Johannesence0805b2009-02-03 19:33:06 +00003270 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner5872a362008-01-17 07:00:52 +00003271 DAG.getIntPtrConstant(i/2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003272 }
3273 }
3274
Dale Johannesence0805b2009-02-03 19:33:06 +00003275 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003276}
3277
3278/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
3279///
Dan Gohman8181bd12008-07-27 21:46:04 +00003280static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003281 unsigned NumNonZero, unsigned NumZero,
3282 SelectionDAG &DAG, TargetLowering &TLI) {
3283 if (NumNonZero > 4)
Dan Gohman8181bd12008-07-27 21:46:04 +00003284 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003285
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003286 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00003287 SDValue V(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003288 bool First = true;
3289 for (unsigned i = 0; i < 8; ++i) {
3290 bool isNonZero = (NonZeros & (1 << i)) != 0;
3291 if (isNonZero) {
3292 if (First) {
3293 if (NumZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003294 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003295 else
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003296 V = DAG.getUNDEF(MVT::v8i16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003297 First = false;
3298 }
Scott Michel91099d62009-02-17 22:15:04 +00003299 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00003300 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner5872a362008-01-17 07:00:52 +00003301 DAG.getIntPtrConstant(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003302 }
3303 }
3304
3305 return V;
3306}
3307
Evan Chengdea99362008-05-29 08:22:04 +00003308/// getVShift - Return a vector logical shift node.
3309///
Dan Gohman8181bd12008-07-27 21:46:04 +00003310static SDValue getVShift(bool isLeft, MVT VT, SDValue SrcOp,
Evan Chengdea99362008-05-29 08:22:04 +00003311 unsigned NumBits, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003312 const TargetLowering &TLI, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003313 bool isMMX = VT.getSizeInBits() == 64;
3314 MVT ShVT = isMMX ? MVT::v1i64 : MVT::v2i64;
Evan Chengdea99362008-05-29 08:22:04 +00003315 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Dale Johannesence0805b2009-02-03 19:33:06 +00003316 SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp);
3317 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3318 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif825aa892008-08-28 23:19:51 +00003319 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengdea99362008-05-29 08:22:04 +00003320}
3321
Dan Gohman8181bd12008-07-27 21:46:04 +00003322SDValue
3323X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003324 DebugLoc dl = Op.getDebugLoc();
Chris Lattnere6aa3862007-11-25 00:24:49 +00003325 // All zero's are handled with pxor, all one's are handled with pcmpeqd.
Gabor Greif825aa892008-08-28 23:19:51 +00003326 if (ISD::isBuildVectorAllZeros(Op.getNode())
3327 || ISD::isBuildVectorAllOnes(Op.getNode())) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003328 // Canonicalize this to either <4 x i32> or <2 x i32> (SSE vs MMX) to
3329 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
3330 // eliminated on x86-32 hosts.
3331 if (Op.getValueType() == MVT::v4i32 || Op.getValueType() == MVT::v2i32)
3332 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003333
Gabor Greif1c80d112008-08-28 21:40:38 +00003334 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00003335 return getOnesVector(Op.getValueType(), DAG, dl);
3336 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattnere6aa3862007-11-25 00:24:49 +00003337 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003338
Duncan Sands92c43912008-06-06 12:08:01 +00003339 MVT VT = Op.getValueType();
3340 MVT EVT = VT.getVectorElementType();
3341 unsigned EVTBits = EVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003342
3343 unsigned NumElems = Op.getNumOperands();
3344 unsigned NumZero = 0;
3345 unsigned NumNonZero = 0;
3346 unsigned NonZeros = 0;
Chris Lattner92bdcb52008-03-08 22:48:29 +00003347 bool IsAllConstants = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00003348 SmallSet<SDValue, 8> Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003349 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003350 SDValue Elt = Op.getOperand(i);
Evan Chengc1073492007-12-12 06:45:40 +00003351 if (Elt.getOpcode() == ISD::UNDEF)
3352 continue;
3353 Values.insert(Elt);
3354 if (Elt.getOpcode() != ISD::Constant &&
3355 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattner92bdcb52008-03-08 22:48:29 +00003356 IsAllConstants = false;
Evan Chengc1073492007-12-12 06:45:40 +00003357 if (isZeroNode(Elt))
3358 NumZero++;
3359 else {
3360 NonZeros |= (1 << i);
3361 NumNonZero++;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003362 }
3363 }
3364
3365 if (NumNonZero == 0) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003366 // All undef vector. Return an UNDEF. All zero vectors were handled above.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003367 return DAG.getUNDEF(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003368 }
3369
Chris Lattner66a4dda2008-03-09 05:42:06 +00003370 // Special case for single non-zero, non-undef, element.
Evan Chengc1073492007-12-12 06:45:40 +00003371 if (NumNonZero == 1 && NumElems <= 4) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003372 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman8181bd12008-07-27 21:46:04 +00003373 SDValue Item = Op.getOperand(Idx);
Scott Michel91099d62009-02-17 22:15:04 +00003374
Chris Lattner2d91b962008-03-09 01:05:04 +00003375 // If this is an insertion of an i64 value on x86-32, and if the top bits of
3376 // the value are obviously zero, truncate the value to i32 and do the
3377 // insertion that way. Only do this if the value is non-constant or if the
3378 // value is a constant being inserted into element 0. It is cheaper to do
3379 // a constant pool load than it is to do a movd + shuffle.
3380 if (EVT == MVT::i64 && !Subtarget->is64Bit() &&
3381 (!IsAllConstants || Idx == 0)) {
3382 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
3383 // Handle MMX and SSE both.
Duncan Sands92c43912008-06-06 12:08:01 +00003384 MVT VecVT = VT == MVT::v2i64 ? MVT::v4i32 : MVT::v2i32;
3385 unsigned VecElts = VT == MVT::v2i64 ? 4 : 2;
Scott Michel91099d62009-02-17 22:15:04 +00003386
Chris Lattner2d91b962008-03-09 01:05:04 +00003387 // Truncate the value (which may itself be a constant) to i32, and
3388 // convert it to a vector with movd (S2V+shuffle to zero extend).
Dale Johannesence0805b2009-02-03 19:33:06 +00003389 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
3390 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Cheng8c590372008-05-15 08:39:06 +00003391 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3392 Subtarget->hasSSE2(), DAG);
Scott Michel91099d62009-02-17 22:15:04 +00003393
Chris Lattner2d91b962008-03-09 01:05:04 +00003394 // Now we have our 32-bit value zero extended in the low element of
3395 // a vector. If Idx != 0, swizzle it into place.
3396 if (Idx != 0) {
Scott Michel91099d62009-02-17 22:15:04 +00003397 SDValue Ops[] = {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003398 Item, DAG.getUNDEF(Item.getValueType()),
Dale Johannesence0805b2009-02-03 19:33:06 +00003399 getSwapEltZeroMask(VecElts, Idx, DAG, dl)
Chris Lattner2d91b962008-03-09 01:05:04 +00003400 };
Dale Johannesence0805b2009-02-03 19:33:06 +00003401 Item = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VecVT, Ops, 3);
Chris Lattner2d91b962008-03-09 01:05:04 +00003402 }
Dale Johannesence0805b2009-02-03 19:33:06 +00003403 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item);
Chris Lattner2d91b962008-03-09 01:05:04 +00003404 }
3405 }
Scott Michel91099d62009-02-17 22:15:04 +00003406
Chris Lattnerac914892008-03-08 22:59:52 +00003407 // If we have a constant or non-constant insertion into the low element of
3408 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
3409 // the rest of the elements. This will be matched as movd/movq/movss/movsd
3410 // depending on what the source datatype is. Because we can only get here
3411 // when NumElems <= 4, this only needs to handle i32/f32/i64/f64.
3412 if (Idx == 0 &&
3413 // Don't do this for i64 values on x86-32.
3414 (EVT != MVT::i64 || Subtarget->is64Bit())) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003415 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003416 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Evan Cheng8c590372008-05-15 08:39:06 +00003417 return getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3418 Subtarget->hasSSE2(), DAG);
Chris Lattner92bdcb52008-03-08 22:48:29 +00003419 }
Evan Chengdea99362008-05-29 08:22:04 +00003420
3421 // Is it a vector logical left shift?
3422 if (NumElems == 2 && Idx == 1 &&
3423 isZeroNode(Op.getOperand(0)) && !isZeroNode(Op.getOperand(1))) {
Duncan Sands92c43912008-06-06 12:08:01 +00003424 unsigned NumBits = VT.getSizeInBits();
Evan Chengdea99362008-05-29 08:22:04 +00003425 return getVShift(true, VT,
Scott Michel91099d62009-02-17 22:15:04 +00003426 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00003427 VT, Op.getOperand(1)),
Dale Johannesence0805b2009-02-03 19:33:06 +00003428 NumBits/2, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00003429 }
Scott Michel91099d62009-02-17 22:15:04 +00003430
Chris Lattner92bdcb52008-03-08 22:48:29 +00003431 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman8181bd12008-07-27 21:46:04 +00003432 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003433
Chris Lattnerac914892008-03-08 22:59:52 +00003434 // Otherwise, if this is a vector with i32 or f32 elements, and the element
3435 // is a non-constant being inserted into an element other than the low one,
3436 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
3437 // movd/movss) to move this into the low element, then shuffle it into
3438 // place.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003439 if (EVTBits == 32) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003440 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michel91099d62009-02-17 22:15:04 +00003441
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003442 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Cheng8c590372008-05-15 08:39:06 +00003443 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3444 Subtarget->hasSSE2(), DAG);
Duncan Sands92c43912008-06-06 12:08:01 +00003445 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3446 MVT MaskEVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003447 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003448 for (unsigned i = 0; i < NumElems; i++)
3449 MaskVec.push_back(DAG.getConstant((i == Idx) ? 0 : 1, MaskEVT));
Dale Johannesence0805b2009-02-03 19:33:06 +00003450 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003451 &MaskVec[0], MaskVec.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00003452 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, Item,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003453 DAG.getUNDEF(VT), Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003454 }
3455 }
3456
Chris Lattner66a4dda2008-03-09 05:42:06 +00003457 // Splat is obviously ok. Let legalizer expand it to a shuffle.
3458 if (Values.size() == 1)
Dan Gohman8181bd12008-07-27 21:46:04 +00003459 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00003460
Dan Gohman21463242007-07-24 22:55:08 +00003461 // A vector full of immediates; various special cases are already
3462 // handled, so this is best done with a single constant-pool load.
Chris Lattner92bdcb52008-03-08 22:48:29 +00003463 if (IsAllConstants)
Dan Gohman8181bd12008-07-27 21:46:04 +00003464 return SDValue();
Dan Gohman21463242007-07-24 22:55:08 +00003465
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003466 // Let legalizer expand 2-wide build_vectors.
Evan Cheng40ee6e52008-05-08 00:57:18 +00003467 if (EVTBits == 64) {
3468 if (NumNonZero == 1) {
3469 // One half is zero or undef.
3470 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesence0805b2009-02-03 19:33:06 +00003471 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng40ee6e52008-05-08 00:57:18 +00003472 Op.getOperand(Idx));
Evan Cheng8c590372008-05-15 08:39:06 +00003473 return getShuffleVectorZeroOrUndef(V2, Idx, true,
3474 Subtarget->hasSSE2(), DAG);
Evan Cheng40ee6e52008-05-08 00:57:18 +00003475 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003476 return SDValue();
Evan Cheng40ee6e52008-05-08 00:57:18 +00003477 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003478
3479 // If element VT is < 32 bits, convert it to inserts into a zero vector.
3480 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003481 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003482 *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00003483 if (V.getNode()) return V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003484 }
3485
3486 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003487 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003488 *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00003489 if (V.getNode()) return V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003490 }
3491
3492 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman8181bd12008-07-27 21:46:04 +00003493 SmallVector<SDValue, 8> V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003494 V.resize(NumElems);
3495 if (NumElems == 4 && NumZero > 0) {
3496 for (unsigned i = 0; i < 4; ++i) {
3497 bool isZero = !(NonZeros & (1 << i));
3498 if (isZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003499 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003500 else
Dale Johannesence0805b2009-02-03 19:33:06 +00003501 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003502 }
3503
3504 for (unsigned i = 0; i < 2; ++i) {
3505 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
3506 default: break;
3507 case 0:
3508 V[i] = V[i*2]; // Must be a zero vector.
3509 break;
3510 case 1:
Dale Johannesence0805b2009-02-03 19:33:06 +00003511 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2+1], V[i*2],
3512 getMOVLMask(NumElems, DAG, dl));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003513 break;
3514 case 2:
Dale Johannesence0805b2009-02-03 19:33:06 +00003515 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2], V[i*2+1],
3516 getMOVLMask(NumElems, DAG, dl));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003517 break;
3518 case 3:
Dale Johannesence0805b2009-02-03 19:33:06 +00003519 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2], V[i*2+1],
3520 getUnpacklMask(NumElems, DAG, dl));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003521 break;
3522 }
3523 }
3524
Duncan Sands92c43912008-06-06 12:08:01 +00003525 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3526 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003527 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003528 bool Reverse = (NonZeros & 0x3) == 2;
3529 for (unsigned i = 0; i < 2; ++i)
3530 if (Reverse)
3531 MaskVec.push_back(DAG.getConstant(1-i, EVT));
3532 else
3533 MaskVec.push_back(DAG.getConstant(i, EVT));
3534 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
3535 for (unsigned i = 0; i < 2; ++i)
3536 if (Reverse)
3537 MaskVec.push_back(DAG.getConstant(1-i+NumElems, EVT));
3538 else
3539 MaskVec.push_back(DAG.getConstant(i+NumElems, EVT));
Dale Johannesence0805b2009-02-03 19:33:06 +00003540 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003541 &MaskVec[0], MaskVec.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00003542 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[0], V[1], ShufMask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003543 }
3544
3545 if (Values.size() > 2) {
3546 // Expand into a number of unpckl*.
3547 // e.g. for v4f32
3548 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
3549 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
3550 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Dale Johannesence0805b2009-02-03 19:33:06 +00003551 SDValue UnpckMask = getUnpacklMask(NumElems, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003552 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesence0805b2009-02-03 19:33:06 +00003553 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003554 NumElems >>= 1;
3555 while (NumElems != 0) {
3556 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesence0805b2009-02-03 19:33:06 +00003557 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i], V[i + NumElems],
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003558 UnpckMask);
3559 NumElems >>= 1;
3560 }
3561 return V[0];
3562 }
3563
Dan Gohman8181bd12008-07-27 21:46:04 +00003564 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003565}
3566
Evan Chengfca29242007-12-07 08:07:39 +00003567static
Dan Gohman8181bd12008-07-27 21:46:04 +00003568SDValue LowerVECTOR_SHUFFLEv8i16(SDValue V1, SDValue V2,
Bill Wendling2c7cd592008-08-21 22:35:37 +00003569 SDValue PermMask, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003570 TargetLowering &TLI, DebugLoc dl) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003571 SDValue NewV;
Duncan Sands92c43912008-06-06 12:08:01 +00003572 MVT MaskVT = MVT::getIntVectorWithNumElements(8);
3573 MVT MaskEVT = MaskVT.getVectorElementType();
3574 MVT PtrVT = TLI.getPointerTy();
Gabor Greif1c80d112008-08-28 21:40:38 +00003575 SmallVector<SDValue, 8> MaskElts(PermMask.getNode()->op_begin(),
3576 PermMask.getNode()->op_end());
Evan Cheng75184a92007-12-11 01:46:18 +00003577
3578 // First record which half of which vector the low elements come from.
3579 SmallVector<unsigned, 4> LowQuad(4);
3580 for (unsigned i = 0; i < 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003581 SDValue Elt = MaskElts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003582 if (Elt.getOpcode() == ISD::UNDEF)
3583 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003584 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003585 int QuadIdx = EltIdx / 4;
3586 ++LowQuad[QuadIdx];
3587 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003588
Evan Cheng75184a92007-12-11 01:46:18 +00003589 int BestLowQuad = -1;
3590 unsigned MaxQuad = 1;
3591 for (unsigned i = 0; i < 4; ++i) {
3592 if (LowQuad[i] > MaxQuad) {
3593 BestLowQuad = i;
3594 MaxQuad = LowQuad[i];
3595 }
Evan Chengfca29242007-12-07 08:07:39 +00003596 }
3597
Evan Cheng75184a92007-12-11 01:46:18 +00003598 // Record which half of which vector the high elements come from.
3599 SmallVector<unsigned, 4> HighQuad(4);
3600 for (unsigned i = 4; i < 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003601 SDValue Elt = MaskElts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003602 if (Elt.getOpcode() == ISD::UNDEF)
3603 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003604 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003605 int QuadIdx = EltIdx / 4;
3606 ++HighQuad[QuadIdx];
3607 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003608
Evan Cheng75184a92007-12-11 01:46:18 +00003609 int BestHighQuad = -1;
3610 MaxQuad = 1;
3611 for (unsigned i = 0; i < 4; ++i) {
3612 if (HighQuad[i] > MaxQuad) {
3613 BestHighQuad = i;
3614 MaxQuad = HighQuad[i];
3615 }
3616 }
3617
3618 // If it's possible to sort parts of either half with PSHUF{H|L}W, then do it.
3619 if (BestLowQuad != -1 || BestHighQuad != -1) {
3620 // First sort the 4 chunks in order using shufpd.
Dan Gohman8181bd12008-07-27 21:46:04 +00003621 SmallVector<SDValue, 8> MaskVec;
Bill Wendling2c7cd592008-08-21 22:35:37 +00003622
Evan Cheng75184a92007-12-11 01:46:18 +00003623 if (BestLowQuad != -1)
3624 MaskVec.push_back(DAG.getConstant(BestLowQuad, MVT::i32));
3625 else
3626 MaskVec.push_back(DAG.getConstant(0, MVT::i32));
Bill Wendling2c7cd592008-08-21 22:35:37 +00003627
Evan Cheng75184a92007-12-11 01:46:18 +00003628 if (BestHighQuad != -1)
3629 MaskVec.push_back(DAG.getConstant(BestHighQuad, MVT::i32));
3630 else
3631 MaskVec.push_back(DAG.getConstant(1, MVT::i32));
Bill Wendling2c7cd592008-08-21 22:35:37 +00003632
Dale Johannesence0805b2009-02-03 19:33:06 +00003633 SDValue Mask= DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, &MaskVec[0],2);
3634 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2i64,
3635 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1),
3636 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), Mask);
3637 NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV);
Evan Cheng75184a92007-12-11 01:46:18 +00003638
3639 // Now sort high and low parts separately.
3640 BitVector InOrder(8);
3641 if (BestLowQuad != -1) {
3642 // Sort lower half in order using PSHUFLW.
3643 MaskVec.clear();
3644 bool AnyOutOrder = false;
Bill Wendling2c7cd592008-08-21 22:35:37 +00003645
Evan Cheng75184a92007-12-11 01:46:18 +00003646 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003647 SDValue Elt = MaskElts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003648 if (Elt.getOpcode() == ISD::UNDEF) {
3649 MaskVec.push_back(Elt);
3650 InOrder.set(i);
3651 } else {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003652 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003653 if (EltIdx != i)
3654 AnyOutOrder = true;
Bill Wendling2c7cd592008-08-21 22:35:37 +00003655
Evan Cheng75184a92007-12-11 01:46:18 +00003656 MaskVec.push_back(DAG.getConstant(EltIdx % 4, MaskEVT));
Bill Wendling2c7cd592008-08-21 22:35:37 +00003657
Evan Cheng75184a92007-12-11 01:46:18 +00003658 // If this element is in the right place after this shuffle, then
3659 // remember it.
3660 if ((int)(EltIdx / 4) == BestLowQuad)
3661 InOrder.set(i);
3662 }
3663 }
3664 if (AnyOutOrder) {
3665 for (unsigned i = 4; i != 8; ++i)
3666 MaskVec.push_back(DAG.getConstant(i, MaskEVT));
Scott Michel91099d62009-02-17 22:15:04 +00003667 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dale Johannesence0805b2009-02-03 19:33:06 +00003668 &MaskVec[0], 8);
Scott Michel91099d62009-02-17 22:15:04 +00003669 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16,
Dale Johannesence0805b2009-02-03 19:33:06 +00003670 NewV, NewV, Mask);
Evan Cheng75184a92007-12-11 01:46:18 +00003671 }
3672 }
3673
3674 if (BestHighQuad != -1) {
3675 // Sort high half in order using PSHUFHW if possible.
3676 MaskVec.clear();
Bill Wendling2c7cd592008-08-21 22:35:37 +00003677
Evan Cheng75184a92007-12-11 01:46:18 +00003678 for (unsigned i = 0; i != 4; ++i)
3679 MaskVec.push_back(DAG.getConstant(i, MaskEVT));
Bill Wendling2c7cd592008-08-21 22:35:37 +00003680
Evan Cheng75184a92007-12-11 01:46:18 +00003681 bool AnyOutOrder = false;
3682 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003683 SDValue Elt = MaskElts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003684 if (Elt.getOpcode() == ISD::UNDEF) {
3685 MaskVec.push_back(Elt);
3686 InOrder.set(i);
3687 } else {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003688 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003689 if (EltIdx != i)
3690 AnyOutOrder = true;
Bill Wendling2c7cd592008-08-21 22:35:37 +00003691
Evan Cheng75184a92007-12-11 01:46:18 +00003692 MaskVec.push_back(DAG.getConstant((EltIdx % 4) + 4, MaskEVT));
Bill Wendling2c7cd592008-08-21 22:35:37 +00003693
Evan Cheng75184a92007-12-11 01:46:18 +00003694 // If this element is in the right place after this shuffle, then
3695 // remember it.
3696 if ((int)(EltIdx / 4) == BestHighQuad)
3697 InOrder.set(i);
3698 }
3699 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003700
Evan Cheng75184a92007-12-11 01:46:18 +00003701 if (AnyOutOrder) {
Scott Michel91099d62009-02-17 22:15:04 +00003702 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00003703 MaskVT, &MaskVec[0], 8);
Scott Michel91099d62009-02-17 22:15:04 +00003704 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16,
Dale Johannesence0805b2009-02-03 19:33:06 +00003705 NewV, NewV, Mask);
Evan Cheng75184a92007-12-11 01:46:18 +00003706 }
3707 }
3708
3709 // The other elements are put in the right place using pextrw and pinsrw.
3710 for (unsigned i = 0; i != 8; ++i) {
3711 if (InOrder[i])
3712 continue;
Dan Gohman8181bd12008-07-27 21:46:04 +00003713 SDValue Elt = MaskElts[i];
Bill Wendling49bd4db2008-08-21 22:36:36 +00003714 if (Elt.getOpcode() == ISD::UNDEF)
3715 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003716 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00003717 SDValue ExtOp = (EltIdx < 8)
Dale Johannesence0805b2009-02-03 19:33:06 +00003718 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Evan Cheng75184a92007-12-11 01:46:18 +00003719 DAG.getConstant(EltIdx, PtrVT))
Dale Johannesence0805b2009-02-03 19:33:06 +00003720 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Evan Cheng75184a92007-12-11 01:46:18 +00003721 DAG.getConstant(EltIdx - 8, PtrVT));
Dale Johannesence0805b2009-02-03 19:33:06 +00003722 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Evan Cheng75184a92007-12-11 01:46:18 +00003723 DAG.getConstant(i, PtrVT));
3724 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003725
Evan Cheng75184a92007-12-11 01:46:18 +00003726 return NewV;
3727 }
3728
Bill Wendling2c7cd592008-08-21 22:35:37 +00003729 // PSHUF{H|L}W are not used. Lower into extracts and inserts but try to use as
3730 // few as possible. First, let's find out how many elements are already in the
3731 // right order.
Evan Chengfca29242007-12-07 08:07:39 +00003732 unsigned V1InOrder = 0;
3733 unsigned V1FromV1 = 0;
3734 unsigned V2InOrder = 0;
3735 unsigned V2FromV2 = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00003736 SmallVector<SDValue, 8> V1Elts;
3737 SmallVector<SDValue, 8> V2Elts;
Evan Chengfca29242007-12-07 08:07:39 +00003738 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003739 SDValue Elt = MaskElts[i];
Evan Chengfca29242007-12-07 08:07:39 +00003740 if (Elt.getOpcode() == ISD::UNDEF) {
Evan Cheng75184a92007-12-11 01:46:18 +00003741 V1Elts.push_back(Elt);
3742 V2Elts.push_back(Elt);
Evan Chengfca29242007-12-07 08:07:39 +00003743 ++V1InOrder;
3744 ++V2InOrder;
Evan Cheng75184a92007-12-11 01:46:18 +00003745 continue;
3746 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003747 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003748 if (EltIdx == i) {
3749 V1Elts.push_back(Elt);
3750 V2Elts.push_back(DAG.getConstant(i+8, MaskEVT));
3751 ++V1InOrder;
3752 } else if (EltIdx == i+8) {
3753 V1Elts.push_back(Elt);
3754 V2Elts.push_back(DAG.getConstant(i, MaskEVT));
3755 ++V2InOrder;
3756 } else if (EltIdx < 8) {
3757 V1Elts.push_back(Elt);
Mon P Wang75498182009-01-28 23:11:14 +00003758 V2Elts.push_back(DAG.getConstant(EltIdx+8, MaskEVT));
Evan Cheng75184a92007-12-11 01:46:18 +00003759 ++V1FromV1;
Evan Chengfca29242007-12-07 08:07:39 +00003760 } else {
Mon P Wang532c9632008-12-23 04:03:27 +00003761 V1Elts.push_back(Elt);
Evan Cheng75184a92007-12-11 01:46:18 +00003762 V2Elts.push_back(DAG.getConstant(EltIdx-8, MaskEVT));
3763 ++V2FromV2;
Evan Chengfca29242007-12-07 08:07:39 +00003764 }
3765 }
3766
3767 if (V2InOrder > V1InOrder) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003768 PermMask = CommuteVectorShuffleMask(PermMask, DAG, dl);
Evan Chengfca29242007-12-07 08:07:39 +00003769 std::swap(V1, V2);
3770 std::swap(V1Elts, V2Elts);
3771 std::swap(V1FromV1, V2FromV2);
3772 }
3773
Evan Cheng75184a92007-12-11 01:46:18 +00003774 if ((V1FromV1 + V1InOrder) != 8) {
3775 // Some elements are from V2.
3776 if (V1FromV1) {
3777 // If there are elements that are from V1 but out of place,
3778 // then first sort them in place
Dan Gohman8181bd12008-07-27 21:46:04 +00003779 SmallVector<SDValue, 8> MaskVec;
Evan Cheng75184a92007-12-11 01:46:18 +00003780 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003781 SDValue Elt = V1Elts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003782 if (Elt.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003783 MaskVec.push_back(DAG.getUNDEF(MaskEVT));
Evan Cheng75184a92007-12-11 01:46:18 +00003784 continue;
3785 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003786 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003787 if (EltIdx >= 8)
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003788 MaskVec.push_back(DAG.getUNDEF(MaskEVT));
Evan Cheng75184a92007-12-11 01:46:18 +00003789 else
3790 MaskVec.push_back(DAG.getConstant(EltIdx, MaskEVT));
3791 }
Dale Johannesence0805b2009-02-03 19:33:06 +00003792 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], 8);
3793 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, V1, V1, Mask);
Evan Chengfca29242007-12-07 08:07:39 +00003794 }
Evan Cheng75184a92007-12-11 01:46:18 +00003795
3796 NewV = V1;
3797 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003798 SDValue Elt = V1Elts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003799 if (Elt.getOpcode() == ISD::UNDEF)
3800 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003801 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003802 if (EltIdx < 8)
3803 continue;
Dale Johannesence0805b2009-02-03 19:33:06 +00003804 SDValue ExtOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Evan Cheng75184a92007-12-11 01:46:18 +00003805 DAG.getConstant(EltIdx - 8, PtrVT));
Dale Johannesence0805b2009-02-03 19:33:06 +00003806 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Evan Cheng75184a92007-12-11 01:46:18 +00003807 DAG.getConstant(i, PtrVT));
3808 }
3809 return NewV;
3810 } else {
3811 // All elements are from V1.
3812 NewV = V1;
3813 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003814 SDValue Elt = V1Elts[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003815 if (Elt.getOpcode() == ISD::UNDEF)
3816 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003817 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Dale Johannesence0805b2009-02-03 19:33:06 +00003818 SDValue ExtOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Evan Cheng75184a92007-12-11 01:46:18 +00003819 DAG.getConstant(EltIdx, PtrVT));
Dale Johannesence0805b2009-02-03 19:33:06 +00003820 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Evan Cheng75184a92007-12-11 01:46:18 +00003821 DAG.getConstant(i, PtrVT));
3822 }
3823 return NewV;
3824 }
3825}
3826
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003827/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
3828/// ones, or rewriting v4i32 / v2f32 as 2 wide ones if possible. This can be
3829/// done when every pair / quad of shuffle mask elements point to elements in
3830/// the right sequence. e.g.
Evan Cheng75184a92007-12-11 01:46:18 +00003831/// vector_shuffle <>, <>, < 3, 4, | 10, 11, | 0, 1, | 14, 15>
3832static
Dan Gohman8181bd12008-07-27 21:46:04 +00003833SDValue RewriteAsNarrowerShuffle(SDValue V1, SDValue V2,
Duncan Sands92c43912008-06-06 12:08:01 +00003834 MVT VT,
Dan Gohman8181bd12008-07-27 21:46:04 +00003835 SDValue PermMask, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003836 TargetLowering &TLI, DebugLoc dl) {
Evan Cheng75184a92007-12-11 01:46:18 +00003837 unsigned NumElems = PermMask.getNumOperands();
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003838 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Duncan Sands92c43912008-06-06 12:08:01 +00003839 MVT MaskVT = MVT::getIntVectorWithNumElements(NewWidth);
Duncan Sandsd3ace282008-07-21 10:20:31 +00003840 MVT MaskEltVT = MaskVT.getVectorElementType();
Duncan Sands92c43912008-06-06 12:08:01 +00003841 MVT NewVT = MaskVT;
3842 switch (VT.getSimpleVT()) {
3843 default: assert(false && "Unexpected!");
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003844 case MVT::v4f32: NewVT = MVT::v2f64; break;
3845 case MVT::v4i32: NewVT = MVT::v2i64; break;
3846 case MVT::v8i16: NewVT = MVT::v4i32; break;
3847 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003848 }
3849
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00003850 if (NewWidth == 2) {
Duncan Sands92c43912008-06-06 12:08:01 +00003851 if (VT.isInteger())
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003852 NewVT = MVT::v2i64;
3853 else
3854 NewVT = MVT::v2f64;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00003855 }
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003856 unsigned Scale = NumElems / NewWidth;
Dan Gohman8181bd12008-07-27 21:46:04 +00003857 SmallVector<SDValue, 8> MaskVec;
Evan Cheng75184a92007-12-11 01:46:18 +00003858 for (unsigned i = 0; i < NumElems; i += Scale) {
3859 unsigned StartIdx = ~0U;
3860 for (unsigned j = 0; j < Scale; ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003861 SDValue Elt = PermMask.getOperand(i+j);
Evan Cheng75184a92007-12-11 01:46:18 +00003862 if (Elt.getOpcode() == ISD::UNDEF)
3863 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003864 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003865 if (StartIdx == ~0U)
3866 StartIdx = EltIdx - (EltIdx % Scale);
3867 if (EltIdx != StartIdx + j)
Dan Gohman8181bd12008-07-27 21:46:04 +00003868 return SDValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003869 }
3870 if (StartIdx == ~0U)
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003871 MaskVec.push_back(DAG.getUNDEF(MaskEltVT));
Evan Cheng75184a92007-12-11 01:46:18 +00003872 else
Duncan Sandsd3ace282008-07-21 10:20:31 +00003873 MaskVec.push_back(DAG.getConstant(StartIdx / Scale, MaskEltVT));
Evan Chengfca29242007-12-07 08:07:39 +00003874 }
3875
Dale Johannesence0805b2009-02-03 19:33:06 +00003876 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1);
3877 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2);
3878 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, NewVT, V1, V2,
3879 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003880 &MaskVec[0], MaskVec.size()));
Evan Chengfca29242007-12-07 08:07:39 +00003881}
3882
Evan Chenge9b9c672008-05-09 21:53:03 +00003883/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng40ee6e52008-05-08 00:57:18 +00003884///
Dan Gohman8181bd12008-07-27 21:46:04 +00003885static SDValue getVZextMovL(MVT VT, MVT OpVT,
3886 SDValue SrcOp, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003887 const X86Subtarget *Subtarget, DebugLoc dl) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00003888 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
3889 LoadSDNode *LD = NULL;
Gabor Greif1c80d112008-08-28 21:40:38 +00003890 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng40ee6e52008-05-08 00:57:18 +00003891 LD = dyn_cast<LoadSDNode>(SrcOp);
3892 if (!LD) {
3893 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
3894 // instead.
Duncan Sands92c43912008-06-06 12:08:01 +00003895 MVT EVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Evan Cheng40ee6e52008-05-08 00:57:18 +00003896 if ((EVT != MVT::i64 || Subtarget->is64Bit()) &&
3897 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
3898 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
3899 SrcOp.getOperand(0).getOperand(0).getValueType() == EVT) {
3900 // PR2108
3901 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Dale Johannesence0805b2009-02-03 19:33:06 +00003902 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3903 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
3904 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
3905 OpVT,
Gabor Greif825aa892008-08-28 23:19:51 +00003906 SrcOp.getOperand(0)
3907 .getOperand(0))));
Evan Cheng40ee6e52008-05-08 00:57:18 +00003908 }
3909 }
3910 }
3911
Dale Johannesence0805b2009-02-03 19:33:06 +00003912 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3913 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Scott Michel91099d62009-02-17 22:15:04 +00003914 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00003915 OpVT, SrcOp)));
Evan Cheng40ee6e52008-05-08 00:57:18 +00003916}
3917
Evan Chengf50554e2008-07-22 21:13:36 +00003918/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
3919/// shuffles.
Dan Gohman8181bd12008-07-27 21:46:04 +00003920static SDValue
3921LowerVECTOR_SHUFFLE_4wide(SDValue V1, SDValue V2,
Dale Johannesence0805b2009-02-03 19:33:06 +00003922 SDValue PermMask, MVT VT, SelectionDAG &DAG,
3923 DebugLoc dl) {
Evan Chengf50554e2008-07-22 21:13:36 +00003924 MVT MaskVT = PermMask.getValueType();
3925 MVT MaskEVT = MaskVT.getVectorElementType();
3926 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola4e3ff5a2008-08-28 18:32:53 +00003927 Locs.resize(4);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003928 SmallVector<SDValue, 8> Mask1(4, DAG.getUNDEF(MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00003929 unsigned NumHi = 0;
3930 unsigned NumLo = 0;
Evan Chengf50554e2008-07-22 21:13:36 +00003931 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003932 SDValue Elt = PermMask.getOperand(i);
Evan Chengf50554e2008-07-22 21:13:36 +00003933 if (Elt.getOpcode() == ISD::UNDEF) {
3934 Locs[i] = std::make_pair(-1, -1);
3935 } else {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003936 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohmance57fd92008-08-04 23:09:15 +00003937 assert(Val < 8 && "Invalid VECTOR_SHUFFLE index!");
Evan Chengf50554e2008-07-22 21:13:36 +00003938 if (Val < 4) {
3939 Locs[i] = std::make_pair(0, NumLo);
3940 Mask1[NumLo] = Elt;
3941 NumLo++;
3942 } else {
3943 Locs[i] = std::make_pair(1, NumHi);
3944 if (2+NumHi < 4)
3945 Mask1[2+NumHi] = Elt;
3946 NumHi++;
3947 }
3948 }
3949 }
Evan Cheng3cae0332008-07-23 00:22:17 +00003950
Evan Chengf50554e2008-07-22 21:13:36 +00003951 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng3cae0332008-07-23 00:22:17 +00003952 // If no more than two elements come from either vector. This can be
3953 // implemented with two shuffles. First shuffle gather the elements.
3954 // The second shuffle, which takes the first shuffle as both of its
3955 // vector operands, put the elements into the right order.
Dale Johannesence0805b2009-02-03 19:33:06 +00003956 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
3957 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengf50554e2008-07-22 21:13:36 +00003958 &Mask1[0], Mask1.size()));
Evan Cheng3cae0332008-07-23 00:22:17 +00003959
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003960 SmallVector<SDValue, 8> Mask2(4, DAG.getUNDEF(MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00003961 for (unsigned i = 0; i != 4; ++i) {
3962 if (Locs[i].first == -1)
3963 continue;
3964 else {
3965 unsigned Idx = (i < 2) ? 0 : 4;
3966 Idx += Locs[i].first * 2 + Locs[i].second;
3967 Mask2[i] = DAG.getConstant(Idx, MaskEVT);
3968 }
3969 }
3970
Dale Johannesence0805b2009-02-03 19:33:06 +00003971 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V1,
3972 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengf50554e2008-07-22 21:13:36 +00003973 &Mask2[0], Mask2.size()));
Evan Cheng3cae0332008-07-23 00:22:17 +00003974 } else if (NumLo == 3 || NumHi == 3) {
3975 // Otherwise, we must have three elements from one vector, call it X, and
3976 // one element from the other, call it Y. First, use a shufps to build an
3977 // intermediate vector with the one element from Y and the element from X
3978 // that will be in the same half in the final destination (the indexes don't
3979 // matter). Then, use a shufps to build the final vector, taking the half
3980 // containing the element from Y from the intermediate, and the other half
3981 // from X.
3982 if (NumHi == 3) {
3983 // Normalize it so the 3 elements come from V1.
Dale Johannesence0805b2009-02-03 19:33:06 +00003984 PermMask = CommuteVectorShuffleMask(PermMask, DAG, dl);
Evan Cheng3cae0332008-07-23 00:22:17 +00003985 std::swap(V1, V2);
3986 }
3987
3988 // Find the element from V2.
3989 unsigned HiIndex;
3990 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003991 SDValue Elt = PermMask.getOperand(HiIndex);
Evan Cheng3cae0332008-07-23 00:22:17 +00003992 if (Elt.getOpcode() == ISD::UNDEF)
3993 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003994 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng3cae0332008-07-23 00:22:17 +00003995 if (Val >= 4)
3996 break;
3997 }
3998
3999 Mask1[0] = PermMask.getOperand(HiIndex);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004000 Mask1[1] = DAG.getUNDEF(MaskEVT);
Evan Cheng3cae0332008-07-23 00:22:17 +00004001 Mask1[2] = PermMask.getOperand(HiIndex^1);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004002 Mask1[3] = DAG.getUNDEF(MaskEVT);
Dale Johannesence0805b2009-02-03 19:33:06 +00004003 V2 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Dale Johannesen913ba762009-02-06 01:31:28 +00004004 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &Mask1[0], 4));
Evan Cheng3cae0332008-07-23 00:22:17 +00004005
4006 if (HiIndex >= 2) {
4007 Mask1[0] = PermMask.getOperand(0);
4008 Mask1[1] = PermMask.getOperand(1);
4009 Mask1[2] = DAG.getConstant(HiIndex & 1 ? 6 : 4, MaskEVT);
4010 Mask1[3] = DAG.getConstant(HiIndex & 1 ? 4 : 6, MaskEVT);
Dale Johannesence0805b2009-02-03 19:33:06 +00004011 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Scott Michel91099d62009-02-17 22:15:04 +00004012 DAG.getNode(ISD::BUILD_VECTOR, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00004013 MaskVT, &Mask1[0], 4));
Evan Cheng3cae0332008-07-23 00:22:17 +00004014 } else {
4015 Mask1[0] = DAG.getConstant(HiIndex & 1 ? 2 : 0, MaskEVT);
4016 Mask1[1] = DAG.getConstant(HiIndex & 1 ? 0 : 2, MaskEVT);
4017 Mask1[2] = PermMask.getOperand(2);
4018 Mask1[3] = PermMask.getOperand(3);
4019 if (Mask1[2].getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004020 Mask1[2] =
4021 DAG.getConstant(cast<ConstantSDNode>(Mask1[2])->getZExtValue()+4,
4022 MaskEVT);
Evan Cheng3cae0332008-07-23 00:22:17 +00004023 if (Mask1[3].getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004024 Mask1[3] =
4025 DAG.getConstant(cast<ConstantSDNode>(Mask1[3])->getZExtValue()+4,
4026 MaskEVT);
Dale Johannesence0805b2009-02-03 19:33:06 +00004027 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V2, V1,
Scott Michel91099d62009-02-17 22:15:04 +00004028 DAG.getNode(ISD::BUILD_VECTOR, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00004029 MaskVT, &Mask1[0], 4));
Evan Cheng3cae0332008-07-23 00:22:17 +00004030 }
Evan Chengf50554e2008-07-22 21:13:36 +00004031 }
4032
4033 // Break it into (shuffle shuffle_hi, shuffle_lo).
4034 Locs.clear();
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004035 SmallVector<SDValue,8> LoMask(4, DAG.getUNDEF(MaskEVT));
4036 SmallVector<SDValue,8> HiMask(4, DAG.getUNDEF(MaskEVT));
Dan Gohman8181bd12008-07-27 21:46:04 +00004037 SmallVector<SDValue,8> *MaskPtr = &LoMask;
Evan Chengf50554e2008-07-22 21:13:36 +00004038 unsigned MaskIdx = 0;
4039 unsigned LoIdx = 0;
4040 unsigned HiIdx = 2;
4041 for (unsigned i = 0; i != 4; ++i) {
4042 if (i == 2) {
4043 MaskPtr = &HiMask;
4044 MaskIdx = 1;
4045 LoIdx = 0;
4046 HiIdx = 2;
4047 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004048 SDValue Elt = PermMask.getOperand(i);
Evan Chengf50554e2008-07-22 21:13:36 +00004049 if (Elt.getOpcode() == ISD::UNDEF) {
4050 Locs[i] = std::make_pair(-1, -1);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004051 } else if (cast<ConstantSDNode>(Elt)->getZExtValue() < 4) {
Evan Chengf50554e2008-07-22 21:13:36 +00004052 Locs[i] = std::make_pair(MaskIdx, LoIdx);
4053 (*MaskPtr)[LoIdx] = Elt;
4054 LoIdx++;
4055 } else {
4056 Locs[i] = std::make_pair(MaskIdx, HiIdx);
4057 (*MaskPtr)[HiIdx] = Elt;
4058 HiIdx++;
4059 }
4060 }
4061
Dale Johannesence0805b2009-02-03 19:33:06 +00004062 SDValue LoShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
4063 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengf50554e2008-07-22 21:13:36 +00004064 &LoMask[0], LoMask.size()));
Dale Johannesence0805b2009-02-03 19:33:06 +00004065 SDValue HiShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
4066 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengf50554e2008-07-22 21:13:36 +00004067 &HiMask[0], HiMask.size()));
Dan Gohman8181bd12008-07-27 21:46:04 +00004068 SmallVector<SDValue, 8> MaskOps;
Evan Chengf50554e2008-07-22 21:13:36 +00004069 for (unsigned i = 0; i != 4; ++i) {
4070 if (Locs[i].first == -1) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004071 MaskOps.push_back(DAG.getUNDEF(MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00004072 } else {
4073 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
4074 MaskOps.push_back(DAG.getConstant(Idx, MaskEVT));
4075 }
4076 }
Dale Johannesence0805b2009-02-03 19:33:06 +00004077 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, LoShuffle, HiShuffle,
4078 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengf50554e2008-07-22 21:13:36 +00004079 &MaskOps[0], MaskOps.size()));
4080}
4081
Dan Gohman8181bd12008-07-27 21:46:04 +00004082SDValue
4083X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
4084 SDValue V1 = Op.getOperand(0);
4085 SDValue V2 = Op.getOperand(1);
4086 SDValue PermMask = Op.getOperand(2);
Duncan Sands92c43912008-06-06 12:08:01 +00004087 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004088 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004089 unsigned NumElems = PermMask.getNumOperands();
Duncan Sands92c43912008-06-06 12:08:01 +00004090 bool isMMX = VT.getSizeInBits() == 64;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004091 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
4092 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
4093 bool V1IsSplat = false;
4094 bool V2IsSplat = false;
4095
Gabor Greif1c80d112008-08-28 21:40:38 +00004096 if (isUndefShuffle(Op.getNode()))
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004097 return DAG.getUNDEF(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004098
Gabor Greif1c80d112008-08-28 21:40:38 +00004099 if (isZeroShuffle(Op.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00004100 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004101
Gabor Greif1c80d112008-08-28 21:40:38 +00004102 if (isIdentityMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004103 return V1;
Gabor Greif1c80d112008-08-28 21:40:38 +00004104 else if (isIdentityMask(PermMask.getNode(), true))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004105 return V2;
4106
Evan Chengae6c9212008-09-25 23:35:16 +00004107 // Canonicalize movddup shuffles.
4108 if (V2IsUndef && Subtarget->hasSSE2() &&
Evan Chengbdd9d9f2008-10-06 21:13:08 +00004109 VT.getSizeInBits() == 128 &&
Evan Chengae6c9212008-09-25 23:35:16 +00004110 X86::isMOVDDUPMask(PermMask.getNode()))
4111 return CanonicalizeMovddup(Op, V1, PermMask, DAG, Subtarget->hasSSE3());
4112
Gabor Greif1c80d112008-08-28 21:40:38 +00004113 if (isSplatMask(PermMask.getNode())) {
Evan Chengbf8b2c52008-04-05 00:30:36 +00004114 if (isMMX || NumElems < 4) return Op;
4115 // Promote it to a v4{if}32 splat.
4116 return PromoteSplat(Op, DAG, Subtarget->hasSSE2());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004117 }
4118
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004119 // If the shuffle can be profitably rewritten as a narrower shuffle, then
4120 // do it!
4121 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004122 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask, DAG,
4123 *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004124 if (NewOp.getNode())
Scott Michel91099d62009-02-17 22:15:04 +00004125 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Dale Johannesence0805b2009-02-03 19:33:06 +00004126 LowerVECTOR_SHUFFLE(NewOp, DAG));
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004127 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
4128 // FIXME: Figure out a cleaner way to do this.
4129 // Try to make use of movq to zero out the top part.
Gabor Greif1c80d112008-08-28 21:40:38 +00004130 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004131 SDValue NewOp = RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Dale Johannesence0805b2009-02-03 19:33:06 +00004132 DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004133 if (NewOp.getNode()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004134 SDValue NewV1 = NewOp.getOperand(0);
4135 SDValue NewV2 = NewOp.getOperand(1);
4136 SDValue NewMask = NewOp.getOperand(2);
Gabor Greif1c80d112008-08-28 21:40:38 +00004137 if (isCommutedMOVL(NewMask.getNode(), true, false)) {
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004138 NewOp = CommuteVectorShuffle(NewOp, NewV1, NewV2, NewMask, DAG);
Dale Johannesence0805b2009-02-03 19:33:06 +00004139 return getVZextMovL(VT, NewOp.getValueType(), NewV2, DAG, Subtarget,
4140 dl);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004141 }
4142 }
Gabor Greif1c80d112008-08-28 21:40:38 +00004143 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004144 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Dale Johannesence0805b2009-02-03 19:33:06 +00004145 DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004146 if (NewOp.getNode() && X86::isMOVLMask(NewOp.getOperand(2).getNode()))
Evan Chenge9b9c672008-05-09 21:53:03 +00004147 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
Dale Johannesence0805b2009-02-03 19:33:06 +00004148 DAG, Subtarget, dl);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004149 }
4150 }
4151
Evan Chengdea99362008-05-29 08:22:04 +00004152 // Check if this can be converted into a logical shift.
4153 bool isLeft = false;
4154 unsigned ShAmt = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00004155 SDValue ShVal;
Evan Chengdea99362008-05-29 08:22:04 +00004156 bool isShift = isVectorShift(Op, PermMask, DAG, isLeft, ShVal, ShAmt);
4157 if (isShift && ShVal.hasOneUse()) {
Scott Michel91099d62009-02-17 22:15:04 +00004158 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengdea99362008-05-29 08:22:04 +00004159 // v_set0 + movlhps or movhlps, etc.
Duncan Sands92c43912008-06-06 12:08:01 +00004160 MVT EVT = VT.getVectorElementType();
4161 ShAmt *= EVT.getSizeInBits();
Dale Johannesence0805b2009-02-03 19:33:06 +00004162 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00004163 }
4164
Gabor Greif1c80d112008-08-28 21:40:38 +00004165 if (X86::isMOVLMask(PermMask.getNode())) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00004166 if (V1IsUndef)
4167 return V2;
Gabor Greif1c80d112008-08-28 21:40:38 +00004168 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00004169 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Nate Begeman6357f9d2008-07-25 19:05:58 +00004170 if (!isMMX)
4171 return Op;
Evan Cheng40ee6e52008-05-08 00:57:18 +00004172 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004173
Gabor Greif1c80d112008-08-28 21:40:38 +00004174 if (!isMMX && (X86::isMOVSHDUPMask(PermMask.getNode()) ||
4175 X86::isMOVSLDUPMask(PermMask.getNode()) ||
4176 X86::isMOVHLPSMask(PermMask.getNode()) ||
4177 X86::isMOVHPMask(PermMask.getNode()) ||
4178 X86::isMOVLPMask(PermMask.getNode())))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004179 return Op;
4180
Gabor Greif1c80d112008-08-28 21:40:38 +00004181 if (ShouldXformToMOVHLPS(PermMask.getNode()) ||
4182 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004183 return CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4184
Evan Chengdea99362008-05-29 08:22:04 +00004185 if (isShift) {
4186 // No better options. Use a vshl / vsrl.
Duncan Sands92c43912008-06-06 12:08:01 +00004187 MVT EVT = VT.getVectorElementType();
4188 ShAmt *= EVT.getSizeInBits();
Dale Johannesence0805b2009-02-03 19:33:06 +00004189 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00004190 }
4191
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004192 bool Commuted = false;
Chris Lattnere6aa3862007-11-25 00:24:49 +00004193 // FIXME: This should also accept a bitcast of a splat? Be careful, not
4194 // 1,1,1,1 -> v8i16 though.
Gabor Greif1c80d112008-08-28 21:40:38 +00004195 V1IsSplat = isSplatVector(V1.getNode());
4196 V2IsSplat = isSplatVector(V2.getNode());
Scott Michel91099d62009-02-17 22:15:04 +00004197
Chris Lattnere6aa3862007-11-25 00:24:49 +00004198 // Canonicalize the splat or undef, if present, to be on the RHS.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004199 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
4200 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4201 std::swap(V1IsSplat, V2IsSplat);
4202 std::swap(V1IsUndef, V2IsUndef);
4203 Commuted = true;
4204 }
4205
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004206 // FIXME: Figure out a cleaner way to do this.
Gabor Greif1c80d112008-08-28 21:40:38 +00004207 if (isCommutedMOVL(PermMask.getNode(), V2IsSplat, V2IsUndef)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004208 if (V2IsUndef) return V1;
4209 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4210 if (V2IsSplat) {
4211 // V2 is a splat, so the mask may be malformed. That is, it may point
4212 // to any V2 element. The instruction selectior won't like this. Get
4213 // a corrected mask and commute to form a proper MOVS{S|D}.
Dale Johannesence0805b2009-02-03 19:33:06 +00004214 SDValue NewMask = getMOVLMask(NumElems, DAG, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004215 if (NewMask.getNode() != PermMask.getNode())
Dale Johannesence0805b2009-02-03 19:33:06 +00004216 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004217 }
4218 return Op;
4219 }
4220
Gabor Greif1c80d112008-08-28 21:40:38 +00004221 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4222 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4223 X86::isUNPCKLMask(PermMask.getNode()) ||
4224 X86::isUNPCKHMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004225 return Op;
4226
4227 if (V2IsSplat) {
4228 // Normalize mask so all entries that point to V2 points to its first
4229 // element then try to match unpck{h|l} again. If match, return a
4230 // new vector_shuffle with the corrected mask.
Dan Gohman8181bd12008-07-27 21:46:04 +00004231 SDValue NewMask = NormalizeMask(PermMask, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004232 if (NewMask.getNode() != PermMask.getNode()) {
Mon P Wang56d91642009-02-04 01:16:59 +00004233 if (X86::isUNPCKLMask(NewMask.getNode(), true)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004234 SDValue NewMask = getUnpacklMask(NumElems, DAG, dl);
4235 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Mon P Wang56d91642009-02-04 01:16:59 +00004236 } else if (X86::isUNPCKHMask(NewMask.getNode(), true)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004237 SDValue NewMask = getUnpackhMask(NumElems, DAG, dl);
4238 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004239 }
4240 }
4241 }
4242
4243 // Normalize the node to match x86 shuffle ops if needed
Gabor Greif1c80d112008-08-28 21:40:38 +00004244 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004245 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4246
4247 if (Commuted) {
4248 // Commute is back and try unpck* again.
4249 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004250 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4251 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4252 X86::isUNPCKLMask(PermMask.getNode()) ||
4253 X86::isUNPCKHMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004254 return Op;
4255 }
4256
Evan Chengbf8b2c52008-04-05 00:30:36 +00004257 // Try PSHUF* first, then SHUFP*.
4258 // MMX doesn't have PSHUFD but it does have PSHUFW. While it's theoretically
4259 // possible to shuffle a v2i32 using PSHUFW, that's not yet implemented.
Gabor Greif1c80d112008-08-28 21:40:38 +00004260 if (isMMX && NumElems == 4 && X86::isPSHUFDMask(PermMask.getNode())) {
Evan Chengbf8b2c52008-04-05 00:30:36 +00004261 if (V2.getOpcode() != ISD::UNDEF)
Dale Johannesence0805b2009-02-03 19:33:06 +00004262 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004263 DAG.getUNDEF(VT), PermMask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00004264 return Op;
4265 }
4266
4267 if (!isMMX) {
4268 if (Subtarget->hasSSE2() &&
Gabor Greif1c80d112008-08-28 21:40:38 +00004269 (X86::isPSHUFDMask(PermMask.getNode()) ||
4270 X86::isPSHUFHWMask(PermMask.getNode()) ||
4271 X86::isPSHUFLWMask(PermMask.getNode()))) {
Duncan Sands92c43912008-06-06 12:08:01 +00004272 MVT RVT = VT;
Evan Chengbf8b2c52008-04-05 00:30:36 +00004273 if (VT == MVT::v4f32) {
4274 RVT = MVT::v4i32;
Dale Johannesence0805b2009-02-03 19:33:06 +00004275 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, RVT,
4276 DAG.getNode(ISD::BIT_CONVERT, dl, RVT, V1),
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004277 DAG.getUNDEF(RVT), PermMask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00004278 } else if (V2.getOpcode() != ISD::UNDEF)
Dale Johannesence0805b2009-02-03 19:33:06 +00004279 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, RVT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004280 DAG.getUNDEF(RVT), PermMask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00004281 if (RVT != VT)
Dale Johannesence0805b2009-02-03 19:33:06 +00004282 Op = DAG.getNode(ISD::BIT_CONVERT, dl, VT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004283 return Op;
4284 }
4285
Evan Chengbf8b2c52008-04-05 00:30:36 +00004286 // Binary or unary shufps.
Gabor Greif1c80d112008-08-28 21:40:38 +00004287 if (X86::isSHUFPMask(PermMask.getNode()) ||
4288 (V2.getOpcode() == ISD::UNDEF && X86::isPSHUFDMask(PermMask.getNode())))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004289 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004290 }
4291
Evan Cheng75184a92007-12-11 01:46:18 +00004292 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
4293 if (VT == MVT::v8i16) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004294 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(V1, V2, PermMask, DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004295 if (NewOp.getNode())
Evan Cheng75184a92007-12-11 01:46:18 +00004296 return NewOp;
4297 }
4298
Evan Chengf50554e2008-07-22 21:13:36 +00004299 // Handle all 4 wide cases with a number of shuffles except for MMX.
4300 if (NumElems == 4 && !isMMX)
Dale Johannesence0805b2009-02-03 19:33:06 +00004301 return LowerVECTOR_SHUFFLE_4wide(V1, V2, PermMask, VT, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004302
Dan Gohman8181bd12008-07-27 21:46:04 +00004303 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004304}
4305
Dan Gohman8181bd12008-07-27 21:46:04 +00004306SDValue
4307X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Nate Begemand77e59e2008-02-11 04:19:36 +00004308 SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004309 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004310 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00004311 if (VT.getSizeInBits() == 8) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004312 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begemand77e59e2008-02-11 04:19:36 +00004313 Op.getOperand(0), Op.getOperand(1));
Dale Johannesence0805b2009-02-03 19:33:06 +00004314 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begemand77e59e2008-02-11 04:19:36 +00004315 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004316 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands92c43912008-06-06 12:08:01 +00004317 } else if (VT.getSizeInBits() == 16) {
Evan Chengf9393b32009-01-02 05:29:08 +00004318 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
4319 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
4320 if (Idx == 0)
Dale Johannesence0805b2009-02-03 19:33:06 +00004321 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4322 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
4323 DAG.getNode(ISD::BIT_CONVERT, dl,
4324 MVT::v4i32,
Evan Chengf9393b32009-01-02 05:29:08 +00004325 Op.getOperand(0)),
4326 Op.getOperand(1)));
Dale Johannesence0805b2009-02-03 19:33:06 +00004327 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begemand77e59e2008-02-11 04:19:36 +00004328 Op.getOperand(0), Op.getOperand(1));
Dale Johannesence0805b2009-02-03 19:33:06 +00004329 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begemand77e59e2008-02-11 04:19:36 +00004330 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004331 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Evan Cheng6c249332008-03-24 21:52:23 +00004332 } else if (VT == MVT::f32) {
4333 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
4334 // the result back to FR32 register. It's only worth matching if the
Dan Gohman9fdd0142008-10-31 00:57:24 +00004335 // result has a single use which is a store or a bitcast to i32. And in
4336 // the case of a store, it's not worth it if the index is a constant 0,
4337 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng6c249332008-03-24 21:52:23 +00004338 if (!Op.hasOneUse())
Dan Gohman8181bd12008-07-27 21:46:04 +00004339 return SDValue();
Gabor Greif1c80d112008-08-28 21:40:38 +00004340 SDNode *User = *Op.getNode()->use_begin();
Dan Gohman9fdd0142008-10-31 00:57:24 +00004341 if ((User->getOpcode() != ISD::STORE ||
4342 (isa<ConstantSDNode>(Op.getOperand(1)) &&
4343 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman788db592008-04-16 02:32:24 +00004344 (User->getOpcode() != ISD::BIT_CONVERT ||
4345 User->getValueType(0) != MVT::i32))
Dan Gohman8181bd12008-07-27 21:46:04 +00004346 return SDValue();
Dale Johannesence0805b2009-02-03 19:33:06 +00004347 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michel91099d62009-02-17 22:15:04 +00004348 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32,
Dale Johannesence0805b2009-02-03 19:33:06 +00004349 Op.getOperand(0)),
4350 Op.getOperand(1));
4351 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract);
Mon P Wangac2a3c52009-01-15 21:10:20 +00004352 } else if (VT == MVT::i32) {
4353 // ExtractPS works with constant index.
4354 if (isa<ConstantSDNode>(Op.getOperand(1)))
4355 return Op;
Nate Begemand77e59e2008-02-11 04:19:36 +00004356 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004357 return SDValue();
Nate Begemand77e59e2008-02-11 04:19:36 +00004358}
4359
4360
Dan Gohman8181bd12008-07-27 21:46:04 +00004361SDValue
4362X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004363 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman8181bd12008-07-27 21:46:04 +00004364 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004365
Evan Cheng6c249332008-03-24 21:52:23 +00004366 if (Subtarget->hasSSE41()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004367 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004368 if (Res.getNode())
Evan Cheng6c249332008-03-24 21:52:23 +00004369 return Res;
4370 }
Nate Begemand77e59e2008-02-11 04:19:36 +00004371
Duncan Sands92c43912008-06-06 12:08:01 +00004372 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004373 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004374 // TODO: handle v16i8.
Duncan Sands92c43912008-06-06 12:08:01 +00004375 if (VT.getSizeInBits() == 16) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004376 SDValue Vec = Op.getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004377 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00004378 if (Idx == 0)
Dale Johannesence0805b2009-02-03 19:33:06 +00004379 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4380 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michel91099d62009-02-17 22:15:04 +00004381 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00004382 MVT::v4i32, Vec),
Evan Cheng75184a92007-12-11 01:46:18 +00004383 Op.getOperand(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004384 // Transform it so it match pextrw which produces a 32-bit result.
Duncan Sands92c43912008-06-06 12:08:01 +00004385 MVT EVT = (MVT::SimpleValueType)(VT.getSimpleVT()+1);
Dale Johannesence0805b2009-02-03 19:33:06 +00004386 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004387 Op.getOperand(0), Op.getOperand(1));
Dale Johannesence0805b2009-02-03 19:33:06 +00004388 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EVT, Extract,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004389 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004390 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands92c43912008-06-06 12:08:01 +00004391 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004392 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004393 if (Idx == 0)
4394 return Op;
4395 // SHUFPS the element to the lowest double word, then movss.
Duncan Sands92c43912008-06-06 12:08:01 +00004396 MVT MaskVT = MVT::getIntVectorWithNumElements(4);
Dan Gohman8181bd12008-07-27 21:46:04 +00004397 SmallVector<SDValue, 8> IdxVec;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004398 IdxVec.
Duncan Sands92c43912008-06-06 12:08:01 +00004399 push_back(DAG.getConstant(Idx, MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004400 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004401 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004402 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004403 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004404 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004405 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Dale Johannesence0805b2009-02-03 19:33:06 +00004406 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004407 &IdxVec[0], IdxVec.size());
Dan Gohman8181bd12008-07-27 21:46:04 +00004408 SDValue Vec = Op.getOperand(0);
Dale Johannesence0805b2009-02-03 19:33:06 +00004409 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Vec.getValueType(),
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004410 Vec, DAG.getUNDEF(Vec.getValueType()), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00004411 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00004412 DAG.getIntPtrConstant(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004413 } else if (VT.getSizeInBits() == 64) {
Nate Begemand77e59e2008-02-11 04:19:36 +00004414 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
4415 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
4416 // to match extract_elt for f64.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004417 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004418 if (Idx == 0)
4419 return Op;
4420
4421 // UNPCKHPD the element to the lowest double word, then movsd.
4422 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
4423 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Duncan Sandsd3ace282008-07-21 10:20:31 +00004424 MVT MaskVT = MVT::getIntVectorWithNumElements(2);
Dan Gohman8181bd12008-07-27 21:46:04 +00004425 SmallVector<SDValue, 8> IdxVec;
Duncan Sands92c43912008-06-06 12:08:01 +00004426 IdxVec.push_back(DAG.getConstant(1, MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004427 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004428 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Dale Johannesence0805b2009-02-03 19:33:06 +00004429 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004430 &IdxVec[0], IdxVec.size());
Dan Gohman8181bd12008-07-27 21:46:04 +00004431 SDValue Vec = Op.getOperand(0);
Dale Johannesence0805b2009-02-03 19:33:06 +00004432 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Vec.getValueType(),
Scott Michel91099d62009-02-17 22:15:04 +00004433 Vec, DAG.getUNDEF(Vec.getValueType()),
Dale Johannesence0805b2009-02-03 19:33:06 +00004434 Mask);
4435 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00004436 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004437 }
4438
Dan Gohman8181bd12008-07-27 21:46:04 +00004439 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004440}
4441
Dan Gohman8181bd12008-07-27 21:46:04 +00004442SDValue
4443X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG){
Duncan Sands92c43912008-06-06 12:08:01 +00004444 MVT VT = Op.getValueType();
4445 MVT EVT = VT.getVectorElementType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004446 DebugLoc dl = Op.getDebugLoc();
Nate Begemand77e59e2008-02-11 04:19:36 +00004447
Dan Gohman8181bd12008-07-27 21:46:04 +00004448 SDValue N0 = Op.getOperand(0);
4449 SDValue N1 = Op.getOperand(1);
4450 SDValue N2 = Op.getOperand(2);
Nate Begemand77e59e2008-02-11 04:19:36 +00004451
Dan Gohman5a7af042008-08-14 22:53:18 +00004452 if ((EVT.getSizeInBits() == 8 || EVT.getSizeInBits() == 16) &&
4453 isa<ConstantSDNode>(N2)) {
Duncan Sands92c43912008-06-06 12:08:01 +00004454 unsigned Opc = (EVT.getSizeInBits() == 8) ? X86ISD::PINSRB
Nate Begemand77e59e2008-02-11 04:19:36 +00004455 : X86ISD::PINSRW;
4456 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
4457 // argument.
4458 if (N1.getValueType() != MVT::i32)
Dale Johannesence0805b2009-02-03 19:33:06 +00004459 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Nate Begemand77e59e2008-02-11 04:19:36 +00004460 if (N2.getValueType() != MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004461 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesence0805b2009-02-03 19:33:06 +00004462 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohmanfd7369a2008-08-14 22:43:26 +00004463 } else if (EVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begemand77e59e2008-02-11 04:19:36 +00004464 // Bits [7:6] of the constant are the source select. This will always be
4465 // zero here. The DAG Combiner may combine an extract_elt index into these
4466 // bits. For example (insert (extract, 3), 2) could be matched by putting
4467 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michel91099d62009-02-17 22:15:04 +00004468 // Bits [5:4] of the constant are the destination select. This is the
Nate Begemand77e59e2008-02-11 04:19:36 +00004469 // value of the incoming immediate.
Scott Michel91099d62009-02-17 22:15:04 +00004470 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begemand77e59e2008-02-11 04:19:36 +00004471 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004472 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00004473 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Mon P Wangac2a3c52009-01-15 21:10:20 +00004474 } else if (EVT == MVT::i32) {
4475 // InsertPS works with constant index.
4476 if (isa<ConstantSDNode>(N2))
4477 return Op;
Nate Begemand77e59e2008-02-11 04:19:36 +00004478 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004479 return SDValue();
Nate Begemand77e59e2008-02-11 04:19:36 +00004480}
4481
Dan Gohman8181bd12008-07-27 21:46:04 +00004482SDValue
4483X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004484 MVT VT = Op.getValueType();
4485 MVT EVT = VT.getVectorElementType();
Nate Begemand77e59e2008-02-11 04:19:36 +00004486
4487 if (Subtarget->hasSSE41())
4488 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
4489
Evan Chenge12a7eb2007-12-12 07:55:34 +00004490 if (EVT == MVT::i8)
Dan Gohman8181bd12008-07-27 21:46:04 +00004491 return SDValue();
Evan Chenge12a7eb2007-12-12 07:55:34 +00004492
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004493 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00004494 SDValue N0 = Op.getOperand(0);
4495 SDValue N1 = Op.getOperand(1);
4496 SDValue N2 = Op.getOperand(2);
Evan Chenge12a7eb2007-12-12 07:55:34 +00004497
Duncan Sands92c43912008-06-06 12:08:01 +00004498 if (EVT.getSizeInBits() == 16) {
Evan Chenge12a7eb2007-12-12 07:55:34 +00004499 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
4500 // as its second argument.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004501 if (N1.getValueType() != MVT::i32)
Dale Johannesence0805b2009-02-03 19:33:06 +00004502 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004503 if (N2.getValueType() != MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004504 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesence0805b2009-02-03 19:33:06 +00004505 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004506 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004507 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004508}
4509
Dan Gohman8181bd12008-07-27 21:46:04 +00004510SDValue
4511X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004512 DebugLoc dl = Op.getDebugLoc();
Evan Cheng759fe022008-07-22 18:39:19 +00004513 if (Op.getValueType() == MVT::v2f32)
Dale Johannesence0805b2009-02-03 19:33:06 +00004514 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f32,
4515 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i32,
4516 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32,
Evan Cheng759fe022008-07-22 18:39:19 +00004517 Op.getOperand(0))));
4518
Dale Johannesence0805b2009-02-03 19:33:06 +00004519 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004520 MVT VT = MVT::v2i32;
4521 switch (Op.getValueType().getSimpleVT()) {
Evan Chengd1045a62008-02-18 23:04:32 +00004522 default: break;
4523 case MVT::v16i8:
4524 case MVT::v8i16:
4525 VT = MVT::v4i32;
4526 break;
4527 }
Dale Johannesence0805b2009-02-03 19:33:06 +00004528 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(),
4529 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, AnyExt));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004530}
4531
Bill Wendlingfef06052008-09-16 21:48:12 +00004532// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
4533// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
4534// one of the above mentioned nodes. It has to be wrapped because otherwise
4535// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
4536// be used to form addressing mode. These wrapped nodes will be selected
4537// into MOV32ri.
Dan Gohman8181bd12008-07-27 21:46:04 +00004538SDValue
4539X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004540 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dale Johannesen175fdef2009-02-06 21:50:26 +00004541 // FIXME there isn't really any debug info here, should come from the parent
4542 DebugLoc dl = CP->getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00004543 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004544 getPointerTy(),
4545 CP->getAlignment());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004546 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004547 // With PIC, the address is actually $g + Offset.
4548 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4549 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004550 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004551 DAG.getNode(X86ISD::GlobalBaseReg,
4552 DebugLoc::getUnknownLoc(),
4553 getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004554 Result);
4555 }
4556
4557 return Result;
4558}
4559
Dan Gohman8181bd12008-07-27 21:46:04 +00004560SDValue
Dale Johannesenea996922009-02-04 20:06:27 +00004561X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman36322c72008-10-18 02:06:02 +00004562 int64_t Offset,
Evan Cheng7f250d62008-09-24 00:05:32 +00004563 SelectionDAG &DAG) const {
Dan Gohman36322c72008-10-18 02:06:02 +00004564 bool IsPic = getTargetMachine().getRelocationModel() == Reloc::PIC_;
4565 bool ExtraLoadRequired =
4566 Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false);
4567
4568 // Create the TargetGlobalAddress node, folding in the constant
4569 // offset if it is legal.
4570 SDValue Result;
Dan Gohman3d5257c2008-10-21 03:38:42 +00004571 if (!IsPic && !ExtraLoadRequired && isInt32(Offset)) {
Dan Gohman36322c72008-10-18 02:06:02 +00004572 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
4573 Offset = 0;
4574 } else
4575 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), 0);
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004576 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman36322c72008-10-18 02:06:02 +00004577
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004578 // With PIC, the address is actually $g + Offset.
Dan Gohman36322c72008-10-18 02:06:02 +00004579 if (IsPic && !Subtarget->isPICStyleRIPRel()) {
Dale Johannesenea996922009-02-04 20:06:27 +00004580 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
4581 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004582 Result);
4583 }
Scott Michel91099d62009-02-17 22:15:04 +00004584
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004585 // For Darwin & Mingw32, external and weak symbols are indirect, so we want to
4586 // load the value at address GV, not the value of GV itself. This means that
4587 // the GlobalAddress must be in the base or index register of the address, not
4588 // the GV offset field. Platform check is inside GVRequiresExtraLoad() call
4589 // The same applies for external symbols during PIC codegen
Dan Gohman36322c72008-10-18 02:06:02 +00004590 if (ExtraLoadRequired)
Dale Johannesenea996922009-02-04 20:06:27 +00004591 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004592 PseudoSourceValue::getGOT(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004593
Dan Gohman36322c72008-10-18 02:06:02 +00004594 // If there was a non-zero offset that we didn't fold, create an explicit
4595 // addition for it.
4596 if (Offset != 0)
Dale Johannesenea996922009-02-04 20:06:27 +00004597 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman36322c72008-10-18 02:06:02 +00004598 DAG.getConstant(Offset, getPointerTy()));
4599
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004600 return Result;
4601}
4602
Evan Cheng7f250d62008-09-24 00:05:32 +00004603SDValue
4604X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) {
4605 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman36322c72008-10-18 02:06:02 +00004606 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004607 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Cheng7f250d62008-09-24 00:05:32 +00004608}
4609
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004610// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman8181bd12008-07-27 21:46:04 +00004611static SDValue
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004612LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00004613 const MVT PtrVT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004614 SDValue InFlag;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004615 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
4616 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004617 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004618 DebugLoc::getUnknownLoc(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004619 PtrVT), InFlag);
4620 InFlag = Chain.getValue(1);
4621
4622 // emit leal symbol@TLSGD(,%ebx,1), %eax
4623 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004624 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004625 GA->getValueType(0),
4626 GA->getOffset());
Dan Gohman8181bd12008-07-27 21:46:04 +00004627 SDValue Ops[] = { Chain, TGA, InFlag };
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004628 SDValue Result = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004629 InFlag = Result.getValue(2);
4630 Chain = Result.getValue(1);
4631
4632 // call ___tls_get_addr. This function receives its argument in
4633 // the register EAX.
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004634 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Result, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004635 InFlag = Chain.getValue(1);
4636
4637 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004638 SDValue Ops1[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00004639 DAG.getTargetExternalSymbol("___tls_get_addr",
4640 PtrVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004641 DAG.getRegister(X86::EAX, PtrVT),
4642 DAG.getRegister(X86::EBX, PtrVT),
4643 InFlag };
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004644 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops1, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004645 InFlag = Chain.getValue(1);
4646
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004647 return DAG.getCopyFromReg(Chain, dl, X86::EAX, PtrVT, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004648}
4649
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004650// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman8181bd12008-07-27 21:46:04 +00004651static SDValue
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004652LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00004653 const MVT PtrVT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004654 SDValue InFlag, Chain;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004655 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004656
4657 // emit leaq symbol@TLSGD(%rip), %rdi
4658 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004659 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004660 GA->getValueType(0),
4661 GA->getOffset());
Dan Gohman8181bd12008-07-27 21:46:04 +00004662 SDValue Ops[] = { DAG.getEntryNode(), TGA};
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004663 SDValue Result = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004664 Chain = Result.getValue(1);
4665 InFlag = Result.getValue(2);
4666
aslb204cd52008-08-16 12:58:29 +00004667 // call __tls_get_addr. This function receives its argument in
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004668 // the register RDI.
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004669 Chain = DAG.getCopyToReg(Chain, dl, X86::RDI, Result, InFlag);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004670 InFlag = Chain.getValue(1);
4671
4672 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004673 SDValue Ops1[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00004674 DAG.getTargetExternalSymbol("__tls_get_addr",
4675 PtrVT),
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004676 DAG.getRegister(X86::RDI, PtrVT),
4677 InFlag };
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004678 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops1, 4);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004679 InFlag = Chain.getValue(1);
4680
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004681 return DAG.getCopyFromReg(Chain, dl, X86::RAX, PtrVT, InFlag);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004682}
4683
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004684// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
4685// "local exec" model.
Dan Gohman8181bd12008-07-27 21:46:04 +00004686static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00004687 const MVT PtrVT) {
Dale Johannesenea996922009-02-04 20:06:27 +00004688 DebugLoc dl = GA->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004689 // Get the Thread Pointer
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004690 SDValue ThreadPointer = DAG.getNode(X86ISD::THREAD_POINTER,
4691 DebugLoc::getUnknownLoc(), PtrVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004692 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
4693 // exec)
Dan Gohman8181bd12008-07-27 21:46:04 +00004694 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004695 GA->getValueType(0),
4696 GA->getOffset());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004697 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, TGA);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004698
4699 if (GA->getGlobal()->isDeclaration()) // initial exec TLS model
Dale Johannesenea996922009-02-04 20:06:27 +00004700 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004701 PseudoSourceValue::getGOT(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004702
4703 // The address of the thread local variable is the add of the thread
4704 // pointer with the offset of the variable.
Dale Johannesenea996922009-02-04 20:06:27 +00004705 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004706}
4707
Dan Gohman8181bd12008-07-27 21:46:04 +00004708SDValue
4709X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004710 // TODO: implement the "local dynamic" model
4711 // TODO: implement the "initial exec"model for pic executables
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004712 assert(Subtarget->isTargetELF() &&
4713 "TLS not implemented for non-ELF targets");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004714 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
4715 // If the relocation model is PIC, use the "General Dynamic" TLS Model,
4716 // otherwise use the "Local Exec"TLS Model
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004717 if (Subtarget->is64Bit()) {
4718 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
4719 } else {
4720 if (getTargetMachine().getRelocationModel() == Reloc::PIC_)
4721 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
4722 else
4723 return LowerToTLSExecModel(GA, DAG, getPointerTy());
4724 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004725}
4726
Dan Gohman8181bd12008-07-27 21:46:04 +00004727SDValue
4728X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004729 // FIXME there isn't really any debug info here
4730 DebugLoc dl = Op.getDebugLoc();
Bill Wendlingfef06052008-09-16 21:48:12 +00004731 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
4732 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004733 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004734 // With PIC, the address is actually $g + Offset.
4735 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4736 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004737 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Scott Michel91099d62009-02-17 22:15:04 +00004738 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004739 DebugLoc::getUnknownLoc(),
4740 getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004741 Result);
4742 }
4743
4744 return Result;
4745}
4746
Dan Gohman8181bd12008-07-27 21:46:04 +00004747SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004748 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dale Johannesen175fdef2009-02-06 21:50:26 +00004749 // FIXME there isn't really any debug into here
4750 DebugLoc dl = JT->getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00004751 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004752 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004753 // With PIC, the address is actually $g + Offset.
4754 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4755 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004756 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004757 DAG.getNode(X86ISD::GlobalBaseReg,
4758 DebugLoc::getUnknownLoc(),
4759 getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004760 Result);
4761 }
4762
4763 return Result;
4764}
4765
Chris Lattner62814a32007-10-17 06:02:13 +00004766/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michel91099d62009-02-17 22:15:04 +00004767/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohman8181bd12008-07-27 21:46:04 +00004768SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) {
Dan Gohman092014e2008-03-03 22:22:09 +00004769 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Duncan Sands92c43912008-06-06 12:08:01 +00004770 MVT VT = Op.getValueType();
4771 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004772 DebugLoc dl = Op.getDebugLoc();
Chris Lattner62814a32007-10-17 06:02:13 +00004773 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman8181bd12008-07-27 21:46:04 +00004774 SDValue ShOpLo = Op.getOperand(0);
4775 SDValue ShOpHi = Op.getOperand(1);
4776 SDValue ShAmt = Op.getOperand(2);
4777 SDValue Tmp1 = isSRA ?
Scott Michel91099d62009-02-17 22:15:04 +00004778 DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Dale Johannesence0805b2009-02-03 19:33:06 +00004779 DAG.getConstant(VTBits - 1, MVT::i8)) :
Dan Gohman092014e2008-03-03 22:22:09 +00004780 DAG.getConstant(0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004781
Dan Gohman8181bd12008-07-27 21:46:04 +00004782 SDValue Tmp2, Tmp3;
Chris Lattner62814a32007-10-17 06:02:13 +00004783 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004784 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
4785 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00004786 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00004787 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
4788 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00004789 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004790
Dale Johannesence0805b2009-02-03 19:33:06 +00004791 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
Dan Gohman092014e2008-03-03 22:22:09 +00004792 DAG.getConstant(VTBits, MVT::i8));
Dale Johannesence0805b2009-02-03 19:33:06 +00004793 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, VT,
Chris Lattner62814a32007-10-17 06:02:13 +00004794 AndNode, DAG.getConstant(0, MVT::i8));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004795
Dan Gohman8181bd12008-07-27 21:46:04 +00004796 SDValue Hi, Lo;
4797 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
4798 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
4799 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf19591c2008-06-30 10:19:09 +00004800
Chris Lattner62814a32007-10-17 06:02:13 +00004801 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004802 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4803 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner62814a32007-10-17 06:02:13 +00004804 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00004805 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4806 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner62814a32007-10-17 06:02:13 +00004807 }
4808
Dan Gohman8181bd12008-07-27 21:46:04 +00004809 SDValue Ops[2] = { Lo, Hi };
Dale Johannesence0805b2009-02-03 19:33:06 +00004810 return DAG.getMergeValues(Ops, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004811}
4812
Dan Gohman8181bd12008-07-27 21:46:04 +00004813SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004814 MVT SrcVT = Op.getOperand(0).getValueType();
Duncan Sandsec142ee2008-06-08 20:54:56 +00004815 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004816 "Unknown SINT_TO_FP to lower!");
Scott Michel91099d62009-02-17 22:15:04 +00004817
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004818 // These are really Legal; caller falls through into that case.
4819 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Dan Gohman8181bd12008-07-27 21:46:04 +00004820 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00004821 if (SrcVT == MVT::i64 && Op.getValueType() != MVT::f80 &&
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004822 Subtarget->is64Bit())
Dan Gohman8181bd12008-07-27 21:46:04 +00004823 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00004824
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004825 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00004826 unsigned Size = SrcVT.getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004827 MachineFunction &MF = DAG.getMachineFunction();
4828 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
Dan Gohman8181bd12008-07-27 21:46:04 +00004829 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00004830 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Dan Gohman12a9c082008-02-06 22:27:42 +00004831 StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004832 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004833
4834 // Build the FILD
4835 SDVTList Tys;
Chris Lattnercf515b52008-01-16 06:24:21 +00004836 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen2fc20782007-09-14 22:26:36 +00004837 if (useSSE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004838 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
4839 else
4840 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00004841 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004842 Ops.push_back(Chain);
4843 Ops.push_back(StackSlot);
4844 Ops.push_back(DAG.getValueType(SrcVT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004845 SDValue Result = DAG.getNode(useSSE ? X86ISD::FILD_FLAG : X86ISD::FILD, dl,
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004846 Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004847
Dale Johannesen2fc20782007-09-14 22:26:36 +00004848 if (useSSE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004849 Chain = Result.getValue(1);
Dan Gohman8181bd12008-07-27 21:46:04 +00004850 SDValue InFlag = Result.getValue(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004851
4852 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
4853 // shouldn't be necessary except that RFP cannot be live across
4854 // multiple blocks. When stackifier is fixed, they can be uncoupled.
4855 MachineFunction &MF = DAG.getMachineFunction();
4856 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
Dan Gohman8181bd12008-07-27 21:46:04 +00004857 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004858 Tys = DAG.getVTList(MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00004859 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004860 Ops.push_back(Chain);
4861 Ops.push_back(Result);
4862 Ops.push_back(StackSlot);
4863 Ops.push_back(DAG.getValueType(Op.getValueType()));
4864 Ops.push_back(InFlag);
Dale Johannesence0805b2009-02-03 19:33:06 +00004865 Chain = DAG.getNode(X86ISD::FST, dl, Tys, &Ops[0], Ops.size());
4866 Result = DAG.getLoad(Op.getValueType(), dl, Chain, StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004867 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004868 }
4869
4870 return Result;
4871}
4872
Bill Wendling14a30ef2009-01-17 03:56:04 +00004873// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
4874SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op, SelectionDAG &DAG) {
4875 // This algorithm is not obvious. Here it is in C code, more or less:
4876 /*
4877 double uint64_to_double( uint32_t hi, uint32_t lo ) {
4878 static const __m128i exp = { 0x4330000045300000ULL, 0 };
4879 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesenfb019af2008-10-21 23:07:49 +00004880
Bill Wendling14a30ef2009-01-17 03:56:04 +00004881 // Copy ints to xmm registers.
4882 __m128i xh = _mm_cvtsi32_si128( hi );
4883 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesenfb019af2008-10-21 23:07:49 +00004884
Bill Wendling14a30ef2009-01-17 03:56:04 +00004885 // Combine into low half of a single xmm register.
4886 __m128i x = _mm_unpacklo_epi32( xh, xl );
4887 __m128d d;
4888 double sd;
Dale Johannesenfb019af2008-10-21 23:07:49 +00004889
Bill Wendling14a30ef2009-01-17 03:56:04 +00004890 // Merge in appropriate exponents to give the integer bits the right
4891 // magnitude.
4892 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesenfb019af2008-10-21 23:07:49 +00004893
Bill Wendling14a30ef2009-01-17 03:56:04 +00004894 // Subtract away the biases to deal with the IEEE-754 double precision
4895 // implicit 1.
4896 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesenfb019af2008-10-21 23:07:49 +00004897
Bill Wendling14a30ef2009-01-17 03:56:04 +00004898 // All conversions up to here are exact. The correctly rounded result is
4899 // calculated using the current rounding mode using the following
4900 // horizontal add.
4901 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
4902 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
4903 // store doesn't really need to be here (except
4904 // maybe to zero the other double)
4905 return sd;
4906 }
4907 */
Dale Johannesenfb019af2008-10-21 23:07:49 +00004908
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004909 DebugLoc dl = Op.getDebugLoc();
Dale Johannesence0805b2009-02-03 19:33:06 +00004910
Dale Johannesena359b8b2008-10-21 20:50:01 +00004911 // Build some magic constants.
Bill Wendling14a30ef2009-01-17 03:56:04 +00004912 std::vector<Constant*> CV0;
Dale Johannesena359b8b2008-10-21 20:50:01 +00004913 CV0.push_back(ConstantInt::get(APInt(32, 0x45300000)));
4914 CV0.push_back(ConstantInt::get(APInt(32, 0x43300000)));
4915 CV0.push_back(ConstantInt::get(APInt(32, 0)));
4916 CV0.push_back(ConstantInt::get(APInt(32, 0)));
4917 Constant *C0 = ConstantVector::get(CV0);
4918 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 4);
4919
Bill Wendling14a30ef2009-01-17 03:56:04 +00004920 std::vector<Constant*> CV1;
Dale Johannesena359b8b2008-10-21 20:50:01 +00004921 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4530000000000000ULL))));
4922 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4330000000000000ULL))));
4923 Constant *C1 = ConstantVector::get(CV1);
4924 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 4);
4925
4926 SmallVector<SDValue, 4> MaskVec;
4927 MaskVec.push_back(DAG.getConstant(0, MVT::i32));
4928 MaskVec.push_back(DAG.getConstant(4, MVT::i32));
4929 MaskVec.push_back(DAG.getConstant(1, MVT::i32));
4930 MaskVec.push_back(DAG.getConstant(5, MVT::i32));
Scott Michel91099d62009-02-17 22:15:04 +00004931 SDValue UnpcklMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Dale Johannesence0805b2009-02-03 19:33:06 +00004932 &MaskVec[0], MaskVec.size());
Dale Johannesena359b8b2008-10-21 20:50:01 +00004933 SmallVector<SDValue, 4> MaskVec2;
Duncan Sandsca872ca2008-10-22 11:24:12 +00004934 MaskVec2.push_back(DAG.getConstant(1, MVT::i32));
4935 MaskVec2.push_back(DAG.getConstant(0, MVT::i32));
Scott Michel91099d62009-02-17 22:15:04 +00004936 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32,
Dale Johannesence0805b2009-02-03 19:33:06 +00004937 &MaskVec2[0], MaskVec2.size());
Dale Johannesena359b8b2008-10-21 20:50:01 +00004938
Dale Johannesence0805b2009-02-03 19:33:06 +00004939 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
4940 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sandsca872ca2008-10-22 11:24:12 +00004941 Op.getOperand(0),
4942 DAG.getIntPtrConstant(1)));
Dale Johannesence0805b2009-02-03 19:33:06 +00004943 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
4944 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sandsca872ca2008-10-22 11:24:12 +00004945 Op.getOperand(0),
4946 DAG.getIntPtrConstant(0)));
Dale Johannesence0805b2009-02-03 19:33:06 +00004947 SDValue Unpck1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v4i32,
Dale Johannesena359b8b2008-10-21 20:50:01 +00004948 XR1, XR2, UnpcklMask);
Dale Johannesence0805b2009-02-03 19:33:06 +00004949 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Bill Wendling14a30ef2009-01-17 03:56:04 +00004950 PseudoSourceValue::getConstantPool(), 0,
4951 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00004952 SDValue Unpck2 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v4i32,
Bill Wendling14a30ef2009-01-17 03:56:04 +00004953 Unpck1, CLod0, UnpcklMask);
Dale Johannesence0805b2009-02-03 19:33:06 +00004954 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2);
4955 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Bill Wendling14a30ef2009-01-17 03:56:04 +00004956 PseudoSourceValue::getConstantPool(), 0,
4957 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00004958 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling14a30ef2009-01-17 03:56:04 +00004959
Dale Johannesena359b8b2008-10-21 20:50:01 +00004960 // Add the halves; easiest way is to swap them into another reg first.
Dale Johannesence0805b2009-02-03 19:33:06 +00004961 SDValue Shuf = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2f64,
Dale Johannesena359b8b2008-10-21 20:50:01 +00004962 Sub, Sub, ShufMask);
Dale Johannesence0805b2009-02-03 19:33:06 +00004963 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
4964 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesena359b8b2008-10-21 20:50:01 +00004965 DAG.getIntPtrConstant(0));
4966}
4967
Bill Wendling14a30ef2009-01-17 03:56:04 +00004968// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
4969SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004970 DebugLoc dl = Op.getDebugLoc();
Bill Wendling14a30ef2009-01-17 03:56:04 +00004971 // FP constant to bias correct the final result.
4972 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
4973 MVT::f64);
4974
4975 // Load the 32-bit value into an XMM register.
Dale Johannesence0805b2009-02-03 19:33:06 +00004976 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
4977 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling14a30ef2009-01-17 03:56:04 +00004978 Op.getOperand(0),
4979 DAG.getIntPtrConstant(0)));
4980
Dale Johannesence0805b2009-02-03 19:33:06 +00004981 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
4982 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load),
Bill Wendling14a30ef2009-01-17 03:56:04 +00004983 DAG.getIntPtrConstant(0));
4984
4985 // Or the load with the bias.
Dale Johannesence0805b2009-02-03 19:33:06 +00004986 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
4987 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
4988 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Chengc0ab5e52009-01-19 08:19:57 +00004989 MVT::v2f64, Load)),
Dale Johannesence0805b2009-02-03 19:33:06 +00004990 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
4991 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Chengc0ab5e52009-01-19 08:19:57 +00004992 MVT::v2f64, Bias)));
Dale Johannesence0805b2009-02-03 19:33:06 +00004993 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
4994 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or),
Bill Wendling14a30ef2009-01-17 03:56:04 +00004995 DAG.getIntPtrConstant(0));
4996
4997 // Subtract the bias.
Dale Johannesence0805b2009-02-03 19:33:06 +00004998 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling14a30ef2009-01-17 03:56:04 +00004999
5000 // Handle final rounding.
Bill Wendlingdb547de2009-01-17 07:40:19 +00005001 MVT DestVT = Op.getValueType();
5002
5003 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005004 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendlingdb547de2009-01-17 07:40:19 +00005005 DAG.getIntPtrConstant(0));
5006 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005007 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendlingdb547de2009-01-17 07:40:19 +00005008 }
5009
5010 // Handle final rounding.
5011 return Sub;
Bill Wendling14a30ef2009-01-17 03:56:04 +00005012}
5013
5014SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Evan Cheng44fd2392009-01-19 08:08:22 +00005015 SDValue N0 = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005016 DebugLoc dl = Op.getDebugLoc();
Bill Wendling14a30ef2009-01-17 03:56:04 +00005017
Evan Cheng44fd2392009-01-19 08:08:22 +00005018 // Now not UINT_TO_FP is legal (it's marked custom), dag combiner won't
5019 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
5020 // the optimization here.
5021 if (DAG.SignBitIsZero(N0))
Dale Johannesence0805b2009-02-03 19:33:06 +00005022 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Cheng44fd2392009-01-19 08:08:22 +00005023
5024 MVT SrcVT = N0.getValueType();
Bill Wendling14a30ef2009-01-17 03:56:04 +00005025 if (SrcVT == MVT::i64) {
5026 // We only handle SSE2 f64 target here; caller can handle the rest.
5027 if (Op.getValueType() != MVT::f64 || !X86ScalarSSEf64)
5028 return SDValue();
Bill Wendlingdb547de2009-01-17 07:40:19 +00005029
Bill Wendling14a30ef2009-01-17 03:56:04 +00005030 return LowerUINT_TO_FP_i64(Op, DAG);
5031 } else if (SrcVT == MVT::i32) {
Bill Wendling14a30ef2009-01-17 03:56:04 +00005032 return LowerUINT_TO_FP_i32(Op, DAG);
5033 }
5034
5035 assert(0 && "Unknown UINT_TO_FP to lower!");
5036 return SDValue();
5037}
5038
Dan Gohman8181bd12008-07-27 21:46:04 +00005039std::pair<SDValue,SDValue> X86TargetLowering::
5040FP_TO_SINTHelper(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005041 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsec142ee2008-06-08 20:54:56 +00005042 assert(Op.getValueType().getSimpleVT() <= MVT::i64 &&
5043 Op.getValueType().getSimpleVT() >= MVT::i16 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005044 "Unknown FP_TO_SINT to lower!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005045
Dale Johannesen2fc20782007-09-14 22:26:36 +00005046 // These are really Legal.
Scott Michel91099d62009-02-17 22:15:04 +00005047 if (Op.getValueType() == MVT::i32 &&
Chris Lattnercf515b52008-01-16 06:24:21 +00005048 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman8181bd12008-07-27 21:46:04 +00005049 return std::make_pair(SDValue(), SDValue());
Dale Johannesen958b08b2007-09-19 23:55:34 +00005050 if (Subtarget->is64Bit() &&
5051 Op.getValueType() == MVT::i64 &&
5052 Op.getOperand(0).getValueType() != MVT::f80)
Dan Gohman8181bd12008-07-27 21:46:04 +00005053 return std::make_pair(SDValue(), SDValue());
Dale Johannesen2fc20782007-09-14 22:26:36 +00005054
Evan Cheng05441e62007-10-15 20:11:21 +00005055 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
5056 // stack slot.
5057 MachineFunction &MF = DAG.getMachineFunction();
Duncan Sands92c43912008-06-06 12:08:01 +00005058 unsigned MemSize = Op.getValueType().getSizeInBits()/8;
Evan Cheng05441e62007-10-15 20:11:21 +00005059 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
Dan Gohman8181bd12008-07-27 21:46:04 +00005060 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005061 unsigned Opc;
Duncan Sands92c43912008-06-06 12:08:01 +00005062 switch (Op.getValueType().getSimpleVT()) {
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005063 default: assert(0 && "Invalid FP_TO_SINT to lower!");
5064 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
5065 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
5066 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005067 }
5068
Dan Gohman8181bd12008-07-27 21:46:04 +00005069 SDValue Chain = DAG.getEntryNode();
5070 SDValue Value = Op.getOperand(0);
Chris Lattnercf515b52008-01-16 06:24:21 +00005071 if (isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005072 assert(Op.getValueType() == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Dale Johannesence0805b2009-02-03 19:33:06 +00005073 Chain = DAG.getStore(Chain, dl, Value, StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005074 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005075 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00005076 SDValue Ops[] = {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005077 Chain, StackSlot, DAG.getValueType(Op.getOperand(0).getValueType())
5078 };
Dale Johannesence0805b2009-02-03 19:33:06 +00005079 Value = DAG.getNode(X86ISD::FLD, dl, Tys, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005080 Chain = Value.getValue(1);
5081 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
5082 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
5083 }
5084
5085 // Build the FP_TO_INT*_IN_MEM
Dan Gohman8181bd12008-07-27 21:46:04 +00005086 SDValue Ops[] = { Chain, Value, StackSlot };
Dale Johannesence0805b2009-02-03 19:33:06 +00005087 SDValue FIST = DAG.getNode(Opc, dl, MVT::Other, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005088
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005089 return std::make_pair(FIST, StackSlot);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005090}
5091
Dan Gohman8181bd12008-07-27 21:46:04 +00005092SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) {
5093 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(Op, DAG);
5094 SDValue FIST = Vals.first, StackSlot = Vals.second;
Gabor Greif1c80d112008-08-28 21:40:38 +00005095 if (FIST.getNode() == 0) return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00005096
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005097 // Load the result.
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005098 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Dale Johannesence0805b2009-02-03 19:33:06 +00005099 FIST, StackSlot, NULL, 0);
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005100}
5101
Dan Gohman8181bd12008-07-27 21:46:04 +00005102SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005103 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00005104 MVT VT = Op.getValueType();
5105 MVT EltVT = VT;
5106 if (VT.isVector())
5107 EltVT = VT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005108 std::vector<Constant*> CV;
5109 if (EltVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005110 Constant *C = ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005111 CV.push_back(C);
5112 CV.push_back(C);
5113 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005114 Constant *C = ConstantFP::get(APFloat(APInt(32, ~(1U << 31))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005115 CV.push_back(C);
5116 CV.push_back(C);
5117 CV.push_back(C);
5118 CV.push_back(C);
5119 }
Dan Gohman11821702007-07-27 17:16:43 +00005120 Constant *C = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005121 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00005122 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005123 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005124 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005125 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005126}
5127
Dan Gohman8181bd12008-07-27 21:46:04 +00005128SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005129 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00005130 MVT VT = Op.getValueType();
5131 MVT EltVT = VT;
Evan Cheng92b8f782007-07-19 23:36:01 +00005132 unsigned EltNum = 1;
Duncan Sands92c43912008-06-06 12:08:01 +00005133 if (VT.isVector()) {
5134 EltVT = VT.getVectorElementType();
5135 EltNum = VT.getVectorNumElements();
Evan Cheng92b8f782007-07-19 23:36:01 +00005136 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005137 std::vector<Constant*> CV;
5138 if (EltVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005139 Constant *C = ConstantFP::get(APFloat(APInt(64, 1ULL << 63)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005140 CV.push_back(C);
5141 CV.push_back(C);
5142 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005143 Constant *C = ConstantFP::get(APFloat(APInt(32, 1U << 31)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005144 CV.push_back(C);
5145 CV.push_back(C);
5146 CV.push_back(C);
5147 CV.push_back(C);
5148 }
Dan Gohman11821702007-07-27 17:16:43 +00005149 Constant *C = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005150 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00005151 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005152 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005153 false, 16);
Duncan Sands92c43912008-06-06 12:08:01 +00005154 if (VT.isVector()) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005155 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
5156 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Scott Michel91099d62009-02-17 22:15:04 +00005157 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesence0805b2009-02-03 19:33:06 +00005158 Op.getOperand(0)),
5159 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask)));
Evan Cheng92b8f782007-07-19 23:36:01 +00005160 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00005161 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng92b8f782007-07-19 23:36:01 +00005162 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005163}
5164
Dan Gohman8181bd12008-07-27 21:46:04 +00005165SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
5166 SDValue Op0 = Op.getOperand(0);
5167 SDValue Op1 = Op.getOperand(1);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005168 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00005169 MVT VT = Op.getValueType();
5170 MVT SrcVT = Op1.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005171
5172 // If second operand is smaller, extend it first.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005173 if (SrcVT.bitsLT(VT)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005174 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005175 SrcVT = VT;
5176 }
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005177 // And if it is bigger, shrink it first.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005178 if (SrcVT.bitsGT(VT)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005179 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005180 SrcVT = VT;
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005181 }
5182
5183 // At this point the operands and the result should have the same
5184 // type, and that won't be f80 since that is not custom lowered.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005185
5186 // First get the sign bit of second operand.
5187 std::vector<Constant*> CV;
5188 if (SrcVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005189 CV.push_back(ConstantFP::get(APFloat(APInt(64, 1ULL << 63))));
5190 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005191 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005192 CV.push_back(ConstantFP::get(APFloat(APInt(32, 1U << 31))));
5193 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5194 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5195 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005196 }
Dan Gohman11821702007-07-27 17:16:43 +00005197 Constant *C = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005198 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00005199 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005200 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005201 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005202 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005203
5204 // Shift sign bit right or left if the two operands have different types.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005205 if (SrcVT.bitsGT(VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005206 // Op0 is MVT::f32, Op1 is MVT::f64.
Dale Johannesence0805b2009-02-03 19:33:06 +00005207 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
5208 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005209 DAG.getConstant(32, MVT::i32));
Dale Johannesence0805b2009-02-03 19:33:06 +00005210 SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit);
5211 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner5872a362008-01-17 07:00:52 +00005212 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005213 }
5214
5215 // Clear first operand sign bit.
5216 CV.clear();
5217 if (VT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005218 CV.push_back(ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63)))));
5219 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005220 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005221 CV.push_back(ConstantFP::get(APFloat(APInt(32, ~(1U << 31)))));
5222 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5223 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5224 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005225 }
Dan Gohman11821702007-07-27 17:16:43 +00005226 C = ConstantVector::get(CV);
5227 CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00005228 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005229 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005230 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005231 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005232
5233 // Or the value with the sign bit.
Dale Johannesence0805b2009-02-03 19:33:06 +00005234 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005235}
5236
Dan Gohman8181bd12008-07-27 21:46:04 +00005237SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
Evan Cheng950aac02007-09-25 01:57:46 +00005238 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
Dan Gohman8181bd12008-07-27 21:46:04 +00005239 SDValue Op0 = Op.getOperand(0);
5240 SDValue Op1 = Op.getOperand(1);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005241 DebugLoc dl = Op.getDebugLoc();
Chris Lattner77a62312008-12-25 05:34:37 +00005242 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Scott Michel91099d62009-02-17 22:15:04 +00005243
Dan Gohman22cefb02009-01-29 01:59:02 +00005244 // Lower (X & (1 << N)) == 0 to BT(X, N).
5245 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
5246 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Dan Gohman13dd9522009-01-13 23:25:30 +00005247 if (Op0.getOpcode() == ISD::AND &&
5248 Op0.hasOneUse() &&
5249 Op1.getOpcode() == ISD::Constant &&
Dan Gohman22cefb02009-01-29 01:59:02 +00005250 cast<ConstantSDNode>(Op1)->getZExtValue() == 0 &&
Chris Lattner77a62312008-12-25 05:34:37 +00005251 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Dan Gohman22cefb02009-01-29 01:59:02 +00005252 SDValue LHS, RHS;
5253 if (Op0.getOperand(1).getOpcode() == ISD::SHL) {
5254 if (ConstantSDNode *Op010C =
5255 dyn_cast<ConstantSDNode>(Op0.getOperand(1).getOperand(0)))
5256 if (Op010C->getZExtValue() == 1) {
5257 LHS = Op0.getOperand(0);
5258 RHS = Op0.getOperand(1).getOperand(1);
5259 }
5260 } else if (Op0.getOperand(0).getOpcode() == ISD::SHL) {
5261 if (ConstantSDNode *Op000C =
5262 dyn_cast<ConstantSDNode>(Op0.getOperand(0).getOperand(0)))
5263 if (Op000C->getZExtValue() == 1) {
5264 LHS = Op0.getOperand(1);
5265 RHS = Op0.getOperand(0).getOperand(1);
5266 }
5267 } else if (Op0.getOperand(1).getOpcode() == ISD::Constant) {
5268 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op0.getOperand(1));
5269 SDValue AndLHS = Op0.getOperand(0);
5270 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
5271 LHS = AndLHS.getOperand(0);
5272 RHS = AndLHS.getOperand(1);
5273 }
5274 }
Evan Cheng950aac02007-09-25 01:57:46 +00005275
Dan Gohman22cefb02009-01-29 01:59:02 +00005276 if (LHS.getNode()) {
Chris Lattner77a62312008-12-25 05:34:37 +00005277 // If LHS is i8, promote it to i16 with any_extend. There is no i8 BT
5278 // instruction. Since the shift amount is in-range-or-undefined, we know
5279 // that doing a bittest on the i16 value is ok. We extend to i32 because
5280 // the encoding for the i16 version is larger than the i32 version.
5281 if (LHS.getValueType() == MVT::i8)
Dale Johannesence0805b2009-02-03 19:33:06 +00005282 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattner77a62312008-12-25 05:34:37 +00005283
5284 // If the operand types disagree, extend the shift amount to match. Since
5285 // BT ignores high bits (like shifts) we can use anyextend.
5286 if (LHS.getValueType() != RHS.getValueType())
Dale Johannesence0805b2009-02-03 19:33:06 +00005287 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohman22cefb02009-01-29 01:59:02 +00005288
Dale Johannesence0805b2009-02-03 19:33:06 +00005289 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Dan Gohman0fc9ed62009-01-07 00:15:08 +00005290 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Dale Johannesence0805b2009-02-03 19:33:06 +00005291 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattner77a62312008-12-25 05:34:37 +00005292 DAG.getConstant(Cond, MVT::i8), BT);
5293 }
5294 }
5295
5296 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
5297 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Scott Michel91099d62009-02-17 22:15:04 +00005298
Dale Johannesence0805b2009-02-03 19:33:06 +00005299 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
5300 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattner60435922008-12-24 00:11:37 +00005301 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng950aac02007-09-25 01:57:46 +00005302}
5303
Dan Gohman8181bd12008-07-27 21:46:04 +00005304SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
5305 SDValue Cond;
5306 SDValue Op0 = Op.getOperand(0);
5307 SDValue Op1 = Op.getOperand(1);
5308 SDValue CC = Op.getOperand(2);
Nate Begeman03605a02008-07-17 16:51:19 +00005309 MVT VT = Op.getValueType();
5310 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
5311 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005312 DebugLoc dl = Op.getDebugLoc();
Nate Begeman03605a02008-07-17 16:51:19 +00005313
5314 if (isFP) {
5315 unsigned SSECC = 8;
Evan Cheng33754092008-08-05 22:19:15 +00005316 MVT VT0 = Op0.getValueType();
5317 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
5318 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman03605a02008-07-17 16:51:19 +00005319 bool Swap = false;
5320
5321 switch (SetCCOpcode) {
5322 default: break;
Nate Begeman6357f9d2008-07-25 19:05:58 +00005323 case ISD::SETOEQ:
Nate Begeman03605a02008-07-17 16:51:19 +00005324 case ISD::SETEQ: SSECC = 0; break;
Scott Michel91099d62009-02-17 22:15:04 +00005325 case ISD::SETOGT:
Nate Begeman03605a02008-07-17 16:51:19 +00005326 case ISD::SETGT: Swap = true; // Fallthrough
5327 case ISD::SETLT:
5328 case ISD::SETOLT: SSECC = 1; break;
5329 case ISD::SETOGE:
5330 case ISD::SETGE: Swap = true; // Fallthrough
5331 case ISD::SETLE:
5332 case ISD::SETOLE: SSECC = 2; break;
5333 case ISD::SETUO: SSECC = 3; break;
Nate Begeman6357f9d2008-07-25 19:05:58 +00005334 case ISD::SETUNE:
Nate Begeman03605a02008-07-17 16:51:19 +00005335 case ISD::SETNE: SSECC = 4; break;
5336 case ISD::SETULE: Swap = true;
5337 case ISD::SETUGE: SSECC = 5; break;
5338 case ISD::SETULT: Swap = true;
5339 case ISD::SETUGT: SSECC = 6; break;
5340 case ISD::SETO: SSECC = 7; break;
5341 }
5342 if (Swap)
5343 std::swap(Op0, Op1);
5344
Nate Begeman6357f9d2008-07-25 19:05:58 +00005345 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman03605a02008-07-17 16:51:19 +00005346 if (SSECC == 8) {
Nate Begeman6357f9d2008-07-25 19:05:58 +00005347 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005348 SDValue UNORD, EQ;
Dale Johannesence0805b2009-02-03 19:33:06 +00005349 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
5350 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
5351 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begeman6357f9d2008-07-25 19:05:58 +00005352 }
5353 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005354 SDValue ORD, NEQ;
Dale Johannesence0805b2009-02-03 19:33:06 +00005355 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
5356 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
5357 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begeman6357f9d2008-07-25 19:05:58 +00005358 }
5359 assert(0 && "Illegal FP comparison");
Nate Begeman03605a02008-07-17 16:51:19 +00005360 }
5361 // Handle all other FP comparisons here.
Dale Johannesence0805b2009-02-03 19:33:06 +00005362 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman03605a02008-07-17 16:51:19 +00005363 }
Scott Michel91099d62009-02-17 22:15:04 +00005364
Nate Begeman03605a02008-07-17 16:51:19 +00005365 // We are handling one of the integer comparisons here. Since SSE only has
5366 // GT and EQ comparisons for integer, swapping operands and multiple
5367 // operations may be required for some comparisons.
5368 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
5369 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michel91099d62009-02-17 22:15:04 +00005370
Nate Begeman03605a02008-07-17 16:51:19 +00005371 switch (VT.getSimpleVT()) {
5372 default: break;
5373 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
5374 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
5375 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
5376 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
5377 }
Scott Michel91099d62009-02-17 22:15:04 +00005378
Nate Begeman03605a02008-07-17 16:51:19 +00005379 switch (SetCCOpcode) {
5380 default: break;
5381 case ISD::SETNE: Invert = true;
5382 case ISD::SETEQ: Opc = EQOpc; break;
5383 case ISD::SETLT: Swap = true;
5384 case ISD::SETGT: Opc = GTOpc; break;
5385 case ISD::SETGE: Swap = true;
5386 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
5387 case ISD::SETULT: Swap = true;
5388 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
5389 case ISD::SETUGE: Swap = true;
5390 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
5391 }
5392 if (Swap)
5393 std::swap(Op0, Op1);
Scott Michel91099d62009-02-17 22:15:04 +00005394
Nate Begeman03605a02008-07-17 16:51:19 +00005395 // Since SSE has no unsigned integer comparisons, we need to flip the sign
5396 // bits of the inputs before performing those operations.
5397 if (FlipSigns) {
5398 MVT EltVT = VT.getVectorElementType();
Duncan Sands505ba942009-02-01 18:06:53 +00005399 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
5400 EltVT);
Dan Gohman8181bd12008-07-27 21:46:04 +00005401 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Dale Johannesence0805b2009-02-03 19:33:06 +00005402 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
Nate Begeman03605a02008-07-17 16:51:19 +00005403 SignBits.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00005404 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
5405 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman03605a02008-07-17 16:51:19 +00005406 }
Scott Michel91099d62009-02-17 22:15:04 +00005407
Dale Johannesence0805b2009-02-03 19:33:06 +00005408 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman03605a02008-07-17 16:51:19 +00005409
5410 // If the logical-not of the result is required, perform that now.
Bob Wilson81a42cf2009-01-22 17:39:32 +00005411 if (Invert)
Dale Johannesence0805b2009-02-03 19:33:06 +00005412 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson81a42cf2009-01-22 17:39:32 +00005413
Nate Begeman03605a02008-07-17 16:51:19 +00005414 return Result;
5415}
Evan Cheng950aac02007-09-25 01:57:46 +00005416
Evan Chengd580f022008-12-03 08:38:43 +00005417// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
5418static bool isX86LogicalCmp(unsigned Opc) {
5419 return Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI;
5420}
5421
Dan Gohman8181bd12008-07-27 21:46:04 +00005422SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005423 bool addTest = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00005424 SDValue Cond = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005425 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00005426 SDValue CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005427
5428 if (Cond.getOpcode() == ISD::SETCC)
Evan Cheng621216e2007-09-29 00:00:36 +00005429 Cond = LowerSETCC(Cond, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005430
Evan Cheng50d37ab2007-10-08 22:16:29 +00005431 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5432 // setting operand in place of the X86ISD::SETCC.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005433 if (Cond.getOpcode() == X86ISD::SETCC) {
5434 CC = Cond.getOperand(0);
5435
Dan Gohman8181bd12008-07-27 21:46:04 +00005436 SDValue Cmp = Cond.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005437 unsigned Opc = Cmp.getOpcode();
Duncan Sands92c43912008-06-06 12:08:01 +00005438 MVT VT = Op.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00005439
Evan Cheng50d37ab2007-10-08 22:16:29 +00005440 bool IllegalFPCMov = false;
Duncan Sands92c43912008-06-06 12:08:01 +00005441 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattnercf515b52008-01-16 06:24:21 +00005442 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman40686732008-09-26 21:54:37 +00005443 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michel91099d62009-02-17 22:15:04 +00005444
Dan Gohman22cefb02009-01-29 01:59:02 +00005445 if ((isX86LogicalCmp(Opc) && !IllegalFPCMov) || Opc == X86ISD::BT) { // FIXME
Evan Cheng50d37ab2007-10-08 22:16:29 +00005446 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00005447 addTest = false;
5448 }
5449 }
5450
5451 if (addTest) {
5452 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Scott Michel91099d62009-02-17 22:15:04 +00005453 Cond= DAG.getNode(X86ISD::CMP, dl, MVT::i32, Cond,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005454 DAG.getConstant(0, MVT::i8));
Evan Cheng950aac02007-09-25 01:57:46 +00005455 }
5456
Duncan Sands92c43912008-06-06 12:08:01 +00005457 const MVT *VTs = DAG.getNodeValueTypes(Op.getValueType(),
Evan Cheng950aac02007-09-25 01:57:46 +00005458 MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005459 SmallVector<SDValue, 4> Ops;
Evan Cheng950aac02007-09-25 01:57:46 +00005460 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
5461 // condition is true.
5462 Ops.push_back(Op.getOperand(2));
5463 Ops.push_back(Op.getOperand(1));
5464 Ops.push_back(CC);
5465 Ops.push_back(Cond);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005466 return DAG.getNode(X86ISD::CMOV, dl, VTs, 2, &Ops[0], Ops.size());
Evan Cheng950aac02007-09-25 01:57:46 +00005467}
5468
Evan Chengd580f022008-12-03 08:38:43 +00005469// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
5470// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
5471// from the AND / OR.
5472static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
5473 Opc = Op.getOpcode();
5474 if (Opc != ISD::OR && Opc != ISD::AND)
5475 return false;
5476 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5477 Op.getOperand(0).hasOneUse() &&
5478 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
5479 Op.getOperand(1).hasOneUse());
5480}
5481
Evan Cheng67f98b12009-02-02 08:19:07 +00005482// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
5483// 1 and that the SETCC node has a single use.
Evan Cheng8c3af2c2009-02-02 08:07:36 +00005484static bool isXor1OfSetCC(SDValue Op) {
5485 if (Op.getOpcode() != ISD::XOR)
5486 return false;
5487 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
5488 if (N1C && N1C->getAPIntValue() == 1) {
5489 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5490 Op.getOperand(0).hasOneUse();
5491 }
5492 return false;
5493}
5494
Dan Gohman8181bd12008-07-27 21:46:04 +00005495SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005496 bool addTest = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00005497 SDValue Chain = Op.getOperand(0);
5498 SDValue Cond = Op.getOperand(1);
5499 SDValue Dest = Op.getOperand(2);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005500 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00005501 SDValue CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005502
5503 if (Cond.getOpcode() == ISD::SETCC)
Evan Cheng621216e2007-09-29 00:00:36 +00005504 Cond = LowerSETCC(Cond, DAG);
Chris Lattner77a62312008-12-25 05:34:37 +00005505#if 0
5506 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingf5399032008-12-12 21:15:41 +00005507 else if (Cond.getOpcode() == X86ISD::ADD ||
5508 Cond.getOpcode() == X86ISD::SUB ||
5509 Cond.getOpcode() == X86ISD::SMUL ||
5510 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling7e04be62008-12-09 22:08:41 +00005511 Cond = LowerXALUO(Cond, DAG);
Chris Lattner77a62312008-12-25 05:34:37 +00005512#endif
Scott Michel91099d62009-02-17 22:15:04 +00005513
Evan Cheng50d37ab2007-10-08 22:16:29 +00005514 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5515 // setting operand in place of the X86ISD::SETCC.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005516 if (Cond.getOpcode() == X86ISD::SETCC) {
5517 CC = Cond.getOperand(0);
5518
Dan Gohman8181bd12008-07-27 21:46:04 +00005519 SDValue Cmp = Cond.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005520 unsigned Opc = Cmp.getOpcode();
Chris Lattner77a62312008-12-25 05:34:37 +00005521 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
5522 if (isX86LogicalCmp(Opc) || Opc == X86ISD::BT) {
Evan Cheng50d37ab2007-10-08 22:16:29 +00005523 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00005524 addTest = false;
Bill Wendlingd3511522008-12-02 01:06:39 +00005525 } else {
Evan Chengd580f022008-12-03 08:38:43 +00005526 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling809e7bd2008-12-03 08:32:02 +00005527 default: break;
5528 case X86::COND_O:
Dan Gohman0fc9ed62009-01-07 00:15:08 +00005529 case X86::COND_B:
Chris Lattner77a62312008-12-25 05:34:37 +00005530 // These can only come from an arithmetic instruction with overflow,
5531 // e.g. SADDO, UADDO.
Bill Wendling809e7bd2008-12-03 08:32:02 +00005532 Cond = Cond.getNode()->getOperand(1);
5533 addTest = false;
5534 break;
Bill Wendlingd3511522008-12-02 01:06:39 +00005535 }
Evan Cheng950aac02007-09-25 01:57:46 +00005536 }
Evan Chengd580f022008-12-03 08:38:43 +00005537 } else {
5538 unsigned CondOpc;
5539 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
5540 SDValue Cmp = Cond.getOperand(0).getOperand(1);
5541 unsigned Opc = Cmp.getOpcode();
5542 if (CondOpc == ISD::OR) {
5543 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
5544 // two branches instead of an explicit OR instruction with a
5545 // separate test.
5546 if (Cmp == Cond.getOperand(1).getOperand(1) &&
5547 isX86LogicalCmp(Opc)) {
5548 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005549 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Chengd580f022008-12-03 08:38:43 +00005550 Chain, Dest, CC, Cmp);
5551 CC = Cond.getOperand(1).getOperand(0);
5552 Cond = Cmp;
5553 addTest = false;
5554 }
5555 } else { // ISD::AND
5556 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
5557 // two branches instead of an explicit AND instruction with a
5558 // separate test. However, we only do this if this block doesn't
5559 // have a fall-through edge, because this requires an explicit
5560 // jmp when the condition is false.
5561 if (Cmp == Cond.getOperand(1).getOperand(1) &&
5562 isX86LogicalCmp(Opc) &&
5563 Op.getNode()->hasOneUse()) {
5564 X86::CondCode CCode =
5565 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5566 CCode = X86::GetOppositeBranchCondition(CCode);
5567 CC = DAG.getConstant(CCode, MVT::i8);
5568 SDValue User = SDValue(*Op.getNode()->use_begin(), 0);
5569 // Look for an unconditional branch following this conditional branch.
5570 // We need this because we need to reverse the successors in order
5571 // to implement FCMP_OEQ.
5572 if (User.getOpcode() == ISD::BR) {
5573 SDValue FalseBB = User.getOperand(1);
5574 SDValue NewBR =
5575 DAG.UpdateNodeOperands(User, User.getOperand(0), Dest);
5576 assert(NewBR == User);
5577 Dest = FalseBB;
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005578
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005579 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Chengd580f022008-12-03 08:38:43 +00005580 Chain, Dest, CC, Cmp);
5581 X86::CondCode CCode =
5582 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
5583 CCode = X86::GetOppositeBranchCondition(CCode);
5584 CC = DAG.getConstant(CCode, MVT::i8);
5585 Cond = Cmp;
5586 addTest = false;
5587 }
5588 }
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005589 }
Evan Cheng8c3af2c2009-02-02 08:07:36 +00005590 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
5591 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
5592 // It should be transformed during dag combiner except when the condition
5593 // is set by a arithmetics with overflow node.
5594 X86::CondCode CCode =
5595 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5596 CCode = X86::GetOppositeBranchCondition(CCode);
5597 CC = DAG.getConstant(CCode, MVT::i8);
5598 Cond = Cond.getOperand(0).getOperand(1);
5599 addTest = false;
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005600 }
Evan Cheng950aac02007-09-25 01:57:46 +00005601 }
5602
5603 if (addTest) {
5604 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Scott Michel91099d62009-02-17 22:15:04 +00005605 Cond= DAG.getNode(X86ISD::CMP, dl, MVT::i32, Cond,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005606 DAG.getConstant(0, MVT::i8));
Evan Cheng950aac02007-09-25 01:57:46 +00005607 }
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005608 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005609 Chain, Dest, CC, Cond);
Evan Cheng950aac02007-09-25 01:57:46 +00005610}
5611
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005612
5613// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
5614// Calls to _alloca is needed to probe the stack when allocating more than 4k
5615// bytes in one go. Touching the stack at 4K increments is necessary to ensure
5616// that the guard pages used by the OS virtual memory manager are allocated in
5617// correct sequence.
Dan Gohman8181bd12008-07-27 21:46:04 +00005618SDValue
5619X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005620 SelectionDAG &DAG) {
5621 assert(Subtarget->isTargetCygMing() &&
5622 "This should be used only on Cygwin/Mingw targets");
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005623 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005624
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005625 // Get the inputs.
Dan Gohman8181bd12008-07-27 21:46:04 +00005626 SDValue Chain = Op.getOperand(0);
5627 SDValue Size = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005628 // FIXME: Ensure alignment here
5629
Dan Gohman8181bd12008-07-27 21:46:04 +00005630 SDValue Flag;
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005631
Duncan Sands92c43912008-06-06 12:08:01 +00005632 MVT IntPtr = getPointerTy();
5633 MVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005634
Chris Lattnerfe5d4022008-10-11 22:08:30 +00005635 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005636
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00005637 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005638 Flag = Chain.getValue(1);
5639
5640 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005641 SDValue Ops[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00005642 DAG.getTargetExternalSymbol("_alloca", IntPtr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005643 DAG.getRegister(X86::EAX, IntPtr),
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005644 DAG.getRegister(X86StackPtr, SPTy),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005645 Flag };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005646 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005647 Flag = Chain.getValue(1);
5648
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005649 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnerfe5d4022008-10-11 22:08:30 +00005650 DAG.getIntPtrConstant(0, true),
5651 DAG.getIntPtrConstant(0, true),
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005652 Flag);
5653
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00005654 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005655
Dan Gohman8181bd12008-07-27 21:46:04 +00005656 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005657 return DAG.getMergeValues(Ops1, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005658}
5659
Dan Gohman8181bd12008-07-27 21:46:04 +00005660SDValue
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005661X86TargetLowering::EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl,
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005662 SDValue Chain,
5663 SDValue Dst, SDValue Src,
5664 SDValue Size, unsigned Align,
5665 const Value *DstSV,
Bill Wendling4b2e3782008-10-01 00:59:58 +00005666 uint64_t DstSVOff) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00005667 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005668
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005669 // If not DWORD aligned or size is more than the threshold, call the library.
5670 // The libc version is likely to be faster for these cases. It can use the
5671 // address value and run time information about the CPU.
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005672 if ((Align & 3) != 0 ||
Dan Gohmane8b391e2008-04-12 04:36:06 +00005673 !ConstantSize ||
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005674 ConstantSize->getZExtValue() >
5675 getSubtarget()->getMaxInlineSizeThreshold()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005676 SDValue InFlag(0, 0);
Dan Gohmanf95c2bf2008-04-01 20:38:36 +00005677
5678 // Check to see if there is a specialized entry-point for memory zeroing.
Dan Gohmane8b391e2008-04-12 04:36:06 +00005679 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005680
Bill Wendling4b2e3782008-10-01 00:59:58 +00005681 if (const char *bzeroEntry = V &&
5682 V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
5683 MVT IntPtr = getPointerTy();
5684 const Type *IntPtrTy = TD->getIntPtrType();
Scott Michel91099d62009-02-17 22:15:04 +00005685 TargetLowering::ArgListTy Args;
Bill Wendling4b2e3782008-10-01 00:59:58 +00005686 TargetLowering::ArgListEntry Entry;
5687 Entry.Node = Dst;
5688 Entry.Ty = IntPtrTy;
5689 Args.push_back(Entry);
5690 Entry.Node = Size;
5691 Args.push_back(Entry);
5692 std::pair<SDValue,SDValue> CallResult =
Scott Michel91099d62009-02-17 22:15:04 +00005693 LowerCallTo(Chain, Type::VoidTy, false, false, false, false,
5694 CallingConv::C, false,
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005695 DAG.getExternalSymbol(bzeroEntry, IntPtr), Args, DAG, dl);
Bill Wendling4b2e3782008-10-01 00:59:58 +00005696 return CallResult.second;
Dan Gohmanf95c2bf2008-04-01 20:38:36 +00005697 }
5698
Dan Gohmane8b391e2008-04-12 04:36:06 +00005699 // Otherwise have the target-independent code call memset.
Dan Gohman8181bd12008-07-27 21:46:04 +00005700 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005701 }
5702
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005703 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00005704 SDValue InFlag(0, 0);
Duncan Sands92c43912008-06-06 12:08:01 +00005705 MVT AVT;
Dan Gohman8181bd12008-07-27 21:46:04 +00005706 SDValue Count;
Dan Gohmane8b391e2008-04-12 04:36:06 +00005707 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005708 unsigned BytesLeft = 0;
5709 bool TwoRepStos = false;
5710 if (ValC) {
5711 unsigned ValReg;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005712 uint64_t Val = ValC->getZExtValue() & 255;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005713
5714 // If the value is a constant, then we can potentially use larger sets.
5715 switch (Align & 3) {
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005716 case 2: // WORD aligned
5717 AVT = MVT::i16;
5718 ValReg = X86::AX;
5719 Val = (Val << 8) | Val;
5720 break;
5721 case 0: // DWORD aligned
5722 AVT = MVT::i32;
5723 ValReg = X86::EAX;
5724 Val = (Val << 8) | Val;
5725 Val = (Val << 16) | Val;
5726 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
5727 AVT = MVT::i64;
5728 ValReg = X86::RAX;
5729 Val = (Val << 32) | Val;
5730 }
5731 break;
5732 default: // Byte aligned
5733 AVT = MVT::i8;
5734 ValReg = X86::AL;
5735 Count = DAG.getIntPtrConstant(SizeVal);
5736 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005737 }
5738
Duncan Sandsec142ee2008-06-08 20:54:56 +00005739 if (AVT.bitsGT(MVT::i8)) {
Duncan Sands92c43912008-06-06 12:08:01 +00005740 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohmane8b391e2008-04-12 04:36:06 +00005741 Count = DAG.getIntPtrConstant(SizeVal / UBytes);
5742 BytesLeft = SizeVal % UBytes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005743 }
5744
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005745 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, AVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005746 InFlag);
5747 InFlag = Chain.getValue(1);
5748 } else {
5749 AVT = MVT::i8;
Dan Gohman271d1c22008-04-16 01:32:32 +00005750 Count = DAG.getIntPtrConstant(SizeVal);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005751 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005752 InFlag = Chain.getValue(1);
5753 }
5754
Scott Michel91099d62009-02-17 22:15:04 +00005755 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005756 X86::ECX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005757 Count, InFlag);
5758 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00005759 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005760 X86::EDI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00005761 Dst, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005762 InFlag = Chain.getValue(1);
5763
5764 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005765 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005766 Ops.push_back(Chain);
5767 Ops.push_back(DAG.getValueType(AVT));
5768 Ops.push_back(InFlag);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005769 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005770
5771 if (TwoRepStos) {
5772 InFlag = Chain.getValue(1);
Dan Gohmane8b391e2008-04-12 04:36:06 +00005773 Count = Size;
Duncan Sands92c43912008-06-06 12:08:01 +00005774 MVT CVT = Count.getValueType();
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005775 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005776 DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
Scott Michel91099d62009-02-17 22:15:04 +00005777 Chain = DAG.getCopyToReg(Chain, dl, (CVT == MVT::i64) ? X86::RCX :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005778 X86::ECX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005779 Left, InFlag);
5780 InFlag = Chain.getValue(1);
5781 Tys = DAG.getVTList(MVT::Other, MVT::Flag);
5782 Ops.clear();
5783 Ops.push_back(Chain);
5784 Ops.push_back(DAG.getValueType(MVT::i8));
5785 Ops.push_back(InFlag);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005786 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005787 } else if (BytesLeft) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00005788 // Handle the last 1 - 7 bytes.
5789 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands92c43912008-06-06 12:08:01 +00005790 MVT AddrVT = Dst.getValueType();
5791 MVT SizeVT = Size.getValueType();
Dan Gohmane8b391e2008-04-12 04:36:06 +00005792
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005793 Chain = DAG.getMemset(Chain, dl,
5794 DAG.getNode(ISD::ADD, dl, AddrVT, Dst,
Dan Gohmane8b391e2008-04-12 04:36:06 +00005795 DAG.getConstant(Offset, AddrVT)),
5796 Src,
5797 DAG.getConstant(BytesLeft, SizeVT),
Dan Gohman65118f42008-04-28 17:15:20 +00005798 Align, DstSV, DstSVOff + Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005799 }
5800
Dan Gohmane8b391e2008-04-12 04:36:06 +00005801 // TODO: Use a Tokenfactor, as in memcpy, instead of a single chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005802 return Chain;
5803}
5804
Dan Gohman8181bd12008-07-27 21:46:04 +00005805SDValue
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005806X86TargetLowering::EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005807 SDValue Chain, SDValue Dst, SDValue Src,
5808 SDValue Size, unsigned Align,
5809 bool AlwaysInline,
5810 const Value *DstSV, uint64_t DstSVOff,
Scott Michel91099d62009-02-17 22:15:04 +00005811 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00005812 // This requires the copy size to be a constant, preferrably
5813 // within a subtarget-specific limit.
5814 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
5815 if (!ConstantSize)
Dan Gohman8181bd12008-07-27 21:46:04 +00005816 return SDValue();
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005817 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohmane8b391e2008-04-12 04:36:06 +00005818 if (!AlwaysInline && SizeVal > getSubtarget()->getMaxInlineSizeThreshold())
Dan Gohman8181bd12008-07-27 21:46:04 +00005819 return SDValue();
Dan Gohmane8b391e2008-04-12 04:36:06 +00005820
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005821 /// If not DWORD aligned, call the library.
5822 if ((Align & 3) != 0)
5823 return SDValue();
5824
5825 // DWORD aligned
5826 MVT AVT = MVT::i32;
5827 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) // QWORD aligned
Dan Gohmane8b391e2008-04-12 04:36:06 +00005828 AVT = MVT::i64;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005829
Duncan Sands92c43912008-06-06 12:08:01 +00005830 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohmane8b391e2008-04-12 04:36:06 +00005831 unsigned CountVal = SizeVal / UBytes;
Dan Gohman8181bd12008-07-27 21:46:04 +00005832 SDValue Count = DAG.getIntPtrConstant(CountVal);
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005833 unsigned BytesLeft = SizeVal % UBytes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005834
Dan Gohman8181bd12008-07-27 21:46:04 +00005835 SDValue InFlag(0, 0);
Scott Michel91099d62009-02-17 22:15:04 +00005836 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005837 X86::ECX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005838 Count, InFlag);
5839 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00005840 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005841 X86::EDI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00005842 Dst, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005843 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00005844 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RSI :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005845 X86::ESI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00005846 Src, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005847 InFlag = Chain.getValue(1);
5848
5849 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005850 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005851 Ops.push_back(Chain);
5852 Ops.push_back(DAG.getValueType(AVT));
5853 Ops.push_back(InFlag);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005854 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, dl, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005855
Dan Gohman8181bd12008-07-27 21:46:04 +00005856 SmallVector<SDValue, 4> Results;
Evan Cheng38d3c522008-04-25 00:26:43 +00005857 Results.push_back(RepMovs);
Rafael Espindolaf12f3a92007-09-28 12:53:01 +00005858 if (BytesLeft) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00005859 // Handle the last 1 - 7 bytes.
5860 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands92c43912008-06-06 12:08:01 +00005861 MVT DstVT = Dst.getValueType();
5862 MVT SrcVT = Src.getValueType();
5863 MVT SizeVT = Size.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00005864 Results.push_back(DAG.getMemcpy(Chain, dl,
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005865 DAG.getNode(ISD::ADD, dl, DstVT, Dst,
Evan Cheng38d3c522008-04-25 00:26:43 +00005866 DAG.getConstant(Offset, DstVT)),
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005867 DAG.getNode(ISD::ADD, dl, SrcVT, Src,
Evan Cheng38d3c522008-04-25 00:26:43 +00005868 DAG.getConstant(Offset, SrcVT)),
Dan Gohmane8b391e2008-04-12 04:36:06 +00005869 DAG.getConstant(BytesLeft, SizeVT),
5870 Align, AlwaysInline,
Dan Gohman65118f42008-04-28 17:15:20 +00005871 DstSV, DstSVOff + Offset,
5872 SrcSV, SrcSVOff + Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005873 }
5874
Scott Michel91099d62009-02-17 22:15:04 +00005875 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005876 &Results[0], Results.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005877}
5878
Dan Gohman8181bd12008-07-27 21:46:04 +00005879SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) {
Dan Gohman12a9c082008-02-06 22:27:42 +00005880 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005881 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005882
5883 if (!Subtarget->is64Bit()) {
5884 // vastart just stores the address of the VarArgsFrameIndex slot into the
5885 // memory location argument.
Dan Gohman8181bd12008-07-27 21:46:04 +00005886 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005887 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005888 }
5889
5890 // __va_list_tag:
5891 // gp_offset (0 - 6 * 8)
5892 // fp_offset (48 - 48 + 8 * 16)
5893 // overflow_arg_area (point to parameters coming in memory).
5894 // reg_save_area
Dan Gohman8181bd12008-07-27 21:46:04 +00005895 SmallVector<SDValue, 8> MemOps;
5896 SDValue FIN = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005897 // Store gp_offset
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005898 SDValue Store = DAG.getStore(Op.getOperand(0), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005899 DAG.getConstant(VarArgsGPOffset, MVT::i32),
Dan Gohman12a9c082008-02-06 22:27:42 +00005900 FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005901 MemOps.push_back(Store);
5902
5903 // Store fp_offset
Scott Michel91099d62009-02-17 22:15:04 +00005904 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005905 FIN, DAG.getIntPtrConstant(4));
5906 Store = DAG.getStore(Op.getOperand(0), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005907 DAG.getConstant(VarArgsFPOffset, MVT::i32),
Dan Gohman12a9c082008-02-06 22:27:42 +00005908 FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005909 MemOps.push_back(Store);
5910
5911 // Store ptr to overflow_arg_area
Scott Michel91099d62009-02-17 22:15:04 +00005912 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005913 FIN, DAG.getIntPtrConstant(4));
Dan Gohman8181bd12008-07-27 21:46:04 +00005914 SDValue OVFIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005915 Store = DAG.getStore(Op.getOperand(0), dl, OVFIN, FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005916 MemOps.push_back(Store);
5917
5918 // Store ptr to reg_save_area.
Scott Michel91099d62009-02-17 22:15:04 +00005919 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005920 FIN, DAG.getIntPtrConstant(8));
Dan Gohman8181bd12008-07-27 21:46:04 +00005921 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005922 Store = DAG.getStore(Op.getOperand(0), dl, RSFIN, FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005923 MemOps.push_back(Store);
Scott Michel91099d62009-02-17 22:15:04 +00005924 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005925 &MemOps[0], MemOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005926}
5927
Dan Gohman8181bd12008-07-27 21:46:04 +00005928SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) {
Dan Gohman827cb1f2008-05-10 01:26:14 +00005929 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
5930 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_arg!");
Dan Gohman8181bd12008-07-27 21:46:04 +00005931 SDValue Chain = Op.getOperand(0);
5932 SDValue SrcPtr = Op.getOperand(1);
5933 SDValue SrcSV = Op.getOperand(2);
Dan Gohman827cb1f2008-05-10 01:26:14 +00005934
5935 assert(0 && "VAArgInst is not yet implemented for x86-64!");
5936 abort();
Dan Gohman8181bd12008-07-27 21:46:04 +00005937 return SDValue();
Dan Gohman827cb1f2008-05-10 01:26:14 +00005938}
5939
Dan Gohman8181bd12008-07-27 21:46:04 +00005940SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005941 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman840ff5c2008-04-18 20:55:41 +00005942 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman8181bd12008-07-27 21:46:04 +00005943 SDValue Chain = Op.getOperand(0);
5944 SDValue DstPtr = Op.getOperand(1);
5945 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman12a9c082008-02-06 22:27:42 +00005946 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
5947 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005948 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005949
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00005950 return DAG.getMemcpy(Chain, dl, DstPtr, SrcPtr,
Dan Gohman840ff5c2008-04-18 20:55:41 +00005951 DAG.getIntPtrConstant(24), 8, false,
5952 DstSV, 0, SrcSV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005953}
5954
Dan Gohman8181bd12008-07-27 21:46:04 +00005955SDValue
5956X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005957 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005958 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005959 switch (IntNo) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005960 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng9f69f9d2008-05-04 09:15:50 +00005961 // Comparison intrinsics.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005962 case Intrinsic::x86_sse_comieq_ss:
5963 case Intrinsic::x86_sse_comilt_ss:
5964 case Intrinsic::x86_sse_comile_ss:
5965 case Intrinsic::x86_sse_comigt_ss:
5966 case Intrinsic::x86_sse_comige_ss:
5967 case Intrinsic::x86_sse_comineq_ss:
5968 case Intrinsic::x86_sse_ucomieq_ss:
5969 case Intrinsic::x86_sse_ucomilt_ss:
5970 case Intrinsic::x86_sse_ucomile_ss:
5971 case Intrinsic::x86_sse_ucomigt_ss:
5972 case Intrinsic::x86_sse_ucomige_ss:
5973 case Intrinsic::x86_sse_ucomineq_ss:
5974 case Intrinsic::x86_sse2_comieq_sd:
5975 case Intrinsic::x86_sse2_comilt_sd:
5976 case Intrinsic::x86_sse2_comile_sd:
5977 case Intrinsic::x86_sse2_comigt_sd:
5978 case Intrinsic::x86_sse2_comige_sd:
5979 case Intrinsic::x86_sse2_comineq_sd:
5980 case Intrinsic::x86_sse2_ucomieq_sd:
5981 case Intrinsic::x86_sse2_ucomilt_sd:
5982 case Intrinsic::x86_sse2_ucomile_sd:
5983 case Intrinsic::x86_sse2_ucomigt_sd:
5984 case Intrinsic::x86_sse2_ucomige_sd:
5985 case Intrinsic::x86_sse2_ucomineq_sd: {
5986 unsigned Opc = 0;
5987 ISD::CondCode CC = ISD::SETCC_INVALID;
5988 switch (IntNo) {
5989 default: break;
5990 case Intrinsic::x86_sse_comieq_ss:
5991 case Intrinsic::x86_sse2_comieq_sd:
5992 Opc = X86ISD::COMI;
5993 CC = ISD::SETEQ;
5994 break;
5995 case Intrinsic::x86_sse_comilt_ss:
5996 case Intrinsic::x86_sse2_comilt_sd:
5997 Opc = X86ISD::COMI;
5998 CC = ISD::SETLT;
5999 break;
6000 case Intrinsic::x86_sse_comile_ss:
6001 case Intrinsic::x86_sse2_comile_sd:
6002 Opc = X86ISD::COMI;
6003 CC = ISD::SETLE;
6004 break;
6005 case Intrinsic::x86_sse_comigt_ss:
6006 case Intrinsic::x86_sse2_comigt_sd:
6007 Opc = X86ISD::COMI;
6008 CC = ISD::SETGT;
6009 break;
6010 case Intrinsic::x86_sse_comige_ss:
6011 case Intrinsic::x86_sse2_comige_sd:
6012 Opc = X86ISD::COMI;
6013 CC = ISD::SETGE;
6014 break;
6015 case Intrinsic::x86_sse_comineq_ss:
6016 case Intrinsic::x86_sse2_comineq_sd:
6017 Opc = X86ISD::COMI;
6018 CC = ISD::SETNE;
6019 break;
6020 case Intrinsic::x86_sse_ucomieq_ss:
6021 case Intrinsic::x86_sse2_ucomieq_sd:
6022 Opc = X86ISD::UCOMI;
6023 CC = ISD::SETEQ;
6024 break;
6025 case Intrinsic::x86_sse_ucomilt_ss:
6026 case Intrinsic::x86_sse2_ucomilt_sd:
6027 Opc = X86ISD::UCOMI;
6028 CC = ISD::SETLT;
6029 break;
6030 case Intrinsic::x86_sse_ucomile_ss:
6031 case Intrinsic::x86_sse2_ucomile_sd:
6032 Opc = X86ISD::UCOMI;
6033 CC = ISD::SETLE;
6034 break;
6035 case Intrinsic::x86_sse_ucomigt_ss:
6036 case Intrinsic::x86_sse2_ucomigt_sd:
6037 Opc = X86ISD::UCOMI;
6038 CC = ISD::SETGT;
6039 break;
6040 case Intrinsic::x86_sse_ucomige_ss:
6041 case Intrinsic::x86_sse2_ucomige_sd:
6042 Opc = X86ISD::UCOMI;
6043 CC = ISD::SETGE;
6044 break;
6045 case Intrinsic::x86_sse_ucomineq_ss:
6046 case Intrinsic::x86_sse2_ucomineq_sd:
6047 Opc = X86ISD::UCOMI;
6048 CC = ISD::SETNE;
6049 break;
6050 }
6051
Dan Gohman8181bd12008-07-27 21:46:04 +00006052 SDValue LHS = Op.getOperand(1);
6053 SDValue RHS = Op.getOperand(2);
Chris Lattnerebb91142008-12-24 23:53:05 +00006054 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006055 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
6056 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Evan Cheng89c17632008-08-17 19:22:34 +00006057 DAG.getConstant(X86CC, MVT::i8), Cond);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006058 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006059 }
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006060
6061 // Fix vector shift instructions where the last operand is a non-immediate
6062 // i32 value.
6063 case Intrinsic::x86_sse2_pslli_w:
6064 case Intrinsic::x86_sse2_pslli_d:
6065 case Intrinsic::x86_sse2_pslli_q:
6066 case Intrinsic::x86_sse2_psrli_w:
6067 case Intrinsic::x86_sse2_psrli_d:
6068 case Intrinsic::x86_sse2_psrli_q:
6069 case Intrinsic::x86_sse2_psrai_w:
6070 case Intrinsic::x86_sse2_psrai_d:
6071 case Intrinsic::x86_mmx_pslli_w:
6072 case Intrinsic::x86_mmx_pslli_d:
6073 case Intrinsic::x86_mmx_pslli_q:
6074 case Intrinsic::x86_mmx_psrli_w:
6075 case Intrinsic::x86_mmx_psrli_d:
6076 case Intrinsic::x86_mmx_psrli_q:
6077 case Intrinsic::x86_mmx_psrai_w:
6078 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006079 SDValue ShAmt = Op.getOperand(2);
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006080 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman8181bd12008-07-27 21:46:04 +00006081 return SDValue();
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006082
6083 unsigned NewIntNo = 0;
Duncan Sands92c43912008-06-06 12:08:01 +00006084 MVT ShAmtVT = MVT::v4i32;
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006085 switch (IntNo) {
6086 case Intrinsic::x86_sse2_pslli_w:
6087 NewIntNo = Intrinsic::x86_sse2_psll_w;
6088 break;
6089 case Intrinsic::x86_sse2_pslli_d:
6090 NewIntNo = Intrinsic::x86_sse2_psll_d;
6091 break;
6092 case Intrinsic::x86_sse2_pslli_q:
6093 NewIntNo = Intrinsic::x86_sse2_psll_q;
6094 break;
6095 case Intrinsic::x86_sse2_psrli_w:
6096 NewIntNo = Intrinsic::x86_sse2_psrl_w;
6097 break;
6098 case Intrinsic::x86_sse2_psrli_d:
6099 NewIntNo = Intrinsic::x86_sse2_psrl_d;
6100 break;
6101 case Intrinsic::x86_sse2_psrli_q:
6102 NewIntNo = Intrinsic::x86_sse2_psrl_q;
6103 break;
6104 case Intrinsic::x86_sse2_psrai_w:
6105 NewIntNo = Intrinsic::x86_sse2_psra_w;
6106 break;
6107 case Intrinsic::x86_sse2_psrai_d:
6108 NewIntNo = Intrinsic::x86_sse2_psra_d;
6109 break;
6110 default: {
6111 ShAmtVT = MVT::v2i32;
6112 switch (IntNo) {
6113 case Intrinsic::x86_mmx_pslli_w:
6114 NewIntNo = Intrinsic::x86_mmx_psll_w;
6115 break;
6116 case Intrinsic::x86_mmx_pslli_d:
6117 NewIntNo = Intrinsic::x86_mmx_psll_d;
6118 break;
6119 case Intrinsic::x86_mmx_pslli_q:
6120 NewIntNo = Intrinsic::x86_mmx_psll_q;
6121 break;
6122 case Intrinsic::x86_mmx_psrli_w:
6123 NewIntNo = Intrinsic::x86_mmx_psrl_w;
6124 break;
6125 case Intrinsic::x86_mmx_psrli_d:
6126 NewIntNo = Intrinsic::x86_mmx_psrl_d;
6127 break;
6128 case Intrinsic::x86_mmx_psrli_q:
6129 NewIntNo = Intrinsic::x86_mmx_psrl_q;
6130 break;
6131 case Intrinsic::x86_mmx_psrai_w:
6132 NewIntNo = Intrinsic::x86_mmx_psra_w;
6133 break;
6134 case Intrinsic::x86_mmx_psrai_d:
6135 NewIntNo = Intrinsic::x86_mmx_psra_d;
6136 break;
6137 default: abort(); // Can't reach here.
6138 }
6139 break;
6140 }
6141 }
Duncan Sands92c43912008-06-06 12:08:01 +00006142 MVT VT = Op.getValueType();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006143 ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT,
6144 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, ShAmtVT, ShAmt));
6145 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006146 DAG.getConstant(NewIntNo, MVT::i32),
6147 Op.getOperand(1), ShAmt);
6148 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006149 }
6150}
6151
Dan Gohman8181bd12008-07-27 21:46:04 +00006152SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
Bill Wendling6ddc87b2009-01-16 19:25:27 +00006153 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006154 DebugLoc dl = Op.getDebugLoc();
Bill Wendling6ddc87b2009-01-16 19:25:27 +00006155
6156 if (Depth > 0) {
6157 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
6158 SDValue Offset =
6159 DAG.getConstant(TD->getPointerSize(),
6160 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006161 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michel91099d62009-02-17 22:15:04 +00006162 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006163 FrameAddr, Offset),
Bill Wendling6ddc87b2009-01-16 19:25:27 +00006164 NULL, 0);
6165 }
6166
6167 // Just load the return address.
Dan Gohman8181bd12008-07-27 21:46:04 +00006168 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michel91099d62009-02-17 22:15:04 +00006169 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006170 RetAddrFI, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006171}
6172
Dan Gohman8181bd12008-07-27 21:46:04 +00006173SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
Evan Cheng33633672008-09-27 01:56:22 +00006174 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6175 MFI->setFrameAddressIsTaken(true);
6176 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006177 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng33633672008-09-27 01:56:22 +00006178 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
6179 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006180 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng33633672008-09-27 01:56:22 +00006181 while (Depth--)
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006182 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, NULL, 0);
Evan Cheng33633672008-09-27 01:56:22 +00006183 return FrameAddr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006184}
6185
Dan Gohman8181bd12008-07-27 21:46:04 +00006186SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Anton Korobeynikov566f9d92008-09-08 21:12:11 +00006187 SelectionDAG &DAG) {
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006188 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006189}
6190
Dan Gohman8181bd12008-07-27 21:46:04 +00006191SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006192{
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006193 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman8181bd12008-07-27 21:46:04 +00006194 SDValue Chain = Op.getOperand(0);
6195 SDValue Offset = Op.getOperand(1);
6196 SDValue Handler = Op.getOperand(2);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006197 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006198
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006199 SDValue Frame = DAG.getRegister(Subtarget->is64Bit() ? X86::RBP : X86::EBP,
6200 getPointerTy());
6201 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006202
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006203 SDValue StoreAddr = DAG.getNode(ISD::SUB, dl, getPointerTy(), Frame,
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006204 DAG.getIntPtrConstant(-TD->getPointerSize()));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006205 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
6206 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, NULL, 0);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006207 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006208 MF.getRegInfo().addLiveOut(StoreAddrReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006209
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006210 return DAG.getNode(X86ISD::EH_RETURN, dl,
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006211 MVT::Other,
6212 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006213}
6214
Dan Gohman8181bd12008-07-27 21:46:04 +00006215SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006216 SelectionDAG &DAG) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006217 SDValue Root = Op.getOperand(0);
6218 SDValue Trmp = Op.getOperand(1); // trampoline
6219 SDValue FPtr = Op.getOperand(2); // nested function
6220 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006221 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006222
Dan Gohman12a9c082008-02-06 22:27:42 +00006223 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006224
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006225 const X86InstrInfo *TII =
6226 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
6227
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006228 if (Subtarget->is64Bit()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006229 SDValue OutChains[6];
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006230
6231 // Large code-model.
6232
6233 const unsigned char JMP64r = TII->getBaseOpcodeFor(X86::JMP64r);
6234 const unsigned char MOV64ri = TII->getBaseOpcodeFor(X86::MOV64ri);
6235
Dan Gohmanb41dfba2008-05-14 01:58:56 +00006236 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
6237 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006238
6239 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
6240
6241 // Load the pointer to the nested function into R11.
6242 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman8181bd12008-07-27 21:46:04 +00006243 SDValue Addr = Trmp;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006244 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6245 Addr, TrmpAddr, 0);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006246
Scott Michel91099d62009-02-17 22:15:04 +00006247 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006248 DAG.getConstant(2, MVT::i64));
6249 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr, TrmpAddr, 2, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006250
6251 // Load the 'nest' parameter value into R10.
6252 // R10 is specified in X86CallingConv.td
6253 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Scott Michel91099d62009-02-17 22:15:04 +00006254 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006255 DAG.getConstant(10, MVT::i64));
6256 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6257 Addr, TrmpAddr, 10);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006258
Scott Michel91099d62009-02-17 22:15:04 +00006259 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006260 DAG.getConstant(12, MVT::i64));
6261 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 12, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006262
6263 // Jump to the nested function.
6264 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Scott Michel91099d62009-02-17 22:15:04 +00006265 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006266 DAG.getConstant(20, MVT::i64));
6267 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6268 Addr, TrmpAddr, 20);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006269
6270 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Scott Michel91099d62009-02-17 22:15:04 +00006271 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006272 DAG.getConstant(22, MVT::i64));
6273 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00006274 TrmpAddr, 22);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006275
Dan Gohman8181bd12008-07-27 21:46:04 +00006276 SDValue Ops[] =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006277 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
6278 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006279 } else {
Dan Gohman0bd70702008-01-31 01:01:48 +00006280 const Function *Func =
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006281 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
6282 unsigned CC = Func->getCallingConv();
Duncan Sands466eadd2007-08-29 19:01:20 +00006283 unsigned NestReg;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006284
6285 switch (CC) {
6286 default:
6287 assert(0 && "Unsupported calling convention");
6288 case CallingConv::C:
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006289 case CallingConv::X86_StdCall: {
6290 // Pass 'nest' parameter in ECX.
6291 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00006292 NestReg = X86::ECX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006293
6294 // Check that ECX wasn't needed by an 'inreg' parameter.
6295 const FunctionType *FTy = Func->getFunctionType();
Devang Pateld222f862008-09-25 21:00:45 +00006296 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006297
Chris Lattner1c8733e2008-03-12 17:45:29 +00006298 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006299 unsigned InRegCount = 0;
6300 unsigned Idx = 1;
6301
6302 for (FunctionType::param_iterator I = FTy->param_begin(),
6303 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Pateld222f862008-09-25 21:00:45 +00006304 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006305 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006306 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006307
6308 if (InRegCount > 2) {
6309 cerr << "Nest register in use - reduce number of inreg parameters!\n";
6310 abort();
6311 }
6312 }
6313 break;
6314 }
6315 case CallingConv::X86_FastCall:
Duncan Sands162c1d52008-09-10 13:22:10 +00006316 case CallingConv::Fast:
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006317 // Pass 'nest' parameter in EAX.
6318 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00006319 NestReg = X86::EAX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006320 break;
6321 }
6322
Dan Gohman8181bd12008-07-27 21:46:04 +00006323 SDValue OutChains[4];
6324 SDValue Addr, Disp;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006325
Scott Michel91099d62009-02-17 22:15:04 +00006326 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006327 DAG.getConstant(10, MVT::i32));
6328 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006329
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006330 const unsigned char MOV32ri = TII->getBaseOpcodeFor(X86::MOV32ri);
Dan Gohmanb41dfba2008-05-14 01:58:56 +00006331 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michel91099d62009-02-17 22:15:04 +00006332 OutChains[0] = DAG.getStore(Root, dl,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006333 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Dan Gohman12a9c082008-02-06 22:27:42 +00006334 Trmp, TrmpAddr, 0);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006335
Scott Michel91099d62009-02-17 22:15:04 +00006336 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006337 DAG.getConstant(1, MVT::i32));
6338 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 1, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006339
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006340 const unsigned char JMP = TII->getBaseOpcodeFor(X86::JMP);
Scott Michel91099d62009-02-17 22:15:04 +00006341 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006342 DAG.getConstant(5, MVT::i32));
6343 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00006344 TrmpAddr, 5, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006345
Scott Michel91099d62009-02-17 22:15:04 +00006346 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006347 DAG.getConstant(6, MVT::i32));
6348 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr, TrmpAddr, 6, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006349
Dan Gohman8181bd12008-07-27 21:46:04 +00006350 SDValue Ops[] =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006351 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
6352 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006353 }
6354}
6355
Dan Gohman8181bd12008-07-27 21:46:04 +00006356SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006357 /*
6358 The rounding mode is in bits 11:10 of FPSR, and has the following
6359 settings:
6360 00 Round to nearest
6361 01 Round to -inf
6362 10 Round to +inf
6363 11 Round to 0
6364
6365 FLT_ROUNDS, on the other hand, expects the following:
6366 -1 Undefined
6367 0 Round to 0
6368 1 Round to nearest
6369 2 Round to +inf
6370 3 Round to -inf
6371
6372 To perform the conversion, we do:
6373 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
6374 */
6375
6376 MachineFunction &MF = DAG.getMachineFunction();
6377 const TargetMachine &TM = MF.getTarget();
6378 const TargetFrameInfo &TFI = *TM.getFrameInfo();
6379 unsigned StackAlignment = TFI.getStackAlignment();
Duncan Sands92c43912008-06-06 12:08:01 +00006380 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006381 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006382
6383 // Save FP Control Word to stack slot
6384 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment);
Dan Gohman8181bd12008-07-27 21:46:04 +00006385 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006386
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006387 SDValue Chain = DAG.getNode(X86ISD::FNSTCW16m, dl, MVT::Other,
Evan Cheng6617eed2008-09-24 23:26:36 +00006388 DAG.getEntryNode(), StackSlot);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006389
6390 // Load FP Control Word from stack slot
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006391 SDValue CWD = DAG.getLoad(MVT::i16, dl, Chain, StackSlot, NULL, 0);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006392
6393 // Transform as necessary
Dan Gohman8181bd12008-07-27 21:46:04 +00006394 SDValue CWD1 =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006395 DAG.getNode(ISD::SRL, dl, MVT::i16,
6396 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006397 CWD, DAG.getConstant(0x800, MVT::i16)),
6398 DAG.getConstant(11, MVT::i8));
Dan Gohman8181bd12008-07-27 21:46:04 +00006399 SDValue CWD2 =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006400 DAG.getNode(ISD::SRL, dl, MVT::i16,
6401 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006402 CWD, DAG.getConstant(0x400, MVT::i16)),
6403 DAG.getConstant(9, MVT::i8));
6404
Dan Gohman8181bd12008-07-27 21:46:04 +00006405 SDValue RetVal =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006406 DAG.getNode(ISD::AND, dl, MVT::i16,
6407 DAG.getNode(ISD::ADD, dl, MVT::i16,
6408 DAG.getNode(ISD::OR, dl, MVT::i16, CWD1, CWD2),
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006409 DAG.getConstant(1, MVT::i16)),
6410 DAG.getConstant(3, MVT::i16));
6411
6412
Duncan Sands92c43912008-06-06 12:08:01 +00006413 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen24dd9a52009-02-07 00:55:49 +00006414 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006415}
6416
Dan Gohman8181bd12008-07-27 21:46:04 +00006417SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00006418 MVT VT = Op.getValueType();
6419 MVT OpVT = VT;
6420 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006421 DebugLoc dl = Op.getDebugLoc();
Evan Cheng48679f42007-12-14 02:13:44 +00006422
6423 Op = Op.getOperand(0);
6424 if (VT == MVT::i8) {
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006425 // Zero extend to i32 since there is not an i8 bsr.
Evan Cheng48679f42007-12-14 02:13:44 +00006426 OpVT = MVT::i32;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006427 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006428 }
Evan Cheng48679f42007-12-14 02:13:44 +00006429
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006430 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
6431 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006432 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006433
6434 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Dan Gohman8181bd12008-07-27 21:46:04 +00006435 SmallVector<SDValue, 4> Ops;
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006436 Ops.push_back(Op);
6437 Ops.push_back(DAG.getConstant(NumBits+NumBits-1, OpVT));
6438 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6439 Ops.push_back(Op.getValue(1));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006440 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006441
6442 // Finally xor with NumBits-1.
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006443 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006444
Evan Cheng48679f42007-12-14 02:13:44 +00006445 if (VT == MVT::i8)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006446 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006447 return Op;
6448}
6449
Dan Gohman8181bd12008-07-27 21:46:04 +00006450SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00006451 MVT VT = Op.getValueType();
6452 MVT OpVT = VT;
6453 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006454 DebugLoc dl = Op.getDebugLoc();
Evan Cheng48679f42007-12-14 02:13:44 +00006455
6456 Op = Op.getOperand(0);
6457 if (VT == MVT::i8) {
6458 OpVT = MVT::i32;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006459 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006460 }
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006461
6462 // Issue a bsf (scan bits forward) which also sets EFLAGS.
6463 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006464 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006465
6466 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Dan Gohman8181bd12008-07-27 21:46:04 +00006467 SmallVector<SDValue, 4> Ops;
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006468 Ops.push_back(Op);
6469 Ops.push_back(DAG.getConstant(NumBits, OpVT));
6470 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6471 Ops.push_back(Op.getValue(1));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006472 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006473
Evan Cheng48679f42007-12-14 02:13:44 +00006474 if (VT == MVT::i8)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006475 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006476 return Op;
6477}
6478
Mon P Wang14edb092008-12-18 21:42:19 +00006479SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) {
6480 MVT VT = Op.getValueType();
6481 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006482 DebugLoc dl = Op.getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00006483
Mon P Wang14edb092008-12-18 21:42:19 +00006484 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
6485 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
6486 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
6487 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
6488 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
6489 //
6490 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
6491 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
6492 // return AloBlo + AloBhi + AhiBlo;
6493
6494 SDValue A = Op.getOperand(0);
6495 SDValue B = Op.getOperand(1);
Scott Michel91099d62009-02-17 22:15:04 +00006496
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006497 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006498 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6499 A, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006500 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006501 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6502 B, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006503 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006504 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6505 A, B);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006506 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006507 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6508 A, Bhi);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006509 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006510 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6511 Ahi, B);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006512 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006513 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6514 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006515 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006516 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6517 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006518 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
6519 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wang14edb092008-12-18 21:42:19 +00006520 return Res;
6521}
6522
6523
Bill Wendling7e04be62008-12-09 22:08:41 +00006524SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) {
6525 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
6526 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendlingd3511522008-12-02 01:06:39 +00006527 // looks for this combo and may remove the "setcc" instruction if the "setcc"
6528 // has only one use.
Bill Wendlingd06b4202008-11-26 22:37:40 +00006529 SDNode *N = Op.getNode();
Bill Wendlingd3511522008-12-02 01:06:39 +00006530 SDValue LHS = N->getOperand(0);
6531 SDValue RHS = N->getOperand(1);
Bill Wendling7e04be62008-12-09 22:08:41 +00006532 unsigned BaseOp = 0;
6533 unsigned Cond = 0;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006534 DebugLoc dl = Op.getDebugLoc();
Bill Wendling7e04be62008-12-09 22:08:41 +00006535
6536 switch (Op.getOpcode()) {
6537 default: assert(0 && "Unknown ovf instruction!");
6538 case ISD::SADDO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006539 BaseOp = X86ISD::ADD;
Bill Wendling7e04be62008-12-09 22:08:41 +00006540 Cond = X86::COND_O;
6541 break;
6542 case ISD::UADDO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006543 BaseOp = X86ISD::ADD;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006544 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006545 break;
6546 case ISD::SSUBO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006547 BaseOp = X86ISD::SUB;
Bill Wendling7e04be62008-12-09 22:08:41 +00006548 Cond = X86::COND_O;
6549 break;
6550 case ISD::USUBO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006551 BaseOp = X86ISD::SUB;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006552 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006553 break;
6554 case ISD::SMULO:
Bill Wendlingf5399032008-12-12 21:15:41 +00006555 BaseOp = X86ISD::SMUL;
Bill Wendling7e04be62008-12-09 22:08:41 +00006556 Cond = X86::COND_O;
6557 break;
6558 case ISD::UMULO:
Bill Wendlingf5399032008-12-12 21:15:41 +00006559 BaseOp = X86ISD::UMUL;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006560 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006561 break;
6562 }
Bill Wendlingd06b4202008-11-26 22:37:40 +00006563
Bill Wendlingd3511522008-12-02 01:06:39 +00006564 // Also sets EFLAGS.
6565 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006566 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendlingd06b4202008-11-26 22:37:40 +00006567
Bill Wendlingd3511522008-12-02 01:06:39 +00006568 SDValue SetCC =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006569 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Bill Wendling35f1a9d2008-12-10 02:01:32 +00006570 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendlingd06b4202008-11-26 22:37:40 +00006571
Bill Wendlingd3511522008-12-02 01:06:39 +00006572 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
6573 return Sum;
Bill Wendling4c134df2008-11-24 19:21:46 +00006574}
6575
Dan Gohman8181bd12008-07-27 21:46:04 +00006576SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanc70fa752008-06-25 16:07:49 +00006577 MVT T = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006578 DebugLoc dl = Op.getDebugLoc();
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00006579 unsigned Reg = 0;
6580 unsigned size = 0;
Duncan Sands92c43912008-06-06 12:08:01 +00006581 switch(T.getSimpleVT()) {
6582 default:
6583 assert(false && "Invalid value type!");
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006584 case MVT::i8: Reg = X86::AL; size = 1; break;
6585 case MVT::i16: Reg = X86::AX; size = 2; break;
6586 case MVT::i32: Reg = X86::EAX; size = 4; break;
Scott Michel91099d62009-02-17 22:15:04 +00006587 case MVT::i64:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006588 assert(Subtarget->is64Bit() && "Node not type legal!");
6589 Reg = X86::RAX; size = 8;
Andrew Lenharth81580822008-03-05 01:15:49 +00006590 break;
Bill Wendlingd3511522008-12-02 01:06:39 +00006591 }
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006592 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), dl, Reg,
Dale Johannesenddb761b2008-09-11 03:12:59 +00006593 Op.getOperand(2), SDValue());
Dan Gohman8181bd12008-07-27 21:46:04 +00006594 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng6617eed2008-09-24 23:26:36 +00006595 Op.getOperand(1),
6596 Op.getOperand(3),
6597 DAG.getTargetConstant(size, MVT::i8),
6598 cpIn.getValue(1) };
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006599 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006600 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG_DAG, dl, Tys, Ops, 5);
Scott Michel91099d62009-02-17 22:15:04 +00006601 SDValue cpOut =
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006602 DAG.getCopyFromReg(Result.getValue(0), dl, Reg, T, Result.getValue(1));
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006603 return cpOut;
6604}
6605
Duncan Sands7d9834b2008-12-01 11:39:25 +00006606SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Gabor Greif825aa892008-08-28 23:19:51 +00006607 SelectionDAG &DAG) {
Duncan Sands7d9834b2008-12-01 11:39:25 +00006608 assert(Subtarget->is64Bit() && "Result not type legalized?");
Andrew Lenharth81580822008-03-05 01:15:49 +00006609 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands7d9834b2008-12-01 11:39:25 +00006610 SDValue TheChain = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006611 DebugLoc dl = Op.getDebugLoc();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006612 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006613 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
6614 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006615 rax.getValue(2));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006616 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006617 DAG.getConstant(32, MVT::i8));
6618 SDValue Ops[] = {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006619 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands7d9834b2008-12-01 11:39:25 +00006620 rdx.getValue(1)
6621 };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006622 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesenf160d802008-10-02 18:53:47 +00006623}
6624
Dale Johannesen9011d872008-09-29 22:25:26 +00006625SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
6626 SDNode *Node = Op.getNode();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006627 DebugLoc dl = Node->getDebugLoc();
Dale Johannesen9011d872008-09-29 22:25:26 +00006628 MVT T = Node->getValueType(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006629 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Dale Johannesen9011d872008-09-29 22:25:26 +00006630 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006631 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006632 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen9011d872008-09-29 22:25:26 +00006633 Node->getOperand(0),
6634 Node->getOperand(1), negOp,
6635 cast<AtomicSDNode>(Node)->getSrcValue(),
6636 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang078a62d2008-05-05 19:05:59 +00006637}
6638
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006639/// LowerOperation - Provide custom lowering hooks for some operations.
6640///
Dan Gohman8181bd12008-07-27 21:46:04 +00006641SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006642 switch (Op.getOpcode()) {
6643 default: assert(0 && "Should not custom lower this!");
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006644 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
6645 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006646 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
6647 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6648 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6649 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
6650 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
6651 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
6652 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
6653 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendlingfef06052008-09-16 21:48:12 +00006654 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006655 case ISD::SHL_PARTS:
6656 case ISD::SRA_PARTS:
6657 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
6658 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesena359b8b2008-10-21 20:50:01 +00006659 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006660 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
6661 case ISD::FABS: return LowerFABS(Op, DAG);
6662 case ISD::FNEG: return LowerFNEG(Op, DAG);
6663 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Cheng621216e2007-09-29 00:00:36 +00006664 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman03605a02008-07-17 16:51:19 +00006665 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Cheng621216e2007-09-29 00:00:36 +00006666 case ISD::SELECT: return LowerSELECT(Op, DAG);
6667 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006668 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
6669 case ISD::CALL: return LowerCALL(Op, DAG);
6670 case ISD::RET: return LowerRET(Op, DAG);
6671 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006672 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman827cb1f2008-05-10 01:26:14 +00006673 case ISD::VAARG: return LowerVAARG(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006674 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
6675 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
6676 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
6677 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
6678 case ISD::FRAME_TO_ARGS_OFFSET:
6679 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
6680 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
6681 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006682 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman819574c2008-01-31 00:41:03 +00006683 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng48679f42007-12-14 02:13:44 +00006684 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
6685 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wang14edb092008-12-18 21:42:19 +00006686 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Bill Wendling7e04be62008-12-09 22:08:41 +00006687 case ISD::SADDO:
6688 case ISD::UADDO:
6689 case ISD::SSUBO:
6690 case ISD::USUBO:
6691 case ISD::SMULO:
6692 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands7d9834b2008-12-01 11:39:25 +00006693 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006694 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006695}
6696
Duncan Sands7d9834b2008-12-01 11:39:25 +00006697void X86TargetLowering::
6698ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
6699 SelectionDAG &DAG, unsigned NewOp) {
6700 MVT T = Node->getValueType(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006701 DebugLoc dl = Node->getDebugLoc();
Duncan Sands7d9834b2008-12-01 11:39:25 +00006702 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
6703
6704 SDValue Chain = Node->getOperand(0);
6705 SDValue In1 = Node->getOperand(1);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006706 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006707 Node->getOperand(2), DAG.getIntPtrConstant(0));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006708 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006709 Node->getOperand(2), DAG.getIntPtrConstant(1));
6710 // This is a generalized SDNode, not an AtomicSDNode, so it doesn't
6711 // have a MemOperand. Pass the info through as a normal operand.
6712 SDValue LSI = DAG.getMemOperand(cast<MemSDNode>(Node)->getMemOperand());
6713 SDValue Ops[] = { Chain, In1, In2L, In2H, LSI };
6714 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006715 SDValue Result = DAG.getNode(NewOp, dl, Tys, Ops, 5);
Duncan Sands7d9834b2008-12-01 11:39:25 +00006716 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006717 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00006718 Results.push_back(Result.getValue(2));
6719}
6720
Duncan Sandsac496a12008-07-04 11:47:58 +00006721/// ReplaceNodeResults - Replace a node with an illegal result type
6722/// with a new node built out of custom code.
Duncan Sands7d9834b2008-12-01 11:39:25 +00006723void X86TargetLowering::ReplaceNodeResults(SDNode *N,
6724 SmallVectorImpl<SDValue>&Results,
6725 SelectionDAG &DAG) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006726 DebugLoc dl = N->getDebugLoc();
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006727 switch (N->getOpcode()) {
Duncan Sands8ec7aa72008-10-20 15:56:33 +00006728 default:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006729 assert(false && "Do not know how to custom type legalize this operation!");
6730 return;
6731 case ISD::FP_TO_SINT: {
6732 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(SDValue(N, 0), DAG);
6733 SDValue FIST = Vals.first, StackSlot = Vals.second;
6734 if (FIST.getNode() != 0) {
6735 MVT VT = N->getValueType(0);
6736 // Return a load from the stack slot.
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006737 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot, NULL, 0));
Duncan Sands7d9834b2008-12-01 11:39:25 +00006738 }
6739 return;
6740 }
6741 case ISD::READCYCLECOUNTER: {
6742 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6743 SDValue TheChain = N->getOperand(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006744 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Scott Michel91099d62009-02-17 22:15:04 +00006745 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006746 rd.getValue(1));
6747 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006748 eax.getValue(2));
6749 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
6750 SDValue Ops[] = { eax, edx };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006751 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00006752 Results.push_back(edx.getValue(1));
6753 return;
6754 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006755 case ISD::ATOMIC_CMP_SWAP: {
Duncan Sands7d9834b2008-12-01 11:39:25 +00006756 MVT T = N->getValueType(0);
6757 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
6758 SDValue cpInL, cpInH;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006759 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands7d9834b2008-12-01 11:39:25 +00006760 DAG.getConstant(0, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006761 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands7d9834b2008-12-01 11:39:25 +00006762 DAG.getConstant(1, MVT::i32));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006763 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
6764 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006765 cpInL.getValue(1));
6766 SDValue swapInL, swapInH;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006767 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands7d9834b2008-12-01 11:39:25 +00006768 DAG.getConstant(0, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006769 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands7d9834b2008-12-01 11:39:25 +00006770 DAG.getConstant(1, MVT::i32));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006771 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006772 cpInH.getValue(1));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006773 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006774 swapInL.getValue(1));
6775 SDValue Ops[] = { swapInH.getValue(0),
6776 N->getOperand(1),
6777 swapInH.getValue(1) };
6778 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006779 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG8_DAG, dl, Tys, Ops, 3);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006780 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
6781 MVT::i32, Result.getValue(1));
6782 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
6783 MVT::i32, cpOutL.getValue(2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00006784 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006785 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00006786 Results.push_back(cpOutH.getValue(1));
6787 return;
6788 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006789 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006790 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
6791 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006792 case ISD::ATOMIC_LOAD_AND:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006793 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
6794 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006795 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006796 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
6797 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006798 case ISD::ATOMIC_LOAD_OR:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006799 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
6800 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006801 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006802 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
6803 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006804 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006805 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
6806 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006807 case ISD::ATOMIC_SWAP:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006808 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
6809 return;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006810 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006811}
6812
6813const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
6814 switch (Opcode) {
6815 default: return NULL;
Evan Cheng48679f42007-12-14 02:13:44 +00006816 case X86ISD::BSF: return "X86ISD::BSF";
6817 case X86ISD::BSR: return "X86ISD::BSR";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006818 case X86ISD::SHLD: return "X86ISD::SHLD";
6819 case X86ISD::SHRD: return "X86ISD::SHRD";
6820 case X86ISD::FAND: return "X86ISD::FAND";
6821 case X86ISD::FOR: return "X86ISD::FOR";
6822 case X86ISD::FXOR: return "X86ISD::FXOR";
6823 case X86ISD::FSRL: return "X86ISD::FSRL";
6824 case X86ISD::FILD: return "X86ISD::FILD";
6825 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
6826 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
6827 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
6828 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
6829 case X86ISD::FLD: return "X86ISD::FLD";
6830 case X86ISD::FST: return "X86ISD::FST";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006831 case X86ISD::CALL: return "X86ISD::CALL";
6832 case X86ISD::TAILCALL: return "X86ISD::TAILCALL";
6833 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohman7fe9b7f2008-12-23 22:45:23 +00006834 case X86ISD::BT: return "X86ISD::BT";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006835 case X86ISD::CMP: return "X86ISD::CMP";
6836 case X86ISD::COMI: return "X86ISD::COMI";
6837 case X86ISD::UCOMI: return "X86ISD::UCOMI";
6838 case X86ISD::SETCC: return "X86ISD::SETCC";
6839 case X86ISD::CMOV: return "X86ISD::CMOV";
6840 case X86ISD::BRCOND: return "X86ISD::BRCOND";
6841 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
6842 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
6843 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006844 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
6845 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Nate Begemand77e59e2008-02-11 04:19:36 +00006846 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006847 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begemand77e59e2008-02-11 04:19:36 +00006848 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
6849 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006850 case X86ISD::PINSRW: return "X86ISD::PINSRW";
6851 case X86ISD::FMAX: return "X86ISD::FMAX";
6852 case X86ISD::FMIN: return "X86ISD::FMIN";
6853 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
6854 case X86ISD::FRCP: return "X86ISD::FRCP";
6855 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
6856 case X86ISD::THREAD_POINTER: return "X86ISD::THREAD_POINTER";
6857 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00006858 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006859 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng40ee6e52008-05-08 00:57:18 +00006860 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
6861 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesenf160d802008-10-02 18:53:47 +00006862 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
6863 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
6864 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
6865 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
6866 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
6867 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chenge9b9c672008-05-09 21:53:03 +00006868 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
6869 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengdea99362008-05-29 08:22:04 +00006870 case X86ISD::VSHL: return "X86ISD::VSHL";
6871 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman03605a02008-07-17 16:51:19 +00006872 case X86ISD::CMPPD: return "X86ISD::CMPPD";
6873 case X86ISD::CMPPS: return "X86ISD::CMPPS";
6874 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
6875 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
6876 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
6877 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
6878 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
6879 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
6880 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
6881 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingae034ed2008-12-12 00:56:36 +00006882 case X86ISD::ADD: return "X86ISD::ADD";
6883 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingf5399032008-12-12 21:15:41 +00006884 case X86ISD::SMUL: return "X86ISD::SMUL";
6885 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006886 }
6887}
6888
6889// isLegalAddressingMode - Return true if the addressing mode represented
6890// by AM is legal for this target, for a load/store of the specified type.
Scott Michel91099d62009-02-17 22:15:04 +00006891bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006892 const Type *Ty) const {
6893 // X86 supports extremely general addressing modes.
Scott Michel91099d62009-02-17 22:15:04 +00006894
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006895 // X86 allows a sign-extended 32-bit immediate field as a displacement.
6896 if (AM.BaseOffs <= -(1LL << 32) || AM.BaseOffs >= (1LL << 32)-1)
6897 return false;
Scott Michel91099d62009-02-17 22:15:04 +00006898
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006899 if (AM.BaseGV) {
Evan Cheng6a1f3f12007-08-01 23:46:47 +00006900 // We can only fold this if we don't need an extra load.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006901 if (Subtarget->GVRequiresExtraLoad(AM.BaseGV, getTargetMachine(), false))
6902 return false;
Dale Johannesen64660e92008-12-05 21:47:27 +00006903 // If BaseGV requires a register, we cannot also have a BaseReg.
6904 if (Subtarget->GVRequiresRegister(AM.BaseGV, getTargetMachine(), false) &&
6905 AM.HasBaseReg)
6906 return false;
Evan Cheng6a1f3f12007-08-01 23:46:47 +00006907
6908 // X86-64 only supports addr of globals in small code model.
6909 if (Subtarget->is64Bit()) {
6910 if (getTargetMachine().getCodeModel() != CodeModel::Small)
6911 return false;
6912 // If lower 4G is not available, then we must use rip-relative addressing.
6913 if (AM.BaseOffs || AM.Scale > 1)
6914 return false;
6915 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006916 }
Scott Michel91099d62009-02-17 22:15:04 +00006917
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006918 switch (AM.Scale) {
6919 case 0:
6920 case 1:
6921 case 2:
6922 case 4:
6923 case 8:
6924 // These scales always work.
6925 break;
6926 case 3:
6927 case 5:
6928 case 9:
6929 // These scales are formed with basereg+scalereg. Only accept if there is
6930 // no basereg yet.
6931 if (AM.HasBaseReg)
6932 return false;
6933 break;
6934 default: // Other stuff never works.
6935 return false;
6936 }
Scott Michel91099d62009-02-17 22:15:04 +00006937
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006938 return true;
6939}
6940
6941
Evan Cheng27a820a2007-10-26 01:56:11 +00006942bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
6943 if (!Ty1->isInteger() || !Ty2->isInteger())
6944 return false;
Evan Cheng7f152602007-10-29 07:57:50 +00006945 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
6946 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Chengca0e80f2008-03-20 02:18:41 +00006947 if (NumBits1 <= NumBits2)
Evan Cheng7f152602007-10-29 07:57:50 +00006948 return false;
6949 return Subtarget->is64Bit() || NumBits1 < 64;
Evan Cheng27a820a2007-10-26 01:56:11 +00006950}
6951
Duncan Sands92c43912008-06-06 12:08:01 +00006952bool X86TargetLowering::isTruncateFree(MVT VT1, MVT VT2) const {
6953 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng9decb332007-10-29 19:58:20 +00006954 return false;
Duncan Sands92c43912008-06-06 12:08:01 +00006955 unsigned NumBits1 = VT1.getSizeInBits();
6956 unsigned NumBits2 = VT2.getSizeInBits();
Evan Chengca0e80f2008-03-20 02:18:41 +00006957 if (NumBits1 <= NumBits2)
Evan Cheng9decb332007-10-29 19:58:20 +00006958 return false;
6959 return Subtarget->is64Bit() || NumBits1 < 64;
6960}
Evan Cheng27a820a2007-10-26 01:56:11 +00006961
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006962/// isShuffleMaskLegal - Targets can use this to indicate that they only
6963/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
6964/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
6965/// are assumed to be legal.
6966bool
Dan Gohman8181bd12008-07-27 21:46:04 +00006967X86TargetLowering::isShuffleMaskLegal(SDValue Mask, MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006968 // Only do shuffles on 128-bit vector types for now.
Duncan Sands92c43912008-06-06 12:08:01 +00006969 if (VT.getSizeInBits() == 64) return false;
Gabor Greif1c80d112008-08-28 21:40:38 +00006970 return (Mask.getNode()->getNumOperands() <= 4 ||
6971 isIdentityMask(Mask.getNode()) ||
6972 isIdentityMask(Mask.getNode(), true) ||
6973 isSplatMask(Mask.getNode()) ||
6974 isPSHUFHW_PSHUFLWMask(Mask.getNode()) ||
6975 X86::isUNPCKLMask(Mask.getNode()) ||
6976 X86::isUNPCKHMask(Mask.getNode()) ||
6977 X86::isUNPCKL_v_undef_Mask(Mask.getNode()) ||
6978 X86::isUNPCKH_v_undef_Mask(Mask.getNode()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006979}
6980
Dan Gohman48d5f062008-04-09 20:09:42 +00006981bool
Dan Gohman8181bd12008-07-27 21:46:04 +00006982X86TargetLowering::isVectorClearMaskLegal(const std::vector<SDValue> &BVOps,
Duncan Sands92c43912008-06-06 12:08:01 +00006983 MVT EVT, SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006984 unsigned NumElts = BVOps.size();
6985 // Only do shuffles on 128-bit vector types for now.
Duncan Sands92c43912008-06-06 12:08:01 +00006986 if (EVT.getSizeInBits() * NumElts == 64) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006987 if (NumElts == 2) return true;
6988 if (NumElts == 4) {
6989 return (isMOVLMask(&BVOps[0], 4) ||
6990 isCommutedMOVL(&BVOps[0], 4, true) ||
Scott Michel91099d62009-02-17 22:15:04 +00006991 isSHUFPMask(&BVOps[0], 4) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006992 isCommutedSHUFP(&BVOps[0], 4));
6993 }
6994 return false;
6995}
6996
6997//===----------------------------------------------------------------------===//
6998// X86 Scheduler Hooks
6999//===----------------------------------------------------------------------===//
7000
Mon P Wang078a62d2008-05-05 19:05:59 +00007001// private utility function
7002MachineBasicBlock *
7003X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
7004 MachineBasicBlock *MBB,
7005 unsigned regOpc,
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007006 unsigned immOpc,
Dale Johannesend20e4452008-08-19 18:47:28 +00007007 unsigned LoadOpc,
7008 unsigned CXchgOpc,
7009 unsigned copyOpc,
7010 unsigned notOpc,
7011 unsigned EAXreg,
7012 TargetRegisterClass *RC,
Dan Gohman96d60922009-02-07 16:15:20 +00007013 bool invSrc) const {
Mon P Wang078a62d2008-05-05 19:05:59 +00007014 // For the atomic bitwise operator, we generate
7015 // thisMBB:
7016 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00007017 // ld t1 = [bitinstr.addr]
7018 // op t2 = t1, [bitinstr.val]
7019 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00007020 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7021 // bz newMBB
7022 // fallthrough -->nextMBB
7023 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7024 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007025 MachineFunction::iterator MBBIter = MBB;
Mon P Wang078a62d2008-05-05 19:05:59 +00007026 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00007027
Mon P Wang078a62d2008-05-05 19:05:59 +00007028 /// First build the CFG
7029 MachineFunction *F = MBB->getParent();
7030 MachineBasicBlock *thisMBB = MBB;
Dan Gohman221a4372008-07-07 23:14:23 +00007031 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7032 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7033 F->insert(MBBIter, newMBB);
7034 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007035
Mon P Wang078a62d2008-05-05 19:05:59 +00007036 // Move all successors to thisMBB to nextMBB
7037 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007038
Mon P Wang078a62d2008-05-05 19:05:59 +00007039 // Update thisMBB to fall through to newMBB
7040 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007041
Mon P Wang078a62d2008-05-05 19:05:59 +00007042 // newMBB jumps to itself and fall through to nextMBB
7043 newMBB->addSuccessor(nextMBB);
7044 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007045
Mon P Wang078a62d2008-05-05 19:05:59 +00007046 // Insert instructions into newMBB based on incoming instruction
7047 assert(bInstr->getNumOperands() < 8 && "unexpected number of operands");
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007048 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang078a62d2008-05-05 19:05:59 +00007049 MachineOperand& destOper = bInstr->getOperand(0);
7050 MachineOperand* argOpers[6];
7051 int numArgs = bInstr->getNumOperands() - 1;
7052 for (int i=0; i < numArgs; ++i)
7053 argOpers[i] = &bInstr->getOperand(i+1);
7054
7055 // x86 address has 4 operands: base, index, scale, and displacement
7056 int lastAddrIndx = 3; // [0,3]
7057 int valArgIndx = 4;
Scott Michel91099d62009-02-17 22:15:04 +00007058
Dale Johannesend20e4452008-08-19 18:47:28 +00007059 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007060 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00007061 for (int i=0; i <= lastAddrIndx; ++i)
7062 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007063
Dale Johannesend20e4452008-08-19 18:47:28 +00007064 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007065 if (invSrc) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007066 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007067 }
Scott Michel91099d62009-02-17 22:15:04 +00007068 else
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007069 tt = t1;
7070
Dale Johannesend20e4452008-08-19 18:47:28 +00007071 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007072 assert((argOpers[valArgIndx]->isReg() ||
7073 argOpers[valArgIndx]->isImm()) &&
Dan Gohman7f7f3652008-09-13 17:58:21 +00007074 "invalid operand");
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007075 if (argOpers[valArgIndx]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007076 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang078a62d2008-05-05 19:05:59 +00007077 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007078 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007079 MIB.addReg(tt);
Mon P Wang078a62d2008-05-05 19:05:59 +00007080 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007081
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007082 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), EAXreg);
Mon P Wang318b0372008-05-05 22:56:23 +00007083 MIB.addReg(t1);
Scott Michel91099d62009-02-17 22:15:04 +00007084
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007085 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang078a62d2008-05-05 19:05:59 +00007086 for (int i=0; i <= lastAddrIndx; ++i)
7087 (*MIB).addOperand(*argOpers[i]);
7088 MIB.addReg(t2);
Mon P Wang50584a62008-07-17 04:54:06 +00007089 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7090 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7091
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007092 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), destOper.getReg());
Dale Johannesend20e4452008-08-19 18:47:28 +00007093 MIB.addReg(EAXreg);
Scott Michel91099d62009-02-17 22:15:04 +00007094
Mon P Wang078a62d2008-05-05 19:05:59 +00007095 // insert branch
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007096 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007097
Dan Gohman221a4372008-07-07 23:14:23 +00007098 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
Mon P Wang078a62d2008-05-05 19:05:59 +00007099 return nextMBB;
7100}
7101
Dale Johannesen44eb5372008-10-03 19:41:08 +00007102// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang078a62d2008-05-05 19:05:59 +00007103MachineBasicBlock *
Dale Johannesenf160d802008-10-02 18:53:47 +00007104X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
7105 MachineBasicBlock *MBB,
7106 unsigned regOpcL,
7107 unsigned regOpcH,
7108 unsigned immOpcL,
7109 unsigned immOpcH,
Dan Gohman96d60922009-02-07 16:15:20 +00007110 bool invSrc) const {
Dale Johannesenf160d802008-10-02 18:53:47 +00007111 // For the atomic bitwise operator, we generate
7112 // thisMBB (instructions are in pairs, except cmpxchg8b)
7113 // ld t1,t2 = [bitinstr.addr]
7114 // newMBB:
7115 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
7116 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007117 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesenf160d802008-10-02 18:53:47 +00007118 // mov ECX, EBX <- t5, t6
7119 // mov EAX, EDX <- t1, t2
7120 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
7121 // mov t3, t4 <- EAX, EDX
7122 // bz newMBB
7123 // result in out1, out2
7124 // fallthrough -->nextMBB
7125
7126 const TargetRegisterClass *RC = X86::GR32RegisterClass;
7127 const unsigned LoadOpc = X86::MOV32rm;
7128 const unsigned copyOpc = X86::MOV32rr;
7129 const unsigned NotOpc = X86::NOT32r;
7130 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7131 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
7132 MachineFunction::iterator MBBIter = MBB;
7133 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00007134
Dale Johannesenf160d802008-10-02 18:53:47 +00007135 /// First build the CFG
7136 MachineFunction *F = MBB->getParent();
7137 MachineBasicBlock *thisMBB = MBB;
7138 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7139 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7140 F->insert(MBBIter, newMBB);
7141 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007142
Dale Johannesenf160d802008-10-02 18:53:47 +00007143 // Move all successors to thisMBB to nextMBB
7144 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007145
Dale Johannesenf160d802008-10-02 18:53:47 +00007146 // Update thisMBB to fall through to newMBB
7147 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007148
Dale Johannesenf160d802008-10-02 18:53:47 +00007149 // newMBB jumps to itself and fall through to nextMBB
7150 newMBB->addSuccessor(nextMBB);
7151 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007152
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007153 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesenf160d802008-10-02 18:53:47 +00007154 // Insert instructions into newMBB based on incoming instruction
7155 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
7156 assert(bInstr->getNumOperands() < 18 && "unexpected number of operands");
7157 MachineOperand& dest1Oper = bInstr->getOperand(0);
7158 MachineOperand& dest2Oper = bInstr->getOperand(1);
7159 MachineOperand* argOpers[6];
7160 for (int i=0; i < 6; ++i)
7161 argOpers[i] = &bInstr->getOperand(i+2);
7162
7163 // x86 address has 4 operands: base, index, scale, and displacement
7164 int lastAddrIndx = 3; // [0,3]
Scott Michel91099d62009-02-17 22:15:04 +00007165
Dale Johannesenf160d802008-10-02 18:53:47 +00007166 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007167 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesenf160d802008-10-02 18:53:47 +00007168 for (int i=0; i <= lastAddrIndx; ++i)
7169 (*MIB).addOperand(*argOpers[i]);
7170 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007171 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007172 // add 4 to displacement.
Dale Johannesenf160d802008-10-02 18:53:47 +00007173 for (int i=0; i <= lastAddrIndx-1; ++i)
7174 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007175 MachineOperand newOp3 = *(argOpers[3]);
7176 if (newOp3.isImm())
7177 newOp3.setImm(newOp3.getImm()+4);
7178 else
7179 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesenf160d802008-10-02 18:53:47 +00007180 (*MIB).addOperand(newOp3);
7181
7182 // t3/4 are defined later, at the bottom of the loop
7183 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
7184 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007185 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesenf160d802008-10-02 18:53:47 +00007186 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007187 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesenf160d802008-10-02 18:53:47 +00007188 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
7189
7190 unsigned tt1 = F->getRegInfo().createVirtualRegister(RC);
7191 unsigned tt2 = F->getRegInfo().createVirtualRegister(RC);
Scott Michel91099d62009-02-17 22:15:04 +00007192 if (invSrc) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007193 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt1).addReg(t1);
7194 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt2).addReg(t2);
Dale Johannesenf160d802008-10-02 18:53:47 +00007195 } else {
7196 tt1 = t1;
7197 tt2 = t2;
7198 }
7199
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007200 assert((argOpers[4]->isReg() || argOpers[4]->isImm()) &&
Dale Johannesenf160d802008-10-02 18:53:47 +00007201 "invalid operand");
7202 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
7203 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007204 if (argOpers[4]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007205 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesenf160d802008-10-02 18:53:47 +00007206 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007207 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007208 if (regOpcL != X86::MOV32rr)
7209 MIB.addReg(tt1);
Dale Johannesenf160d802008-10-02 18:53:47 +00007210 (*MIB).addOperand(*argOpers[4]);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007211 assert(argOpers[5]->isReg() == argOpers[4]->isReg());
7212 assert(argOpers[5]->isImm() == argOpers[4]->isImm());
7213 if (argOpers[5]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007214 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesenf160d802008-10-02 18:53:47 +00007215 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007216 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007217 if (regOpcH != X86::MOV32rr)
7218 MIB.addReg(tt2);
Dale Johannesenf160d802008-10-02 18:53:47 +00007219 (*MIB).addOperand(*argOpers[5]);
7220
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007221 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EAX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007222 MIB.addReg(t1);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007223 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EDX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007224 MIB.addReg(t2);
7225
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007226 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EBX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007227 MIB.addReg(t5);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007228 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::ECX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007229 MIB.addReg(t6);
Scott Michel91099d62009-02-17 22:15:04 +00007230
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007231 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesenf160d802008-10-02 18:53:47 +00007232 for (int i=0; i <= lastAddrIndx; ++i)
7233 (*MIB).addOperand(*argOpers[i]);
7234
7235 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7236 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7237
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007238 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t3);
Dale Johannesenf160d802008-10-02 18:53:47 +00007239 MIB.addReg(X86::EAX);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007240 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t4);
Dale Johannesenf160d802008-10-02 18:53:47 +00007241 MIB.addReg(X86::EDX);
Scott Michel91099d62009-02-17 22:15:04 +00007242
Dale Johannesenf160d802008-10-02 18:53:47 +00007243 // insert branch
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007244 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Dale Johannesenf160d802008-10-02 18:53:47 +00007245
7246 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
7247 return nextMBB;
7248}
7249
7250// private utility function
7251MachineBasicBlock *
Mon P Wang078a62d2008-05-05 19:05:59 +00007252X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
7253 MachineBasicBlock *MBB,
Dan Gohman96d60922009-02-07 16:15:20 +00007254 unsigned cmovOpc) const {
Mon P Wang078a62d2008-05-05 19:05:59 +00007255 // For the atomic min/max operator, we generate
7256 // thisMBB:
7257 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00007258 // ld t1 = [min/max.addr]
Scott Michel91099d62009-02-17 22:15:04 +00007259 // mov t2 = [min/max.val]
Mon P Wang078a62d2008-05-05 19:05:59 +00007260 // cmp t1, t2
7261 // cmov[cond] t2 = t1
Mon P Wang318b0372008-05-05 22:56:23 +00007262 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00007263 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7264 // bz newMBB
7265 // fallthrough -->nextMBB
7266 //
7267 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7268 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007269 MachineFunction::iterator MBBIter = MBB;
Mon P Wang078a62d2008-05-05 19:05:59 +00007270 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00007271
Mon P Wang078a62d2008-05-05 19:05:59 +00007272 /// First build the CFG
7273 MachineFunction *F = MBB->getParent();
7274 MachineBasicBlock *thisMBB = MBB;
Dan Gohman221a4372008-07-07 23:14:23 +00007275 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7276 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7277 F->insert(MBBIter, newMBB);
7278 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007279
Mon P Wang078a62d2008-05-05 19:05:59 +00007280 // Move all successors to thisMBB to nextMBB
7281 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007282
Mon P Wang078a62d2008-05-05 19:05:59 +00007283 // Update thisMBB to fall through to newMBB
7284 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007285
Mon P Wang078a62d2008-05-05 19:05:59 +00007286 // newMBB jumps to newMBB and fall through to nextMBB
7287 newMBB->addSuccessor(nextMBB);
7288 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007289
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007290 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang078a62d2008-05-05 19:05:59 +00007291 // Insert instructions into newMBB based on incoming instruction
7292 assert(mInstr->getNumOperands() < 8 && "unexpected number of operands");
7293 MachineOperand& destOper = mInstr->getOperand(0);
7294 MachineOperand* argOpers[6];
7295 int numArgs = mInstr->getNumOperands() - 1;
7296 for (int i=0; i < numArgs; ++i)
7297 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michel91099d62009-02-17 22:15:04 +00007298
Mon P Wang078a62d2008-05-05 19:05:59 +00007299 // x86 address has 4 operands: base, index, scale, and displacement
7300 int lastAddrIndx = 3; // [0,3]
7301 int valArgIndx = 4;
Scott Michel91099d62009-02-17 22:15:04 +00007302
Mon P Wang318b0372008-05-05 22:56:23 +00007303 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007304 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00007305 for (int i=0; i <= lastAddrIndx; ++i)
7306 (*MIB).addOperand(*argOpers[i]);
Mon P Wang318b0372008-05-05 22:56:23 +00007307
Mon P Wang078a62d2008-05-05 19:05:59 +00007308 // We only support register and immediate values
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007309 assert((argOpers[valArgIndx]->isReg() ||
7310 argOpers[valArgIndx]->isImm()) &&
Dan Gohman7f7f3652008-09-13 17:58:21 +00007311 "invalid operand");
Scott Michel91099d62009-02-17 22:15:04 +00007312
7313 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007314 if (argOpers[valArgIndx]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007315 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Scott Michel91099d62009-02-17 22:15:04 +00007316 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007317 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang078a62d2008-05-05 19:05:59 +00007318 (*MIB).addOperand(*argOpers[valArgIndx]);
7319
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007320 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), X86::EAX);
Mon P Wang318b0372008-05-05 22:56:23 +00007321 MIB.addReg(t1);
7322
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007323 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang078a62d2008-05-05 19:05:59 +00007324 MIB.addReg(t1);
7325 MIB.addReg(t2);
7326
7327 // Generate movc
7328 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007329 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang078a62d2008-05-05 19:05:59 +00007330 MIB.addReg(t2);
7331 MIB.addReg(t1);
7332
7333 // Cmp and exchange if none has modified the memory location
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007334 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang078a62d2008-05-05 19:05:59 +00007335 for (int i=0; i <= lastAddrIndx; ++i)
7336 (*MIB).addOperand(*argOpers[i]);
7337 MIB.addReg(t3);
Mon P Wang50584a62008-07-17 04:54:06 +00007338 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7339 (*MIB).addMemOperand(*F, *mInstr->memoperands_begin());
Scott Michel91099d62009-02-17 22:15:04 +00007340
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007341 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), destOper.getReg());
Mon P Wang078a62d2008-05-05 19:05:59 +00007342 MIB.addReg(X86::EAX);
Scott Michel91099d62009-02-17 22:15:04 +00007343
Mon P Wang078a62d2008-05-05 19:05:59 +00007344 // insert branch
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007345 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007346
Dan Gohman221a4372008-07-07 23:14:23 +00007347 F->DeleteMachineInstr(mInstr); // The pseudo instruction is gone now.
Mon P Wang078a62d2008-05-05 19:05:59 +00007348 return nextMBB;
7349}
7350
7351
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007352MachineBasicBlock *
Evan Chenge637db12008-01-30 18:18:23 +00007353X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman96d60922009-02-07 16:15:20 +00007354 MachineBasicBlock *BB) const {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007355 DebugLoc dl = MI->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007356 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7357 switch (MI->getOpcode()) {
7358 default: assert(false && "Unexpected instr type to insert");
Mon P Wang83edba52008-12-12 01:25:51 +00007359 case X86::CMOV_V1I64:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007360 case X86::CMOV_FR32:
7361 case X86::CMOV_FR64:
7362 case X86::CMOV_V4F32:
7363 case X86::CMOV_V2F64:
Evan Cheng621216e2007-09-29 00:00:36 +00007364 case X86::CMOV_V2I64: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007365 // To "insert" a SELECT_CC instruction, we actually have to insert the
7366 // diamond control-flow pattern. The incoming instruction knows the
7367 // destination vreg to set, the condition code register to branch on, the
7368 // true/false values to select between, and a branch opcode to use.
7369 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007370 MachineFunction::iterator It = BB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007371 ++It;
7372
7373 // thisMBB:
7374 // ...
7375 // TrueVal = ...
7376 // cmpTY ccX, r1, r2
7377 // bCC copy1MBB
7378 // fallthrough --> copy0MBB
7379 MachineBasicBlock *thisMBB = BB;
Dan Gohman221a4372008-07-07 23:14:23 +00007380 MachineFunction *F = BB->getParent();
7381 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7382 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007383 unsigned Opc =
7384 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007385 BuildMI(BB, dl, TII->get(Opc)).addMBB(sinkMBB);
Dan Gohman221a4372008-07-07 23:14:23 +00007386 F->insert(It, copy0MBB);
7387 F->insert(It, sinkMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007388 // Update machine-CFG edges by transferring all successors of the current
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007389 // block to the new block which will contain the Phi node for the select.
Mon P Wang078a62d2008-05-05 19:05:59 +00007390 sinkMBB->transferSuccessors(BB);
7391
7392 // Add the true and fallthrough blocks as its successors.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007393 BB->addSuccessor(copy0MBB);
7394 BB->addSuccessor(sinkMBB);
7395
7396 // copy0MBB:
7397 // %FalseValue = ...
7398 // # fallthrough to sinkMBB
7399 BB = copy0MBB;
7400
7401 // Update machine-CFG edges
7402 BB->addSuccessor(sinkMBB);
7403
7404 // sinkMBB:
7405 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7406 // ...
7407 BB = sinkMBB;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007408 BuildMI(BB, dl, TII->get(X86::PHI), MI->getOperand(0).getReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007409 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7410 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7411
Dan Gohman221a4372008-07-07 23:14:23 +00007412 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007413 return BB;
7414 }
7415
7416 case X86::FP32_TO_INT16_IN_MEM:
7417 case X86::FP32_TO_INT32_IN_MEM:
7418 case X86::FP32_TO_INT64_IN_MEM:
7419 case X86::FP64_TO_INT16_IN_MEM:
7420 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00007421 case X86::FP64_TO_INT64_IN_MEM:
7422 case X86::FP80_TO_INT16_IN_MEM:
7423 case X86::FP80_TO_INT32_IN_MEM:
7424 case X86::FP80_TO_INT64_IN_MEM: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007425 // Change the floating point control register to use "round towards zero"
7426 // mode when truncating to an integer value.
7427 MachineFunction *F = BB->getParent();
7428 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007429 addFrameReference(BuildMI(BB, dl, TII->get(X86::FNSTCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007430
7431 // Load the old value of the high byte of the control word...
7432 unsigned OldCW =
Chris Lattner1b989192007-12-31 04:13:23 +00007433 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Scott Michel91099d62009-02-17 22:15:04 +00007434 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16rm), OldCW),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007435 CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007436
7437 // Set the high part to be round to zero...
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007438 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mi)), CWFrameIdx)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007439 .addImm(0xC7F);
7440
7441 // Reload the modified control word now...
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007442 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007443
7444 // Restore the memory image of control word to original value
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007445 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mr)), CWFrameIdx)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007446 .addReg(OldCW);
7447
7448 // Get the X86 opcode to use.
7449 unsigned Opc;
7450 switch (MI->getOpcode()) {
7451 default: assert(0 && "illegal opcode!");
7452 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
7453 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
7454 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
7455 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
7456 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
7457 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00007458 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
7459 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
7460 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007461 }
7462
7463 X86AddressMode AM;
7464 MachineOperand &Op = MI->getOperand(0);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007465 if (Op.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007466 AM.BaseType = X86AddressMode::RegBase;
7467 AM.Base.Reg = Op.getReg();
7468 } else {
7469 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner6017d482007-12-30 23:10:15 +00007470 AM.Base.FrameIndex = Op.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007471 }
7472 Op = MI->getOperand(1);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007473 if (Op.isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007474 AM.Scale = Op.getImm();
7475 Op = MI->getOperand(2);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007476 if (Op.isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007477 AM.IndexReg = Op.getImm();
7478 Op = MI->getOperand(3);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007479 if (Op.isGlobal()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007480 AM.GV = Op.getGlobal();
7481 } else {
7482 AM.Disp = Op.getImm();
7483 }
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007484 addFullAddress(BuildMI(BB, dl, TII->get(Opc)), AM)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007485 .addReg(MI->getOperand(4).getReg());
7486
7487 // Reload the original control word now.
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007488 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007489
Dan Gohman221a4372008-07-07 23:14:23 +00007490 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007491 return BB;
7492 }
Mon P Wang078a62d2008-05-05 19:05:59 +00007493 case X86::ATOMAND32:
7494 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michel91099d62009-02-17 22:15:04 +00007495 X86::AND32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00007496 X86::LCMPXCHG32, X86::MOV32rr,
7497 X86::NOT32r, X86::EAX,
7498 X86::GR32RegisterClass);
Mon P Wang078a62d2008-05-05 19:05:59 +00007499 case X86::ATOMOR32:
Scott Michel91099d62009-02-17 22:15:04 +00007500 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
7501 X86::OR32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00007502 X86::LCMPXCHG32, X86::MOV32rr,
7503 X86::NOT32r, X86::EAX,
7504 X86::GR32RegisterClass);
Mon P Wang078a62d2008-05-05 19:05:59 +00007505 case X86::ATOMXOR32:
7506 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michel91099d62009-02-17 22:15:04 +00007507 X86::XOR32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00007508 X86::LCMPXCHG32, X86::MOV32rr,
7509 X86::NOT32r, X86::EAX,
7510 X86::GR32RegisterClass);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007511 case X86::ATOMNAND32:
7512 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007513 X86::AND32ri, X86::MOV32rm,
7514 X86::LCMPXCHG32, X86::MOV32rr,
7515 X86::NOT32r, X86::EAX,
7516 X86::GR32RegisterClass, true);
Mon P Wang078a62d2008-05-05 19:05:59 +00007517 case X86::ATOMMIN32:
7518 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
7519 case X86::ATOMMAX32:
7520 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
7521 case X86::ATOMUMIN32:
7522 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
7523 case X86::ATOMUMAX32:
7524 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesend20e4452008-08-19 18:47:28 +00007525
7526 case X86::ATOMAND16:
7527 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7528 X86::AND16ri, X86::MOV16rm,
7529 X86::LCMPXCHG16, X86::MOV16rr,
7530 X86::NOT16r, X86::AX,
7531 X86::GR16RegisterClass);
7532 case X86::ATOMOR16:
Scott Michel91099d62009-02-17 22:15:04 +00007533 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007534 X86::OR16ri, X86::MOV16rm,
7535 X86::LCMPXCHG16, X86::MOV16rr,
7536 X86::NOT16r, X86::AX,
7537 X86::GR16RegisterClass);
7538 case X86::ATOMXOR16:
7539 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
7540 X86::XOR16ri, X86::MOV16rm,
7541 X86::LCMPXCHG16, X86::MOV16rr,
7542 X86::NOT16r, X86::AX,
7543 X86::GR16RegisterClass);
7544 case X86::ATOMNAND16:
7545 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7546 X86::AND16ri, X86::MOV16rm,
7547 X86::LCMPXCHG16, X86::MOV16rr,
7548 X86::NOT16r, X86::AX,
7549 X86::GR16RegisterClass, true);
7550 case X86::ATOMMIN16:
7551 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
7552 case X86::ATOMMAX16:
7553 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
7554 case X86::ATOMUMIN16:
7555 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
7556 case X86::ATOMUMAX16:
7557 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
7558
7559 case X86::ATOMAND8:
7560 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7561 X86::AND8ri, X86::MOV8rm,
7562 X86::LCMPXCHG8, X86::MOV8rr,
7563 X86::NOT8r, X86::AL,
7564 X86::GR8RegisterClass);
7565 case X86::ATOMOR8:
Scott Michel91099d62009-02-17 22:15:04 +00007566 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007567 X86::OR8ri, X86::MOV8rm,
7568 X86::LCMPXCHG8, X86::MOV8rr,
7569 X86::NOT8r, X86::AL,
7570 X86::GR8RegisterClass);
7571 case X86::ATOMXOR8:
7572 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
7573 X86::XOR8ri, X86::MOV8rm,
7574 X86::LCMPXCHG8, X86::MOV8rr,
7575 X86::NOT8r, X86::AL,
7576 X86::GR8RegisterClass);
7577 case X86::ATOMNAND8:
7578 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7579 X86::AND8ri, X86::MOV8rm,
7580 X86::LCMPXCHG8, X86::MOV8rr,
7581 X86::NOT8r, X86::AL,
7582 X86::GR8RegisterClass, true);
7583 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesenf160d802008-10-02 18:53:47 +00007584 // This group is for 64-bit host.
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007585 case X86::ATOMAND64:
7586 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michel91099d62009-02-17 22:15:04 +00007587 X86::AND64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007588 X86::LCMPXCHG64, X86::MOV64rr,
7589 X86::NOT64r, X86::RAX,
7590 X86::GR64RegisterClass);
7591 case X86::ATOMOR64:
Scott Michel91099d62009-02-17 22:15:04 +00007592 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
7593 X86::OR64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007594 X86::LCMPXCHG64, X86::MOV64rr,
7595 X86::NOT64r, X86::RAX,
7596 X86::GR64RegisterClass);
7597 case X86::ATOMXOR64:
7598 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michel91099d62009-02-17 22:15:04 +00007599 X86::XOR64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007600 X86::LCMPXCHG64, X86::MOV64rr,
7601 X86::NOT64r, X86::RAX,
7602 X86::GR64RegisterClass);
7603 case X86::ATOMNAND64:
7604 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
7605 X86::AND64ri32, X86::MOV64rm,
7606 X86::LCMPXCHG64, X86::MOV64rr,
7607 X86::NOT64r, X86::RAX,
7608 X86::GR64RegisterClass, true);
7609 case X86::ATOMMIN64:
7610 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
7611 case X86::ATOMMAX64:
7612 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
7613 case X86::ATOMUMIN64:
7614 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
7615 case X86::ATOMUMAX64:
7616 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesenf160d802008-10-02 18:53:47 +00007617
7618 // This group does 64-bit operations on a 32-bit host.
7619 case X86::ATOMAND6432:
Scott Michel91099d62009-02-17 22:15:04 +00007620 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007621 X86::AND32rr, X86::AND32rr,
7622 X86::AND32ri, X86::AND32ri,
7623 false);
7624 case X86::ATOMOR6432:
Scott Michel91099d62009-02-17 22:15:04 +00007625 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007626 X86::OR32rr, X86::OR32rr,
7627 X86::OR32ri, X86::OR32ri,
7628 false);
7629 case X86::ATOMXOR6432:
Scott Michel91099d62009-02-17 22:15:04 +00007630 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007631 X86::XOR32rr, X86::XOR32rr,
7632 X86::XOR32ri, X86::XOR32ri,
7633 false);
7634 case X86::ATOMNAND6432:
Scott Michel91099d62009-02-17 22:15:04 +00007635 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007636 X86::AND32rr, X86::AND32rr,
7637 X86::AND32ri, X86::AND32ri,
7638 true);
Dale Johannesenf160d802008-10-02 18:53:47 +00007639 case X86::ATOMADD6432:
Scott Michel91099d62009-02-17 22:15:04 +00007640 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007641 X86::ADD32rr, X86::ADC32rr,
7642 X86::ADD32ri, X86::ADC32ri,
7643 false);
Dale Johannesenf160d802008-10-02 18:53:47 +00007644 case X86::ATOMSUB6432:
Scott Michel91099d62009-02-17 22:15:04 +00007645 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007646 X86::SUB32rr, X86::SBB32rr,
7647 X86::SUB32ri, X86::SBB32ri,
7648 false);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007649 case X86::ATOMSWAP6432:
Scott Michel91099d62009-02-17 22:15:04 +00007650 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007651 X86::MOV32rr, X86::MOV32rr,
7652 X86::MOV32ri, X86::MOV32ri,
7653 false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007654 }
7655}
7656
7657//===----------------------------------------------------------------------===//
7658// X86 Optimization Hooks
7659//===----------------------------------------------------------------------===//
7660
Dan Gohman8181bd12008-07-27 21:46:04 +00007661void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmand0dfc772008-02-13 22:28:48 +00007662 const APInt &Mask,
Dan Gohman229fa052008-02-13 00:35:47 +00007663 APInt &KnownZero,
7664 APInt &KnownOne,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007665 const SelectionDAG &DAG,
7666 unsigned Depth) const {
7667 unsigned Opc = Op.getOpcode();
7668 assert((Opc >= ISD::BUILTIN_OP_END ||
7669 Opc == ISD::INTRINSIC_WO_CHAIN ||
7670 Opc == ISD::INTRINSIC_W_CHAIN ||
7671 Opc == ISD::INTRINSIC_VOID) &&
7672 "Should use MaskedValueIsZero if you don't know whether Op"
7673 " is a target node!");
7674
Dan Gohman1d79e432008-02-13 23:07:24 +00007675 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007676 switch (Opc) {
7677 default: break;
Evan Cheng8e9b21c2009-02-02 09:15:04 +00007678 case X86ISD::ADD:
7679 case X86ISD::SUB:
7680 case X86ISD::SMUL:
7681 case X86ISD::UMUL:
7682 // These nodes' second result is a boolean.
7683 if (Op.getResNo() == 0)
7684 break;
7685 // Fallthrough
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007686 case X86ISD::SETCC:
Dan Gohman229fa052008-02-13 00:35:47 +00007687 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
7688 Mask.getBitWidth() - 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007689 break;
7690 }
7691}
7692
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007693/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengef7be082008-05-12 19:56:52 +00007694/// node is a GlobalAddress + offset.
7695bool X86TargetLowering::isGAPlusOffset(SDNode *N,
7696 GlobalValue* &GA, int64_t &Offset) const{
7697 if (N->getOpcode() == X86ISD::Wrapper) {
7698 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007699 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman36322c72008-10-18 02:06:02 +00007700 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007701 return true;
7702 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007703 }
Evan Chengef7be082008-05-12 19:56:52 +00007704 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007705}
7706
Evan Chengef7be082008-05-12 19:56:52 +00007707static bool isBaseAlignmentOfN(unsigned N, SDNode *Base,
7708 const TargetLowering &TLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007709 GlobalValue *GV;
Nick Lewycky4bd3fca2008-02-02 08:29:58 +00007710 int64_t Offset = 0;
Evan Chengef7be082008-05-12 19:56:52 +00007711 if (TLI.isGAPlusOffset(Base, GV, Offset))
Evan Cheng40ee6e52008-05-08 00:57:18 +00007712 return (GV->getAlignment() >= N && (Offset % N) == 0);
Chris Lattner3834cf32008-01-26 20:07:42 +00007713 // DAG combine handles the stack object case.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007714 return false;
7715}
7716
Dan Gohman8181bd12008-07-27 21:46:04 +00007717static bool EltsFromConsecutiveLoads(SDNode *N, SDValue PermMask,
Duncan Sands92c43912008-06-06 12:08:01 +00007718 unsigned NumElems, MVT EVT,
Evan Chengef7be082008-05-12 19:56:52 +00007719 SDNode *&Base,
7720 SelectionDAG &DAG, MachineFrameInfo *MFI,
7721 const TargetLowering &TLI) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00007722 Base = NULL;
7723 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007724 SDValue Idx = PermMask.getOperand(i);
Evan Cheng40ee6e52008-05-08 00:57:18 +00007725 if (Idx.getOpcode() == ISD::UNDEF) {
7726 if (!Base)
7727 return false;
7728 continue;
7729 }
7730
Dan Gohman8181bd12008-07-27 21:46:04 +00007731 SDValue Elt = DAG.getShuffleScalarElt(N, i);
Gabor Greif1c80d112008-08-28 21:40:38 +00007732 if (!Elt.getNode() ||
7733 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
Evan Cheng40ee6e52008-05-08 00:57:18 +00007734 return false;
7735 if (!Base) {
Gabor Greif1c80d112008-08-28 21:40:38 +00007736 Base = Elt.getNode();
Evan Cheng92ee6822008-05-10 06:46:49 +00007737 if (Base->getOpcode() == ISD::UNDEF)
7738 return false;
Evan Cheng40ee6e52008-05-08 00:57:18 +00007739 continue;
7740 }
7741 if (Elt.getOpcode() == ISD::UNDEF)
7742 continue;
7743
Gabor Greif1c80d112008-08-28 21:40:38 +00007744 if (!TLI.isConsecutiveLoad(Elt.getNode(), Base,
Duncan Sands92c43912008-06-06 12:08:01 +00007745 EVT.getSizeInBits()/8, i, MFI))
Evan Cheng40ee6e52008-05-08 00:57:18 +00007746 return false;
7747 }
7748 return true;
7749}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007750
7751/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
7752/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
7753/// if the load addresses are consecutive, non-overlapping, and in the right
7754/// order.
Dan Gohman8181bd12008-07-27 21:46:04 +00007755static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Evan Chengef7be082008-05-12 19:56:52 +00007756 const TargetLowering &TLI) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00007757 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007758 DebugLoc dl = N->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00007759 MVT VT = N->getValueType(0);
7760 MVT EVT = VT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00007761 SDValue PermMask = N->getOperand(2);
Evan Chengbad18452008-05-05 22:12:23 +00007762 unsigned NumElems = PermMask.getNumOperands();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007763 SDNode *Base = NULL;
Evan Chengef7be082008-05-12 19:56:52 +00007764 if (!EltsFromConsecutiveLoads(N, PermMask, NumElems, EVT, Base,
7765 DAG, MFI, TLI))
Dan Gohman8181bd12008-07-27 21:46:04 +00007766 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007767
Dan Gohman11821702007-07-27 17:16:43 +00007768 LoadSDNode *LD = cast<LoadSDNode>(Base);
Gabor Greif1c80d112008-08-28 21:40:38 +00007769 if (isBaseAlignmentOfN(16, Base->getOperand(1).getNode(), TLI))
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007770 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
Scott Michel91099d62009-02-17 22:15:04 +00007771 LD->getSrcValue(), LD->getSrcValueOffset(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007772 LD->isVolatile());
7773 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
7774 LD->getSrcValue(), LD->getSrcValueOffset(),
7775 LD->isVolatile(), LD->getAlignment());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007776}
7777
Evan Chengb6290462008-05-12 23:04:07 +00007778/// PerformBuildVectorCombine - build_vector 0,(load i64 / f64) -> movq / movsd.
Dan Gohman8181bd12008-07-27 21:46:04 +00007779static SDValue PerformBuildVectorCombine(SDNode *N, SelectionDAG &DAG,
Dan Gohman22cefb02009-01-29 01:59:02 +00007780 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng6617eed2008-09-24 23:26:36 +00007781 const X86Subtarget *Subtarget,
7782 const TargetLowering &TLI) {
Evan Chengdea99362008-05-29 08:22:04 +00007783 unsigned NumOps = N->getNumOperands();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007784 DebugLoc dl = N->getDebugLoc();
Evan Chengdea99362008-05-29 08:22:04 +00007785
Evan Chenge9b9c672008-05-09 21:53:03 +00007786 // Ignore single operand BUILD_VECTOR.
Evan Chengdea99362008-05-29 08:22:04 +00007787 if (NumOps == 1)
Dan Gohman8181bd12008-07-27 21:46:04 +00007788 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00007789
Duncan Sands92c43912008-06-06 12:08:01 +00007790 MVT VT = N->getValueType(0);
7791 MVT EVT = VT.getVectorElementType();
Evan Chenge9b9c672008-05-09 21:53:03 +00007792 if ((EVT != MVT::i64 && EVT != MVT::f64) || Subtarget->is64Bit())
7793 // We are looking for load i64 and zero extend. We want to transform
7794 // it before legalizer has a chance to expand it. Also look for i64
7795 // BUILD_PAIR bit casted to f64.
Dan Gohman8181bd12008-07-27 21:46:04 +00007796 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00007797 // This must be an insertion into a zero vector.
Dan Gohman8181bd12008-07-27 21:46:04 +00007798 SDValue HighElt = N->getOperand(1);
Evan Cheng5b0c30e2008-05-10 00:58:41 +00007799 if (!isZeroNode(HighElt))
Dan Gohman8181bd12008-07-27 21:46:04 +00007800 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00007801
7802 // Value must be a load.
Gabor Greif1c80d112008-08-28 21:40:38 +00007803 SDNode *Base = N->getOperand(0).getNode();
Evan Chenge9b9c672008-05-09 21:53:03 +00007804 if (!isa<LoadSDNode>(Base)) {
Evan Chengb6290462008-05-12 23:04:07 +00007805 if (Base->getOpcode() != ISD::BIT_CONVERT)
Dan Gohman8181bd12008-07-27 21:46:04 +00007806 return SDValue();
Gabor Greif1c80d112008-08-28 21:40:38 +00007807 Base = Base->getOperand(0).getNode();
Evan Chengb6290462008-05-12 23:04:07 +00007808 if (!isa<LoadSDNode>(Base))
Dan Gohman8181bd12008-07-27 21:46:04 +00007809 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00007810 }
Evan Chenge9b9c672008-05-09 21:53:03 +00007811
7812 // Transform it into VZEXT_LOAD addr.
Evan Chengb6290462008-05-12 23:04:07 +00007813 LoadSDNode *LD = cast<LoadSDNode>(Base);
Scott Michel91099d62009-02-17 22:15:04 +00007814
Nate Begeman211c4742008-05-28 00:24:25 +00007815 // Load must not be an extload.
7816 if (LD->getExtensionType() != ISD::NON_EXTLOAD)
Dan Gohman8181bd12008-07-27 21:46:04 +00007817 return SDValue();
Mon P Wang28b36412009-01-30 07:07:40 +00007818
7819 // Load type should legal type so we don't have to legalize it.
7820 if (!TLI.isTypeLegal(VT))
7821 return SDValue();
7822
Evan Cheng6617eed2008-09-24 23:26:36 +00007823 SDVTList Tys = DAG.getVTList(VT, MVT::Other);
7824 SDValue Ops[] = { LD->getChain(), LD->getBasePtr() };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007825 SDValue ResNode = DAG.getNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2);
Dan Gohman22cefb02009-01-29 01:59:02 +00007826 TargetLowering::TargetLoweringOpt TLO(DAG);
7827 TLO.CombineTo(SDValue(Base, 1), ResNode.getValue(1));
7828 DCI.CommitTargetLoweringOpt(TLO);
Evan Cheng6617eed2008-09-24 23:26:36 +00007829 return ResNode;
Scott Michel91099d62009-02-17 22:15:04 +00007830}
Evan Chenge9b9c672008-05-09 21:53:03 +00007831
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007832/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00007833static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007834 const X86Subtarget *Subtarget) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007835 DebugLoc dl = N->getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00007836 SDValue Cond = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007837
7838 // If we have SSE[12] support, try to form min/max nodes.
7839 if (Subtarget->hasSSE2() &&
7840 (N->getValueType(0) == MVT::f32 || N->getValueType(0) == MVT::f64)) {
7841 if (Cond.getOpcode() == ISD::SETCC) {
7842 // Get the LHS/RHS of the select.
Dan Gohman8181bd12008-07-27 21:46:04 +00007843 SDValue LHS = N->getOperand(1);
7844 SDValue RHS = N->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007845 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
7846
7847 unsigned Opcode = 0;
7848 if (LHS == Cond.getOperand(0) && RHS == Cond.getOperand(1)) {
7849 switch (CC) {
7850 default: break;
7851 case ISD::SETOLE: // (X <= Y) ? X : Y -> min
7852 case ISD::SETULE:
7853 case ISD::SETLE:
7854 if (!UnsafeFPMath) break;
7855 // FALL THROUGH.
7856 case ISD::SETOLT: // (X olt/lt Y) ? X : Y -> min
7857 case ISD::SETLT:
7858 Opcode = X86ISD::FMIN;
7859 break;
7860
7861 case ISD::SETOGT: // (X > Y) ? X : Y -> max
7862 case ISD::SETUGT:
7863 case ISD::SETGT:
7864 if (!UnsafeFPMath) break;
7865 // FALL THROUGH.
7866 case ISD::SETUGE: // (X uge/ge Y) ? X : Y -> max
7867 case ISD::SETGE:
7868 Opcode = X86ISD::FMAX;
7869 break;
7870 }
7871 } else if (LHS == Cond.getOperand(1) && RHS == Cond.getOperand(0)) {
7872 switch (CC) {
7873 default: break;
7874 case ISD::SETOGT: // (X > Y) ? Y : X -> min
7875 case ISD::SETUGT:
7876 case ISD::SETGT:
7877 if (!UnsafeFPMath) break;
7878 // FALL THROUGH.
7879 case ISD::SETUGE: // (X uge/ge Y) ? Y : X -> min
7880 case ISD::SETGE:
7881 Opcode = X86ISD::FMIN;
7882 break;
7883
7884 case ISD::SETOLE: // (X <= Y) ? Y : X -> max
7885 case ISD::SETULE:
7886 case ISD::SETLE:
7887 if (!UnsafeFPMath) break;
7888 // FALL THROUGH.
7889 case ISD::SETOLT: // (X olt/lt Y) ? Y : X -> max
7890 case ISD::SETLT:
7891 Opcode = X86ISD::FMAX;
7892 break;
7893 }
7894 }
7895
7896 if (Opcode)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007897 return DAG.getNode(Opcode, dl, N->getValueType(0), LHS, RHS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007898 }
7899
7900 }
7901
Dan Gohman8181bd12008-07-27 21:46:04 +00007902 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007903}
7904
sampo025b75c2009-01-26 00:52:55 +00007905/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
7906/// when possible.
7907static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
7908 const X86Subtarget *Subtarget) {
7909 // On X86 with SSE2 support, we can transform this to a vector shift if
7910 // all elements are shifted by the same amount. We can't do this in legalize
7911 // because the a constant vector is typically transformed to a constant pool
7912 // so we have no knowledge of the shift amount.
sampo087d53c2009-01-26 03:15:31 +00007913 if (!Subtarget->hasSSE2())
7914 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00007915
sampo025b75c2009-01-26 00:52:55 +00007916 MVT VT = N->getValueType(0);
sampo087d53c2009-01-26 03:15:31 +00007917 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
7918 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00007919
Mon P Wanga91e9642009-01-28 08:12:05 +00007920 SDValue ShAmtOp = N->getOperand(1);
7921 MVT EltVT = VT.getVectorElementType();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007922 DebugLoc dl = N->getDebugLoc();
Mon P Wanga91e9642009-01-28 08:12:05 +00007923 SDValue BaseShAmt;
7924 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
7925 unsigned NumElts = VT.getVectorNumElements();
7926 unsigned i = 0;
7927 for (; i != NumElts; ++i) {
7928 SDValue Arg = ShAmtOp.getOperand(i);
7929 if (Arg.getOpcode() == ISD::UNDEF) continue;
7930 BaseShAmt = Arg;
7931 break;
7932 }
7933 for (; i != NumElts; ++i) {
7934 SDValue Arg = ShAmtOp.getOperand(i);
7935 if (Arg.getOpcode() == ISD::UNDEF) continue;
7936 if (Arg != BaseShAmt) {
7937 return SDValue();
7938 }
7939 }
7940 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
7941 isSplatMask(ShAmtOp.getOperand(2).getNode())) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007942 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, ShAmtOp,
Mon P Wanga91e9642009-01-28 08:12:05 +00007943 DAG.getIntPtrConstant(0));
7944 } else
sampo087d53c2009-01-26 03:15:31 +00007945 return SDValue();
sampo025b75c2009-01-26 00:52:55 +00007946
sampo087d53c2009-01-26 03:15:31 +00007947 if (EltVT.bitsGT(MVT::i32))
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007948 BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00007949 else if (EltVT.bitsLT(MVT::i32))
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007950 BaseShAmt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BaseShAmt);
sampo025b75c2009-01-26 00:52:55 +00007951
sampo087d53c2009-01-26 03:15:31 +00007952 // The shift amount is identical so we can do a vector shift.
7953 SDValue ValOp = N->getOperand(0);
7954 switch (N->getOpcode()) {
7955 default:
7956 assert(0 && "Unknown shift opcode!");
7957 break;
7958 case ISD::SHL:
7959 if (VT == MVT::v2i64)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007960 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00007961 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
7962 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00007963 if (VT == MVT::v4i32)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007964 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00007965 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
7966 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00007967 if (VT == MVT::v8i16)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007968 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00007969 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
7970 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00007971 break;
7972 case ISD::SRA:
7973 if (VT == MVT::v4i32)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007974 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00007975 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
7976 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00007977 if (VT == MVT::v8i16)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007978 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00007979 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
7980 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00007981 break;
7982 case ISD::SRL:
7983 if (VT == MVT::v2i64)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007984 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00007985 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
7986 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00007987 if (VT == MVT::v4i32)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007988 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00007989 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
7990 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00007991 if (VT == MVT::v8i16)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007992 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00007993 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
7994 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00007995 break;
sampo025b75c2009-01-26 00:52:55 +00007996 }
7997 return SDValue();
7998}
7999
Chris Lattnerce84ae42008-02-22 02:09:43 +00008000/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008001static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Chris Lattnerce84ae42008-02-22 02:09:43 +00008002 const X86Subtarget *Subtarget) {
8003 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
8004 // the FP state in cases where an emms may be missing.
Dale Johannesend112b802008-02-25 19:20:14 +00008005 // A preferable solution to the general problem is to figure out the right
8006 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng40ee6e52008-05-08 00:57:18 +00008007 StoreSDNode *St = cast<StoreSDNode>(N);
Duncan Sands92c43912008-06-06 12:08:01 +00008008 if (St->getValue().getValueType().isVector() &&
8009 St->getValue().getValueType().getSizeInBits() == 64 &&
Dale Johannesend112b802008-02-25 19:20:14 +00008010 isa<LoadSDNode>(St->getValue()) &&
8011 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
8012 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greif1c80d112008-08-28 21:40:38 +00008013 SDNode* LdVal = St->getValue().getNode();
Dale Johannesend112b802008-02-25 19:20:14 +00008014 LoadSDNode *Ld = 0;
8015 int TokenFactorIndex = -1;
Dan Gohman8181bd12008-07-27 21:46:04 +00008016 SmallVector<SDValue, 8> Ops;
Gabor Greif1c80d112008-08-28 21:40:38 +00008017 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesend112b802008-02-25 19:20:14 +00008018 // Must be a store of a load. We currently handle two cases: the load
8019 // is a direct child, and it's under an intervening TokenFactor. It is
8020 // possible to dig deeper under nested TokenFactors.
Dale Johannesen49151bc2008-02-25 22:29:22 +00008021 if (ChainVal == LdVal)
Dale Johannesend112b802008-02-25 19:20:14 +00008022 Ld = cast<LoadSDNode>(St->getChain());
8023 else if (St->getValue().hasOneUse() &&
8024 ChainVal->getOpcode() == ISD::TokenFactor) {
8025 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greif1c80d112008-08-28 21:40:38 +00008026 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesend112b802008-02-25 19:20:14 +00008027 TokenFactorIndex = i;
8028 Ld = cast<LoadSDNode>(St->getValue());
8029 } else
8030 Ops.push_back(ChainVal->getOperand(i));
8031 }
8032 }
8033 if (Ld) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008034 DebugLoc dl = N->getDebugLoc();
Dale Johannesend112b802008-02-25 19:20:14 +00008035 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
8036 if (Subtarget->is64Bit()) {
Scott Michel91099d62009-02-17 22:15:04 +00008037 SDValue NewLd = DAG.getLoad(MVT::i64, dl, Ld->getChain(),
8038 Ld->getBasePtr(), Ld->getSrcValue(),
Dale Johannesend112b802008-02-25 19:20:14 +00008039 Ld->getSrcValueOffset(), Ld->isVolatile(),
8040 Ld->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +00008041 SDValue NewChain = NewLd.getValue(1);
Dale Johannesend112b802008-02-25 19:20:14 +00008042 if (TokenFactorIndex != -1) {
Dan Gohman72032662008-03-28 23:45:16 +00008043 Ops.push_back(NewChain);
Scott Michel91099d62009-02-17 22:15:04 +00008044 NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Ops[0],
Dale Johannesend112b802008-02-25 19:20:14 +00008045 Ops.size());
8046 }
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008047 return DAG.getStore(NewChain, dl, NewLd, St->getBasePtr(),
Dale Johannesend112b802008-02-25 19:20:14 +00008048 St->getSrcValue(), St->getSrcValueOffset(),
8049 St->isVolatile(), St->getAlignment());
8050 }
8051
8052 // Otherwise, lower to two 32-bit copies.
Dan Gohman8181bd12008-07-27 21:46:04 +00008053 SDValue LoAddr = Ld->getBasePtr();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008054 SDValue HiAddr = DAG.getNode(ISD::ADD, dl, MVT::i32, LoAddr,
Duncan Sands92c43912008-06-06 12:08:01 +00008055 DAG.getConstant(4, MVT::i32));
Dale Johannesend112b802008-02-25 19:20:14 +00008056
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008057 SDValue LoLd = DAG.getLoad(MVT::i32, dl, Ld->getChain(), LoAddr,
Dale Johannesend112b802008-02-25 19:20:14 +00008058 Ld->getSrcValue(), Ld->getSrcValueOffset(),
8059 Ld->isVolatile(), Ld->getAlignment());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008060 SDValue HiLd = DAG.getLoad(MVT::i32, dl, Ld->getChain(), HiAddr,
Dale Johannesend112b802008-02-25 19:20:14 +00008061 Ld->getSrcValue(), Ld->getSrcValueOffset()+4,
Scott Michel91099d62009-02-17 22:15:04 +00008062 Ld->isVolatile(),
Dale Johannesend112b802008-02-25 19:20:14 +00008063 MinAlign(Ld->getAlignment(), 4));
8064
Dan Gohman8181bd12008-07-27 21:46:04 +00008065 SDValue NewChain = LoLd.getValue(1);
Dale Johannesend112b802008-02-25 19:20:14 +00008066 if (TokenFactorIndex != -1) {
8067 Ops.push_back(LoLd);
8068 Ops.push_back(HiLd);
Scott Michel91099d62009-02-17 22:15:04 +00008069 NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Ops[0],
Dale Johannesend112b802008-02-25 19:20:14 +00008070 Ops.size());
8071 }
8072
8073 LoAddr = St->getBasePtr();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008074 HiAddr = DAG.getNode(ISD::ADD, dl, MVT::i32, LoAddr,
Duncan Sands92c43912008-06-06 12:08:01 +00008075 DAG.getConstant(4, MVT::i32));
Dale Johannesend112b802008-02-25 19:20:14 +00008076
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008077 SDValue LoSt = DAG.getStore(NewChain, dl, LoLd, LoAddr,
Chris Lattnerce84ae42008-02-22 02:09:43 +00008078 St->getSrcValue(), St->getSrcValueOffset(),
8079 St->isVolatile(), St->getAlignment());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008080 SDValue HiSt = DAG.getStore(NewChain, dl, HiLd, HiAddr,
Gabor Greif825aa892008-08-28 23:19:51 +00008081 St->getSrcValue(),
8082 St->getSrcValueOffset() + 4,
Scott Michel91099d62009-02-17 22:15:04 +00008083 St->isVolatile(),
Dale Johannesend112b802008-02-25 19:20:14 +00008084 MinAlign(St->getAlignment(), 4));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008085 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoSt, HiSt);
Chris Lattnerce84ae42008-02-22 02:09:43 +00008086 }
Chris Lattnerce84ae42008-02-22 02:09:43 +00008087 }
Dan Gohman8181bd12008-07-27 21:46:04 +00008088 return SDValue();
Chris Lattnerce84ae42008-02-22 02:09:43 +00008089}
8090
Chris Lattner470d5dc2008-01-25 06:14:17 +00008091/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
8092/// X86ISD::FXOR nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008093static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner470d5dc2008-01-25 06:14:17 +00008094 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
8095 // F[X]OR(0.0, x) -> x
8096 // F[X]OR(x, 0.0) -> x
Chris Lattnerf82998f2008-01-25 05:46:26 +00008097 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8098 if (C->getValueAPF().isPosZero())
8099 return N->getOperand(1);
8100 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8101 if (C->getValueAPF().isPosZero())
8102 return N->getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +00008103 return SDValue();
Chris Lattnerf82998f2008-01-25 05:46:26 +00008104}
8105
8106/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008107static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattnerf82998f2008-01-25 05:46:26 +00008108 // FAND(0.0, x) -> 0.0
8109 // FAND(x, 0.0) -> 0.0
8110 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8111 if (C->getValueAPF().isPosZero())
8112 return N->getOperand(0);
8113 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8114 if (C->getValueAPF().isPosZero())
8115 return N->getOperand(1);
Dan Gohman8181bd12008-07-27 21:46:04 +00008116 return SDValue();
Chris Lattnerf82998f2008-01-25 05:46:26 +00008117}
8118
Dan Gohman22cefb02009-01-29 01:59:02 +00008119static SDValue PerformBTCombine(SDNode *N,
8120 SelectionDAG &DAG,
8121 TargetLowering::DAGCombinerInfo &DCI) {
8122 // BT ignores high bits in the bit index operand.
8123 SDValue Op1 = N->getOperand(1);
8124 if (Op1.hasOneUse()) {
8125 unsigned BitWidth = Op1.getValueSizeInBits();
8126 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
8127 APInt KnownZero, KnownOne;
8128 TargetLowering::TargetLoweringOpt TLO(DAG);
8129 TargetLowering &TLI = DAG.getTargetLoweringInfo();
8130 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
8131 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
8132 DCI.CommitTargetLoweringOpt(TLO);
8133 }
8134 return SDValue();
8135}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008136
Dan Gohman8181bd12008-07-27 21:46:04 +00008137SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng62370f32008-11-05 06:03:38 +00008138 DAGCombinerInfo &DCI) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008139 SelectionDAG &DAG = DCI.DAG;
8140 switch (N->getOpcode()) {
8141 default: break;
Evan Chengef7be082008-05-12 19:56:52 +00008142 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
8143 case ISD::BUILD_VECTOR:
Dan Gohman22cefb02009-01-29 01:59:02 +00008144 return PerformBuildVectorCombine(N, DAG, DCI, Subtarget, *this);
Chris Lattnerf82998f2008-01-25 05:46:26 +00008145 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
sampo025b75c2009-01-26 00:52:55 +00008146 case ISD::SHL:
8147 case ISD::SRA:
8148 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng40ee6e52008-05-08 00:57:18 +00008149 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner470d5dc2008-01-25 06:14:17 +00008150 case X86ISD::FXOR:
Chris Lattnerf82998f2008-01-25 05:46:26 +00008151 case X86ISD::FOR: return PerformFORCombine(N, DAG);
8152 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohman22cefb02009-01-29 01:59:02 +00008153 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008154 }
8155
Dan Gohman8181bd12008-07-27 21:46:04 +00008156 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008157}
8158
8159//===----------------------------------------------------------------------===//
8160// X86 Inline Assembly Support
8161//===----------------------------------------------------------------------===//
8162
8163/// getConstraintType - Given a constraint letter, return the type of
8164/// constraint it is for this target.
8165X86TargetLowering::ConstraintType
8166X86TargetLowering::getConstraintType(const std::string &Constraint) const {
8167 if (Constraint.size() == 1) {
8168 switch (Constraint[0]) {
8169 case 'A':
Dale Johannesen73920c02008-11-13 21:52:36 +00008170 return C_Register;
Chris Lattner267805f2008-03-11 19:06:29 +00008171 case 'f':
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008172 case 'r':
8173 case 'R':
8174 case 'l':
8175 case 'q':
8176 case 'Q':
8177 case 'x':
Dale Johannesen9ab553f2008-04-01 00:57:48 +00008178 case 'y':
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008179 case 'Y':
8180 return C_RegisterClass;
Dale Johannesenf190a032009-02-12 20:58:09 +00008181 case 'e':
8182 case 'Z':
8183 return C_Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008184 default:
8185 break;
8186 }
8187 }
8188 return TargetLowering::getConstraintType(Constraint);
8189}
8190
Dale Johannesene99fc902008-01-29 02:21:21 +00008191/// LowerXConstraint - try to replace an X constraint, which matches anything,
8192/// with another that has more specific requirements based on the type of the
8193/// corresponding operand.
Chris Lattnereca405c2008-04-26 23:02:14 +00008194const char *X86TargetLowering::
Duncan Sands92c43912008-06-06 12:08:01 +00008195LowerXConstraint(MVT ConstraintVT) const {
Chris Lattnereca405c2008-04-26 23:02:14 +00008196 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
8197 // 'f' like normal targets.
Duncan Sands92c43912008-06-06 12:08:01 +00008198 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesene99fc902008-01-29 02:21:21 +00008199 if (Subtarget->hasSSE2())
Chris Lattnereca405c2008-04-26 23:02:14 +00008200 return "Y";
8201 if (Subtarget->hasSSE1())
8202 return "x";
8203 }
Scott Michel91099d62009-02-17 22:15:04 +00008204
Chris Lattnereca405c2008-04-26 23:02:14 +00008205 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesene99fc902008-01-29 02:21:21 +00008206}
8207
Chris Lattnera531abc2007-08-25 00:47:38 +00008208/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
8209/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman8181bd12008-07-27 21:46:04 +00008210void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattnera531abc2007-08-25 00:47:38 +00008211 char Constraint,
Evan Cheng7f250d62008-09-24 00:05:32 +00008212 bool hasMemory,
Dan Gohman8181bd12008-07-27 21:46:04 +00008213 std::vector<SDValue>&Ops,
Chris Lattnereca405c2008-04-26 23:02:14 +00008214 SelectionDAG &DAG) const {
Dan Gohman8181bd12008-07-27 21:46:04 +00008215 SDValue Result(0, 0);
Scott Michel91099d62009-02-17 22:15:04 +00008216
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008217 switch (Constraint) {
8218 default: break;
8219 case 'I':
8220 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008221 if (C->getZExtValue() <= 31) {
8222 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattnera531abc2007-08-25 00:47:38 +00008223 break;
8224 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008225 }
Chris Lattnera531abc2007-08-25 00:47:38 +00008226 return;
Evan Cheng4fb2c0f2008-09-22 23:57:37 +00008227 case 'J':
8228 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8229 if (C->getZExtValue() <= 63) {
8230 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8231 break;
8232 }
8233 }
8234 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008235 case 'N':
8236 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008237 if (C->getZExtValue() <= 255) {
8238 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattnera531abc2007-08-25 00:47:38 +00008239 break;
8240 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008241 }
Chris Lattnera531abc2007-08-25 00:47:38 +00008242 return;
Dale Johannesenf190a032009-02-12 20:58:09 +00008243 case 'e': {
8244 // 32-bit signed value
8245 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8246 const ConstantInt *CI = C->getConstantIntValue();
8247 if (CI->isValueValidForType(Type::Int32Ty, C->getSExtValue())) {
8248 // Widen to 64 bits here to get it sign extended.
8249 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
8250 break;
8251 }
8252 // FIXME gcc accepts some relocatable values here too, but only in certain
8253 // memory models; it's complicated.
8254 }
8255 return;
8256 }
8257 case 'Z': {
8258 // 32-bit unsigned value
8259 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8260 const ConstantInt *CI = C->getConstantIntValue();
8261 if (CI->isValueValidForType(Type::Int32Ty, C->getZExtValue())) {
8262 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8263 break;
8264 }
8265 }
8266 // FIXME gcc accepts some relocatable values here too, but only in certain
8267 // memory models; it's complicated.
8268 return;
8269 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008270 case 'i': {
8271 // Literal immediates are always ok.
Chris Lattnera531abc2007-08-25 00:47:38 +00008272 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesenf190a032009-02-12 20:58:09 +00008273 // Widen to 64 bits here to get it sign extended.
8274 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattnera531abc2007-08-25 00:47:38 +00008275 break;
8276 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008277
8278 // If we are in non-pic codegen mode, we allow the address of a global (with
8279 // an optional displacement) to be used with 'i'.
8280 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
8281 int64_t Offset = 0;
Scott Michel91099d62009-02-17 22:15:04 +00008282
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008283 // Match either (GA) or (GA+C)
8284 if (GA) {
8285 Offset = GA->getOffset();
8286 } else if (Op.getOpcode() == ISD::ADD) {
8287 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8288 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
8289 if (C && GA) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008290 Offset = GA->getOffset()+C->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008291 } else {
8292 C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8293 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
8294 if (C && GA)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008295 Offset = GA->getOffset()+C->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008296 else
8297 C = 0, GA = 0;
8298 }
8299 }
Scott Michel91099d62009-02-17 22:15:04 +00008300
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008301 if (GA) {
Scott Michel91099d62009-02-17 22:15:04 +00008302 if (hasMemory)
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00008303 Op = LowerGlobalAddress(GA->getGlobal(), Op.getDebugLoc(),
Dale Johannesenea996922009-02-04 20:06:27 +00008304 Offset, DAG);
Evan Cheng7f250d62008-09-24 00:05:32 +00008305 else
8306 Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
8307 Offset);
Chris Lattnera531abc2007-08-25 00:47:38 +00008308 Result = Op;
8309 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008310 }
8311
8312 // Otherwise, not valid for this mode.
Chris Lattnera531abc2007-08-25 00:47:38 +00008313 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008314 }
8315 }
Scott Michel91099d62009-02-17 22:15:04 +00008316
Gabor Greif1c80d112008-08-28 21:40:38 +00008317 if (Result.getNode()) {
Chris Lattnera531abc2007-08-25 00:47:38 +00008318 Ops.push_back(Result);
8319 return;
8320 }
Evan Cheng7f250d62008-09-24 00:05:32 +00008321 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, hasMemory,
8322 Ops, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008323}
8324
8325std::vector<unsigned> X86TargetLowering::
8326getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +00008327 MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008328 if (Constraint.size() == 1) {
8329 // FIXME: not handling fp-stack yet!
8330 switch (Constraint[0]) { // GCC X86 Constraint Letters
8331 default: break; // Unknown constraint letter
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008332 case 'q': // Q_REGS (GENERAL_REGS in 64-bit mode)
8333 case 'Q': // Q_REGS
8334 if (VT == MVT::i32)
8335 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
8336 else if (VT == MVT::i16)
8337 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
8338 else if (VT == MVT::i8)
Evan Chengf85c10f2007-08-13 23:27:11 +00008339 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Chris Lattner35032592007-11-04 06:51:12 +00008340 else if (VT == MVT::i64)
8341 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
8342 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008343 }
8344 }
8345
8346 return std::vector<unsigned>();
8347}
8348
8349std::pair<unsigned, const TargetRegisterClass*>
8350X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +00008351 MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008352 // First, see if this is a constraint that directly corresponds to an LLVM
8353 // register class.
8354 if (Constraint.size() == 1) {
8355 // GCC Constraint Letters
8356 switch (Constraint[0]) {
8357 default: break;
8358 case 'r': // GENERAL_REGS
8359 case 'R': // LEGACY_REGS
8360 case 'l': // INDEX_REGS
Chris Lattnerbbfea052008-10-17 18:15:05 +00008361 if (VT == MVT::i8)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008362 return std::make_pair(0U, X86::GR8RegisterClass);
Chris Lattnerbbfea052008-10-17 18:15:05 +00008363 if (VT == MVT::i16)
8364 return std::make_pair(0U, X86::GR16RegisterClass);
8365 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michel91099d62009-02-17 22:15:04 +00008366 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattnerbbfea052008-10-17 18:15:05 +00008367 return std::make_pair(0U, X86::GR64RegisterClass);
Chris Lattner267805f2008-03-11 19:06:29 +00008368 case 'f': // FP Stack registers.
8369 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
8370 // value to the correct fpstack register class.
8371 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
8372 return std::make_pair(0U, X86::RFP32RegisterClass);
8373 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
8374 return std::make_pair(0U, X86::RFP64RegisterClass);
8375 return std::make_pair(0U, X86::RFP80RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008376 case 'y': // MMX_REGS if MMX allowed.
8377 if (!Subtarget->hasMMX()) break;
8378 return std::make_pair(0U, X86::VR64RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008379 case 'Y': // SSE_REGS if SSE2 allowed
8380 if (!Subtarget->hasSSE2()) break;
8381 // FALL THROUGH.
8382 case 'x': // SSE_REGS if SSE1 allowed
8383 if (!Subtarget->hasSSE1()) break;
Duncan Sands92c43912008-06-06 12:08:01 +00008384
8385 switch (VT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008386 default: break;
8387 // Scalar SSE types.
8388 case MVT::f32:
8389 case MVT::i32:
8390 return std::make_pair(0U, X86::FR32RegisterClass);
8391 case MVT::f64:
8392 case MVT::i64:
8393 return std::make_pair(0U, X86::FR64RegisterClass);
8394 // Vector types.
8395 case MVT::v16i8:
8396 case MVT::v8i16:
8397 case MVT::v4i32:
8398 case MVT::v2i64:
8399 case MVT::v4f32:
8400 case MVT::v2f64:
8401 return std::make_pair(0U, X86::VR128RegisterClass);
8402 }
8403 break;
8404 }
8405 }
Scott Michel91099d62009-02-17 22:15:04 +00008406
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008407 // Use the default implementation in TargetLowering to convert the register
8408 // constraint into a member of a register class.
8409 std::pair<unsigned, const TargetRegisterClass*> Res;
8410 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
8411
8412 // Not found as a standard register?
8413 if (Res.second == 0) {
8414 // GCC calls "st(0)" just plain "st".
8415 if (StringsEqualNoCase("{st}", Constraint)) {
8416 Res.first = X86::ST0;
Chris Lattner3cfe51b2007-09-24 05:27:37 +00008417 Res.second = X86::RFP80RegisterClass;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008418 }
Dale Johannesen73920c02008-11-13 21:52:36 +00008419 // 'A' means EAX + EDX.
8420 if (Constraint == "A") {
8421 Res.first = X86::EAX;
8422 Res.second = X86::GRADRegisterClass;
8423 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008424 return Res;
8425 }
8426
8427 // Otherwise, check to see if this is a register class of the wrong value
8428 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
8429 // turn into {ax},{dx}.
8430 if (Res.second->hasType(VT))
8431 return Res; // Correct type already, nothing to do.
8432
8433 // All of the single-register GCC register classes map their values onto
8434 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
8435 // really want an 8-bit or 32-bit register, map to the appropriate register
8436 // class and return the appropriate register.
Chris Lattnere9d7f792008-08-26 06:19:02 +00008437 if (Res.second == X86::GR16RegisterClass) {
8438 if (VT == MVT::i8) {
8439 unsigned DestReg = 0;
8440 switch (Res.first) {
8441 default: break;
8442 case X86::AX: DestReg = X86::AL; break;
8443 case X86::DX: DestReg = X86::DL; break;
8444 case X86::CX: DestReg = X86::CL; break;
8445 case X86::BX: DestReg = X86::BL; break;
8446 }
8447 if (DestReg) {
8448 Res.first = DestReg;
8449 Res.second = Res.second = X86::GR8RegisterClass;
8450 }
8451 } else if (VT == MVT::i32) {
8452 unsigned DestReg = 0;
8453 switch (Res.first) {
8454 default: break;
8455 case X86::AX: DestReg = X86::EAX; break;
8456 case X86::DX: DestReg = X86::EDX; break;
8457 case X86::CX: DestReg = X86::ECX; break;
8458 case X86::BX: DestReg = X86::EBX; break;
8459 case X86::SI: DestReg = X86::ESI; break;
8460 case X86::DI: DestReg = X86::EDI; break;
8461 case X86::BP: DestReg = X86::EBP; break;
8462 case X86::SP: DestReg = X86::ESP; break;
8463 }
8464 if (DestReg) {
8465 Res.first = DestReg;
8466 Res.second = Res.second = X86::GR32RegisterClass;
8467 }
8468 } else if (VT == MVT::i64) {
8469 unsigned DestReg = 0;
8470 switch (Res.first) {
8471 default: break;
8472 case X86::AX: DestReg = X86::RAX; break;
8473 case X86::DX: DestReg = X86::RDX; break;
8474 case X86::CX: DestReg = X86::RCX; break;
8475 case X86::BX: DestReg = X86::RBX; break;
8476 case X86::SI: DestReg = X86::RSI; break;
8477 case X86::DI: DestReg = X86::RDI; break;
8478 case X86::BP: DestReg = X86::RBP; break;
8479 case X86::SP: DestReg = X86::RSP; break;
8480 }
8481 if (DestReg) {
8482 Res.first = DestReg;
8483 Res.second = Res.second = X86::GR64RegisterClass;
8484 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008485 }
Chris Lattnere9d7f792008-08-26 06:19:02 +00008486 } else if (Res.second == X86::FR32RegisterClass ||
8487 Res.second == X86::FR64RegisterClass ||
8488 Res.second == X86::VR128RegisterClass) {
8489 // Handle references to XMM physical registers that got mapped into the
8490 // wrong class. This can happen with constraints like {xmm0} where the
8491 // target independent register mapper will just pick the first match it can
8492 // find, ignoring the required type.
8493 if (VT == MVT::f32)
8494 Res.second = X86::FR32RegisterClass;
8495 else if (VT == MVT::f64)
8496 Res.second = X86::FR64RegisterClass;
8497 else if (X86::VR128RegisterClass->hasType(VT))
8498 Res.second = X86::VR128RegisterClass;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008499 }
8500
8501 return Res;
8502}
Mon P Wang1448aad2008-10-30 08:01:45 +00008503
8504//===----------------------------------------------------------------------===//
8505// X86 Widen vector type
8506//===----------------------------------------------------------------------===//
8507
8508/// getWidenVectorType: given a vector type, returns the type to widen
8509/// to (e.g., v7i8 to v8i8). If the vector type is legal, it returns itself.
8510/// If there is no vector type that we want to widen to, returns MVT::Other
Mon P Wanga5a239f2008-11-06 05:31:54 +00008511/// When and where to widen is target dependent based on the cost of
Mon P Wang1448aad2008-10-30 08:01:45 +00008512/// scalarizing vs using the wider vector type.
8513
Dan Gohman0fe66c92009-01-15 17:34:08 +00008514MVT X86TargetLowering::getWidenVectorType(MVT VT) const {
Mon P Wang1448aad2008-10-30 08:01:45 +00008515 assert(VT.isVector());
8516 if (isTypeLegal(VT))
8517 return VT;
Scott Michel91099d62009-02-17 22:15:04 +00008518
Mon P Wang1448aad2008-10-30 08:01:45 +00008519 // TODO: In computeRegisterProperty, we can compute the list of legal vector
8520 // type based on element type. This would speed up our search (though
8521 // it may not be worth it since the size of the list is relatively
8522 // small).
8523 MVT EltVT = VT.getVectorElementType();
8524 unsigned NElts = VT.getVectorNumElements();
Scott Michel91099d62009-02-17 22:15:04 +00008525
Mon P Wang1448aad2008-10-30 08:01:45 +00008526 // On X86, it make sense to widen any vector wider than 1
8527 if (NElts <= 1)
8528 return MVT::Other;
Scott Michel91099d62009-02-17 22:15:04 +00008529
8530 for (unsigned nVT = MVT::FIRST_VECTOR_VALUETYPE;
Mon P Wang1448aad2008-10-30 08:01:45 +00008531 nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
8532 MVT SVT = (MVT::SimpleValueType)nVT;
Scott Michel91099d62009-02-17 22:15:04 +00008533
8534 if (isTypeLegal(SVT) &&
8535 SVT.getVectorElementType() == EltVT &&
Mon P Wang1448aad2008-10-30 08:01:45 +00008536 SVT.getVectorNumElements() > NElts)
8537 return SVT;
8538 }
8539 return MVT::Other;
8540}