blob: dfa2a090985c2cc3d2d3006a15d1c8e5633cb537 [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.
Bill Wendling042eda32009-03-11 22:30:01 +0000496 if (!UseSoftFloat && !NoImplicitFloat) {
Evan Cheng0b84fe12009-02-13 22:36:38 +0000497 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.
Bill Wendling042eda32009-03-11 22:30:01 +0000585 if (!UseSoftFloat && !NoImplicitFloat && !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
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000592 setOperationAction(ISD::ADD, MVT::v8i8, Legal);
593 setOperationAction(ISD::ADD, MVT::v4i16, Legal);
594 setOperationAction(ISD::ADD, MVT::v2i32, Legal);
595 setOperationAction(ISD::ADD, MVT::v1i64, Legal);
596
597 setOperationAction(ISD::SUB, MVT::v8i8, Legal);
598 setOperationAction(ISD::SUB, MVT::v4i16, Legal);
599 setOperationAction(ISD::SUB, MVT::v2i32, Legal);
Dale Johannesen6b65c332007-10-30 01:18:38 +0000600 setOperationAction(ISD::SUB, MVT::v1i64, Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000601
602 setOperationAction(ISD::MULHS, MVT::v4i16, Legal);
603 setOperationAction(ISD::MUL, MVT::v4i16, Legal);
604
605 setOperationAction(ISD::AND, MVT::v8i8, Promote);
606 AddPromotedToType (ISD::AND, MVT::v8i8, MVT::v1i64);
607 setOperationAction(ISD::AND, MVT::v4i16, Promote);
608 AddPromotedToType (ISD::AND, MVT::v4i16, MVT::v1i64);
609 setOperationAction(ISD::AND, MVT::v2i32, Promote);
610 AddPromotedToType (ISD::AND, MVT::v2i32, MVT::v1i64);
611 setOperationAction(ISD::AND, MVT::v1i64, Legal);
612
613 setOperationAction(ISD::OR, MVT::v8i8, Promote);
614 AddPromotedToType (ISD::OR, MVT::v8i8, MVT::v1i64);
615 setOperationAction(ISD::OR, MVT::v4i16, Promote);
616 AddPromotedToType (ISD::OR, MVT::v4i16, MVT::v1i64);
617 setOperationAction(ISD::OR, MVT::v2i32, Promote);
618 AddPromotedToType (ISD::OR, MVT::v2i32, MVT::v1i64);
619 setOperationAction(ISD::OR, MVT::v1i64, Legal);
620
621 setOperationAction(ISD::XOR, MVT::v8i8, Promote);
622 AddPromotedToType (ISD::XOR, MVT::v8i8, MVT::v1i64);
623 setOperationAction(ISD::XOR, MVT::v4i16, Promote);
624 AddPromotedToType (ISD::XOR, MVT::v4i16, MVT::v1i64);
625 setOperationAction(ISD::XOR, MVT::v2i32, Promote);
626 AddPromotedToType (ISD::XOR, MVT::v2i32, MVT::v1i64);
627 setOperationAction(ISD::XOR, MVT::v1i64, Legal);
628
629 setOperationAction(ISD::LOAD, MVT::v8i8, Promote);
630 AddPromotedToType (ISD::LOAD, MVT::v8i8, MVT::v1i64);
631 setOperationAction(ISD::LOAD, MVT::v4i16, Promote);
632 AddPromotedToType (ISD::LOAD, MVT::v4i16, MVT::v1i64);
633 setOperationAction(ISD::LOAD, MVT::v2i32, Promote);
634 AddPromotedToType (ISD::LOAD, MVT::v2i32, MVT::v1i64);
Dale Johannesena585daf2008-06-24 22:01:44 +0000635 setOperationAction(ISD::LOAD, MVT::v2f32, Promote);
636 AddPromotedToType (ISD::LOAD, MVT::v2f32, MVT::v1i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000637 setOperationAction(ISD::LOAD, MVT::v1i64, Legal);
638
639 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i8, Custom);
640 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i16, Custom);
641 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i32, Custom);
Dale Johannesena585daf2008-06-24 22:01:44 +0000642 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000643 setOperationAction(ISD::BUILD_VECTOR, MVT::v1i64, Custom);
644
645 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
646 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
647 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i32, Custom);
648 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v1i64, Custom);
649
Evan Cheng759fe022008-07-22 18:39:19 +0000650 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000651 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Custom);
652 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000653 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Custom);
Bill Wendlingb9e5f802008-07-20 02:32:23 +0000654
655 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i16, Custom);
Mon P Wang83edba52008-12-12 01:25:51 +0000656
Bill Wendling042eda32009-03-11 22:30:01 +0000657 setTruncStoreAction(MVT::v8i16, MVT::v8i8, Expand);
Mon P Wang83edba52008-12-12 01:25:51 +0000658 setOperationAction(ISD::TRUNCATE, MVT::v8i8, Expand);
659 setOperationAction(ISD::SELECT, MVT::v8i8, Promote);
660 setOperationAction(ISD::SELECT, MVT::v4i16, Promote);
661 setOperationAction(ISD::SELECT, MVT::v2i32, Promote);
662 setOperationAction(ISD::SELECT, MVT::v1i64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000663 }
664
Bill Wendling042eda32009-03-11 22:30:01 +0000665 if (!UseSoftFloat && !NoImplicitFloat && Subtarget->hasSSE1()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000666 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
667
668 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
669 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
670 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
671 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
672 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
673 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000674 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
675 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
676 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
677 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
678 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Nate Begeman03605a02008-07-17 16:51:19 +0000679 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000680 }
681
Bill Wendling042eda32009-03-11 22:30:01 +0000682 if (!UseSoftFloat && !NoImplicitFloat && Subtarget->hasSSE2()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Cheng0b84fe12009-02-13 22:36:38 +0000684
Bill Wendling042eda32009-03-11 22:30:01 +0000685 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
686 // registers cannot be used even for integer operations.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000687 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
688 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
689 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
690 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
691
692 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
693 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
694 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
695 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Mon P Wang14edb092008-12-18 21:42:19 +0000696 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000697 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
698 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
699 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
700 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
701 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
702 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
703 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
704 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
705 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
706 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
707 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708
Nate Begeman03605a02008-07-17 16:51:19 +0000709 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
710 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
711 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
712 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begeman061db5f2008-05-12 20:34:32 +0000713
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
715 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
716 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
717 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000718 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
719
720 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Duncan Sands92c43912008-06-06 12:08:01 +0000721 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
722 MVT VT = (MVT::SimpleValueType)i;
Nate Begemanc16406d2007-12-11 01:41:33 +0000723 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands92c43912008-06-06 12:08:01 +0000724 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begemanc16406d2007-12-11 01:41:33 +0000725 continue;
Duncan Sands92c43912008-06-06 12:08:01 +0000726 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
727 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
728 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000729 }
Bill Wendling042eda32009-03-11 22:30:01 +0000730
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000731 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
732 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
733 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
734 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000735 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000736 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendling042eda32009-03-11 22:30:01 +0000737
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.
Bill Wendling042eda32009-03-11 22:30:01 +0000893 if (!NoImplicitFloat && Subtarget->getStackAlignment() >= 16) {
Chris Lattnerf0bf1062008-10-28 05:49:35 +0000894 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
Evan Cheng6fb06762007-11-09 01:32:10 +0000904/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
905/// jumptable.
Dan Gohman8181bd12008-07-27 21:46:04 +0000906SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Evan Cheng6fb06762007-11-09 01:32:10 +0000907 SelectionDAG &DAG) const {
908 if (usesGlobalOffsetTable())
Dale Johannesen24dd9a52009-02-07 00:55:49 +0000909 return DAG.getGLOBAL_OFFSET_TABLE(getPointerTy());
Evan Cheng6fb06762007-11-09 01:32:10 +0000910 if (!Subtarget->isPICStyleRIPRel())
Dale Johannesen24dd9a52009-02-07 00:55:49 +0000911 // This doesn't have DebugLoc associated with it, but is not really the
912 // same as a Register.
913 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc::getUnknownLoc(),
914 getPointerTy());
Evan Cheng6fb06762007-11-09 01:32:10 +0000915 return Table;
916}
917
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000918//===----------------------------------------------------------------------===//
919// Return Value Calling Convention Implementation
920//===----------------------------------------------------------------------===//
921
922#include "X86GenCallingConv.inc"
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000923
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000924/// LowerRET - Lower an ISD::RET node.
Dan Gohman8181bd12008-07-27 21:46:04 +0000925SDValue X86TargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +0000926 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000927 assert((Op.getNumOperands() & 1) == 1 && "ISD::RET should have odd # args");
Scott Michel91099d62009-02-17 22:15:04 +0000928
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000929 SmallVector<CCValAssign, 16> RVLocs;
930 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
931 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
932 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Gabor Greif1c80d112008-08-28 21:40:38 +0000933 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_X86);
Scott Michel91099d62009-02-17 22:15:04 +0000934
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000935 // If this is the first return lowered for this function, add the regs to the
936 // liveout set for the function.
Chris Lattner1b989192007-12-31 04:13:23 +0000937 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000938 for (unsigned i = 0; i != RVLocs.size(); ++i)
939 if (RVLocs[i].isRegLoc())
Chris Lattner1b989192007-12-31 04:13:23 +0000940 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000941 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000942 SDValue Chain = Op.getOperand(0);
Scott Michel91099d62009-02-17 22:15:04 +0000943
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000944 // Handle tail call return.
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000945 Chain = GetPossiblePreceedingTailCall(Chain, X86ISD::TAILCALL);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000946 if (Chain.getOpcode() == X86ISD::TAILCALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000947 SDValue TailCall = Chain;
948 SDValue TargetAddress = TailCall.getOperand(1);
949 SDValue StackAdjustment = TailCall.getOperand(2);
Chris Lattnerf8decf52008-01-16 05:52:18 +0000950 assert(((TargetAddress.getOpcode() == ISD::Register &&
Arnold Schwaighofer4da27f62008-09-22 14:50:07 +0000951 (cast<RegisterSDNode>(TargetAddress)->getReg() == X86::EAX ||
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000952 cast<RegisterSDNode>(TargetAddress)->getReg() == X86::R9)) ||
Bill Wendlingfef06052008-09-16 21:48:12 +0000953 TargetAddress.getOpcode() == ISD::TargetExternalSymbol ||
Scott Michel91099d62009-02-17 22:15:04 +0000954 TargetAddress.getOpcode() == ISD::TargetGlobalAddress) &&
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000955 "Expecting an global address, external symbol, or register");
Chris Lattnerf8decf52008-01-16 05:52:18 +0000956 assert(StackAdjustment.getOpcode() == ISD::Constant &&
957 "Expecting a const value");
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000958
Dan Gohman8181bd12008-07-27 21:46:04 +0000959 SmallVector<SDValue,8> Operands;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000960 Operands.push_back(Chain.getOperand(0));
961 Operands.push_back(TargetAddress);
962 Operands.push_back(StackAdjustment);
963 // Copy registers used by the call. Last operand is a flag so it is not
964 // copied.
Arnold Schwaighofer10202b32007-10-16 09:05:00 +0000965 for (unsigned i=3; i < TailCall.getNumOperands()-1; i++) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000966 Operands.push_back(Chain.getOperand(i));
967 }
Scott Michel91099d62009-02-17 22:15:04 +0000968 return DAG.getNode(X86ISD::TC_RETURN, dl, MVT::Other, &Operands[0],
Arnold Schwaighofer10202b32007-10-16 09:05:00 +0000969 Operands.size());
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000970 }
Scott Michel91099d62009-02-17 22:15:04 +0000971
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000972 // Regular return.
Dan Gohman8181bd12008-07-27 21:46:04 +0000973 SDValue Flag;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000974
Dan Gohman8181bd12008-07-27 21:46:04 +0000975 SmallVector<SDValue, 6> RetOps;
Chris Lattnerb56cc342008-03-11 03:23:40 +0000976 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
977 // Operand #1 = Bytes To Pop
978 RetOps.push_back(DAG.getConstant(getBytesToPopOnReturn(), MVT::i16));
Scott Michel91099d62009-02-17 22:15:04 +0000979
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000980 // Copy the result values into the output registers.
Chris Lattnere22e1fb2008-03-10 21:08:41 +0000981 for (unsigned i = 0; i != RVLocs.size(); ++i) {
982 CCValAssign &VA = RVLocs[i];
983 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohman8181bd12008-07-27 21:46:04 +0000984 SDValue ValToCopy = Op.getOperand(i*2+1);
Scott Michel91099d62009-02-17 22:15:04 +0000985
Chris Lattnerb56cc342008-03-11 03:23:40 +0000986 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
987 // the RET instruction and handled by the FP Stackifier.
Dan Gohman6c4be722009-02-04 17:28:58 +0000988 if (VA.getLocReg() == X86::ST0 ||
989 VA.getLocReg() == X86::ST1) {
Chris Lattnerb56cc342008-03-11 03:23:40 +0000990 // If this is a copy from an xmm register to ST(0), use an FPExtend to
991 // change the value to the FP stack register class.
Dan Gohman6c4be722009-02-04 17:28:58 +0000992 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Dale Johannesence0805b2009-02-03 19:33:06 +0000993 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattnerb56cc342008-03-11 03:23:40 +0000994 RetOps.push_back(ValToCopy);
995 // Don't emit a copytoreg.
996 continue;
997 }
Dale Johannesena585daf2008-06-24 22:01:44 +0000998
Evan Chengef356282009-02-23 09:03:22 +0000999 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1000 // which is returned in RAX / RDX.
Evan Chenge8db6e02009-02-22 08:05:12 +00001001 if (Subtarget->is64Bit()) {
1002 MVT ValVT = ValToCopy.getValueType();
Evan Chengef356282009-02-23 09:03:22 +00001003 if (ValVT.isVector() && ValVT.getSizeInBits() == 64) {
Evan Chenge8db6e02009-02-22 08:05:12 +00001004 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy);
Evan Chengef356282009-02-23 09:03:22 +00001005 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1)
1006 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, ValToCopy);
1007 }
Evan Chenge8db6e02009-02-22 08:05:12 +00001008 }
1009
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001010 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001011 Flag = Chain.getValue(1);
1012 }
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001013
1014 // The x86-64 ABI for returning structs by value requires that we copy
1015 // the sret argument into %rax for the return. We saved the argument into
1016 // a virtual register in the entry block, so now we copy the value out
1017 // and into %rax.
1018 if (Subtarget->is64Bit() &&
1019 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1020 MachineFunction &MF = DAG.getMachineFunction();
1021 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1022 unsigned Reg = FuncInfo->getSRetReturnReg();
1023 if (!Reg) {
1024 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1025 FuncInfo->setSRetReturnReg(Reg);
1026 }
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001027 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001028
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001029 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001030 Flag = Chain.getValue(1);
1031 }
Scott Michel91099d62009-02-17 22:15:04 +00001032
Chris Lattnerb56cc342008-03-11 03:23:40 +00001033 RetOps[0] = Chain; // Update chain.
1034
1035 // Add the flag if we have it.
Gabor Greif1c80d112008-08-28 21:40:38 +00001036 if (Flag.getNode())
Chris Lattnerb56cc342008-03-11 03:23:40 +00001037 RetOps.push_back(Flag);
Scott Michel91099d62009-02-17 22:15:04 +00001038
1039 return DAG.getNode(X86ISD::RET_FLAG, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00001040 MVT::Other, &RetOps[0], RetOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001041}
1042
1043
1044/// LowerCallResult - Lower the result values of an ISD::CALL into the
1045/// appropriate copies out of appropriate physical registers. This assumes that
1046/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
1047/// being lowered. The returns a SDNode with the same number of values as the
1048/// ISD::CALL.
1049SDNode *X86TargetLowering::
Scott Michel91099d62009-02-17 22:15:04 +00001050LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001051 unsigned CallingConv, SelectionDAG &DAG) {
Dale Johannesence0805b2009-02-03 19:33:06 +00001052
Scott Michel91099d62009-02-17 22:15:04 +00001053 DebugLoc dl = TheCall->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001054 // Assign locations to each value returned by this call.
1055 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman705e3f72008-09-13 01:54:27 +00001056 bool isVarArg = TheCall->isVarArg();
Edwin Törökaf8e1332009-02-01 18:15:56 +00001057 bool Is64Bit = Subtarget->is64Bit();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001058 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
1059 CCInfo.AnalyzeCallResult(TheCall, RetCC_X86);
1060
Dan Gohman8181bd12008-07-27 21:46:04 +00001061 SmallVector<SDValue, 8> ResultVals;
Scott Michel91099d62009-02-17 22:15:04 +00001062
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001063 // Copy all of the result registers out of their specified physreg.
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001064 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman6c4be722009-02-04 17:28:58 +00001065 CCValAssign &VA = RVLocs[i];
1066 MVT CopyVT = VA.getValVT();
Scott Michel91099d62009-02-17 22:15:04 +00001067
Edwin Törökaf8e1332009-02-01 18:15:56 +00001068 // If this is x86-64, and we disabled SSE, we can't return FP values
Scott Michel91099d62009-02-17 22:15:04 +00001069 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Edwin Törökaf8e1332009-02-01 18:15:56 +00001070 ((Is64Bit || TheCall->isInreg()) && !Subtarget->hasSSE1())) {
1071 cerr << "SSE register return with SSE disabled\n";
1072 exit(1);
1073 }
1074
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001075 // If this is a call to a function that returns an fp value on the floating
1076 // point stack, but where we prefer to use the value in xmm registers, copy
1077 // 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 +00001078 if ((VA.getLocReg() == X86::ST0 ||
1079 VA.getLocReg() == X86::ST1) &&
1080 isScalarFPTypeInSSEReg(VA.getValVT())) {
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001081 CopyVT = MVT::f80;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001082 }
Scott Michel91099d62009-02-17 22:15:04 +00001083
Evan Cheng9cc600e2009-02-20 20:43:02 +00001084 SDValue Val;
1085 if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Chengef356282009-02-23 09:03:22 +00001086 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1087 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1088 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1089 MVT::v2i64, InFlag).getValue(1);
1090 Val = Chain.getValue(0);
1091 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1092 Val, DAG.getConstant(0, MVT::i64));
1093 } else {
1094 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1095 MVT::i64, InFlag).getValue(1);
1096 Val = Chain.getValue(0);
1097 }
Evan Cheng9cc600e2009-02-20 20:43:02 +00001098 Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val);
1099 } else {
1100 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1101 CopyVT, InFlag).getValue(1);
1102 Val = Chain.getValue(0);
1103 }
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001104 InFlag = Chain.getValue(2);
Chris Lattner40758732007-12-29 06:41:28 +00001105
Dan Gohman6c4be722009-02-04 17:28:58 +00001106 if (CopyVT != VA.getValVT()) {
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001107 // Round the F80 the right size, which also moves to the appropriate xmm
1108 // register.
Dan Gohman6c4be722009-02-04 17:28:58 +00001109 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001110 // This truncation won't change the value.
1111 DAG.getIntPtrConstant(1));
1112 }
Scott Michel91099d62009-02-17 22:15:04 +00001113
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001114 ResultVals.push_back(Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001115 }
Duncan Sands698842f2008-07-02 17:40:58 +00001116
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001117 // Merge everything together with a MERGE_VALUES node.
1118 ResultVals.push_back(Chain);
Dale Johannesence0805b2009-02-03 19:33:06 +00001119 return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(),
1120 &ResultVals[0], ResultVals.size()).getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001121}
1122
1123
1124//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001125// C & StdCall & Fast Calling Convention implementation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001126//===----------------------------------------------------------------------===//
1127// StdCall calling convention seems to be standard for many Windows' API
1128// routines and around. It differs from C calling convention just a little:
1129// callee should clean up the stack, not caller. Symbols should be also
1130// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001131// For info on fast calling convention see Fast Calling Convention (tail call)
1132// implementation LowerX86_32FastCCCallTo.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001133
1134/// AddLiveIn - This helper function adds the specified physical register to the
1135/// MachineFunction as a live in value. It also creates a corresponding virtual
1136/// register for it.
1137static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
1138 const TargetRegisterClass *RC) {
1139 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner1b989192007-12-31 04:13:23 +00001140 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
1141 MF.getRegInfo().addLiveIn(PReg, VReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001142 return VReg;
1143}
1144
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001145/// CallIsStructReturn - Determines whether a CALL node uses struct return
1146/// semantics.
Dan Gohman705e3f72008-09-13 01:54:27 +00001147static bool CallIsStructReturn(CallSDNode *TheCall) {
1148 unsigned NumOps = TheCall->getNumArgs();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001149 if (!NumOps)
1150 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001151
Dan Gohman705e3f72008-09-13 01:54:27 +00001152 return TheCall->getArgFlags(0).isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001153}
1154
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001155/// ArgsAreStructReturn - Determines whether a FORMAL_ARGUMENTS node uses struct
1156/// return semantics.
Dan Gohman8181bd12008-07-27 21:46:04 +00001157static bool ArgsAreStructReturn(SDValue Op) {
Gabor Greif1c80d112008-08-28 21:40:38 +00001158 unsigned NumArgs = Op.getNode()->getNumValues() - 1;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001159 if (!NumArgs)
1160 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001161
1162 return cast<ARG_FLAGSSDNode>(Op.getOperand(3))->getArgFlags().isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001163}
1164
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001165/// IsCalleePop - Determines whether a CALL or FORMAL_ARGUMENTS node requires
1166/// the callee to pop its own arguments. Callee pop is necessary to support tail
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001167/// calls.
Dan Gohman705e3f72008-09-13 01:54:27 +00001168bool X86TargetLowering::IsCalleePop(bool IsVarArg, unsigned CallingConv) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001169 if (IsVarArg)
1170 return false;
1171
Dan Gohman705e3f72008-09-13 01:54:27 +00001172 switch (CallingConv) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001173 default:
1174 return false;
1175 case CallingConv::X86_StdCall:
1176 return !Subtarget->is64Bit();
1177 case CallingConv::X86_FastCall:
1178 return !Subtarget->is64Bit();
1179 case CallingConv::Fast:
1180 return PerformTailCallOpt;
1181 }
1182}
1183
Dan Gohman705e3f72008-09-13 01:54:27 +00001184/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1185/// given CallingConvention value.
1186CCAssignFn *X86TargetLowering::CCAssignFnForNode(unsigned CC) const {
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001187 if (Subtarget->is64Bit()) {
Anton Korobeynikov06d49b02008-03-22 20:57:27 +00001188 if (Subtarget->isTargetWin64())
Anton Korobeynikov99bd1882008-03-22 20:37:30 +00001189 return CC_X86_Win64_C;
Evan Chengded8f902008-09-07 09:07:23 +00001190 else if (CC == CallingConv::Fast && PerformTailCallOpt)
1191 return CC_X86_64_TailCall;
1192 else
1193 return CC_X86_64_C;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001194 }
1195
Gordon Henriksen18ace102008-01-05 16:56:59 +00001196 if (CC == CallingConv::X86_FastCall)
1197 return CC_X86_32_FastCall;
Evan Chenga9d15b92008-09-10 18:25:29 +00001198 else if (CC == CallingConv::Fast)
1199 return CC_X86_32_FastCC;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001200 else
1201 return CC_X86_32_C;
1202}
1203
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001204/// NameDecorationForFORMAL_ARGUMENTS - Selects the appropriate decoration to
1205/// apply to a MachineFunction containing a given FORMAL_ARGUMENTS node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001206NameDecorationStyle
Dan Gohman8181bd12008-07-27 21:46:04 +00001207X86TargetLowering::NameDecorationForFORMAL_ARGUMENTS(SDValue Op) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001208 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001209 if (CC == CallingConv::X86_FastCall)
1210 return FastCall;
1211 else if (CC == CallingConv::X86_StdCall)
1212 return StdCall;
1213 return None;
1214}
1215
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001216
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001217/// CallRequiresGOTInRegister - Check whether the call requires the GOT pointer
1218/// in a register before calling.
1219bool X86TargetLowering::CallRequiresGOTPtrInReg(bool Is64Bit, bool IsTailCall) {
1220 return !IsTailCall && !Is64Bit &&
1221 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1222 Subtarget->isPICStyleGOT();
1223}
1224
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001225/// CallRequiresFnAddressInReg - Check whether the call requires the function
1226/// address to be loaded in a register.
Scott Michel91099d62009-02-17 22:15:04 +00001227bool
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001228X86TargetLowering::CallRequiresFnAddressInReg(bool Is64Bit, bool IsTailCall) {
Scott Michel91099d62009-02-17 22:15:04 +00001229 return !Is64Bit && IsTailCall &&
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001230 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1231 Subtarget->isPICStyleGOT();
1232}
1233
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001234/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1235/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001236/// the specific parameter attribute. The copy will be passed as a byval
1237/// function parameter.
Scott Michel91099d62009-02-17 22:15:04 +00001238static SDValue
Dan Gohman8181bd12008-07-27 21:46:04 +00001239CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001240 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1241 DebugLoc dl) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001242 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001243 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001244 /*AlwaysInline=*/true, NULL, 0, NULL, 0);
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001245}
1246
Dan Gohman8181bd12008-07-27 21:46:04 +00001247SDValue X86TargetLowering::LowerMemArgument(SDValue Op, SelectionDAG &DAG,
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001248 const CCValAssign &VA,
1249 MachineFrameInfo *MFI,
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001250 unsigned CC,
Dan Gohman8181bd12008-07-27 21:46:04 +00001251 SDValue Root, unsigned i) {
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001252 // Create the nodes corresponding to a load from this parameter slot.
Duncan Sandsc93fae32008-03-21 09:14:45 +00001253 ISD::ArgFlagsTy Flags =
1254 cast<ARG_FLAGSSDNode>(Op.getOperand(3 + i))->getArgFlags();
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001255 bool AlwaysUseMutable = (CC==CallingConv::Fast) && PerformTailCallOpt;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001256 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Evan Cheng3e42a522008-01-10 02:24:25 +00001257
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001258 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michel91099d62009-02-17 22:15:04 +00001259 // changed with more analysis.
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001260 // In case of tail call optimization mark all arguments mutable. Since they
1261 // could be overwritten by lowering of arguments in case of a tail call.
Duncan Sands92c43912008-06-06 12:08:01 +00001262 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001263 VA.getLocMemOffset(), isImmutable);
Dan Gohman8181bd12008-07-27 21:46:04 +00001264 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Duncan Sandsc93fae32008-03-21 09:14:45 +00001265 if (Flags.isByVal())
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001266 return FIN;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00001267 return DAG.getLoad(VA.getValVT(), Op.getDebugLoc(), Root, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001268 PseudoSourceValue::getFixedStack(FI), 0);
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001269}
1270
Dan Gohman8181bd12008-07-27 21:46:04 +00001271SDValue
1272X86TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001273 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001274 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00001275 DebugLoc dl = Op.getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00001276
Gordon Henriksen18ace102008-01-05 16:56:59 +00001277 const Function* Fn = MF.getFunction();
1278 if (Fn->hasExternalLinkage() &&
1279 Subtarget->isTargetCygMing() &&
1280 Fn->getName() == "main")
1281 FuncInfo->setForceFramePointer(true);
1282
1283 // Decorate the function name.
1284 FuncInfo->setDecorationStyle(NameDecorationForFORMAL_ARGUMENTS(Op));
Scott Michel91099d62009-02-17 22:15:04 +00001285
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001286 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman8181bd12008-07-27 21:46:04 +00001287 SDValue Root = Op.getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001288 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001289 unsigned CC = MF.getFunction()->getCallingConv();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001290 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001291 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001292
1293 assert(!(isVarArg && CC == CallingConv::Fast) &&
1294 "Var args not supported with calling convention fastcc");
1295
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001296 // Assign locations to all of the incoming arguments.
1297 SmallVector<CCValAssign, 16> ArgLocs;
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001298 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman705e3f72008-09-13 01:54:27 +00001299 CCInfo.AnalyzeFormalArguments(Op.getNode(), CCAssignFnForNode(CC));
Scott Michel91099d62009-02-17 22:15:04 +00001300
Dan Gohman8181bd12008-07-27 21:46:04 +00001301 SmallVector<SDValue, 8> ArgValues;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001302 unsigned LastVal = ~0U;
1303 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1304 CCValAssign &VA = ArgLocs[i];
1305 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1306 // places.
1307 assert(VA.getValNo() != LastVal &&
1308 "Don't support value assigned to multiple locs yet");
1309 LastVal = VA.getValNo();
Scott Michel91099d62009-02-17 22:15:04 +00001310
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001311 if (VA.isRegLoc()) {
Duncan Sands92c43912008-06-06 12:08:01 +00001312 MVT RegVT = VA.getLocVT();
Devang Patelf3707e82009-01-05 17:31:22 +00001313 TargetRegisterClass *RC = NULL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001314 if (RegVT == MVT::i32)
1315 RC = X86::GR32RegisterClass;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001316 else if (Is64Bit && RegVT == MVT::i64)
1317 RC = X86::GR64RegisterClass;
Dale Johannesen51552f62008-02-05 20:46:33 +00001318 else if (RegVT == MVT::f32)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001319 RC = X86::FR32RegisterClass;
Dale Johannesen51552f62008-02-05 20:46:33 +00001320 else if (RegVT == MVT::f64)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001321 RC = X86::FR64RegisterClass;
Duncan Sands92c43912008-06-06 12:08:01 +00001322 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengf5af6fe2008-04-25 07:56:45 +00001323 RC = X86::VR128RegisterClass;
Duncan Sands92c43912008-06-06 12:08:01 +00001324 else if (RegVT.isVector()) {
1325 assert(RegVT.getSizeInBits() == 64);
Evan Chengf5af6fe2008-04-25 07:56:45 +00001326 if (!Is64Bit)
1327 RC = X86::VR64RegisterClass; // MMX values are passed in MMXs.
1328 else {
1329 // Darwin calling convention passes MMX values in either GPRs or
1330 // XMMs in x86-64. Other targets pass them in memory.
1331 if (RegVT != MVT::v1i64 && Subtarget->hasSSE2()) {
1332 RC = X86::VR128RegisterClass; // MMX values are passed in XMMs.
1333 RegVT = MVT::v2i64;
1334 } else {
1335 RC = X86::GR64RegisterClass; // v1i64 values are passed in GPRs.
1336 RegVT = MVT::i64;
1337 }
1338 }
1339 } else {
1340 assert(0 && "Unknown argument type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001341 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001342
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001343 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001344 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, RegVT);
Scott Michel91099d62009-02-17 22:15:04 +00001345
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001346 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1347 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1348 // right size.
1349 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesence0805b2009-02-03 19:33:06 +00001350 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001351 DAG.getValueType(VA.getValVT()));
1352 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesence0805b2009-02-03 19:33:06 +00001353 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001354 DAG.getValueType(VA.getValVT()));
Scott Michel91099d62009-02-17 22:15:04 +00001355
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001356 if (VA.getLocInfo() != CCValAssign::Full)
Dale Johannesence0805b2009-02-03 19:33:06 +00001357 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Scott Michel91099d62009-02-17 22:15:04 +00001358
Gordon Henriksen18ace102008-01-05 16:56:59 +00001359 // Handle MMX values passed in GPRs.
Evan Chengad6980b2008-04-25 20:13:28 +00001360 if (Is64Bit && RegVT != VA.getLocVT()) {
Duncan Sands92c43912008-06-06 12:08:01 +00001361 if (RegVT.getSizeInBits() == 64 && RC == X86::GR64RegisterClass)
Dale Johannesence0805b2009-02-03 19:33:06 +00001362 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Chengad6980b2008-04-25 20:13:28 +00001363 else if (RC == X86::VR128RegisterClass) {
Dale Johannesence0805b2009-02-03 19:33:06 +00001364 ArgValue = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1365 ArgValue, DAG.getConstant(0, MVT::i64));
1366 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Chengad6980b2008-04-25 20:13:28 +00001367 }
1368 }
Scott Michel91099d62009-02-17 22:15:04 +00001369
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001370 ArgValues.push_back(ArgValue);
1371 } else {
1372 assert(VA.isMemLoc());
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001373 ArgValues.push_back(LowerMemArgument(Op, DAG, VA, MFI, CC, Root, i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001374 }
1375 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001376
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001377 // The x86-64 ABI for returning structs by value requires that we copy
1378 // the sret argument into %rax for the return. Save the argument into
1379 // a virtual register so that we can access it from the return points.
1380 if (Is64Bit && DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1381 MachineFunction &MF = DAG.getMachineFunction();
1382 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1383 unsigned Reg = FuncInfo->getSRetReturnReg();
1384 if (!Reg) {
1385 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1386 FuncInfo->setSRetReturnReg(Reg);
1387 }
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001388 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, ArgValues[0]);
Dale Johannesence0805b2009-02-03 19:33:06 +00001389 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Root);
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001390 }
1391
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001392 unsigned StackSize = CCInfo.getNextStackOffset();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001393 // align stack specially for tail calls
Evan Chengded8f902008-09-07 09:07:23 +00001394 if (PerformTailCallOpt && CC == CallingConv::Fast)
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001395 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001396
1397 // If the function takes variable number of arguments, make a frame index for
1398 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001399 if (isVarArg) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001400 if (Is64Bit || CC != CallingConv::X86_FastCall) {
1401 VarArgsFrameIndex = MFI->CreateFixedObject(1, StackSize);
1402 }
1403 if (Is64Bit) {
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001404 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1405
1406 // FIXME: We should really autogenerate these arrays
1407 static const unsigned GPR64ArgRegsWin64[] = {
1408 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen18ace102008-01-05 16:56:59 +00001409 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001410 static const unsigned XMMArgRegsWin64[] = {
1411 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3
1412 };
1413 static const unsigned GPR64ArgRegs64Bit[] = {
1414 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1415 };
1416 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001417 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1418 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1419 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001420 const unsigned *GPR64ArgRegs, *XMMArgRegs;
1421
1422 if (IsWin64) {
1423 TotalNumIntRegs = 4; TotalNumXMMRegs = 4;
1424 GPR64ArgRegs = GPR64ArgRegsWin64;
1425 XMMArgRegs = XMMArgRegsWin64;
1426 } else {
1427 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1428 GPR64ArgRegs = GPR64ArgRegs64Bit;
1429 XMMArgRegs = XMMArgRegs64Bit;
1430 }
1431 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1432 TotalNumIntRegs);
1433 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs,
1434 TotalNumXMMRegs);
1435
Evan Cheng0b84fe12009-02-13 22:36:38 +00001436 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Edwin Törökaf8e1332009-02-01 18:15:56 +00001437 "SSE register cannot be used when SSE is disabled!");
Bill Wendling042eda32009-03-11 22:30:01 +00001438 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloat) &&
Evan Cheng0b84fe12009-02-13 22:36:38 +00001439 "SSE register cannot be used when SSE is disabled!");
Bill Wendling042eda32009-03-11 22:30:01 +00001440 if (UseSoftFloat || NoImplicitFloat || !Subtarget->hasSSE1())
Edwin Törökaf8e1332009-02-01 18:15:56 +00001441 // Kernel mode asks for SSE to be disabled, so don't push them
1442 // on the stack.
1443 TotalNumXMMRegs = 0;
Bill Wendling042eda32009-03-11 22:30:01 +00001444
Gordon Henriksen18ace102008-01-05 16:56:59 +00001445 // For X86-64, if there are vararg parameters that are passed via
1446 // registers, then we must store them to their spots on the stack so they
1447 // may be loaded by deferencing the result of va_next.
1448 VarArgsGPOffset = NumIntRegs * 8;
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001449 VarArgsFPOffset = TotalNumIntRegs * 8 + NumXMMRegs * 16;
1450 RegSaveFrameIndex = MFI->CreateStackObject(TotalNumIntRegs * 8 +
1451 TotalNumXMMRegs * 16, 16);
1452
Gordon Henriksen18ace102008-01-05 16:56:59 +00001453 // Store the integer parameter registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00001454 SmallVector<SDValue, 8> MemOps;
1455 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00001456 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001457 DAG.getIntPtrConstant(VarArgsGPOffset));
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001458 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001459 unsigned VReg = AddLiveIn(MF, GPR64ArgRegs[NumIntRegs],
1460 X86::GR64RegisterClass);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001461 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::i64);
Dan Gohman8181bd12008-07-27 21:46:04 +00001462 SDValue Store =
Dale Johannesence0805b2009-02-03 19:33:06 +00001463 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001464 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001465 MemOps.push_back(Store);
Dale Johannesence0805b2009-02-03 19:33:06 +00001466 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001467 DAG.getIntPtrConstant(8));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001468 }
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001469
Gordon Henriksen18ace102008-01-05 16:56:59 +00001470 // Now store the XMM (fp + vector) parameter registers.
Dale Johannesence0805b2009-02-03 19:33:06 +00001471 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001472 DAG.getIntPtrConstant(VarArgsFPOffset));
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001473 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001474 unsigned VReg = AddLiveIn(MF, XMMArgRegs[NumXMMRegs],
1475 X86::VR128RegisterClass);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001476 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::v4f32);
Dan Gohman8181bd12008-07-27 21:46:04 +00001477 SDValue Store =
Dale Johannesence0805b2009-02-03 19:33:06 +00001478 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001479 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001480 MemOps.push_back(Store);
Dale Johannesence0805b2009-02-03 19:33:06 +00001481 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001482 DAG.getIntPtrConstant(16));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001483 }
1484 if (!MemOps.empty())
Dale Johannesence0805b2009-02-03 19:33:06 +00001485 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Gordon Henriksen18ace102008-01-05 16:56:59 +00001486 &MemOps[0], MemOps.size());
1487 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001488 }
Scott Michel91099d62009-02-17 22:15:04 +00001489
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001490 ArgValues.push_back(Root);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001491
Gordon Henriksen18ace102008-01-05 16:56:59 +00001492 // Some CCs need callee pop.
Dan Gohman705e3f72008-09-13 01:54:27 +00001493 if (IsCalleePop(isVarArg, CC)) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001494 BytesToPopOnReturn = StackSize; // Callee pops everything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001495 BytesCallerReserves = 0;
1496 } else {
1497 BytesToPopOnReturn = 0; // Callee pops nothing.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001498 // If this is an sret function, the return should pop the hidden pointer.
Evan Chenga9d15b92008-09-10 18:25:29 +00001499 if (!Is64Bit && CC != CallingConv::Fast && ArgsAreStructReturn(Op))
Scott Michel91099d62009-02-17 22:15:04 +00001500 BytesToPopOnReturn = 4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001501 BytesCallerReserves = StackSize;
1502 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001503
Gordon Henriksen18ace102008-01-05 16:56:59 +00001504 if (!Is64Bit) {
1505 RegSaveFrameIndex = 0xAAAAAAA; // RegSaveFrameIndex is X86-64 only.
1506 if (CC == CallingConv::X86_FastCall)
1507 VarArgsFrameIndex = 0xAAAAAAA; // fastcc functions can't have varargs.
1508 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001509
Anton Korobeynikove844e472007-08-15 17:12:32 +00001510 FuncInfo->setBytesToPopOnReturn(BytesToPopOnReturn);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001511
1512 // Return the new list of results.
Dale Johannesence0805b2009-02-03 19:33:06 +00001513 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
Duncan Sands42d7bb82008-12-01 11:41:29 +00001514 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001515}
1516
Dan Gohman8181bd12008-07-27 21:46:04 +00001517SDValue
Dan Gohman705e3f72008-09-13 01:54:27 +00001518X86TargetLowering::LowerMemOpCallTo(CallSDNode *TheCall, SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00001519 const SDValue &StackPtr,
Evan Chengbc077bf2008-01-10 00:09:10 +00001520 const CCValAssign &VA,
Dan Gohman8181bd12008-07-27 21:46:04 +00001521 SDValue Chain,
Dan Gohman705e3f72008-09-13 01:54:27 +00001522 SDValue Arg, ISD::ArgFlagsTy Flags) {
Dale Johannesence0805b2009-02-03 19:33:06 +00001523 DebugLoc dl = TheCall->getDebugLoc();
Dan Gohman1190f3a2008-02-07 16:28:05 +00001524 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman8181bd12008-07-27 21:46:04 +00001525 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesence0805b2009-02-03 19:33:06 +00001526 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Duncan Sandsc93fae32008-03-21 09:14:45 +00001527 if (Flags.isByVal()) {
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001528 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Evan Chengbc077bf2008-01-10 00:09:10 +00001529 }
Dale Johannesence0805b2009-02-03 19:33:06 +00001530 return DAG.getStore(Chain, dl, Arg, PtrOff,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001531 PseudoSourceValue::getStack(), LocMemOffset);
Evan Chengbc077bf2008-01-10 00:09:10 +00001532}
1533
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001534/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001535/// optimization is performed and it is required.
Scott Michel91099d62009-02-17 22:15:04 +00001536SDValue
1537X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00001538 SDValue &OutRetAddr,
Scott Michel91099d62009-02-17 22:15:04 +00001539 SDValue Chain,
1540 bool IsTailCall,
1541 bool Is64Bit,
Dale Johannesence0805b2009-02-03 19:33:06 +00001542 int FPDiff,
1543 DebugLoc dl) {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001544 if (!IsTailCall || FPDiff==0) return Chain;
1545
1546 // Adjust the Return address stack slot.
Duncan Sands92c43912008-06-06 12:08:01 +00001547 MVT VT = getPointerTy();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001548 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001549
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001550 // Load the "old" Return address.
Dale Johannesence0805b2009-02-03 19:33:06 +00001551 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, NULL, 0);
Gabor Greif1c80d112008-08-28 21:40:38 +00001552 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001553}
1554
1555/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1556/// optimization is performed and it is required (FPDiff!=0).
Scott Michel91099d62009-02-17 22:15:04 +00001557static SDValue
1558EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman8181bd12008-07-27 21:46:04 +00001559 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesence0805b2009-02-03 19:33:06 +00001560 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001561 // Store the return address to the appropriate stack slot.
1562 if (!FPDiff) return Chain;
1563 // Calculate the new stack slot for the return address.
1564 int SlotSize = Is64Bit ? 8 : 4;
Scott Michel91099d62009-02-17 22:15:04 +00001565 int NewReturnAddrFI =
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001566 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize);
Duncan Sands92c43912008-06-06 12:08:01 +00001567 MVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman8181bd12008-07-27 21:46:04 +00001568 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michel91099d62009-02-17 22:15:04 +00001569 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001570 PseudoSourceValue::getFixedStack(NewReturnAddrFI), 0);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001571 return Chain;
1572}
1573
Dan Gohman8181bd12008-07-27 21:46:04 +00001574SDValue X86TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001575 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman705e3f72008-09-13 01:54:27 +00001576 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
1577 SDValue Chain = TheCall->getChain();
1578 unsigned CC = TheCall->getCallingConv();
1579 bool isVarArg = TheCall->isVarArg();
1580 bool IsTailCall = TheCall->isTailCall() &&
1581 CC == CallingConv::Fast && PerformTailCallOpt;
1582 SDValue Callee = TheCall->getCallee();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001583 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman705e3f72008-09-13 01:54:27 +00001584 bool IsStructRet = CallIsStructReturn(TheCall);
Dale Johannesence0805b2009-02-03 19:33:06 +00001585 DebugLoc dl = TheCall->getDebugLoc();
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001586
1587 assert(!(isVarArg && CC == CallingConv::Fast) &&
1588 "Var args not supported with calling convention fastcc");
1589
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001590 // Analyze operands of the call, assigning locations to each operand.
1591 SmallVector<CCValAssign, 16> ArgLocs;
1592 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman705e3f72008-09-13 01:54:27 +00001593 CCInfo.AnalyzeCallOperands(TheCall, CCAssignFnForNode(CC));
Scott Michel91099d62009-02-17 22:15:04 +00001594
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001595 // Get a count of how many bytes are to be pushed on the stack.
1596 unsigned NumBytes = CCInfo.getNextStackOffset();
Arnold Schwaighofere91fdbf2008-09-11 20:28:43 +00001597 if (PerformTailCallOpt && CC == CallingConv::Fast)
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001598 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001599
Gordon Henriksen18ace102008-01-05 16:56:59 +00001600 int FPDiff = 0;
1601 if (IsTailCall) {
1602 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michel91099d62009-02-17 22:15:04 +00001603 unsigned NumBytesCallerPushed =
Gordon Henriksen18ace102008-01-05 16:56:59 +00001604 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1605 FPDiff = NumBytesCallerPushed - NumBytes;
1606
1607 // Set the delta of movement of the returnaddr stackslot.
1608 // But only set if delta is greater than previous delta.
1609 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1610 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1611 }
1612
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001613 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001614
Dan Gohman8181bd12008-07-27 21:46:04 +00001615 SDValue RetAddrFrIdx;
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001616 // Load return adress for tail calls.
1617 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, IsTailCall, Is64Bit,
Dale Johannesence0805b2009-02-03 19:33:06 +00001618 FPDiff, dl);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001619
Dan Gohman8181bd12008-07-27 21:46:04 +00001620 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1621 SmallVector<SDValue, 8> MemOpChains;
1622 SDValue StackPtr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001623
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001624 // Walk the register/memloc assignments, inserting copies/loads. In the case
1625 // of tail call optimization arguments are handle later.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001626 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1627 CCValAssign &VA = ArgLocs[i];
Dan Gohman705e3f72008-09-13 01:54:27 +00001628 SDValue Arg = TheCall->getArg(i);
1629 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
1630 bool isByVal = Flags.isByVal();
Scott Michel91099d62009-02-17 22:15:04 +00001631
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001632 // Promote the value if needed.
1633 switch (VA.getLocInfo()) {
1634 default: assert(0 && "Unknown loc info!");
1635 case CCValAssign::Full: break;
1636 case CCValAssign::SExt:
Dale Johannesence0805b2009-02-03 19:33:06 +00001637 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001638 break;
1639 case CCValAssign::ZExt:
Dale Johannesence0805b2009-02-03 19:33:06 +00001640 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001641 break;
1642 case CCValAssign::AExt:
Dale Johannesence0805b2009-02-03 19:33:06 +00001643 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001644 break;
1645 }
Scott Michel91099d62009-02-17 22:15:04 +00001646
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001647 if (VA.isRegLoc()) {
Evan Cheng2aea0b42008-04-25 19:11:04 +00001648 if (Is64Bit) {
Duncan Sands92c43912008-06-06 12:08:01 +00001649 MVT RegVT = VA.getLocVT();
1650 if (RegVT.isVector() && RegVT.getSizeInBits() == 64)
Evan Cheng2aea0b42008-04-25 19:11:04 +00001651 switch (VA.getLocReg()) {
1652 default:
1653 break;
1654 case X86::RDI: case X86::RSI: case X86::RDX: case X86::RCX:
1655 case X86::R8: {
1656 // Special case: passing MMX values in GPR registers.
Dale Johannesence0805b2009-02-03 19:33:06 +00001657 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
Evan Cheng2aea0b42008-04-25 19:11:04 +00001658 break;
1659 }
1660 case X86::XMM0: case X86::XMM1: case X86::XMM2: case X86::XMM3:
1661 case X86::XMM4: case X86::XMM5: case X86::XMM6: case X86::XMM7: {
1662 // Special case: passing MMX values in XMM registers.
Dale Johannesence0805b2009-02-03 19:33:06 +00001663 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1664 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1665 Arg = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2i64,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00001666 DAG.getUNDEF(MVT::v2i64), Arg,
Dale Johannesence0805b2009-02-03 19:33:06 +00001667 getMOVLMask(2, DAG, dl));
Evan Cheng2aea0b42008-04-25 19:11:04 +00001668 break;
1669 }
1670 }
1671 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001672 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1673 } else {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001674 if (!IsTailCall || (IsTailCall && isByVal)) {
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001675 assert(VA.isMemLoc());
Gabor Greif1c80d112008-08-28 21:40:38 +00001676 if (StackPtr.getNode() == 0)
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001677 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
Scott Michel91099d62009-02-17 22:15:04 +00001678
Dan Gohman705e3f72008-09-13 01:54:27 +00001679 MemOpChains.push_back(LowerMemOpCallTo(TheCall, DAG, StackPtr, VA,
1680 Chain, Arg, Flags));
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001681 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001682 }
1683 }
Scott Michel91099d62009-02-17 22:15:04 +00001684
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001685 if (!MemOpChains.empty())
Dale Johannesence0805b2009-02-03 19:33:06 +00001686 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001687 &MemOpChains[0], MemOpChains.size());
1688
1689 // Build a sequence of copy-to-reg nodes chained together with token chain
1690 // and flag operands which copy the outgoing args into registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00001691 SDValue InFlag;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001692 // Tail call byval lowering might overwrite argument registers so in case of
1693 // tail call optimization the copies to registers are lowered later.
1694 if (!IsTailCall)
1695 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00001696 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001697 RegsToPass[i].second, InFlag);
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001698 InFlag = Chain.getValue(1);
1699 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001700
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001701 // ELF / PIC requires GOT in the EBX register before function calls via PLT
Scott Michel91099d62009-02-17 22:15:04 +00001702 // GOT pointer.
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001703 if (CallRequiresGOTPtrInReg(Is64Bit, IsTailCall)) {
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001704 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
Scott Michel91099d62009-02-17 22:15:04 +00001705 DAG.getNode(X86ISD::GlobalBaseReg,
1706 DebugLoc::getUnknownLoc(),
Dale Johannesen24dd9a52009-02-07 00:55:49 +00001707 getPointerTy()),
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001708 InFlag);
1709 InFlag = Chain.getValue(1);
1710 }
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001711 // If we are tail calling and generating PIC/GOT style code load the address
1712 // of the callee into ecx. The value in ecx is used as target of the tail
1713 // jump. This is done to circumvent the ebx/callee-saved problem for tail
1714 // calls on PIC/GOT architectures. Normally we would just put the address of
1715 // GOT into ebx and then call target@PLT. But for tail callss ebx would be
1716 // restored (since ebx is callee saved) before jumping to the target@PLT.
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001717 if (CallRequiresFnAddressInReg(Is64Bit, IsTailCall)) {
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001718 // Note: The actual moving to ecx is done further down.
1719 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
Evan Cheng7f250d62008-09-24 00:05:32 +00001720 if (G && !G->getGlobal()->hasHiddenVisibility() &&
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001721 !G->getGlobal()->hasProtectedVisibility())
1722 Callee = LowerGlobalAddress(Callee, DAG);
Bill Wendlingfef06052008-09-16 21:48:12 +00001723 else if (isa<ExternalSymbolSDNode>(Callee))
1724 Callee = LowerExternalSymbol(Callee,DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001725 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001726
Gordon Henriksen18ace102008-01-05 16:56:59 +00001727 if (Is64Bit && isVarArg) {
1728 // From AMD64 ABI document:
1729 // For calls that may call functions that use varargs or stdargs
1730 // (prototype-less calls or calls to functions containing ellipsis (...) in
1731 // the declaration) %al is used as hidden argument to specify the number
1732 // of SSE registers used. The contents of %al do not need to match exactly
1733 // the number of registers, but must be an ubound on the number of SSE
1734 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001735
1736 // FIXME: Verify this on Win64
Gordon Henriksen18ace102008-01-05 16:56:59 +00001737 // Count the number of XMM registers allocated.
1738 static const unsigned XMMArgRegs[] = {
1739 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1740 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1741 };
1742 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michel91099d62009-02-17 22:15:04 +00001743 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Edwin Törökaf8e1332009-02-01 18:15:56 +00001744 && "SSE registers cannot be used when SSE is disabled");
Scott Michel91099d62009-02-17 22:15:04 +00001745
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001746 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Gordon Henriksen18ace102008-01-05 16:56:59 +00001747 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
1748 InFlag = Chain.getValue(1);
1749 }
1750
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001751
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001752 // For tail calls lower the arguments to the 'real' stack slot.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001753 if (IsTailCall) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001754 SmallVector<SDValue, 8> MemOpChains2;
1755 SDValue FIN;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001756 int FI = 0;
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001757 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman8181bd12008-07-27 21:46:04 +00001758 InFlag = SDValue();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001759 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1760 CCValAssign &VA = ArgLocs[i];
1761 if (!VA.isRegLoc()) {
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001762 assert(VA.isMemLoc());
Dan Gohman705e3f72008-09-13 01:54:27 +00001763 SDValue Arg = TheCall->getArg(i);
1764 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001765 // Create frame index.
1766 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands92c43912008-06-06 12:08:01 +00001767 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001768 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001769 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001770
Duncan Sandsc93fae32008-03-21 09:14:45 +00001771 if (Flags.isByVal()) {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001772 // Copy relative to framepointer.
Dan Gohman8181bd12008-07-27 21:46:04 +00001773 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greif1c80d112008-08-28 21:40:38 +00001774 if (StackPtr.getNode() == 0)
Scott Michel91099d62009-02-17 22:15:04 +00001775 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001776 getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00001777 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001778
1779 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN, Chain,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001780 Flags, DAG, dl));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001781 } else {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001782 // Store relative to framepointer.
Dan Gohman12a9c082008-02-06 22:27:42 +00001783 MemOpChains2.push_back(
Dale Johannesence0805b2009-02-03 19:33:06 +00001784 DAG.getStore(Chain, dl, Arg, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001785 PseudoSourceValue::getFixedStack(FI), 0));
Scott Michel91099d62009-02-17 22:15:04 +00001786 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001787 }
1788 }
1789
1790 if (!MemOpChains2.empty())
Dale Johannesence0805b2009-02-03 19:33:06 +00001791 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighoferdfb21302008-01-11 14:34:56 +00001792 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001793
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001794 // Copy arguments to their registers.
1795 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00001796 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001797 RegsToPass[i].second, InFlag);
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001798 InFlag = Chain.getValue(1);
1799 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001800 InFlag =SDValue();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001801
Gordon Henriksen18ace102008-01-05 16:56:59 +00001802 // Store the return address to the appropriate stack slot.
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001803 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesence0805b2009-02-03 19:33:06 +00001804 FPDiff, dl);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001805 }
1806
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001807 // If the callee is a GlobalAddress node (quite common, every direct call is)
1808 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
1809 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1810 // We should use extra load for direct calls to dllimported functions in
1811 // non-JIT mode.
Evan Cheng1f282202008-07-16 01:34:02 +00001812 if (!Subtarget->GVRequiresExtraLoad(G->getGlobal(),
1813 getTargetMachine(), true))
Dan Gohman36322c72008-10-18 02:06:02 +00001814 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy(),
1815 G->getOffset());
Bill Wendlingfef06052008-09-16 21:48:12 +00001816 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1817 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001818 } else if (IsTailCall) {
Arnold Schwaighofer4da27f62008-09-22 14:50:07 +00001819 unsigned Opc = Is64Bit ? X86::R9 : X86::EAX;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001820
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001821 Chain = DAG.getCopyToReg(Chain, dl,
Scott Michel91099d62009-02-17 22:15:04 +00001822 DAG.getRegister(Opc, getPointerTy()),
Gordon Henriksen18ace102008-01-05 16:56:59 +00001823 Callee,InFlag);
1824 Callee = DAG.getRegister(Opc, getPointerTy());
1825 // Add register as live out.
1826 DAG.getMachineFunction().getRegInfo().addLiveOut(Opc);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001827 }
Scott Michel91099d62009-02-17 22:15:04 +00001828
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001829 // Returns a chain & a flag for retval copy to use.
1830 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00001831 SmallVector<SDValue, 8> Ops;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001832
1833 if (IsTailCall) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00001834 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1835 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001836 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00001837
Gordon Henriksen18ace102008-01-05 16:56:59 +00001838 // Returns a chain & a flag for retval copy to use.
1839 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1840 Ops.clear();
1841 }
Scott Michel91099d62009-02-17 22:15:04 +00001842
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001843 Ops.push_back(Chain);
1844 Ops.push_back(Callee);
1845
Gordon Henriksen18ace102008-01-05 16:56:59 +00001846 if (IsTailCall)
1847 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001848
Gordon Henriksen18ace102008-01-05 16:56:59 +00001849 // Add argument registers to the end of the list so that they are known live
1850 // into the call.
Evan Chenge14fc242008-01-07 23:08:23 +00001851 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1852 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1853 RegsToPass[i].second.getValueType()));
Scott Michel91099d62009-02-17 22:15:04 +00001854
Evan Cheng8ba45e62008-03-18 23:36:35 +00001855 // Add an implicit use GOT pointer in EBX.
1856 if (!IsTailCall && !Is64Bit &&
1857 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1858 Subtarget->isPICStyleGOT())
1859 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
1860
1861 // Add an implicit use of AL for x86 vararg functions.
1862 if (Is64Bit && isVarArg)
1863 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
1864
Gabor Greif1c80d112008-08-28 21:40:38 +00001865 if (InFlag.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001866 Ops.push_back(InFlag);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001867
Gordon Henriksen18ace102008-01-05 16:56:59 +00001868 if (IsTailCall) {
Scott Michel91099d62009-02-17 22:15:04 +00001869 assert(InFlag.getNode() &&
Gordon Henriksen18ace102008-01-05 16:56:59 +00001870 "Flag must be set. Depend on flag being set in LowerRET");
Dale Johannesence0805b2009-02-03 19:33:06 +00001871 Chain = DAG.getNode(X86ISD::TAILCALL, dl,
Dan Gohman705e3f72008-09-13 01:54:27 +00001872 TheCall->getVTList(), &Ops[0], Ops.size());
Scott Michel91099d62009-02-17 22:15:04 +00001873
Gabor Greif1c80d112008-08-28 21:40:38 +00001874 return SDValue(Chain.getNode(), Op.getResNo());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001875 }
1876
Dale Johannesence0805b2009-02-03 19:33:06 +00001877 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001878 InFlag = Chain.getValue(1);
1879
1880 // Create the CALLSEQ_END node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001881 unsigned NumBytesForCalleeToPush;
Dan Gohman705e3f72008-09-13 01:54:27 +00001882 if (IsCalleePop(isVarArg, CC))
Gordon Henriksen18ace102008-01-05 16:56:59 +00001883 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Evan Chenga9d15b92008-09-10 18:25:29 +00001884 else if (!Is64Bit && CC != CallingConv::Fast && IsStructRet)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001885 // If this is is a call to a struct-return function, the callee
1886 // pops the hidden struct pointer, so we have to push it back.
1887 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001888 NumBytesForCalleeToPush = 4;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001889 else
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001890 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michel91099d62009-02-17 22:15:04 +00001891
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001892 // Returns a flag for retval copy to use.
Bill Wendling22f8deb2007-11-13 00:44:25 +00001893 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001894 DAG.getIntPtrConstant(NumBytes, true),
1895 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
1896 true),
Bill Wendling22f8deb2007-11-13 00:44:25 +00001897 InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001898 InFlag = Chain.getValue(1);
1899
1900 // Handle result values, copying them out of physregs into vregs that we
1901 // return.
Dan Gohman705e3f72008-09-13 01:54:27 +00001902 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG),
Gabor Greif825aa892008-08-28 23:19:51 +00001903 Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001904}
1905
1906
1907//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001908// Fast Calling Convention (tail call) implementation
1909//===----------------------------------------------------------------------===//
1910
1911// Like std call, callee cleans arguments, convention except that ECX is
1912// reserved for storing the tail called function address. Only 2 registers are
1913// free for argument passing (inreg). Tail call optimization is performed
1914// provided:
1915// * tailcallopt is enabled
1916// * caller/callee are fastcc
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001917// On X86_64 architecture with GOT-style position independent code only local
1918// (within module) calls are supported at the moment.
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00001919// To keep the stack aligned according to platform abi the function
1920// GetAlignedArgumentStackSize ensures that argument delta is always multiples
1921// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001922// If a tail called function callee has more arguments than the caller the
1923// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00001924// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001925// original REtADDR, but before the saved framepointer or the spilled registers
1926// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
1927// stack layout:
1928// arg1
1929// arg2
1930// RETADDR
Scott Michel91099d62009-02-17 22:15:04 +00001931// [ new RETADDR
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001932// move area ]
1933// (possible EBP)
1934// ESI
1935// EDI
1936// local1 ..
1937
1938/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
1939/// for a 16 byte align requirement.
Scott Michel91099d62009-02-17 22:15:04 +00001940unsigned X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001941 SelectionDAG& DAG) {
Evan Chengded8f902008-09-07 09:07:23 +00001942 MachineFunction &MF = DAG.getMachineFunction();
1943 const TargetMachine &TM = MF.getTarget();
1944 const TargetFrameInfo &TFI = *TM.getFrameInfo();
1945 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michel91099d62009-02-17 22:15:04 +00001946 uint64_t AlignMask = StackAlignment - 1;
Evan Chengded8f902008-09-07 09:07:23 +00001947 int64_t Offset = StackSize;
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00001948 uint64_t SlotSize = TD->getPointerSize();
Evan Chengded8f902008-09-07 09:07:23 +00001949 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
1950 // Number smaller than 12 so just add the difference.
1951 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
1952 } else {
1953 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michel91099d62009-02-17 22:15:04 +00001954 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chengded8f902008-09-07 09:07:23 +00001955 (StackAlignment-SlotSize);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001956 }
Evan Chengded8f902008-09-07 09:07:23 +00001957 return Offset;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001958}
1959
1960/// IsEligibleForTailCallElimination - Check to see whether the next instruction
Evan Chenge7a87392007-11-02 01:26:22 +00001961/// following the call is a return. A function is eligible if caller/callee
1962/// calling conventions match, currently only fastcc supports tail calls, and
1963/// the function CALL is immediatly followed by a RET.
Dan Gohman705e3f72008-09-13 01:54:27 +00001964bool X86TargetLowering::IsEligibleForTailCallOptimization(CallSDNode *TheCall,
Dan Gohman8181bd12008-07-27 21:46:04 +00001965 SDValue Ret,
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001966 SelectionDAG& DAG) const {
Evan Chenge7a87392007-11-02 01:26:22 +00001967 if (!PerformTailCallOpt)
1968 return false;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001969
Dan Gohman705e3f72008-09-13 01:54:27 +00001970 if (CheckTailCallReturnConstraints(TheCall, Ret)) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001971 MachineFunction &MF = DAG.getMachineFunction();
1972 unsigned CallerCC = MF.getFunction()->getCallingConv();
Dan Gohman705e3f72008-09-13 01:54:27 +00001973 unsigned CalleeCC= TheCall->getCallingConv();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001974 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
Dan Gohman705e3f72008-09-13 01:54:27 +00001975 SDValue Callee = TheCall->getCallee();
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001976 // On x86/32Bit PIC/GOT tail calls are supported.
Evan Chenge7a87392007-11-02 01:26:22 +00001977 if (getTargetMachine().getRelocationModel() != Reloc::PIC_ ||
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001978 !Subtarget->isPICStyleGOT()|| !Subtarget->is64Bit())
Evan Chenge7a87392007-11-02 01:26:22 +00001979 return true;
1980
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001981 // Can only do local tail calls (in same module, hidden or protected) on
1982 // x86_64 PIC/GOT at the moment.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001983 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1984 return G->getGlobal()->hasHiddenVisibility()
1985 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001986 }
1987 }
Evan Chenge7a87392007-11-02 01:26:22 +00001988
1989 return false;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001990}
1991
Dan Gohmanca4857a2008-09-03 23:12:08 +00001992FastISel *
1993X86TargetLowering::createFastISel(MachineFunction &mf,
Dan Gohman76dd96e2008-09-23 21:53:34 +00001994 MachineModuleInfo *mmo,
Devang Patelfcf1c752009-01-13 00:35:13 +00001995 DwarfWriter *dw,
Dan Gohmanca4857a2008-09-03 23:12:08 +00001996 DenseMap<const Value *, unsigned> &vm,
1997 DenseMap<const BasicBlock *,
Dan Gohmand6211a72008-09-10 20:11:02 +00001998 MachineBasicBlock *> &bm,
Dan Gohman9dd43582008-10-14 23:54:11 +00001999 DenseMap<const AllocaInst *, int> &am
2000#ifndef NDEBUG
2001 , SmallSet<Instruction*, 8> &cil
2002#endif
2003 ) {
Devang Patelfcf1c752009-01-13 00:35:13 +00002004 return X86::createFastISel(mf, mmo, dw, vm, bm, am
Dan Gohman9dd43582008-10-14 23:54:11 +00002005#ifndef NDEBUG
2006 , cil
2007#endif
2008 );
Dan Gohman97805ee2008-08-19 21:32:53 +00002009}
2010
2011
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002012//===----------------------------------------------------------------------===//
2013// Other Lowering Hooks
2014//===----------------------------------------------------------------------===//
2015
2016
Dan Gohman8181bd12008-07-27 21:46:04 +00002017SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
Anton Korobeynikove844e472007-08-15 17:12:32 +00002018 MachineFunction &MF = DAG.getMachineFunction();
2019 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2020 int ReturnAddrIndex = FuncInfo->getRAIndex();
2021
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002022 if (ReturnAddrIndex == 0) {
2023 // Set up a frame object for the return address.
Bill Wendling6ddc87b2009-01-16 19:25:27 +00002024 uint64_t SlotSize = TD->getPointerSize();
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00002025 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize);
Anton Korobeynikove844e472007-08-15 17:12:32 +00002026 FuncInfo->setRAIndex(ReturnAddrIndex);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002027 }
2028
2029 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
2030}
2031
2032
Chris Lattnerebb91142008-12-24 23:53:05 +00002033/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2034/// specific condition code, returning the condition code and the LHS/RHS of the
2035/// comparison to make.
2036static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2037 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002038 if (!isFP) {
2039 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2040 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2041 // X > -1 -> X == 0, jump !sign.
2042 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattnerebb91142008-12-24 23:53:05 +00002043 return X86::COND_NS;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002044 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2045 // X < 0 -> X == 0, jump on sign.
Chris Lattnerebb91142008-12-24 23:53:05 +00002046 return X86::COND_S;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002047 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman37b34262007-09-17 14:49:27 +00002048 // X < 1 -> X <= 0
2049 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattnerebb91142008-12-24 23:53:05 +00002050 return X86::COND_LE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002051 }
2052 }
2053
2054 switch (SetCCOpcode) {
Chris Lattnerb8397512008-12-23 23:42:27 +00002055 default: assert(0 && "Invalid integer condition!");
Chris Lattnerebb91142008-12-24 23:53:05 +00002056 case ISD::SETEQ: return X86::COND_E;
2057 case ISD::SETGT: return X86::COND_G;
2058 case ISD::SETGE: return X86::COND_GE;
2059 case ISD::SETLT: return X86::COND_L;
2060 case ISD::SETLE: return X86::COND_LE;
2061 case ISD::SETNE: return X86::COND_NE;
2062 case ISD::SETULT: return X86::COND_B;
2063 case ISD::SETUGT: return X86::COND_A;
2064 case ISD::SETULE: return X86::COND_BE;
2065 case ISD::SETUGE: return X86::COND_AE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002066 }
Chris Lattnerb8397512008-12-23 23:42:27 +00002067 }
Scott Michel91099d62009-02-17 22:15:04 +00002068
Chris Lattnerb8397512008-12-23 23:42:27 +00002069 // First determine if it is required or is profitable to flip the operands.
Duncan Sandsc2a04622008-10-24 13:03:10 +00002070
Chris Lattnerb8397512008-12-23 23:42:27 +00002071 // If LHS is a foldable load, but RHS is not, flip the condition.
2072 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2073 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2074 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2075 std::swap(LHS, RHS);
Evan Chengfc937c92008-08-28 23:48:31 +00002076 }
2077
Chris Lattnerb8397512008-12-23 23:42:27 +00002078 switch (SetCCOpcode) {
2079 default: break;
2080 case ISD::SETOLT:
2081 case ISD::SETOLE:
2082 case ISD::SETUGT:
2083 case ISD::SETUGE:
2084 std::swap(LHS, RHS);
2085 break;
2086 }
2087
2088 // On a floating point condition, the flags are set as follows:
2089 // ZF PF CF op
2090 // 0 | 0 | 0 | X > Y
2091 // 0 | 0 | 1 | X < Y
2092 // 1 | 0 | 0 | X == Y
2093 // 1 | 1 | 1 | unordered
2094 switch (SetCCOpcode) {
Chris Lattnerebb91142008-12-24 23:53:05 +00002095 default: assert(0 && "Condcode should be pre-legalized away");
Chris Lattnerb8397512008-12-23 23:42:27 +00002096 case ISD::SETUEQ:
Chris Lattnerebb91142008-12-24 23:53:05 +00002097 case ISD::SETEQ: return X86::COND_E;
Chris Lattnerb8397512008-12-23 23:42:27 +00002098 case ISD::SETOLT: // flipped
2099 case ISD::SETOGT:
Chris Lattnerebb91142008-12-24 23:53:05 +00002100 case ISD::SETGT: return X86::COND_A;
Chris Lattnerb8397512008-12-23 23:42:27 +00002101 case ISD::SETOLE: // flipped
2102 case ISD::SETOGE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002103 case ISD::SETGE: return X86::COND_AE;
Chris Lattnerb8397512008-12-23 23:42:27 +00002104 case ISD::SETUGT: // flipped
2105 case ISD::SETULT:
Chris Lattnerebb91142008-12-24 23:53:05 +00002106 case ISD::SETLT: return X86::COND_B;
Chris Lattnerb8397512008-12-23 23:42:27 +00002107 case ISD::SETUGE: // flipped
2108 case ISD::SETULE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002109 case ISD::SETLE: return X86::COND_BE;
Chris Lattnerb8397512008-12-23 23:42:27 +00002110 case ISD::SETONE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002111 case ISD::SETNE: return X86::COND_NE;
2112 case ISD::SETUO: return X86::COND_P;
2113 case ISD::SETO: return X86::COND_NP;
Chris Lattnerb8397512008-12-23 23:42:27 +00002114 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002115}
2116
2117/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2118/// code. Current x86 isa includes the following FP cmov instructions:
2119/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
2120static bool hasFPCMov(unsigned X86CC) {
2121 switch (X86CC) {
2122 default:
2123 return false;
2124 case X86::COND_B:
2125 case X86::COND_BE:
2126 case X86::COND_E:
2127 case X86::COND_P:
2128 case X86::COND_A:
2129 case X86::COND_AE:
2130 case X86::COND_NE:
2131 case X86::COND_NP:
2132 return true;
2133 }
2134}
2135
2136/// isUndefOrInRange - Op is either an undef node or a ConstantSDNode. Return
2137/// true if Op is undef or if its value falls within the specified range (L, H].
Dan Gohman8181bd12008-07-27 21:46:04 +00002138static bool isUndefOrInRange(SDValue Op, unsigned Low, unsigned Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002139 if (Op.getOpcode() == ISD::UNDEF)
2140 return true;
2141
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002142 unsigned Val = cast<ConstantSDNode>(Op)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002143 return (Val >= Low && Val < Hi);
2144}
2145
2146/// isUndefOrEqual - Op is either an undef node or a ConstantSDNode. Return
2147/// true if Op is undef or if its value equal to the specified value.
Dan Gohman8181bd12008-07-27 21:46:04 +00002148static bool isUndefOrEqual(SDValue Op, unsigned Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002149 if (Op.getOpcode() == ISD::UNDEF)
2150 return true;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002151 return cast<ConstantSDNode>(Op)->getZExtValue() == Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002152}
2153
2154/// isPSHUFDMask - Return true if the specified VECTOR_SHUFFLE operand
2155/// specifies a shuffle of elements that is suitable for input to PSHUFD.
2156bool X86::isPSHUFDMask(SDNode *N) {
2157 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2158
Dan Gohman7dc19012007-08-02 21:17:01 +00002159 if (N->getNumOperands() != 2 && N->getNumOperands() != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002160 return false;
2161
2162 // Check if the value doesn't reference the second vector.
2163 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002164 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002165 if (Arg.getOpcode() == ISD::UNDEF) continue;
2166 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002167 if (cast<ConstantSDNode>(Arg)->getZExtValue() >= e)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002168 return false;
2169 }
2170
2171 return true;
2172}
2173
2174/// isPSHUFHWMask - Return true if the specified VECTOR_SHUFFLE operand
2175/// specifies a shuffle of elements that is suitable for input to PSHUFHW.
2176bool X86::isPSHUFHWMask(SDNode *N) {
2177 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2178
2179 if (N->getNumOperands() != 8)
2180 return false;
2181
2182 // Lower quadword copied in order.
2183 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002184 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002185 if (Arg.getOpcode() == ISD::UNDEF) continue;
2186 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002187 if (cast<ConstantSDNode>(Arg)->getZExtValue() != i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002188 return false;
2189 }
2190
2191 // Upper quadword shuffled.
2192 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002193 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002194 if (Arg.getOpcode() == ISD::UNDEF) continue;
2195 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002196 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002197 if (Val < 4 || Val > 7)
2198 return false;
2199 }
2200
2201 return true;
2202}
2203
2204/// isPSHUFLWMask - Return true if the specified VECTOR_SHUFFLE operand
2205/// specifies a shuffle of elements that is suitable for input to PSHUFLW.
2206bool X86::isPSHUFLWMask(SDNode *N) {
2207 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2208
2209 if (N->getNumOperands() != 8)
2210 return false;
2211
2212 // Upper quadword copied in order.
2213 for (unsigned i = 4; i != 8; ++i)
2214 if (!isUndefOrEqual(N->getOperand(i), i))
2215 return false;
2216
2217 // Lower quadword shuffled.
2218 for (unsigned i = 0; i != 4; ++i)
2219 if (!isUndefOrInRange(N->getOperand(i), 0, 4))
2220 return false;
2221
2222 return true;
2223}
2224
2225/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2226/// specifies a shuffle of elements that is suitable for input to SHUFP*.
djgc2517d32009-01-26 04:35:06 +00002227template<class SDOperand>
2228static bool isSHUFPMask(SDOperand *Elems, unsigned NumElems) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002229 if (NumElems != 2 && NumElems != 4) return false;
2230
2231 unsigned Half = NumElems / 2;
2232 for (unsigned i = 0; i < Half; ++i)
2233 if (!isUndefOrInRange(Elems[i], 0, NumElems))
2234 return false;
2235 for (unsigned i = Half; i < NumElems; ++i)
2236 if (!isUndefOrInRange(Elems[i], NumElems, NumElems*2))
2237 return false;
2238
2239 return true;
2240}
2241
2242bool X86::isSHUFPMask(SDNode *N) {
2243 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2244 return ::isSHUFPMask(N->op_begin(), N->getNumOperands());
2245}
2246
2247/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
2248/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2249/// half elements to come from vector 1 (which would equal the dest.) and
2250/// the upper half to come from vector 2.
djgc2517d32009-01-26 04:35:06 +00002251template<class SDOperand>
2252static bool isCommutedSHUFP(SDOperand *Ops, unsigned NumOps) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002253 if (NumOps != 2 && NumOps != 4) return false;
2254
2255 unsigned Half = NumOps / 2;
2256 for (unsigned i = 0; i < Half; ++i)
2257 if (!isUndefOrInRange(Ops[i], NumOps, NumOps*2))
2258 return false;
2259 for (unsigned i = Half; i < NumOps; ++i)
2260 if (!isUndefOrInRange(Ops[i], 0, NumOps))
2261 return false;
2262 return true;
2263}
2264
2265static bool isCommutedSHUFP(SDNode *N) {
2266 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2267 return isCommutedSHUFP(N->op_begin(), N->getNumOperands());
2268}
2269
2270/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2271/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
2272bool X86::isMOVHLPSMask(SDNode *N) {
2273 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2274
2275 if (N->getNumOperands() != 4)
2276 return false;
2277
2278 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
2279 return isUndefOrEqual(N->getOperand(0), 6) &&
2280 isUndefOrEqual(N->getOperand(1), 7) &&
2281 isUndefOrEqual(N->getOperand(2), 2) &&
2282 isUndefOrEqual(N->getOperand(3), 3);
2283}
2284
2285/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2286/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2287/// <2, 3, 2, 3>
2288bool X86::isMOVHLPS_v_undef_Mask(SDNode *N) {
2289 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2290
2291 if (N->getNumOperands() != 4)
2292 return false;
2293
2294 // Expect bit0 == 2, bit1 == 3, bit2 == 2, bit3 == 3
2295 return isUndefOrEqual(N->getOperand(0), 2) &&
2296 isUndefOrEqual(N->getOperand(1), 3) &&
2297 isUndefOrEqual(N->getOperand(2), 2) &&
2298 isUndefOrEqual(N->getOperand(3), 3);
2299}
2300
2301/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
2302/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
2303bool X86::isMOVLPMask(SDNode *N) {
2304 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2305
2306 unsigned NumElems = N->getNumOperands();
2307 if (NumElems != 2 && NumElems != 4)
2308 return false;
2309
2310 for (unsigned i = 0; i < NumElems/2; ++i)
2311 if (!isUndefOrEqual(N->getOperand(i), i + NumElems))
2312 return false;
2313
2314 for (unsigned i = NumElems/2; i < NumElems; ++i)
2315 if (!isUndefOrEqual(N->getOperand(i), i))
2316 return false;
2317
2318 return true;
2319}
2320
2321/// isMOVHPMask - Return true if the specified VECTOR_SHUFFLE operand
2322/// specifies a shuffle of elements that is suitable for input to MOVHP{S|D}
2323/// and MOVLHPS.
2324bool X86::isMOVHPMask(SDNode *N) {
2325 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2326
2327 unsigned NumElems = N->getNumOperands();
2328 if (NumElems != 2 && NumElems != 4)
2329 return false;
2330
2331 for (unsigned i = 0; i < NumElems/2; ++i)
2332 if (!isUndefOrEqual(N->getOperand(i), i))
2333 return false;
2334
2335 for (unsigned i = 0; i < NumElems/2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002336 SDValue Arg = N->getOperand(i + NumElems/2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002337 if (!isUndefOrEqual(Arg, i + NumElems))
2338 return false;
2339 }
2340
2341 return true;
2342}
2343
2344/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
2345/// specifies a shuffle of elements that is suitable for input to UNPCKL.
djgc2517d32009-01-26 04:35:06 +00002346template<class SDOperand>
2347bool static isUNPCKLMask(SDOperand *Elts, unsigned NumElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002348 bool V2IsSplat = false) {
2349 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2350 return false;
2351
2352 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002353 SDValue BitI = Elts[i];
2354 SDValue BitI1 = Elts[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002355 if (!isUndefOrEqual(BitI, j))
2356 return false;
2357 if (V2IsSplat) {
Mon P Wang56d91642009-02-04 01:16:59 +00002358 if (!isUndefOrEqual(BitI1, NumElts))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002359 return false;
2360 } else {
2361 if (!isUndefOrEqual(BitI1, j + NumElts))
2362 return false;
2363 }
2364 }
2365
2366 return true;
2367}
2368
2369bool X86::isUNPCKLMask(SDNode *N, bool V2IsSplat) {
2370 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2371 return ::isUNPCKLMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
2372}
2373
2374/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
2375/// specifies a shuffle of elements that is suitable for input to UNPCKH.
djgc2517d32009-01-26 04:35:06 +00002376template<class SDOperand>
2377bool static isUNPCKHMask(SDOperand *Elts, unsigned NumElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002378 bool V2IsSplat = false) {
2379 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2380 return false;
2381
2382 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002383 SDValue BitI = Elts[i];
2384 SDValue BitI1 = Elts[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002385 if (!isUndefOrEqual(BitI, j + NumElts/2))
2386 return false;
2387 if (V2IsSplat) {
2388 if (isUndefOrEqual(BitI1, NumElts))
2389 return false;
2390 } else {
2391 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
2392 return false;
2393 }
2394 }
2395
2396 return true;
2397}
2398
2399bool X86::isUNPCKHMask(SDNode *N, bool V2IsSplat) {
2400 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2401 return ::isUNPCKHMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
2402}
2403
2404/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
2405/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
2406/// <0, 0, 1, 1>
2407bool X86::isUNPCKL_v_undef_Mask(SDNode *N) {
2408 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2409
2410 unsigned NumElems = N->getNumOperands();
2411 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2412 return false;
2413
2414 for (unsigned i = 0, j = 0; i != NumElems; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002415 SDValue BitI = N->getOperand(i);
2416 SDValue BitI1 = N->getOperand(i+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002417
2418 if (!isUndefOrEqual(BitI, j))
2419 return false;
2420 if (!isUndefOrEqual(BitI1, j))
2421 return false;
2422 }
2423
2424 return true;
2425}
2426
2427/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
2428/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
2429/// <2, 2, 3, 3>
2430bool X86::isUNPCKH_v_undef_Mask(SDNode *N) {
2431 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2432
2433 unsigned NumElems = N->getNumOperands();
2434 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2435 return false;
2436
2437 for (unsigned i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002438 SDValue BitI = N->getOperand(i);
2439 SDValue BitI1 = N->getOperand(i + 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002440
2441 if (!isUndefOrEqual(BitI, j))
2442 return false;
2443 if (!isUndefOrEqual(BitI1, j))
2444 return false;
2445 }
2446
2447 return true;
2448}
2449
2450/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
2451/// specifies a shuffle of elements that is suitable for input to MOVSS,
2452/// MOVSD, and MOVD, i.e. setting the lowest element.
djgc2517d32009-01-26 04:35:06 +00002453template<class SDOperand>
2454static bool isMOVLMask(SDOperand *Elts, unsigned NumElts) {
Evan Cheng62cdc642007-12-06 22:14:22 +00002455 if (NumElts != 2 && NumElts != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002456 return false;
2457
2458 if (!isUndefOrEqual(Elts[0], NumElts))
2459 return false;
2460
2461 for (unsigned i = 1; i < NumElts; ++i) {
2462 if (!isUndefOrEqual(Elts[i], i))
2463 return false;
2464 }
2465
2466 return true;
2467}
2468
2469bool X86::isMOVLMask(SDNode *N) {
2470 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2471 return ::isMOVLMask(N->op_begin(), N->getNumOperands());
2472}
2473
2474/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
2475/// of what x86 movss want. X86 movs requires the lowest element to be lowest
2476/// element of vector 2 and the other elements to come from vector 1 in order.
djgc2517d32009-01-26 04:35:06 +00002477template<class SDOperand>
2478static bool isCommutedMOVL(SDOperand *Ops, unsigned NumOps,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002479 bool V2IsSplat = false,
2480 bool V2IsUndef = false) {
2481 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
2482 return false;
2483
2484 if (!isUndefOrEqual(Ops[0], 0))
2485 return false;
2486
2487 for (unsigned i = 1; i < NumOps; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002488 SDValue Arg = Ops[i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002489 if (!(isUndefOrEqual(Arg, i+NumOps) ||
2490 (V2IsUndef && isUndefOrInRange(Arg, NumOps, NumOps*2)) ||
2491 (V2IsSplat && isUndefOrEqual(Arg, NumOps))))
2492 return false;
2493 }
2494
2495 return true;
2496}
2497
2498static bool isCommutedMOVL(SDNode *N, bool V2IsSplat = false,
2499 bool V2IsUndef = false) {
2500 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2501 return isCommutedMOVL(N->op_begin(), N->getNumOperands(),
2502 V2IsSplat, V2IsUndef);
2503}
2504
2505/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2506/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
2507bool X86::isMOVSHDUPMask(SDNode *N) {
2508 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2509
2510 if (N->getNumOperands() != 4)
2511 return false;
2512
2513 // Expect 1, 1, 3, 3
2514 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002515 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002516 if (Arg.getOpcode() == ISD::UNDEF) continue;
2517 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002518 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002519 if (Val != 1) return false;
2520 }
2521
2522 bool HasHi = false;
2523 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002524 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002525 if (Arg.getOpcode() == ISD::UNDEF) continue;
2526 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002527 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002528 if (Val != 3) return false;
2529 HasHi = true;
2530 }
2531
2532 // Don't use movshdup if it can be done with a shufps.
2533 return HasHi;
2534}
2535
2536/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2537/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
2538bool X86::isMOVSLDUPMask(SDNode *N) {
2539 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2540
2541 if (N->getNumOperands() != 4)
2542 return false;
2543
2544 // Expect 0, 0, 2, 2
2545 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002546 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002547 if (Arg.getOpcode() == ISD::UNDEF) continue;
2548 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002549 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002550 if (Val != 0) return false;
2551 }
2552
2553 bool HasHi = false;
2554 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002555 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002556 if (Arg.getOpcode() == ISD::UNDEF) continue;
2557 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002558 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002559 if (Val != 2) return false;
2560 HasHi = true;
2561 }
2562
2563 // Don't use movshdup if it can be done with a shufps.
2564 return HasHi;
2565}
2566
2567/// isIdentityMask - Return true if the specified VECTOR_SHUFFLE operand
2568/// specifies a identity operation on the LHS or RHS.
2569static bool isIdentityMask(SDNode *N, bool RHS = false) {
2570 unsigned NumElems = N->getNumOperands();
2571 for (unsigned i = 0; i < NumElems; ++i)
2572 if (!isUndefOrEqual(N->getOperand(i), i + (RHS ? NumElems : 0)))
2573 return false;
2574 return true;
2575}
2576
2577/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2578/// a splat of a single element.
2579static bool isSplatMask(SDNode *N) {
2580 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2581
2582 // This is a splat operation if each element of the permute is the same, and
2583 // if the value doesn't reference the second vector.
2584 unsigned NumElems = N->getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002585 SDValue ElementBase;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002586 unsigned i = 0;
2587 for (; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002588 SDValue Elt = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002589 if (isa<ConstantSDNode>(Elt)) {
2590 ElementBase = Elt;
2591 break;
2592 }
2593 }
2594
Gabor Greif1c80d112008-08-28 21:40:38 +00002595 if (!ElementBase.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002596 return false;
2597
2598 for (; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002599 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002600 if (Arg.getOpcode() == ISD::UNDEF) continue;
2601 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2602 if (Arg != ElementBase) return false;
2603 }
2604
2605 // Make sure it is a splat of the first vector operand.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002606 return cast<ConstantSDNode>(ElementBase)->getZExtValue() < NumElems;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002607}
2608
Mon P Wang532c9632008-12-23 04:03:27 +00002609/// getSplatMaskEltNo - Given a splat mask, return the index to the element
2610/// we want to splat.
2611static SDValue getSplatMaskEltNo(SDNode *N) {
2612 assert(isSplatMask(N) && "Not a splat mask");
2613 unsigned NumElems = N->getNumOperands();
2614 SDValue ElementBase;
2615 unsigned i = 0;
2616 for (; i != NumElems; ++i) {
2617 SDValue Elt = N->getOperand(i);
2618 if (isa<ConstantSDNode>(Elt))
2619 return Elt;
2620 }
2621 assert(0 && " No splat value found!");
2622 return SDValue();
2623}
2624
2625
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002626/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2627/// a splat of a single element and it's a 2 or 4 element mask.
2628bool X86::isSplatMask(SDNode *N) {
2629 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2630
2631 // We can only splat 64-bit, and 32-bit quantities with a single instruction.
2632 if (N->getNumOperands() != 4 && N->getNumOperands() != 2)
2633 return false;
2634 return ::isSplatMask(N);
2635}
2636
2637/// isSplatLoMask - Return true if the specified VECTOR_SHUFFLE operand
2638/// specifies a splat of zero element.
2639bool X86::isSplatLoMask(SDNode *N) {
2640 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2641
2642 for (unsigned i = 0, e = N->getNumOperands(); i < e; ++i)
2643 if (!isUndefOrEqual(N->getOperand(i), 0))
2644 return false;
2645 return true;
2646}
2647
Evan Chenga2497eb2008-09-25 20:50:48 +00002648/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2649/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
2650bool X86::isMOVDDUPMask(SDNode *N) {
2651 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2652
2653 unsigned e = N->getNumOperands() / 2;
2654 for (unsigned i = 0; i < e; ++i)
2655 if (!isUndefOrEqual(N->getOperand(i), i))
2656 return false;
2657 for (unsigned i = 0; i < e; ++i)
2658 if (!isUndefOrEqual(N->getOperand(e+i), i))
2659 return false;
2660 return true;
2661}
2662
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002663/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
2664/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUF* and SHUFP*
2665/// instructions.
2666unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
2667 unsigned NumOperands = N->getNumOperands();
2668 unsigned Shift = (NumOperands == 4) ? 2 : 1;
2669 unsigned Mask = 0;
2670 for (unsigned i = 0; i < NumOperands; ++i) {
2671 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002672 SDValue Arg = N->getOperand(NumOperands-i-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002673 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002674 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002675 if (Val >= NumOperands) Val -= NumOperands;
2676 Mask |= Val;
2677 if (i != NumOperands - 1)
2678 Mask <<= Shift;
2679 }
2680
2681 return Mask;
2682}
2683
2684/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
2685/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFHW
2686/// instructions.
2687unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
2688 unsigned Mask = 0;
2689 // 8 nodes, but we only care about the last 4.
2690 for (unsigned i = 7; i >= 4; --i) {
2691 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002692 SDValue Arg = N->getOperand(i);
Mon P Wang56d91642009-02-04 01:16:59 +00002693 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002694 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Mon P Wang56d91642009-02-04 01:16:59 +00002695 Mask |= (Val - 4);
2696 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002697 if (i != 4)
2698 Mask <<= 2;
2699 }
2700
2701 return Mask;
2702}
2703
2704/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
2705/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFLW
2706/// instructions.
2707unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
2708 unsigned Mask = 0;
2709 // 8 nodes, but we only care about the first 4.
2710 for (int i = 3; i >= 0; --i) {
2711 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002712 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002713 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002714 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002715 Mask |= Val;
2716 if (i != 0)
2717 Mask <<= 2;
2718 }
2719
2720 return Mask;
2721}
2722
Chris Lattnere6aa3862007-11-25 00:24:49 +00002723/// CommuteVectorShuffle - Swap vector_shuffle operands as well as
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002724/// values in ther permute mask.
Dan Gohman8181bd12008-07-27 21:46:04 +00002725static SDValue CommuteVectorShuffle(SDValue Op, SDValue &V1,
2726 SDValue &V2, SDValue &Mask,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002727 SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00002728 MVT VT = Op.getValueType();
2729 MVT MaskVT = Mask.getValueType();
2730 MVT EltVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002731 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002732 SmallVector<SDValue, 8> MaskVec;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00002733 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002734
2735 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002736 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002737 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00002738 MaskVec.push_back(DAG.getUNDEF(EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002739 continue;
2740 }
2741 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002742 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002743 if (Val < NumElems)
2744 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2745 else
2746 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2747 }
2748
2749 std::swap(V1, V2);
Evan Cheng907a2d22009-02-25 22:49:59 +00002750 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], NumElems);
Dale Johannesence0805b2009-02-03 19:33:06 +00002751 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002752}
2753
Evan Chenga6769df2007-12-07 21:30:01 +00002754/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
2755/// the two vector operands have swapped position.
Evan Chengfca29242007-12-07 08:07:39 +00002756static
Dale Johannesence0805b2009-02-03 19:33:06 +00002757SDValue CommuteVectorShuffleMask(SDValue Mask, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002758 MVT MaskVT = Mask.getValueType();
2759 MVT EltVT = MaskVT.getVectorElementType();
Evan Chengfca29242007-12-07 08:07:39 +00002760 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002761 SmallVector<SDValue, 8> MaskVec;
Evan Chengfca29242007-12-07 08:07:39 +00002762 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002763 SDValue Arg = Mask.getOperand(i);
Evan Chengfca29242007-12-07 08:07:39 +00002764 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00002765 MaskVec.push_back(DAG.getUNDEF(EltVT));
Evan Chengfca29242007-12-07 08:07:39 +00002766 continue;
2767 }
2768 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002769 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengfca29242007-12-07 08:07:39 +00002770 if (Val < NumElems)
2771 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2772 else
2773 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2774 }
Evan Cheng907a2d22009-02-25 22:49:59 +00002775 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], NumElems);
Evan Chengfca29242007-12-07 08:07:39 +00002776}
2777
2778
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002779/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
2780/// match movhlps. The lower half elements should come from upper half of
2781/// V1 (and in order), and the upper half elements should come from the upper
2782/// half of V2 (and in order).
2783static bool ShouldXformToMOVHLPS(SDNode *Mask) {
2784 unsigned NumElems = Mask->getNumOperands();
2785 if (NumElems != 4)
2786 return false;
2787 for (unsigned i = 0, e = 2; i != e; ++i)
2788 if (!isUndefOrEqual(Mask->getOperand(i), i+2))
2789 return false;
2790 for (unsigned i = 2; i != 4; ++i)
2791 if (!isUndefOrEqual(Mask->getOperand(i), i+4))
2792 return false;
2793 return true;
2794}
2795
2796/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng40ee6e52008-05-08 00:57:18 +00002797/// is promoted to a vector. It also returns the LoadSDNode by reference if
2798/// required.
2799static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Chenga2497eb2008-09-25 20:50:48 +00002800 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
2801 return false;
2802 N = N->getOperand(0).getNode();
2803 if (!ISD::isNON_EXTLoad(N))
2804 return false;
2805 if (LD)
2806 *LD = cast<LoadSDNode>(N);
2807 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002808}
2809
2810/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
2811/// match movlp{s|d}. The lower half elements should come from lower half of
2812/// V1 (and in order), and the upper half elements should come from the upper
2813/// half of V2 (and in order). And since V1 will become the source of the
2814/// MOVLP, it must be either a vector load or a scalar load to vector.
2815static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2, SDNode *Mask) {
2816 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
2817 return false;
2818 // Is V2 is a vector load, don't do this transformation. We will try to use
2819 // load folding shufps op.
2820 if (ISD::isNON_EXTLoad(V2))
2821 return false;
2822
2823 unsigned NumElems = Mask->getNumOperands();
2824 if (NumElems != 2 && NumElems != 4)
2825 return false;
2826 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
2827 if (!isUndefOrEqual(Mask->getOperand(i), i))
2828 return false;
2829 for (unsigned i = NumElems/2; i != NumElems; ++i)
2830 if (!isUndefOrEqual(Mask->getOperand(i), i+NumElems))
2831 return false;
2832 return true;
2833}
2834
2835/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
2836/// all the same.
2837static bool isSplatVector(SDNode *N) {
2838 if (N->getOpcode() != ISD::BUILD_VECTOR)
2839 return false;
2840
Dan Gohman8181bd12008-07-27 21:46:04 +00002841 SDValue SplatValue = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002842 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
2843 if (N->getOperand(i) != SplatValue)
2844 return false;
2845 return true;
2846}
2847
2848/// isUndefShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2849/// to an undef.
2850static bool isUndefShuffle(SDNode *N) {
2851 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2852 return false;
2853
Dan Gohman8181bd12008-07-27 21:46:04 +00002854 SDValue V1 = N->getOperand(0);
2855 SDValue V2 = N->getOperand(1);
2856 SDValue Mask = N->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002857 unsigned NumElems = Mask.getNumOperands();
2858 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002859 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002860 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002861 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002862 if (Val < NumElems && V1.getOpcode() != ISD::UNDEF)
2863 return false;
2864 else if (Val >= NumElems && V2.getOpcode() != ISD::UNDEF)
2865 return false;
2866 }
2867 }
2868 return true;
2869}
2870
2871/// isZeroNode - Returns true if Elt is a constant zero or a floating point
2872/// constant +0.0.
Dan Gohman8181bd12008-07-27 21:46:04 +00002873static inline bool isZeroNode(SDValue Elt) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002874 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002875 cast<ConstantSDNode>(Elt)->getZExtValue() == 0) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002876 (isa<ConstantFPSDNode>(Elt) &&
Dale Johannesendf8a8312007-08-31 04:03:46 +00002877 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002878}
2879
2880/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2881/// to an zero vector.
2882static bool isZeroShuffle(SDNode *N) {
2883 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2884 return false;
2885
Dan Gohman8181bd12008-07-27 21:46:04 +00002886 SDValue V1 = N->getOperand(0);
2887 SDValue V2 = N->getOperand(1);
2888 SDValue Mask = N->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002889 unsigned NumElems = Mask.getNumOperands();
2890 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002891 SDValue Arg = Mask.getOperand(i);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002892 if (Arg.getOpcode() == ISD::UNDEF)
2893 continue;
Scott Michel91099d62009-02-17 22:15:04 +00002894
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002895 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Chris Lattnere6aa3862007-11-25 00:24:49 +00002896 if (Idx < NumElems) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002897 unsigned Opc = V1.getNode()->getOpcode();
2898 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002899 continue;
2900 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greif1c80d112008-08-28 21:40:38 +00002901 !isZeroNode(V1.getNode()->getOperand(Idx)))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002902 return false;
2903 } else if (Idx >= NumElems) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002904 unsigned Opc = V2.getNode()->getOpcode();
2905 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002906 continue;
2907 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greif1c80d112008-08-28 21:40:38 +00002908 !isZeroNode(V2.getNode()->getOperand(Idx - NumElems)))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002909 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002910 }
2911 }
2912 return true;
2913}
2914
2915/// getZeroVector - Returns a vector of specified type with all zero elements.
2916///
Dale Johannesence0805b2009-02-03 19:33:06 +00002917static SDValue getZeroVector(MVT VT, bool HasSSE2, SelectionDAG &DAG,
2918 DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002919 assert(VT.isVector() && "Expected a vector type");
Scott Michel91099d62009-02-17 22:15:04 +00002920
Chris Lattnere6aa3862007-11-25 00:24:49 +00002921 // Always build zero vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2922 // type. This ensures they get CSE'd.
Dan Gohman8181bd12008-07-27 21:46:04 +00002923 SDValue Vec;
Duncan Sands92c43912008-06-06 12:08:01 +00002924 if (VT.getSizeInBits() == 64) { // MMX
Dan Gohman8181bd12008-07-27 21:46:04 +00002925 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00002926 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002927 } else if (HasSSE2) { // SSE2
Dan Gohman8181bd12008-07-27 21:46:04 +00002928 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00002929 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002930 } else { // SSE1
Dan Gohman8181bd12008-07-27 21:46:04 +00002931 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Evan Cheng907a2d22009-02-25 22:49:59 +00002932 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002933 }
Dale Johannesence0805b2009-02-03 19:33:06 +00002934 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002935}
2936
Chris Lattnere6aa3862007-11-25 00:24:49 +00002937/// getOnesVector - Returns a vector of specified type with all bits set.
2938///
Dale Johannesence0805b2009-02-03 19:33:06 +00002939static SDValue getOnesVector(MVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002940 assert(VT.isVector() && "Expected a vector type");
Scott Michel91099d62009-02-17 22:15:04 +00002941
Chris Lattnere6aa3862007-11-25 00:24:49 +00002942 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2943 // type. This ensures they get CSE'd.
Dan Gohman8181bd12008-07-27 21:46:04 +00002944 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
2945 SDValue Vec;
Duncan Sands92c43912008-06-06 12:08:01 +00002946 if (VT.getSizeInBits() == 64) // MMX
Evan Cheng907a2d22009-02-25 22:49:59 +00002947 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002948 else // SSE
Evan Cheng907a2d22009-02-25 22:49:59 +00002949 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dale Johannesence0805b2009-02-03 19:33:06 +00002950 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002951}
2952
2953
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002954/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
2955/// that point to V2 points to its first element.
Dan Gohman8181bd12008-07-27 21:46:04 +00002956static SDValue NormalizeMask(SDValue Mask, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002957 assert(Mask.getOpcode() == ISD::BUILD_VECTOR);
2958
2959 bool Changed = false;
Dan Gohman8181bd12008-07-27 21:46:04 +00002960 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002961 unsigned NumElems = Mask.getNumOperands();
2962 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002963 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002964 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002965 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002966 if (Val > NumElems) {
2967 Arg = DAG.getConstant(NumElems, Arg.getValueType());
2968 Changed = true;
2969 }
2970 }
2971 MaskVec.push_back(Arg);
2972 }
2973
2974 if (Changed)
Evan Cheng907a2d22009-02-25 22:49:59 +00002975 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getDebugLoc(),
2976 Mask.getValueType(),
2977 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002978 return Mask;
2979}
2980
2981/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
2982/// operation of specified width.
Dale Johannesence0805b2009-02-03 19:33:06 +00002983static SDValue getMOVLMask(unsigned NumElems, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002984 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2985 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002986
Dan Gohman8181bd12008-07-27 21:46:04 +00002987 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002988 MaskVec.push_back(DAG.getConstant(NumElems, BaseVT));
2989 for (unsigned i = 1; i != NumElems; ++i)
2990 MaskVec.push_back(DAG.getConstant(i, BaseVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00002991 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
2992 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002993}
2994
2995/// getUnpacklMask - Returns a vector_shuffle mask for an unpackl operation
2996/// of specified width.
Scott Michel91099d62009-02-17 22:15:04 +00002997static SDValue getUnpacklMask(unsigned NumElems, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00002998 DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002999 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3000 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003001 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003002 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
3003 MaskVec.push_back(DAG.getConstant(i, BaseVT));
3004 MaskVec.push_back(DAG.getConstant(i + NumElems, BaseVT));
3005 }
Evan Cheng907a2d22009-02-25 22:49:59 +00003006 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3007 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003008}
3009
3010/// getUnpackhMask - Returns a vector_shuffle mask for an unpackh operation
3011/// of specified width.
Dale Johannesence0805b2009-02-03 19:33:06 +00003012static SDValue getUnpackhMask(unsigned NumElems, SelectionDAG &DAG,
3013 DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003014 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3015 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003016 unsigned Half = NumElems/2;
Dan Gohman8181bd12008-07-27 21:46:04 +00003017 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003018 for (unsigned i = 0; i != Half; ++i) {
3019 MaskVec.push_back(DAG.getConstant(i + Half, BaseVT));
3020 MaskVec.push_back(DAG.getConstant(i + NumElems + Half, BaseVT));
3021 }
Evan Cheng907a2d22009-02-25 22:49:59 +00003022 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3023 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003024}
3025
Chris Lattner2d91b962008-03-09 01:05:04 +00003026/// getSwapEltZeroMask - Returns a vector_shuffle mask for a shuffle that swaps
3027/// element #0 of a vector with the specified index, leaving the rest of the
3028/// elements in place.
Dan Gohman8181bd12008-07-27 21:46:04 +00003029static SDValue getSwapEltZeroMask(unsigned NumElems, unsigned DestElt,
Dale Johannesence0805b2009-02-03 19:33:06 +00003030 SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003031 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3032 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003033 SmallVector<SDValue, 8> MaskVec;
Chris Lattner2d91b962008-03-09 01:05:04 +00003034 // Element #0 of the result gets the elt we are replacing.
3035 MaskVec.push_back(DAG.getConstant(DestElt, BaseVT));
3036 for (unsigned i = 1; i != NumElems; ++i)
3037 MaskVec.push_back(DAG.getConstant(i == DestElt ? 0 : i, BaseVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00003038 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3039 &MaskVec[0], MaskVec.size());
Chris Lattner2d91b962008-03-09 01:05:04 +00003040}
3041
Evan Chengbf8b2c52008-04-05 00:30:36 +00003042/// PromoteSplat - Promote a splat of v4f32, v8i16 or v16i8 to v4i32.
Dan Gohman8181bd12008-07-27 21:46:04 +00003043static SDValue PromoteSplat(SDValue Op, SelectionDAG &DAG, bool HasSSE2) {
Duncan Sands92c43912008-06-06 12:08:01 +00003044 MVT PVT = HasSSE2 ? MVT::v4i32 : MVT::v4f32;
3045 MVT VT = Op.getValueType();
Evan Chengbf8b2c52008-04-05 00:30:36 +00003046 if (PVT == VT)
3047 return Op;
Dan Gohman8181bd12008-07-27 21:46:04 +00003048 SDValue V1 = Op.getOperand(0);
3049 SDValue Mask = Op.getOperand(2);
Mon P Wang532c9632008-12-23 04:03:27 +00003050 unsigned MaskNumElems = Mask.getNumOperands();
3051 unsigned NumElems = MaskNumElems;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003052 DebugLoc dl = Op.getDebugLoc();
Evan Chengbf8b2c52008-04-05 00:30:36 +00003053 // Special handling of v4f32 -> v4i32.
3054 if (VT != MVT::v4f32) {
Mon P Wang532c9632008-12-23 04:03:27 +00003055 // Find which element we want to splat.
3056 SDNode* EltNoNode = getSplatMaskEltNo(Mask.getNode()).getNode();
3057 unsigned EltNo = cast<ConstantSDNode>(EltNoNode)->getZExtValue();
3058 // unpack elements to the correct location
Evan Chengbf8b2c52008-04-05 00:30:36 +00003059 while (NumElems > 4) {
Mon P Wang532c9632008-12-23 04:03:27 +00003060 if (EltNo < NumElems/2) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003061 Mask = getUnpacklMask(MaskNumElems, DAG, dl);
Mon P Wang532c9632008-12-23 04:03:27 +00003062 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00003063 Mask = getUnpackhMask(MaskNumElems, DAG, dl);
Mon P Wang532c9632008-12-23 04:03:27 +00003064 EltNo -= NumElems/2;
3065 }
Dale Johannesence0805b2009-02-03 19:33:06 +00003066 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V1, Mask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00003067 NumElems >>= 1;
3068 }
Mon P Wang532c9632008-12-23 04:03:27 +00003069 SDValue Cst = DAG.getConstant(EltNo, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00003070 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003071 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003072
Dale Johannesence0805b2009-02-03 19:33:06 +00003073 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
3074 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, PVT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003075 DAG.getUNDEF(PVT), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00003076 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Shuffle);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003077}
3078
Evan Chenga2497eb2008-09-25 20:50:48 +00003079/// isVectorLoad - Returns true if the node is a vector load, a scalar
3080/// load that's promoted to vector, or a load bitcasted.
3081static bool isVectorLoad(SDValue Op) {
3082 assert(Op.getValueType().isVector() && "Expected a vector type");
3083 if (Op.getOpcode() == ISD::SCALAR_TO_VECTOR ||
3084 Op.getOpcode() == ISD::BIT_CONVERT) {
3085 return isa<LoadSDNode>(Op.getOperand(0));
3086 }
3087 return isa<LoadSDNode>(Op);
3088}
3089
3090
3091/// CanonicalizeMovddup - Cannonicalize movddup shuffle to v2f64.
3092///
3093static SDValue CanonicalizeMovddup(SDValue Op, SDValue V1, SDValue Mask,
3094 SelectionDAG &DAG, bool HasSSE3) {
3095 // If we have sse3 and shuffle has more than one use or input is a load, then
3096 // use movddup. Otherwise, use movlhps.
3097 bool UseMovddup = HasSSE3 && (!Op.hasOneUse() || isVectorLoad(V1));
3098 MVT PVT = UseMovddup ? MVT::v2f64 : MVT::v4f32;
3099 MVT VT = Op.getValueType();
3100 if (VT == PVT)
3101 return Op;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003102 DebugLoc dl = Op.getDebugLoc();
Evan Chenga2497eb2008-09-25 20:50:48 +00003103 unsigned NumElems = PVT.getVectorNumElements();
3104 if (NumElems == 2) {
3105 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00003106 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Chenga2497eb2008-09-25 20:50:48 +00003107 } else {
3108 assert(NumElems == 4);
3109 SDValue Cst0 = DAG.getTargetConstant(0, MVT::i32);
3110 SDValue Cst1 = DAG.getTargetConstant(1, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00003111 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
3112 Cst0, Cst1, Cst0, Cst1);
Evan Chenga2497eb2008-09-25 20:50:48 +00003113 }
3114
Dale Johannesence0805b2009-02-03 19:33:06 +00003115 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
3116 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, PVT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003117 DAG.getUNDEF(PVT), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00003118 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Shuffle);
Evan Chenga2497eb2008-09-25 20:50:48 +00003119}
3120
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003121/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattnere6aa3862007-11-25 00:24:49 +00003122/// vector of zero or undef vector. This produces a shuffle where the low
3123/// element of V2 is swizzled into the zero/undef vector, landing at element
3124/// 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 +00003125static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Cheng8c590372008-05-15 08:39:06 +00003126 bool isZero, bool HasSSE2,
3127 SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003128 DebugLoc dl = V2.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00003129 MVT VT = V2.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003130 SDValue V1 = isZero
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003131 ? getZeroVector(VT, HasSSE2, DAG, dl) : DAG.getUNDEF(VT);
Duncan Sands92c43912008-06-06 12:08:01 +00003132 unsigned NumElems = V2.getValueType().getVectorNumElements();
3133 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3134 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003135 SmallVector<SDValue, 16> MaskVec;
Chris Lattnere6aa3862007-11-25 00:24:49 +00003136 for (unsigned i = 0; i != NumElems; ++i)
3137 if (i == Idx) // If this is the insertion idx, put the low elt of V2 here.
3138 MaskVec.push_back(DAG.getConstant(NumElems, EVT));
3139 else
3140 MaskVec.push_back(DAG.getConstant(i, EVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00003141 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3142 &MaskVec[0], MaskVec.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00003143 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003144}
3145
Evan Chengdea99362008-05-29 08:22:04 +00003146/// getNumOfConsecutiveZeros - Return the number of elements in a result of
3147/// a shuffle that is zero.
3148static
Dan Gohman8181bd12008-07-27 21:46:04 +00003149unsigned getNumOfConsecutiveZeros(SDValue Op, SDValue Mask,
Evan Chengdea99362008-05-29 08:22:04 +00003150 unsigned NumElems, bool Low,
3151 SelectionDAG &DAG) {
3152 unsigned NumZeros = 0;
3153 for (unsigned i = 0; i < NumElems; ++i) {
Evan Cheng57db53b2008-06-25 20:52:59 +00003154 unsigned Index = Low ? i : NumElems-i-1;
Dan Gohman8181bd12008-07-27 21:46:04 +00003155 SDValue Idx = Mask.getOperand(Index);
Evan Chengdea99362008-05-29 08:22:04 +00003156 if (Idx.getOpcode() == ISD::UNDEF) {
3157 ++NumZeros;
3158 continue;
3159 }
Gabor Greif1c80d112008-08-28 21:40:38 +00003160 SDValue Elt = DAG.getShuffleScalarElt(Op.getNode(), Index);
3161 if (Elt.getNode() && isZeroNode(Elt))
Evan Chengdea99362008-05-29 08:22:04 +00003162 ++NumZeros;
3163 else
3164 break;
3165 }
3166 return NumZeros;
3167}
3168
3169/// isVectorShift - Returns true if the shuffle can be implemented as a
3170/// logical left or right shift of a vector.
Dan Gohman8181bd12008-07-27 21:46:04 +00003171static bool isVectorShift(SDValue Op, SDValue Mask, SelectionDAG &DAG,
3172 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Evan Chengdea99362008-05-29 08:22:04 +00003173 unsigned NumElems = Mask.getNumOperands();
3174
3175 isLeft = true;
3176 unsigned NumZeros= getNumOfConsecutiveZeros(Op, Mask, NumElems, true, DAG);
3177 if (!NumZeros) {
3178 isLeft = false;
3179 NumZeros = getNumOfConsecutiveZeros(Op, Mask, NumElems, false, DAG);
3180 if (!NumZeros)
3181 return false;
3182 }
3183
3184 bool SeenV1 = false;
3185 bool SeenV2 = false;
3186 for (unsigned i = NumZeros; i < NumElems; ++i) {
3187 unsigned Val = isLeft ? (i - NumZeros) : i;
Dan Gohman8181bd12008-07-27 21:46:04 +00003188 SDValue Idx = Mask.getOperand(isLeft ? i : (i - NumZeros));
Evan Chengdea99362008-05-29 08:22:04 +00003189 if (Idx.getOpcode() == ISD::UNDEF)
3190 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003191 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Chengdea99362008-05-29 08:22:04 +00003192 if (Index < NumElems)
3193 SeenV1 = true;
3194 else {
3195 Index -= NumElems;
3196 SeenV2 = true;
3197 }
3198 if (Index != Val)
3199 return false;
3200 }
3201 if (SeenV1 && SeenV2)
3202 return false;
3203
3204 ShVal = SeenV1 ? Op.getOperand(0) : Op.getOperand(1);
3205 ShAmt = NumZeros;
3206 return true;
3207}
3208
3209
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003210/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3211///
Dan Gohman8181bd12008-07-27 21:46:04 +00003212static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003213 unsigned NumNonZero, unsigned NumZero,
3214 SelectionDAG &DAG, TargetLowering &TLI) {
3215 if (NumNonZero > 8)
Dan Gohman8181bd12008-07-27 21:46:04 +00003216 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003217
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003218 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00003219 SDValue V(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003220 bool First = true;
3221 for (unsigned i = 0; i < 16; ++i) {
3222 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3223 if (ThisIsNonZero && First) {
3224 if (NumZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003225 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003226 else
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003227 V = DAG.getUNDEF(MVT::v8i16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003228 First = false;
3229 }
3230
3231 if ((i & 1) != 0) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003232 SDValue ThisElt(0, 0), LastElt(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003233 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3234 if (LastIsNonZero) {
Scott Michel91099d62009-02-17 22:15:04 +00003235 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00003236 MVT::i16, Op.getOperand(i-1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003237 }
3238 if (ThisIsNonZero) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003239 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3240 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003241 ThisElt, DAG.getConstant(8, MVT::i8));
3242 if (LastIsNonZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003243 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003244 } else
3245 ThisElt = LastElt;
3246
Gabor Greif1c80d112008-08-28 21:40:38 +00003247 if (ThisElt.getNode())
Dale Johannesence0805b2009-02-03 19:33:06 +00003248 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner5872a362008-01-17 07:00:52 +00003249 DAG.getIntPtrConstant(i/2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003250 }
3251 }
3252
Dale Johannesence0805b2009-02-03 19:33:06 +00003253 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003254}
3255
3256/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
3257///
Dan Gohman8181bd12008-07-27 21:46:04 +00003258static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003259 unsigned NumNonZero, unsigned NumZero,
3260 SelectionDAG &DAG, TargetLowering &TLI) {
3261 if (NumNonZero > 4)
Dan Gohman8181bd12008-07-27 21:46:04 +00003262 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003263
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003264 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00003265 SDValue V(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003266 bool First = true;
3267 for (unsigned i = 0; i < 8; ++i) {
3268 bool isNonZero = (NonZeros & (1 << i)) != 0;
3269 if (isNonZero) {
3270 if (First) {
3271 if (NumZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003272 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003273 else
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003274 V = DAG.getUNDEF(MVT::v8i16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003275 First = false;
3276 }
Scott Michel91099d62009-02-17 22:15:04 +00003277 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00003278 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner5872a362008-01-17 07:00:52 +00003279 DAG.getIntPtrConstant(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003280 }
3281 }
3282
3283 return V;
3284}
3285
Evan Chengdea99362008-05-29 08:22:04 +00003286/// getVShift - Return a vector logical shift node.
3287///
Dan Gohman8181bd12008-07-27 21:46:04 +00003288static SDValue getVShift(bool isLeft, MVT VT, SDValue SrcOp,
Evan Chengdea99362008-05-29 08:22:04 +00003289 unsigned NumBits, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003290 const TargetLowering &TLI, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003291 bool isMMX = VT.getSizeInBits() == 64;
3292 MVT ShVT = isMMX ? MVT::v1i64 : MVT::v2i64;
Evan Chengdea99362008-05-29 08:22:04 +00003293 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Dale Johannesence0805b2009-02-03 19:33:06 +00003294 SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp);
3295 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3296 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif825aa892008-08-28 23:19:51 +00003297 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengdea99362008-05-29 08:22:04 +00003298}
3299
Dan Gohman8181bd12008-07-27 21:46:04 +00003300SDValue
3301X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003302 DebugLoc dl = Op.getDebugLoc();
Chris Lattnere6aa3862007-11-25 00:24:49 +00003303 // All zero's are handled with pxor, all one's are handled with pcmpeqd.
Gabor Greif825aa892008-08-28 23:19:51 +00003304 if (ISD::isBuildVectorAllZeros(Op.getNode())
3305 || ISD::isBuildVectorAllOnes(Op.getNode())) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003306 // Canonicalize this to either <4 x i32> or <2 x i32> (SSE vs MMX) to
3307 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
3308 // eliminated on x86-32 hosts.
3309 if (Op.getValueType() == MVT::v4i32 || Op.getValueType() == MVT::v2i32)
3310 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003311
Gabor Greif1c80d112008-08-28 21:40:38 +00003312 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00003313 return getOnesVector(Op.getValueType(), DAG, dl);
3314 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattnere6aa3862007-11-25 00:24:49 +00003315 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003316
Duncan Sands92c43912008-06-06 12:08:01 +00003317 MVT VT = Op.getValueType();
3318 MVT EVT = VT.getVectorElementType();
3319 unsigned EVTBits = EVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003320
3321 unsigned NumElems = Op.getNumOperands();
3322 unsigned NumZero = 0;
3323 unsigned NumNonZero = 0;
3324 unsigned NonZeros = 0;
Chris Lattner92bdcb52008-03-08 22:48:29 +00003325 bool IsAllConstants = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00003326 SmallSet<SDValue, 8> Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003327 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003328 SDValue Elt = Op.getOperand(i);
Evan Chengc1073492007-12-12 06:45:40 +00003329 if (Elt.getOpcode() == ISD::UNDEF)
3330 continue;
3331 Values.insert(Elt);
3332 if (Elt.getOpcode() != ISD::Constant &&
3333 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattner92bdcb52008-03-08 22:48:29 +00003334 IsAllConstants = false;
Evan Chengc1073492007-12-12 06:45:40 +00003335 if (isZeroNode(Elt))
3336 NumZero++;
3337 else {
3338 NonZeros |= (1 << i);
3339 NumNonZero++;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003340 }
3341 }
3342
3343 if (NumNonZero == 0) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003344 // All undef vector. Return an UNDEF. All zero vectors were handled above.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003345 return DAG.getUNDEF(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003346 }
3347
Chris Lattner66a4dda2008-03-09 05:42:06 +00003348 // Special case for single non-zero, non-undef, element.
Evan Chengc1073492007-12-12 06:45:40 +00003349 if (NumNonZero == 1 && NumElems <= 4) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003350 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman8181bd12008-07-27 21:46:04 +00003351 SDValue Item = Op.getOperand(Idx);
Scott Michel91099d62009-02-17 22:15:04 +00003352
Chris Lattner2d91b962008-03-09 01:05:04 +00003353 // If this is an insertion of an i64 value on x86-32, and if the top bits of
3354 // the value are obviously zero, truncate the value to i32 and do the
3355 // insertion that way. Only do this if the value is non-constant or if the
3356 // value is a constant being inserted into element 0. It is cheaper to do
3357 // a constant pool load than it is to do a movd + shuffle.
3358 if (EVT == MVT::i64 && !Subtarget->is64Bit() &&
3359 (!IsAllConstants || Idx == 0)) {
3360 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
3361 // Handle MMX and SSE both.
Duncan Sands92c43912008-06-06 12:08:01 +00003362 MVT VecVT = VT == MVT::v2i64 ? MVT::v4i32 : MVT::v2i32;
3363 unsigned VecElts = VT == MVT::v2i64 ? 4 : 2;
Scott Michel91099d62009-02-17 22:15:04 +00003364
Chris Lattner2d91b962008-03-09 01:05:04 +00003365 // Truncate the value (which may itself be a constant) to i32, and
3366 // convert it to a vector with movd (S2V+shuffle to zero extend).
Dale Johannesence0805b2009-02-03 19:33:06 +00003367 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
3368 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Cheng8c590372008-05-15 08:39:06 +00003369 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3370 Subtarget->hasSSE2(), DAG);
Scott Michel91099d62009-02-17 22:15:04 +00003371
Chris Lattner2d91b962008-03-09 01:05:04 +00003372 // Now we have our 32-bit value zero extended in the low element of
3373 // a vector. If Idx != 0, swizzle it into place.
3374 if (Idx != 0) {
Scott Michel91099d62009-02-17 22:15:04 +00003375 SDValue Ops[] = {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003376 Item, DAG.getUNDEF(Item.getValueType()),
Dale Johannesence0805b2009-02-03 19:33:06 +00003377 getSwapEltZeroMask(VecElts, Idx, DAG, dl)
Chris Lattner2d91b962008-03-09 01:05:04 +00003378 };
Dale Johannesence0805b2009-02-03 19:33:06 +00003379 Item = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VecVT, Ops, 3);
Chris Lattner2d91b962008-03-09 01:05:04 +00003380 }
Dale Johannesence0805b2009-02-03 19:33:06 +00003381 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item);
Chris Lattner2d91b962008-03-09 01:05:04 +00003382 }
3383 }
Scott Michel91099d62009-02-17 22:15:04 +00003384
Chris Lattnerac914892008-03-08 22:59:52 +00003385 // If we have a constant or non-constant insertion into the low element of
3386 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
3387 // the rest of the elements. This will be matched as movd/movq/movss/movsd
3388 // depending on what the source datatype is. Because we can only get here
3389 // when NumElems <= 4, this only needs to handle i32/f32/i64/f64.
3390 if (Idx == 0 &&
3391 // Don't do this for i64 values on x86-32.
3392 (EVT != MVT::i64 || Subtarget->is64Bit())) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003393 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003394 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Evan Cheng8c590372008-05-15 08:39:06 +00003395 return getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3396 Subtarget->hasSSE2(), DAG);
Chris Lattner92bdcb52008-03-08 22:48:29 +00003397 }
Evan Chengdea99362008-05-29 08:22:04 +00003398
3399 // Is it a vector logical left shift?
3400 if (NumElems == 2 && Idx == 1 &&
3401 isZeroNode(Op.getOperand(0)) && !isZeroNode(Op.getOperand(1))) {
Duncan Sands92c43912008-06-06 12:08:01 +00003402 unsigned NumBits = VT.getSizeInBits();
Evan Chengdea99362008-05-29 08:22:04 +00003403 return getVShift(true, VT,
Scott Michel91099d62009-02-17 22:15:04 +00003404 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00003405 VT, Op.getOperand(1)),
Dale Johannesence0805b2009-02-03 19:33:06 +00003406 NumBits/2, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00003407 }
Scott Michel91099d62009-02-17 22:15:04 +00003408
Chris Lattner92bdcb52008-03-08 22:48:29 +00003409 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman8181bd12008-07-27 21:46:04 +00003410 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003411
Chris Lattnerac914892008-03-08 22:59:52 +00003412 // Otherwise, if this is a vector with i32 or f32 elements, and the element
3413 // is a non-constant being inserted into an element other than the low one,
3414 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
3415 // movd/movss) to move this into the low element, then shuffle it into
3416 // place.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003417 if (EVTBits == 32) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003418 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michel91099d62009-02-17 22:15:04 +00003419
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003420 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Cheng8c590372008-05-15 08:39:06 +00003421 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3422 Subtarget->hasSSE2(), DAG);
Duncan Sands92c43912008-06-06 12:08:01 +00003423 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3424 MVT MaskEVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003425 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003426 for (unsigned i = 0; i < NumElems; i++)
3427 MaskVec.push_back(DAG.getConstant((i == Idx) ? 0 : 1, MaskEVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00003428 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3429 &MaskVec[0], MaskVec.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00003430 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, Item,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003431 DAG.getUNDEF(VT), Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003432 }
3433 }
3434
Chris Lattner66a4dda2008-03-09 05:42:06 +00003435 // Splat is obviously ok. Let legalizer expand it to a shuffle.
3436 if (Values.size() == 1)
Dan Gohman8181bd12008-07-27 21:46:04 +00003437 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00003438
Dan Gohman21463242007-07-24 22:55:08 +00003439 // A vector full of immediates; various special cases are already
3440 // handled, so this is best done with a single constant-pool load.
Chris Lattner92bdcb52008-03-08 22:48:29 +00003441 if (IsAllConstants)
Dan Gohman8181bd12008-07-27 21:46:04 +00003442 return SDValue();
Dan Gohman21463242007-07-24 22:55:08 +00003443
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003444 // Let legalizer expand 2-wide build_vectors.
Evan Cheng40ee6e52008-05-08 00:57:18 +00003445 if (EVTBits == 64) {
3446 if (NumNonZero == 1) {
3447 // One half is zero or undef.
3448 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesence0805b2009-02-03 19:33:06 +00003449 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng40ee6e52008-05-08 00:57:18 +00003450 Op.getOperand(Idx));
Evan Cheng8c590372008-05-15 08:39:06 +00003451 return getShuffleVectorZeroOrUndef(V2, Idx, true,
3452 Subtarget->hasSSE2(), DAG);
Evan Cheng40ee6e52008-05-08 00:57:18 +00003453 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003454 return SDValue();
Evan Cheng40ee6e52008-05-08 00:57:18 +00003455 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003456
3457 // If element VT is < 32 bits, convert it to inserts into a zero vector.
3458 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003459 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003460 *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00003461 if (V.getNode()) return V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003462 }
3463
3464 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003465 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003466 *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00003467 if (V.getNode()) return V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003468 }
3469
3470 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman8181bd12008-07-27 21:46:04 +00003471 SmallVector<SDValue, 8> V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003472 V.resize(NumElems);
3473 if (NumElems == 4 && NumZero > 0) {
3474 for (unsigned i = 0; i < 4; ++i) {
3475 bool isZero = !(NonZeros & (1 << i));
3476 if (isZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003477 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003478 else
Dale Johannesence0805b2009-02-03 19:33:06 +00003479 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003480 }
3481
3482 for (unsigned i = 0; i < 2; ++i) {
3483 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
3484 default: break;
3485 case 0:
3486 V[i] = V[i*2]; // Must be a zero vector.
3487 break;
3488 case 1:
Dale Johannesence0805b2009-02-03 19:33:06 +00003489 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2+1], V[i*2],
3490 getMOVLMask(NumElems, DAG, dl));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003491 break;
3492 case 2:
Dale Johannesence0805b2009-02-03 19:33:06 +00003493 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2], V[i*2+1],
3494 getMOVLMask(NumElems, DAG, dl));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003495 break;
3496 case 3:
Dale Johannesence0805b2009-02-03 19:33:06 +00003497 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2], V[i*2+1],
3498 getUnpacklMask(NumElems, DAG, dl));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003499 break;
3500 }
3501 }
3502
Duncan Sands92c43912008-06-06 12:08:01 +00003503 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3504 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003505 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003506 bool Reverse = (NonZeros & 0x3) == 2;
3507 for (unsigned i = 0; i < 2; ++i)
3508 if (Reverse)
3509 MaskVec.push_back(DAG.getConstant(1-i, EVT));
3510 else
3511 MaskVec.push_back(DAG.getConstant(i, EVT));
3512 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
3513 for (unsigned i = 0; i < 2; ++i)
3514 if (Reverse)
3515 MaskVec.push_back(DAG.getConstant(1-i+NumElems, EVT));
3516 else
3517 MaskVec.push_back(DAG.getConstant(i+NumElems, EVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00003518 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3519 &MaskVec[0], MaskVec.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00003520 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[0], V[1], ShufMask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003521 }
3522
3523 if (Values.size() > 2) {
3524 // Expand into a number of unpckl*.
3525 // e.g. for v4f32
3526 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
3527 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
3528 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Dale Johannesence0805b2009-02-03 19:33:06 +00003529 SDValue UnpckMask = getUnpacklMask(NumElems, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003530 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesence0805b2009-02-03 19:33:06 +00003531 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003532 NumElems >>= 1;
3533 while (NumElems != 0) {
3534 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesence0805b2009-02-03 19:33:06 +00003535 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i], V[i + NumElems],
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003536 UnpckMask);
3537 NumElems >>= 1;
3538 }
3539 return V[0];
3540 }
3541
Dan Gohman8181bd12008-07-27 21:46:04 +00003542 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003543}
3544
Nate Begeman2c87c422009-02-23 08:49:38 +00003545// v8i16 shuffles - Prefer shuffles in the following order:
3546// 1. [all] pshuflw, pshufhw, optional move
3547// 2. [ssse3] 1 x pshufb
3548// 3. [ssse3] 2 x pshufb + 1 x por
3549// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Evan Chengfca29242007-12-07 08:07:39 +00003550static
Dan Gohman8181bd12008-07-27 21:46:04 +00003551SDValue LowerVECTOR_SHUFFLEv8i16(SDValue V1, SDValue V2,
Bill Wendling2c7cd592008-08-21 22:35:37 +00003552 SDValue PermMask, SelectionDAG &DAG,
Nate Begeman2c87c422009-02-23 08:49:38 +00003553 X86TargetLowering &TLI, DebugLoc dl) {
Gabor Greif1c80d112008-08-28 21:40:38 +00003554 SmallVector<SDValue, 8> MaskElts(PermMask.getNode()->op_begin(),
3555 PermMask.getNode()->op_end());
Nate Begeman2c87c422009-02-23 08:49:38 +00003556 SmallVector<int, 8> MaskVals;
Evan Cheng75184a92007-12-11 01:46:18 +00003557
Nate Begeman2c87c422009-02-23 08:49:38 +00003558 // Determine if more than 1 of the words in each of the low and high quadwords
3559 // of the result come from the same quadword of one of the two inputs. Undef
3560 // mask values count as coming from any quadword, for better codegen.
3561 SmallVector<unsigned, 4> LoQuad(4);
3562 SmallVector<unsigned, 4> HiQuad(4);
3563 BitVector InputQuads(4);
3564 for (unsigned i = 0; i < 8; ++i) {
3565 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Dan Gohman8181bd12008-07-27 21:46:04 +00003566 SDValue Elt = MaskElts[i];
Nate Begeman2c87c422009-02-23 08:49:38 +00003567 int EltIdx = Elt.getOpcode() == ISD::UNDEF ? -1 :
3568 cast<ConstantSDNode>(Elt)->getZExtValue();
3569 MaskVals.push_back(EltIdx);
3570 if (EltIdx < 0) {
3571 ++Quad[0];
3572 ++Quad[1];
3573 ++Quad[2];
3574 ++Quad[3];
Evan Cheng75184a92007-12-11 01:46:18 +00003575 continue;
Nate Begeman2c87c422009-02-23 08:49:38 +00003576 }
3577 ++Quad[EltIdx / 4];
3578 InputQuads.set(EltIdx / 4);
Evan Cheng75184a92007-12-11 01:46:18 +00003579 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003580
Nate Begeman2c87c422009-02-23 08:49:38 +00003581 int BestLoQuad = -1;
Evan Cheng75184a92007-12-11 01:46:18 +00003582 unsigned MaxQuad = 1;
3583 for (unsigned i = 0; i < 4; ++i) {
Nate Begeman2c87c422009-02-23 08:49:38 +00003584 if (LoQuad[i] > MaxQuad) {
3585 BestLoQuad = i;
3586 MaxQuad = LoQuad[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003587 }
Evan Chengfca29242007-12-07 08:07:39 +00003588 }
3589
Nate Begeman2c87c422009-02-23 08:49:38 +00003590 int BestHiQuad = -1;
Evan Cheng75184a92007-12-11 01:46:18 +00003591 MaxQuad = 1;
3592 for (unsigned i = 0; i < 4; ++i) {
Nate Begeman2c87c422009-02-23 08:49:38 +00003593 if (HiQuad[i] > MaxQuad) {
3594 BestHiQuad = i;
3595 MaxQuad = HiQuad[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003596 }
3597 }
3598
Nate Begeman2c87c422009-02-23 08:49:38 +00003599 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
3600 // of the two input vectors, shuffle them into one input vector so only a
3601 // single pshufb instruction is necessary. If There are more than 2 input
3602 // quads, disable the next transformation since it does not help SSSE3.
3603 bool V1Used = InputQuads[0] || InputQuads[1];
3604 bool V2Used = InputQuads[2] || InputQuads[3];
3605 if (TLI.getSubtarget()->hasSSSE3()) {
3606 if (InputQuads.count() == 2 && V1Used && V2Used) {
3607 BestLoQuad = InputQuads.find_first();
3608 BestHiQuad = InputQuads.find_next(BestLoQuad);
3609 }
3610 if (InputQuads.count() > 2) {
3611 BestLoQuad = -1;
3612 BestHiQuad = -1;
3613 }
3614 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003615
Nate Begeman2c87c422009-02-23 08:49:38 +00003616 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
3617 // the shuffle mask. If a quad is scored as -1, that means that it contains
3618 // words from all 4 input quadwords.
3619 SDValue NewV;
3620 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
3621 SmallVector<SDValue,8> MaskV;
3622 MaskV.push_back(DAG.getConstant(BestLoQuad < 0 ? 0 : BestLoQuad, MVT::i64));
3623 MaskV.push_back(DAG.getConstant(BestHiQuad < 0 ? 1 : BestHiQuad, MVT::i64));
Evan Cheng907a2d22009-02-25 22:49:59 +00003624 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64, &MaskV[0], 2);
Nate Begeman2c87c422009-02-23 08:49:38 +00003625
Dale Johannesence0805b2009-02-03 19:33:06 +00003626 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2i64,
Nate Begeman2c87c422009-02-23 08:49:38 +00003627 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1),
3628 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00003629 NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV);
Evan Cheng75184a92007-12-11 01:46:18 +00003630
Nate Begeman2c87c422009-02-23 08:49:38 +00003631 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
3632 // source words for the shuffle, to aid later transformations.
3633 bool AllWordsInNewV = true;
Mon P Wangb1db1202009-03-11 06:35:11 +00003634 bool InOrder[2] = { true, true };
Evan Cheng75184a92007-12-11 01:46:18 +00003635 for (unsigned i = 0; i != 8; ++i) {
Nate Begeman2c87c422009-02-23 08:49:38 +00003636 int idx = MaskVals[i];
Mon P Wangb1db1202009-03-11 06:35:11 +00003637 if (idx != (int)i)
3638 InOrder[i/4] = false;
Nate Begeman2c87c422009-02-23 08:49:38 +00003639 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng75184a92007-12-11 01:46:18 +00003640 continue;
Nate Begeman2c87c422009-02-23 08:49:38 +00003641 AllWordsInNewV = false;
3642 break;
Evan Cheng75184a92007-12-11 01:46:18 +00003643 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003644
Nate Begeman2c87c422009-02-23 08:49:38 +00003645 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
3646 if (AllWordsInNewV) {
3647 for (int i = 0; i != 8; ++i) {
3648 int idx = MaskVals[i];
3649 if (idx < 0)
Evan Cheng75184a92007-12-11 01:46:18 +00003650 continue;
Nate Begeman2c87c422009-02-23 08:49:38 +00003651 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
3652 if ((idx != i) && idx < 4)
3653 pshufhw = false;
3654 if ((idx != i) && idx > 3)
3655 pshuflw = false;
Evan Cheng75184a92007-12-11 01:46:18 +00003656 }
Nate Begeman2c87c422009-02-23 08:49:38 +00003657 V1 = NewV;
3658 V2Used = false;
3659 BestLoQuad = 0;
3660 BestHiQuad = 1;
Evan Chengfca29242007-12-07 08:07:39 +00003661 }
Evan Cheng75184a92007-12-11 01:46:18 +00003662
Nate Begeman2c87c422009-02-23 08:49:38 +00003663 // If we've eliminated the use of V2, and the new mask is a pshuflw or
3664 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wangb1db1202009-03-11 06:35:11 +00003665 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Nate Begeman2c87c422009-02-23 08:49:38 +00003666 MaskV.clear();
3667 for (unsigned i = 0; i != 8; ++i)
3668 MaskV.push_back((MaskVals[i] < 0) ? DAG.getUNDEF(MVT::i16)
3669 : DAG.getConstant(MaskVals[i],
3670 MVT::i16));
3671 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, NewV,
3672 DAG.getUNDEF(MVT::v8i16),
Evan Cheng907a2d22009-02-25 22:49:59 +00003673 DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i16,
3674 &MaskV[0], 8));
Evan Cheng75184a92007-12-11 01:46:18 +00003675 }
Evan Cheng75184a92007-12-11 01:46:18 +00003676 }
Nate Begeman2c87c422009-02-23 08:49:38 +00003677
3678 // If we have SSSE3, and all words of the result are from 1 input vector,
3679 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
3680 // is present, fall back to case 4.
3681 if (TLI.getSubtarget()->hasSSSE3()) {
3682 SmallVector<SDValue,16> pshufbMask;
3683
3684 // If we have elements from both input vectors, set the high bit of the
3685 // shuffle mask element to zero out elements that come from V2 in the V1
3686 // mask, and elements that come from V1 in the V2 mask, so that the two
3687 // results can be OR'd together.
3688 bool TwoInputs = V1Used && V2Used;
3689 for (unsigned i = 0; i != 8; ++i) {
3690 int EltIdx = MaskVals[i] * 2;
3691 if (TwoInputs && (EltIdx >= 16)) {
3692 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3693 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3694 continue;
3695 }
3696 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
3697 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
3698 }
3699 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V1);
3700 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00003701 DAG.getNode(ISD::BUILD_VECTOR, dl,
3702 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003703 if (!TwoInputs)
3704 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3705
3706 // Calculate the shuffle mask for the second input, shuffle it, and
3707 // OR it with the first shuffled input.
3708 pshufbMask.clear();
3709 for (unsigned i = 0; i != 8; ++i) {
3710 int EltIdx = MaskVals[i] * 2;
3711 if (EltIdx < 16) {
3712 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3713 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3714 continue;
3715 }
3716 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
3717 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
3718 }
3719 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V2);
3720 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00003721 DAG.getNode(ISD::BUILD_VECTOR, dl,
3722 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003723 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
3724 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3725 }
3726
3727 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
3728 // and update MaskVals with new element order.
3729 BitVector InOrder(8);
3730 if (BestLoQuad >= 0) {
3731 SmallVector<SDValue, 8> MaskV;
3732 for (int i = 0; i != 4; ++i) {
3733 int idx = MaskVals[i];
3734 if (idx < 0) {
3735 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3736 InOrder.set(i);
3737 } else if ((idx / 4) == BestLoQuad) {
3738 MaskV.push_back(DAG.getConstant(idx & 3, MVT::i16));
3739 InOrder.set(i);
3740 } else {
3741 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3742 }
3743 }
3744 for (unsigned i = 4; i != 8; ++i)
3745 MaskV.push_back(DAG.getConstant(i, MVT::i16));
3746 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, NewV,
3747 DAG.getUNDEF(MVT::v8i16),
Evan Cheng907a2d22009-02-25 22:49:59 +00003748 DAG.getNode(ISD::BUILD_VECTOR, dl,
3749 MVT::v8i16, &MaskV[0], 8));
Nate Begeman2c87c422009-02-23 08:49:38 +00003750 }
3751
3752 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
3753 // and update MaskVals with the new element order.
3754 if (BestHiQuad >= 0) {
3755 SmallVector<SDValue, 8> MaskV;
3756 for (unsigned i = 0; i != 4; ++i)
3757 MaskV.push_back(DAG.getConstant(i, MVT::i16));
3758 for (unsigned i = 4; i != 8; ++i) {
3759 int idx = MaskVals[i];
3760 if (idx < 0) {
3761 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3762 InOrder.set(i);
3763 } else if ((idx / 4) == BestHiQuad) {
3764 MaskV.push_back(DAG.getConstant((idx & 3) + 4, MVT::i16));
3765 InOrder.set(i);
3766 } else {
3767 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3768 }
3769 }
3770 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, NewV,
3771 DAG.getUNDEF(MVT::v8i16),
Evan Cheng907a2d22009-02-25 22:49:59 +00003772 DAG.getNode(ISD::BUILD_VECTOR, dl,
3773 MVT::v8i16, &MaskV[0], 8));
Nate Begeman2c87c422009-02-23 08:49:38 +00003774 }
3775
3776 // In case BestHi & BestLo were both -1, which means each quadword has a word
3777 // from each of the four input quadwords, calculate the InOrder bitvector now
3778 // before falling through to the insert/extract cleanup.
3779 if (BestLoQuad == -1 && BestHiQuad == -1) {
3780 NewV = V1;
3781 for (int i = 0; i != 8; ++i)
3782 if (MaskVals[i] < 0 || MaskVals[i] == i)
3783 InOrder.set(i);
3784 }
3785
3786 // The other elements are put in the right place using pextrw and pinsrw.
3787 for (unsigned i = 0; i != 8; ++i) {
3788 if (InOrder[i])
3789 continue;
3790 int EltIdx = MaskVals[i];
3791 if (EltIdx < 0)
3792 continue;
3793 SDValue ExtOp = (EltIdx < 8)
3794 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
3795 DAG.getIntPtrConstant(EltIdx))
3796 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
3797 DAG.getIntPtrConstant(EltIdx - 8));
3798 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
3799 DAG.getIntPtrConstant(i));
3800 }
3801 return NewV;
3802}
3803
3804// v16i8 shuffles - Prefer shuffles in the following order:
3805// 1. [ssse3] 1 x pshufb
3806// 2. [ssse3] 2 x pshufb + 1 x por
3807// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
3808static
3809SDValue LowerVECTOR_SHUFFLEv16i8(SDValue V1, SDValue V2,
3810 SDValue PermMask, SelectionDAG &DAG,
3811 X86TargetLowering &TLI, DebugLoc dl) {
3812 SmallVector<SDValue, 16> MaskElts(PermMask.getNode()->op_begin(),
3813 PermMask.getNode()->op_end());
3814 SmallVector<int, 16> MaskVals;
3815
3816 // If we have SSSE3, case 1 is generated when all result bytes come from
3817 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
3818 // present, fall back to case 3.
3819 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
3820 bool V1Only = true;
3821 bool V2Only = true;
3822 for (unsigned i = 0; i < 16; ++i) {
3823 SDValue Elt = MaskElts[i];
3824 int EltIdx = Elt.getOpcode() == ISD::UNDEF ? -1 :
3825 cast<ConstantSDNode>(Elt)->getZExtValue();
3826 MaskVals.push_back(EltIdx);
3827 if (EltIdx < 0)
3828 continue;
3829 if (EltIdx < 16)
3830 V2Only = false;
3831 else
3832 V1Only = false;
3833 }
3834
3835 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
3836 if (TLI.getSubtarget()->hasSSSE3()) {
3837 SmallVector<SDValue,16> pshufbMask;
3838
3839 // If all result elements are from one input vector, then only translate
3840 // undef mask values to 0x80 (zero out result) in the pshufb mask.
3841 //
3842 // Otherwise, we have elements from both input vectors, and must zero out
3843 // elements that come from V2 in the first mask, and V1 in the second mask
3844 // so that we can OR them together.
3845 bool TwoInputs = !(V1Only || V2Only);
3846 for (unsigned i = 0; i != 16; ++i) {
3847 int EltIdx = MaskVals[i];
3848 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
3849 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3850 continue;
3851 }
3852 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
3853 }
3854 // If all the elements are from V2, assign it to V1 and return after
3855 // building the first pshufb.
3856 if (V2Only)
3857 V1 = V2;
3858 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00003859 DAG.getNode(ISD::BUILD_VECTOR, dl,
3860 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003861 if (!TwoInputs)
3862 return V1;
3863
3864 // Calculate the shuffle mask for the second input, shuffle it, and
3865 // OR it with the first shuffled input.
3866 pshufbMask.clear();
3867 for (unsigned i = 0; i != 16; ++i) {
3868 int EltIdx = MaskVals[i];
3869 if (EltIdx < 16) {
3870 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3871 continue;
3872 }
3873 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
3874 }
3875 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00003876 DAG.getNode(ISD::BUILD_VECTOR, dl,
3877 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003878 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
3879 }
3880
3881 // No SSSE3 - Calculate in place words and then fix all out of place words
3882 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
3883 // the 16 different words that comprise the two doublequadword input vectors.
3884 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3885 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V2);
3886 SDValue NewV = V2Only ? V2 : V1;
3887 for (int i = 0; i != 8; ++i) {
3888 int Elt0 = MaskVals[i*2];
3889 int Elt1 = MaskVals[i*2+1];
3890
3891 // This word of the result is all undef, skip it.
3892 if (Elt0 < 0 && Elt1 < 0)
3893 continue;
3894
3895 // This word of the result is already in the correct place, skip it.
3896 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
3897 continue;
3898 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
3899 continue;
3900
3901 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
3902 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
3903 SDValue InsElt;
Mon P Wangd0cec7a2009-03-11 18:47:57 +00003904
3905 // If Elt0 and Elt1 are defined, are consecutive, and can be load
3906 // using a single extract together, load it and store it.
3907 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
3908 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
3909 DAG.getIntPtrConstant(Elt1 / 2));
3910 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
3911 DAG.getIntPtrConstant(i));
3912 continue;
3913 }
3914
Nate Begeman2c87c422009-02-23 08:49:38 +00003915 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wangd0cec7a2009-03-11 18:47:57 +00003916 // source byte is not also odd, shift the extracted word left 8 bits
3917 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begeman2c87c422009-02-23 08:49:38 +00003918 if (Elt1 >= 0) {
3919 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
3920 DAG.getIntPtrConstant(Elt1 / 2));
3921 if ((Elt1 & 1) == 0)
3922 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
3923 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wangd0cec7a2009-03-11 18:47:57 +00003924 else if (Elt0 >= 0)
3925 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
3926 DAG.getConstant(0xFF00, MVT::i16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003927 }
3928 // If Elt0 is defined, extract it from the appropriate source. If the
3929 // source byte is not also even, shift the extracted word right 8 bits. If
3930 // Elt1 was also defined, OR the extracted values together before
3931 // inserting them in the result.
3932 if (Elt0 >= 0) {
3933 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
3934 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
3935 if ((Elt0 & 1) != 0)
3936 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
3937 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wangd0cec7a2009-03-11 18:47:57 +00003938 else if (Elt1 >= 0)
3939 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
3940 DAG.getConstant(0x00FF, MVT::i16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003941 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
3942 : InsElt0;
3943 }
3944 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
3945 DAG.getIntPtrConstant(i));
3946 }
3947 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, NewV);
Evan Cheng75184a92007-12-11 01:46:18 +00003948}
3949
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003950/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
3951/// ones, or rewriting v4i32 / v2f32 as 2 wide ones if possible. This can be
3952/// done when every pair / quad of shuffle mask elements point to elements in
3953/// the right sequence. e.g.
Evan Cheng75184a92007-12-11 01:46:18 +00003954/// vector_shuffle <>, <>, < 3, 4, | 10, 11, | 0, 1, | 14, 15>
3955static
Dan Gohman8181bd12008-07-27 21:46:04 +00003956SDValue RewriteAsNarrowerShuffle(SDValue V1, SDValue V2,
Duncan Sands92c43912008-06-06 12:08:01 +00003957 MVT VT,
Dan Gohman8181bd12008-07-27 21:46:04 +00003958 SDValue PermMask, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003959 TargetLowering &TLI, DebugLoc dl) {
Evan Cheng75184a92007-12-11 01:46:18 +00003960 unsigned NumElems = PermMask.getNumOperands();
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003961 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Duncan Sands92c43912008-06-06 12:08:01 +00003962 MVT MaskVT = MVT::getIntVectorWithNumElements(NewWidth);
Duncan Sandsd3ace282008-07-21 10:20:31 +00003963 MVT MaskEltVT = MaskVT.getVectorElementType();
Duncan Sands92c43912008-06-06 12:08:01 +00003964 MVT NewVT = MaskVT;
3965 switch (VT.getSimpleVT()) {
3966 default: assert(false && "Unexpected!");
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003967 case MVT::v4f32: NewVT = MVT::v2f64; break;
3968 case MVT::v4i32: NewVT = MVT::v2i64; break;
3969 case MVT::v8i16: NewVT = MVT::v4i32; break;
3970 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003971 }
3972
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00003973 if (NewWidth == 2) {
Duncan Sands92c43912008-06-06 12:08:01 +00003974 if (VT.isInteger())
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003975 NewVT = MVT::v2i64;
3976 else
3977 NewVT = MVT::v2f64;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00003978 }
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003979 unsigned Scale = NumElems / NewWidth;
Dan Gohman8181bd12008-07-27 21:46:04 +00003980 SmallVector<SDValue, 8> MaskVec;
Evan Cheng75184a92007-12-11 01:46:18 +00003981 for (unsigned i = 0; i < NumElems; i += Scale) {
3982 unsigned StartIdx = ~0U;
3983 for (unsigned j = 0; j < Scale; ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003984 SDValue Elt = PermMask.getOperand(i+j);
Evan Cheng75184a92007-12-11 01:46:18 +00003985 if (Elt.getOpcode() == ISD::UNDEF)
3986 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003987 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003988 if (StartIdx == ~0U)
3989 StartIdx = EltIdx - (EltIdx % Scale);
3990 if (EltIdx != StartIdx + j)
Dan Gohman8181bd12008-07-27 21:46:04 +00003991 return SDValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003992 }
3993 if (StartIdx == ~0U)
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003994 MaskVec.push_back(DAG.getUNDEF(MaskEltVT));
Evan Cheng75184a92007-12-11 01:46:18 +00003995 else
Duncan Sandsd3ace282008-07-21 10:20:31 +00003996 MaskVec.push_back(DAG.getConstant(StartIdx / Scale, MaskEltVT));
Evan Chengfca29242007-12-07 08:07:39 +00003997 }
3998
Dale Johannesence0805b2009-02-03 19:33:06 +00003999 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1);
4000 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2);
4001 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, NewVT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004002 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4003 &MaskVec[0], MaskVec.size()));
Evan Chengfca29242007-12-07 08:07:39 +00004004}
4005
Evan Chenge9b9c672008-05-09 21:53:03 +00004006/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng40ee6e52008-05-08 00:57:18 +00004007///
Dan Gohman8181bd12008-07-27 21:46:04 +00004008static SDValue getVZextMovL(MVT VT, MVT OpVT,
4009 SDValue SrcOp, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00004010 const X86Subtarget *Subtarget, DebugLoc dl) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00004011 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
4012 LoadSDNode *LD = NULL;
Gabor Greif1c80d112008-08-28 21:40:38 +00004013 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng40ee6e52008-05-08 00:57:18 +00004014 LD = dyn_cast<LoadSDNode>(SrcOp);
4015 if (!LD) {
4016 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
4017 // instead.
Duncan Sands92c43912008-06-06 12:08:01 +00004018 MVT EVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Evan Cheng40ee6e52008-05-08 00:57:18 +00004019 if ((EVT != MVT::i64 || Subtarget->is64Bit()) &&
4020 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4021 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
4022 SrcOp.getOperand(0).getOperand(0).getValueType() == EVT) {
4023 // PR2108
4024 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Dale Johannesence0805b2009-02-03 19:33:06 +00004025 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4026 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4027 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4028 OpVT,
Gabor Greif825aa892008-08-28 23:19:51 +00004029 SrcOp.getOperand(0)
4030 .getOperand(0))));
Evan Cheng40ee6e52008-05-08 00:57:18 +00004031 }
4032 }
4033 }
4034
Dale Johannesence0805b2009-02-03 19:33:06 +00004035 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4036 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Scott Michel91099d62009-02-17 22:15:04 +00004037 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00004038 OpVT, SrcOp)));
Evan Cheng40ee6e52008-05-08 00:57:18 +00004039}
4040
Evan Chengf50554e2008-07-22 21:13:36 +00004041/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4042/// shuffles.
Dan Gohman8181bd12008-07-27 21:46:04 +00004043static SDValue
4044LowerVECTOR_SHUFFLE_4wide(SDValue V1, SDValue V2,
Dale Johannesence0805b2009-02-03 19:33:06 +00004045 SDValue PermMask, MVT VT, SelectionDAG &DAG,
4046 DebugLoc dl) {
Evan Chengf50554e2008-07-22 21:13:36 +00004047 MVT MaskVT = PermMask.getValueType();
4048 MVT MaskEVT = MaskVT.getVectorElementType();
4049 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola4e3ff5a2008-08-28 18:32:53 +00004050 Locs.resize(4);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004051 SmallVector<SDValue, 8> Mask1(4, DAG.getUNDEF(MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00004052 unsigned NumHi = 0;
4053 unsigned NumLo = 0;
Evan Chengf50554e2008-07-22 21:13:36 +00004054 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004055 SDValue Elt = PermMask.getOperand(i);
Evan Chengf50554e2008-07-22 21:13:36 +00004056 if (Elt.getOpcode() == ISD::UNDEF) {
4057 Locs[i] = std::make_pair(-1, -1);
4058 } else {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004059 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohmance57fd92008-08-04 23:09:15 +00004060 assert(Val < 8 && "Invalid VECTOR_SHUFFLE index!");
Evan Chengf50554e2008-07-22 21:13:36 +00004061 if (Val < 4) {
4062 Locs[i] = std::make_pair(0, NumLo);
4063 Mask1[NumLo] = Elt;
4064 NumLo++;
4065 } else {
4066 Locs[i] = std::make_pair(1, NumHi);
4067 if (2+NumHi < 4)
4068 Mask1[2+NumHi] = Elt;
4069 NumHi++;
4070 }
4071 }
4072 }
Evan Cheng3cae0332008-07-23 00:22:17 +00004073
Evan Chengf50554e2008-07-22 21:13:36 +00004074 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng3cae0332008-07-23 00:22:17 +00004075 // If no more than two elements come from either vector. This can be
4076 // implemented with two shuffles. First shuffle gather the elements.
4077 // The second shuffle, which takes the first shuffle as both of its
4078 // vector operands, put the elements into the right order.
Dale Johannesence0805b2009-02-03 19:33:06 +00004079 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004080 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4081 &Mask1[0], Mask1.size()));
Evan Cheng3cae0332008-07-23 00:22:17 +00004082
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004083 SmallVector<SDValue, 8> Mask2(4, DAG.getUNDEF(MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00004084 for (unsigned i = 0; i != 4; ++i) {
4085 if (Locs[i].first == -1)
4086 continue;
4087 else {
4088 unsigned Idx = (i < 2) ? 0 : 4;
4089 Idx += Locs[i].first * 2 + Locs[i].second;
4090 Mask2[i] = DAG.getConstant(Idx, MaskEVT);
4091 }
4092 }
4093
Dale Johannesence0805b2009-02-03 19:33:06 +00004094 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00004095 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4096 &Mask2[0], Mask2.size()));
Evan Cheng3cae0332008-07-23 00:22:17 +00004097 } else if (NumLo == 3 || NumHi == 3) {
4098 // Otherwise, we must have three elements from one vector, call it X, and
4099 // one element from the other, call it Y. First, use a shufps to build an
4100 // intermediate vector with the one element from Y and the element from X
4101 // that will be in the same half in the final destination (the indexes don't
4102 // matter). Then, use a shufps to build the final vector, taking the half
4103 // containing the element from Y from the intermediate, and the other half
4104 // from X.
4105 if (NumHi == 3) {
4106 // Normalize it so the 3 elements come from V1.
Dale Johannesence0805b2009-02-03 19:33:06 +00004107 PermMask = CommuteVectorShuffleMask(PermMask, DAG, dl);
Evan Cheng3cae0332008-07-23 00:22:17 +00004108 std::swap(V1, V2);
4109 }
4110
4111 // Find the element from V2.
4112 unsigned HiIndex;
4113 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004114 SDValue Elt = PermMask.getOperand(HiIndex);
Evan Cheng3cae0332008-07-23 00:22:17 +00004115 if (Elt.getOpcode() == ISD::UNDEF)
4116 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004117 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng3cae0332008-07-23 00:22:17 +00004118 if (Val >= 4)
4119 break;
4120 }
4121
4122 Mask1[0] = PermMask.getOperand(HiIndex);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004123 Mask1[1] = DAG.getUNDEF(MaskEVT);
Evan Cheng3cae0332008-07-23 00:22:17 +00004124 Mask1[2] = PermMask.getOperand(HiIndex^1);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004125 Mask1[3] = DAG.getUNDEF(MaskEVT);
Dale Johannesence0805b2009-02-03 19:33:06 +00004126 V2 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004127 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &Mask1[0], 4));
Evan Cheng3cae0332008-07-23 00:22:17 +00004128
4129 if (HiIndex >= 2) {
4130 Mask1[0] = PermMask.getOperand(0);
4131 Mask1[1] = PermMask.getOperand(1);
4132 Mask1[2] = DAG.getConstant(HiIndex & 1 ? 6 : 4, MaskEVT);
4133 Mask1[3] = DAG.getConstant(HiIndex & 1 ? 4 : 6, MaskEVT);
Dale Johannesence0805b2009-02-03 19:33:06 +00004134 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004135 DAG.getNode(ISD::BUILD_VECTOR, dl,
4136 MaskVT, &Mask1[0], 4));
Evan Cheng3cae0332008-07-23 00:22:17 +00004137 } else {
4138 Mask1[0] = DAG.getConstant(HiIndex & 1 ? 2 : 0, MaskEVT);
4139 Mask1[1] = DAG.getConstant(HiIndex & 1 ? 0 : 2, MaskEVT);
4140 Mask1[2] = PermMask.getOperand(2);
4141 Mask1[3] = PermMask.getOperand(3);
4142 if (Mask1[2].getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004143 Mask1[2] =
4144 DAG.getConstant(cast<ConstantSDNode>(Mask1[2])->getZExtValue()+4,
4145 MaskEVT);
Evan Cheng3cae0332008-07-23 00:22:17 +00004146 if (Mask1[3].getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004147 Mask1[3] =
4148 DAG.getConstant(cast<ConstantSDNode>(Mask1[3])->getZExtValue()+4,
4149 MaskEVT);
Dale Johannesence0805b2009-02-03 19:33:06 +00004150 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V2, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00004151 DAG.getNode(ISD::BUILD_VECTOR, dl,
4152 MaskVT, &Mask1[0], 4));
Evan Cheng3cae0332008-07-23 00:22:17 +00004153 }
Evan Chengf50554e2008-07-22 21:13:36 +00004154 }
4155
4156 // Break it into (shuffle shuffle_hi, shuffle_lo).
4157 Locs.clear();
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004158 SmallVector<SDValue,8> LoMask(4, DAG.getUNDEF(MaskEVT));
4159 SmallVector<SDValue,8> HiMask(4, DAG.getUNDEF(MaskEVT));
Dan Gohman8181bd12008-07-27 21:46:04 +00004160 SmallVector<SDValue,8> *MaskPtr = &LoMask;
Evan Chengf50554e2008-07-22 21:13:36 +00004161 unsigned MaskIdx = 0;
4162 unsigned LoIdx = 0;
4163 unsigned HiIdx = 2;
4164 for (unsigned i = 0; i != 4; ++i) {
4165 if (i == 2) {
4166 MaskPtr = &HiMask;
4167 MaskIdx = 1;
4168 LoIdx = 0;
4169 HiIdx = 2;
4170 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004171 SDValue Elt = PermMask.getOperand(i);
Evan Chengf50554e2008-07-22 21:13:36 +00004172 if (Elt.getOpcode() == ISD::UNDEF) {
4173 Locs[i] = std::make_pair(-1, -1);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004174 } else if (cast<ConstantSDNode>(Elt)->getZExtValue() < 4) {
Evan Chengf50554e2008-07-22 21:13:36 +00004175 Locs[i] = std::make_pair(MaskIdx, LoIdx);
4176 (*MaskPtr)[LoIdx] = Elt;
4177 LoIdx++;
4178 } else {
4179 Locs[i] = std::make_pair(MaskIdx, HiIdx);
4180 (*MaskPtr)[HiIdx] = Elt;
4181 HiIdx++;
4182 }
4183 }
4184
Dale Johannesence0805b2009-02-03 19:33:06 +00004185 SDValue LoShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004186 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengf50554e2008-07-22 21:13:36 +00004187 &LoMask[0], LoMask.size()));
Dale Johannesence0805b2009-02-03 19:33:06 +00004188 SDValue HiShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004189 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengf50554e2008-07-22 21:13:36 +00004190 &HiMask[0], HiMask.size()));
Dan Gohman8181bd12008-07-27 21:46:04 +00004191 SmallVector<SDValue, 8> MaskOps;
Evan Chengf50554e2008-07-22 21:13:36 +00004192 for (unsigned i = 0; i != 4; ++i) {
4193 if (Locs[i].first == -1) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004194 MaskOps.push_back(DAG.getUNDEF(MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00004195 } else {
4196 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
4197 MaskOps.push_back(DAG.getConstant(Idx, MaskEVT));
4198 }
4199 }
Dale Johannesence0805b2009-02-03 19:33:06 +00004200 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, LoShuffle, HiShuffle,
Evan Cheng907a2d22009-02-25 22:49:59 +00004201 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4202 &MaskOps[0], MaskOps.size()));
Evan Chengf50554e2008-07-22 21:13:36 +00004203}
4204
Dan Gohman8181bd12008-07-27 21:46:04 +00004205SDValue
4206X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
4207 SDValue V1 = Op.getOperand(0);
4208 SDValue V2 = Op.getOperand(1);
4209 SDValue PermMask = Op.getOperand(2);
Duncan Sands92c43912008-06-06 12:08:01 +00004210 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004211 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004212 unsigned NumElems = PermMask.getNumOperands();
Duncan Sands92c43912008-06-06 12:08:01 +00004213 bool isMMX = VT.getSizeInBits() == 64;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004214 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
4215 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
4216 bool V1IsSplat = false;
4217 bool V2IsSplat = false;
4218
Nate Begeman2c87c422009-02-23 08:49:38 +00004219 // FIXME: Check for legal shuffle and return?
4220
Gabor Greif1c80d112008-08-28 21:40:38 +00004221 if (isUndefShuffle(Op.getNode()))
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004222 return DAG.getUNDEF(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004223
Gabor Greif1c80d112008-08-28 21:40:38 +00004224 if (isZeroShuffle(Op.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00004225 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004226
Gabor Greif1c80d112008-08-28 21:40:38 +00004227 if (isIdentityMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004228 return V1;
Gabor Greif1c80d112008-08-28 21:40:38 +00004229 else if (isIdentityMask(PermMask.getNode(), true))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004230 return V2;
4231
Evan Chengae6c9212008-09-25 23:35:16 +00004232 // Canonicalize movddup shuffles.
4233 if (V2IsUndef && Subtarget->hasSSE2() &&
Evan Chengbdd9d9f2008-10-06 21:13:08 +00004234 VT.getSizeInBits() == 128 &&
Evan Chengae6c9212008-09-25 23:35:16 +00004235 X86::isMOVDDUPMask(PermMask.getNode()))
4236 return CanonicalizeMovddup(Op, V1, PermMask, DAG, Subtarget->hasSSE3());
4237
Gabor Greif1c80d112008-08-28 21:40:38 +00004238 if (isSplatMask(PermMask.getNode())) {
Evan Chengbf8b2c52008-04-05 00:30:36 +00004239 if (isMMX || NumElems < 4) return Op;
4240 // Promote it to a v4{if}32 splat.
4241 return PromoteSplat(Op, DAG, Subtarget->hasSSE2());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004242 }
4243
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004244 // If the shuffle can be profitably rewritten as a narrower shuffle, then
4245 // do it!
4246 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004247 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask, DAG,
4248 *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004249 if (NewOp.getNode())
Scott Michel91099d62009-02-17 22:15:04 +00004250 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Dale Johannesence0805b2009-02-03 19:33:06 +00004251 LowerVECTOR_SHUFFLE(NewOp, DAG));
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004252 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
4253 // FIXME: Figure out a cleaner way to do this.
4254 // Try to make use of movq to zero out the top part.
Gabor Greif1c80d112008-08-28 21:40:38 +00004255 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004256 SDValue NewOp = RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Dale Johannesence0805b2009-02-03 19:33:06 +00004257 DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004258 if (NewOp.getNode()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004259 SDValue NewV1 = NewOp.getOperand(0);
4260 SDValue NewV2 = NewOp.getOperand(1);
4261 SDValue NewMask = NewOp.getOperand(2);
Gabor Greif1c80d112008-08-28 21:40:38 +00004262 if (isCommutedMOVL(NewMask.getNode(), true, false)) {
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004263 NewOp = CommuteVectorShuffle(NewOp, NewV1, NewV2, NewMask, DAG);
Dale Johannesence0805b2009-02-03 19:33:06 +00004264 return getVZextMovL(VT, NewOp.getValueType(), NewV2, DAG, Subtarget,
4265 dl);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004266 }
4267 }
Gabor Greif1c80d112008-08-28 21:40:38 +00004268 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004269 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Dale Johannesence0805b2009-02-03 19:33:06 +00004270 DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004271 if (NewOp.getNode() && X86::isMOVLMask(NewOp.getOperand(2).getNode()))
Evan Chenge9b9c672008-05-09 21:53:03 +00004272 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
Dale Johannesence0805b2009-02-03 19:33:06 +00004273 DAG, Subtarget, dl);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004274 }
4275 }
4276
Evan Chengdea99362008-05-29 08:22:04 +00004277 // Check if this can be converted into a logical shift.
4278 bool isLeft = false;
4279 unsigned ShAmt = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00004280 SDValue ShVal;
Evan Chengdea99362008-05-29 08:22:04 +00004281 bool isShift = isVectorShift(Op, PermMask, DAG, isLeft, ShVal, ShAmt);
4282 if (isShift && ShVal.hasOneUse()) {
Scott Michel91099d62009-02-17 22:15:04 +00004283 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengdea99362008-05-29 08:22:04 +00004284 // v_set0 + movlhps or movhlps, etc.
Duncan Sands92c43912008-06-06 12:08:01 +00004285 MVT EVT = VT.getVectorElementType();
4286 ShAmt *= EVT.getSizeInBits();
Dale Johannesence0805b2009-02-03 19:33:06 +00004287 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00004288 }
4289
Gabor Greif1c80d112008-08-28 21:40:38 +00004290 if (X86::isMOVLMask(PermMask.getNode())) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00004291 if (V1IsUndef)
4292 return V2;
Gabor Greif1c80d112008-08-28 21:40:38 +00004293 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00004294 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Nate Begeman6357f9d2008-07-25 19:05:58 +00004295 if (!isMMX)
4296 return Op;
Evan Cheng40ee6e52008-05-08 00:57:18 +00004297 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004298
Gabor Greif1c80d112008-08-28 21:40:38 +00004299 if (!isMMX && (X86::isMOVSHDUPMask(PermMask.getNode()) ||
4300 X86::isMOVSLDUPMask(PermMask.getNode()) ||
4301 X86::isMOVHLPSMask(PermMask.getNode()) ||
4302 X86::isMOVHPMask(PermMask.getNode()) ||
4303 X86::isMOVLPMask(PermMask.getNode())))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004304 return Op;
4305
Gabor Greif1c80d112008-08-28 21:40:38 +00004306 if (ShouldXformToMOVHLPS(PermMask.getNode()) ||
4307 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004308 return CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4309
Evan Chengdea99362008-05-29 08:22:04 +00004310 if (isShift) {
4311 // No better options. Use a vshl / vsrl.
Duncan Sands92c43912008-06-06 12:08:01 +00004312 MVT EVT = VT.getVectorElementType();
4313 ShAmt *= EVT.getSizeInBits();
Dale Johannesence0805b2009-02-03 19:33:06 +00004314 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00004315 }
4316
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004317 bool Commuted = false;
Chris Lattnere6aa3862007-11-25 00:24:49 +00004318 // FIXME: This should also accept a bitcast of a splat? Be careful, not
4319 // 1,1,1,1 -> v8i16 though.
Gabor Greif1c80d112008-08-28 21:40:38 +00004320 V1IsSplat = isSplatVector(V1.getNode());
4321 V2IsSplat = isSplatVector(V2.getNode());
Scott Michel91099d62009-02-17 22:15:04 +00004322
Chris Lattnere6aa3862007-11-25 00:24:49 +00004323 // Canonicalize the splat or undef, if present, to be on the RHS.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004324 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
4325 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4326 std::swap(V1IsSplat, V2IsSplat);
4327 std::swap(V1IsUndef, V2IsUndef);
4328 Commuted = true;
4329 }
4330
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004331 // FIXME: Figure out a cleaner way to do this.
Gabor Greif1c80d112008-08-28 21:40:38 +00004332 if (isCommutedMOVL(PermMask.getNode(), V2IsSplat, V2IsUndef)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004333 if (V2IsUndef) return V1;
4334 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4335 if (V2IsSplat) {
4336 // V2 is a splat, so the mask may be malformed. That is, it may point
4337 // to any V2 element. The instruction selectior won't like this. Get
4338 // a corrected mask and commute to form a proper MOVS{S|D}.
Dale Johannesence0805b2009-02-03 19:33:06 +00004339 SDValue NewMask = getMOVLMask(NumElems, DAG, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004340 if (NewMask.getNode() != PermMask.getNode())
Dale Johannesence0805b2009-02-03 19:33:06 +00004341 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004342 }
4343 return Op;
4344 }
4345
Gabor Greif1c80d112008-08-28 21:40:38 +00004346 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4347 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4348 X86::isUNPCKLMask(PermMask.getNode()) ||
4349 X86::isUNPCKHMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004350 return Op;
4351
4352 if (V2IsSplat) {
4353 // Normalize mask so all entries that point to V2 points to its first
4354 // element then try to match unpck{h|l} again. If match, return a
4355 // new vector_shuffle with the corrected mask.
Dan Gohman8181bd12008-07-27 21:46:04 +00004356 SDValue NewMask = NormalizeMask(PermMask, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004357 if (NewMask.getNode() != PermMask.getNode()) {
Mon P Wang56d91642009-02-04 01:16:59 +00004358 if (X86::isUNPCKLMask(NewMask.getNode(), true)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004359 SDValue NewMask = getUnpacklMask(NumElems, DAG, dl);
4360 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Mon P Wang56d91642009-02-04 01:16:59 +00004361 } else if (X86::isUNPCKHMask(NewMask.getNode(), true)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004362 SDValue NewMask = getUnpackhMask(NumElems, DAG, dl);
4363 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004364 }
4365 }
4366 }
4367
4368 // Normalize the node to match x86 shuffle ops if needed
Gabor Greif1c80d112008-08-28 21:40:38 +00004369 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004370 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4371
4372 if (Commuted) {
4373 // Commute is back and try unpck* again.
4374 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004375 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4376 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4377 X86::isUNPCKLMask(PermMask.getNode()) ||
4378 X86::isUNPCKHMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004379 return Op;
4380 }
4381
Nate Begeman2c87c422009-02-23 08:49:38 +00004382 // FIXME: for mmx, bitcast v2i32 to v4i16 for shuffle.
Evan Chengbf8b2c52008-04-05 00:30:36 +00004383 // Try PSHUF* first, then SHUFP*.
4384 // MMX doesn't have PSHUFD but it does have PSHUFW. While it's theoretically
4385 // possible to shuffle a v2i32 using PSHUFW, that's not yet implemented.
Gabor Greif1c80d112008-08-28 21:40:38 +00004386 if (isMMX && NumElems == 4 && X86::isPSHUFDMask(PermMask.getNode())) {
Evan Chengbf8b2c52008-04-05 00:30:36 +00004387 if (V2.getOpcode() != ISD::UNDEF)
Dale Johannesence0805b2009-02-03 19:33:06 +00004388 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004389 DAG.getUNDEF(VT), PermMask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00004390 return Op;
4391 }
4392
4393 if (!isMMX) {
4394 if (Subtarget->hasSSE2() &&
Gabor Greif1c80d112008-08-28 21:40:38 +00004395 (X86::isPSHUFDMask(PermMask.getNode()) ||
4396 X86::isPSHUFHWMask(PermMask.getNode()) ||
4397 X86::isPSHUFLWMask(PermMask.getNode()))) {
Duncan Sands92c43912008-06-06 12:08:01 +00004398 MVT RVT = VT;
Evan Chengbf8b2c52008-04-05 00:30:36 +00004399 if (VT == MVT::v4f32) {
4400 RVT = MVT::v4i32;
Dale Johannesence0805b2009-02-03 19:33:06 +00004401 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, RVT,
4402 DAG.getNode(ISD::BIT_CONVERT, dl, RVT, V1),
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004403 DAG.getUNDEF(RVT), PermMask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00004404 } else if (V2.getOpcode() != ISD::UNDEF)
Dale Johannesence0805b2009-02-03 19:33:06 +00004405 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, RVT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004406 DAG.getUNDEF(RVT), PermMask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00004407 if (RVT != VT)
Dale Johannesence0805b2009-02-03 19:33:06 +00004408 Op = DAG.getNode(ISD::BIT_CONVERT, dl, VT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004409 return Op;
4410 }
4411
Evan Chengbf8b2c52008-04-05 00:30:36 +00004412 // Binary or unary shufps.
Gabor Greif1c80d112008-08-28 21:40:38 +00004413 if (X86::isSHUFPMask(PermMask.getNode()) ||
4414 (V2.getOpcode() == ISD::UNDEF && X86::isPSHUFDMask(PermMask.getNode())))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004415 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004416 }
4417
Evan Cheng75184a92007-12-11 01:46:18 +00004418 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
4419 if (VT == MVT::v8i16) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004420 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(V1, V2, PermMask, DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004421 if (NewOp.getNode())
Evan Cheng75184a92007-12-11 01:46:18 +00004422 return NewOp;
4423 }
4424
Nate Begeman2c87c422009-02-23 08:49:38 +00004425 if (VT == MVT::v16i8) {
4426 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(V1, V2, PermMask, DAG, *this, dl);
4427 if (NewOp.getNode())
4428 return NewOp;
4429 }
4430
Evan Chengf50554e2008-07-22 21:13:36 +00004431 // Handle all 4 wide cases with a number of shuffles except for MMX.
4432 if (NumElems == 4 && !isMMX)
Dale Johannesence0805b2009-02-03 19:33:06 +00004433 return LowerVECTOR_SHUFFLE_4wide(V1, V2, PermMask, VT, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004434
Dan Gohman8181bd12008-07-27 21:46:04 +00004435 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004436}
4437
Dan Gohman8181bd12008-07-27 21:46:04 +00004438SDValue
4439X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Nate Begemand77e59e2008-02-11 04:19:36 +00004440 SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004441 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004442 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00004443 if (VT.getSizeInBits() == 8) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004444 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begemand77e59e2008-02-11 04:19:36 +00004445 Op.getOperand(0), Op.getOperand(1));
Dale Johannesence0805b2009-02-03 19:33:06 +00004446 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begemand77e59e2008-02-11 04:19:36 +00004447 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004448 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands92c43912008-06-06 12:08:01 +00004449 } else if (VT.getSizeInBits() == 16) {
Evan Chengf9393b32009-01-02 05:29:08 +00004450 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
4451 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
4452 if (Idx == 0)
Dale Johannesence0805b2009-02-03 19:33:06 +00004453 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4454 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
4455 DAG.getNode(ISD::BIT_CONVERT, dl,
4456 MVT::v4i32,
Evan Chengf9393b32009-01-02 05:29:08 +00004457 Op.getOperand(0)),
4458 Op.getOperand(1)));
Dale Johannesence0805b2009-02-03 19:33:06 +00004459 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begemand77e59e2008-02-11 04:19:36 +00004460 Op.getOperand(0), Op.getOperand(1));
Dale Johannesence0805b2009-02-03 19:33:06 +00004461 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begemand77e59e2008-02-11 04:19:36 +00004462 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004463 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Evan Cheng6c249332008-03-24 21:52:23 +00004464 } else if (VT == MVT::f32) {
4465 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
4466 // the result back to FR32 register. It's only worth matching if the
Dan Gohman9fdd0142008-10-31 00:57:24 +00004467 // result has a single use which is a store or a bitcast to i32. And in
4468 // the case of a store, it's not worth it if the index is a constant 0,
4469 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng6c249332008-03-24 21:52:23 +00004470 if (!Op.hasOneUse())
Dan Gohman8181bd12008-07-27 21:46:04 +00004471 return SDValue();
Gabor Greif1c80d112008-08-28 21:40:38 +00004472 SDNode *User = *Op.getNode()->use_begin();
Dan Gohman9fdd0142008-10-31 00:57:24 +00004473 if ((User->getOpcode() != ISD::STORE ||
4474 (isa<ConstantSDNode>(Op.getOperand(1)) &&
4475 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman788db592008-04-16 02:32:24 +00004476 (User->getOpcode() != ISD::BIT_CONVERT ||
4477 User->getValueType(0) != MVT::i32))
Dan Gohman8181bd12008-07-27 21:46:04 +00004478 return SDValue();
Dale Johannesence0805b2009-02-03 19:33:06 +00004479 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michel91099d62009-02-17 22:15:04 +00004480 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32,
Dale Johannesence0805b2009-02-03 19:33:06 +00004481 Op.getOperand(0)),
4482 Op.getOperand(1));
4483 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract);
Mon P Wangac2a3c52009-01-15 21:10:20 +00004484 } else if (VT == MVT::i32) {
4485 // ExtractPS works with constant index.
4486 if (isa<ConstantSDNode>(Op.getOperand(1)))
4487 return Op;
Nate Begemand77e59e2008-02-11 04:19:36 +00004488 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004489 return SDValue();
Nate Begemand77e59e2008-02-11 04:19:36 +00004490}
4491
4492
Dan Gohman8181bd12008-07-27 21:46:04 +00004493SDValue
4494X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004495 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman8181bd12008-07-27 21:46:04 +00004496 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004497
Evan Cheng6c249332008-03-24 21:52:23 +00004498 if (Subtarget->hasSSE41()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004499 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004500 if (Res.getNode())
Evan Cheng6c249332008-03-24 21:52:23 +00004501 return Res;
4502 }
Nate Begemand77e59e2008-02-11 04:19:36 +00004503
Duncan Sands92c43912008-06-06 12:08:01 +00004504 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004505 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004506 // TODO: handle v16i8.
Duncan Sands92c43912008-06-06 12:08:01 +00004507 if (VT.getSizeInBits() == 16) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004508 SDValue Vec = Op.getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004509 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00004510 if (Idx == 0)
Dale Johannesence0805b2009-02-03 19:33:06 +00004511 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4512 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michel91099d62009-02-17 22:15:04 +00004513 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00004514 MVT::v4i32, Vec),
Evan Cheng75184a92007-12-11 01:46:18 +00004515 Op.getOperand(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004516 // Transform it so it match pextrw which produces a 32-bit result.
Duncan Sands92c43912008-06-06 12:08:01 +00004517 MVT EVT = (MVT::SimpleValueType)(VT.getSimpleVT()+1);
Dale Johannesence0805b2009-02-03 19:33:06 +00004518 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004519 Op.getOperand(0), Op.getOperand(1));
Dale Johannesence0805b2009-02-03 19:33:06 +00004520 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EVT, Extract,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004521 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004522 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands92c43912008-06-06 12:08:01 +00004523 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004524 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004525 if (Idx == 0)
4526 return Op;
4527 // SHUFPS the element to the lowest double word, then movss.
Duncan Sands92c43912008-06-06 12:08:01 +00004528 MVT MaskVT = MVT::getIntVectorWithNumElements(4);
Dan Gohman8181bd12008-07-27 21:46:04 +00004529 SmallVector<SDValue, 8> IdxVec;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004530 IdxVec.
Duncan Sands92c43912008-06-06 12:08:01 +00004531 push_back(DAG.getConstant(Idx, MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004532 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004533 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004534 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004535 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004536 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004537 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Evan Cheng907a2d22009-02-25 22:49:59 +00004538 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4539 &IdxVec[0], IdxVec.size());
Dan Gohman8181bd12008-07-27 21:46:04 +00004540 SDValue Vec = Op.getOperand(0);
Dale Johannesence0805b2009-02-03 19:33:06 +00004541 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Vec.getValueType(),
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004542 Vec, DAG.getUNDEF(Vec.getValueType()), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00004543 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00004544 DAG.getIntPtrConstant(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004545 } else if (VT.getSizeInBits() == 64) {
Nate Begemand77e59e2008-02-11 04:19:36 +00004546 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
4547 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
4548 // to match extract_elt for f64.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004549 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004550 if (Idx == 0)
4551 return Op;
4552
4553 // UNPCKHPD the element to the lowest double word, then movsd.
4554 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
4555 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Duncan Sandsd3ace282008-07-21 10:20:31 +00004556 MVT MaskVT = MVT::getIntVectorWithNumElements(2);
Dan Gohman8181bd12008-07-27 21:46:04 +00004557 SmallVector<SDValue, 8> IdxVec;
Duncan Sands92c43912008-06-06 12:08:01 +00004558 IdxVec.push_back(DAG.getConstant(1, MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004559 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004560 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Evan Cheng907a2d22009-02-25 22:49:59 +00004561 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4562 &IdxVec[0], IdxVec.size());
Dan Gohman8181bd12008-07-27 21:46:04 +00004563 SDValue Vec = Op.getOperand(0);
Dale Johannesence0805b2009-02-03 19:33:06 +00004564 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Vec.getValueType(),
Scott Michel91099d62009-02-17 22:15:04 +00004565 Vec, DAG.getUNDEF(Vec.getValueType()),
Dale Johannesence0805b2009-02-03 19:33:06 +00004566 Mask);
4567 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00004568 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004569 }
4570
Dan Gohman8181bd12008-07-27 21:46:04 +00004571 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004572}
4573
Dan Gohman8181bd12008-07-27 21:46:04 +00004574SDValue
4575X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG){
Duncan Sands92c43912008-06-06 12:08:01 +00004576 MVT VT = Op.getValueType();
4577 MVT EVT = VT.getVectorElementType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004578 DebugLoc dl = Op.getDebugLoc();
Nate Begemand77e59e2008-02-11 04:19:36 +00004579
Dan Gohman8181bd12008-07-27 21:46:04 +00004580 SDValue N0 = Op.getOperand(0);
4581 SDValue N1 = Op.getOperand(1);
4582 SDValue N2 = Op.getOperand(2);
Nate Begemand77e59e2008-02-11 04:19:36 +00004583
Dan Gohman5a7af042008-08-14 22:53:18 +00004584 if ((EVT.getSizeInBits() == 8 || EVT.getSizeInBits() == 16) &&
4585 isa<ConstantSDNode>(N2)) {
Duncan Sands92c43912008-06-06 12:08:01 +00004586 unsigned Opc = (EVT.getSizeInBits() == 8) ? X86ISD::PINSRB
Nate Begeman2c87c422009-02-23 08:49:38 +00004587 : X86ISD::PINSRW;
Nate Begemand77e59e2008-02-11 04:19:36 +00004588 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
4589 // argument.
4590 if (N1.getValueType() != MVT::i32)
Dale Johannesence0805b2009-02-03 19:33:06 +00004591 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Nate Begemand77e59e2008-02-11 04:19:36 +00004592 if (N2.getValueType() != MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004593 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesence0805b2009-02-03 19:33:06 +00004594 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohmanfd7369a2008-08-14 22:43:26 +00004595 } else if (EVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begemand77e59e2008-02-11 04:19:36 +00004596 // Bits [7:6] of the constant are the source select. This will always be
4597 // zero here. The DAG Combiner may combine an extract_elt index into these
4598 // bits. For example (insert (extract, 3), 2) could be matched by putting
4599 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michel91099d62009-02-17 22:15:04 +00004600 // Bits [5:4] of the constant are the destination select. This is the
Nate Begemand77e59e2008-02-11 04:19:36 +00004601 // value of the incoming immediate.
Scott Michel91099d62009-02-17 22:15:04 +00004602 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begemand77e59e2008-02-11 04:19:36 +00004603 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004604 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00004605 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Mon P Wangac2a3c52009-01-15 21:10:20 +00004606 } else if (EVT == MVT::i32) {
4607 // InsertPS works with constant index.
4608 if (isa<ConstantSDNode>(N2))
4609 return Op;
Nate Begemand77e59e2008-02-11 04:19:36 +00004610 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004611 return SDValue();
Nate Begemand77e59e2008-02-11 04:19:36 +00004612}
4613
Dan Gohman8181bd12008-07-27 21:46:04 +00004614SDValue
4615X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004616 MVT VT = Op.getValueType();
4617 MVT EVT = VT.getVectorElementType();
Nate Begemand77e59e2008-02-11 04:19:36 +00004618
4619 if (Subtarget->hasSSE41())
4620 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
4621
Evan Chenge12a7eb2007-12-12 07:55:34 +00004622 if (EVT == MVT::i8)
Dan Gohman8181bd12008-07-27 21:46:04 +00004623 return SDValue();
Evan Chenge12a7eb2007-12-12 07:55:34 +00004624
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004625 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00004626 SDValue N0 = Op.getOperand(0);
4627 SDValue N1 = Op.getOperand(1);
4628 SDValue N2 = Op.getOperand(2);
Evan Chenge12a7eb2007-12-12 07:55:34 +00004629
Duncan Sands92c43912008-06-06 12:08:01 +00004630 if (EVT.getSizeInBits() == 16) {
Evan Chenge12a7eb2007-12-12 07:55:34 +00004631 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
4632 // as its second argument.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004633 if (N1.getValueType() != MVT::i32)
Dale Johannesence0805b2009-02-03 19:33:06 +00004634 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004635 if (N2.getValueType() != MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004636 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesence0805b2009-02-03 19:33:06 +00004637 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004638 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004639 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004640}
4641
Dan Gohman8181bd12008-07-27 21:46:04 +00004642SDValue
4643X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004644 DebugLoc dl = Op.getDebugLoc();
Evan Cheng759fe022008-07-22 18:39:19 +00004645 if (Op.getValueType() == MVT::v2f32)
Dale Johannesence0805b2009-02-03 19:33:06 +00004646 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f32,
4647 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i32,
4648 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32,
Evan Cheng759fe022008-07-22 18:39:19 +00004649 Op.getOperand(0))));
4650
Dale Johannesence0805b2009-02-03 19:33:06 +00004651 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004652 MVT VT = MVT::v2i32;
4653 switch (Op.getValueType().getSimpleVT()) {
Evan Chengd1045a62008-02-18 23:04:32 +00004654 default: break;
4655 case MVT::v16i8:
4656 case MVT::v8i16:
4657 VT = MVT::v4i32;
4658 break;
4659 }
Dale Johannesence0805b2009-02-03 19:33:06 +00004660 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(),
4661 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, AnyExt));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004662}
4663
Bill Wendlingfef06052008-09-16 21:48:12 +00004664// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
4665// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
4666// one of the above mentioned nodes. It has to be wrapped because otherwise
4667// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
4668// be used to form addressing mode. These wrapped nodes will be selected
4669// into MOV32ri.
Dan Gohman8181bd12008-07-27 21:46:04 +00004670SDValue
4671X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004672 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dale Johannesen175fdef2009-02-06 21:50:26 +00004673 // FIXME there isn't really any debug info here, should come from the parent
4674 DebugLoc dl = CP->getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00004675 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004676 getPointerTy(),
4677 CP->getAlignment());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004678 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004679 // With PIC, the address is actually $g + Offset.
4680 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4681 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004682 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004683 DAG.getNode(X86ISD::GlobalBaseReg,
4684 DebugLoc::getUnknownLoc(),
4685 getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004686 Result);
4687 }
4688
4689 return Result;
4690}
4691
Dan Gohman8181bd12008-07-27 21:46:04 +00004692SDValue
Dale Johannesenea996922009-02-04 20:06:27 +00004693X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman36322c72008-10-18 02:06:02 +00004694 int64_t Offset,
Evan Cheng7f250d62008-09-24 00:05:32 +00004695 SelectionDAG &DAG) const {
Dan Gohman36322c72008-10-18 02:06:02 +00004696 bool IsPic = getTargetMachine().getRelocationModel() == Reloc::PIC_;
4697 bool ExtraLoadRequired =
4698 Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false);
4699
4700 // Create the TargetGlobalAddress node, folding in the constant
4701 // offset if it is legal.
4702 SDValue Result;
Dan Gohman3d5257c2008-10-21 03:38:42 +00004703 if (!IsPic && !ExtraLoadRequired && isInt32(Offset)) {
Dan Gohman36322c72008-10-18 02:06:02 +00004704 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
4705 Offset = 0;
4706 } else
4707 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), 0);
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004708 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman36322c72008-10-18 02:06:02 +00004709
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004710 // With PIC, the address is actually $g + Offset.
Dan Gohman36322c72008-10-18 02:06:02 +00004711 if (IsPic && !Subtarget->isPICStyleRIPRel()) {
Dale Johannesenea996922009-02-04 20:06:27 +00004712 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
4713 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004714 Result);
4715 }
Scott Michel91099d62009-02-17 22:15:04 +00004716
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004717 // For Darwin & Mingw32, external and weak symbols are indirect, so we want to
4718 // load the value at address GV, not the value of GV itself. This means that
4719 // the GlobalAddress must be in the base or index register of the address, not
4720 // the GV offset field. Platform check is inside GVRequiresExtraLoad() call
4721 // The same applies for external symbols during PIC codegen
Dan Gohman36322c72008-10-18 02:06:02 +00004722 if (ExtraLoadRequired)
Dale Johannesenea996922009-02-04 20:06:27 +00004723 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004724 PseudoSourceValue::getGOT(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004725
Dan Gohman36322c72008-10-18 02:06:02 +00004726 // If there was a non-zero offset that we didn't fold, create an explicit
4727 // addition for it.
4728 if (Offset != 0)
Dale Johannesenea996922009-02-04 20:06:27 +00004729 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman36322c72008-10-18 02:06:02 +00004730 DAG.getConstant(Offset, getPointerTy()));
4731
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004732 return Result;
4733}
4734
Evan Cheng7f250d62008-09-24 00:05:32 +00004735SDValue
4736X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) {
4737 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman36322c72008-10-18 02:06:02 +00004738 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004739 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Cheng7f250d62008-09-24 00:05:32 +00004740}
4741
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004742// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman8181bd12008-07-27 21:46:04 +00004743static SDValue
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004744LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00004745 const MVT PtrVT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004746 SDValue InFlag;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004747 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
4748 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004749 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004750 DebugLoc::getUnknownLoc(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004751 PtrVT), InFlag);
4752 InFlag = Chain.getValue(1);
4753
4754 // emit leal symbol@TLSGD(,%ebx,1), %eax
4755 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004756 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004757 GA->getValueType(0),
4758 GA->getOffset());
Dan Gohman8181bd12008-07-27 21:46:04 +00004759 SDValue Ops[] = { Chain, TGA, InFlag };
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004760 SDValue Result = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004761 InFlag = Result.getValue(2);
4762 Chain = Result.getValue(1);
4763
4764 // call ___tls_get_addr. This function receives its argument in
4765 // the register EAX.
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004766 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Result, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004767 InFlag = Chain.getValue(1);
4768
4769 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004770 SDValue Ops1[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00004771 DAG.getTargetExternalSymbol("___tls_get_addr",
4772 PtrVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004773 DAG.getRegister(X86::EAX, PtrVT),
4774 DAG.getRegister(X86::EBX, PtrVT),
4775 InFlag };
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004776 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops1, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004777 InFlag = Chain.getValue(1);
4778
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004779 return DAG.getCopyFromReg(Chain, dl, X86::EAX, PtrVT, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004780}
4781
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004782// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman8181bd12008-07-27 21:46:04 +00004783static SDValue
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004784LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00004785 const MVT PtrVT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004786 SDValue InFlag, Chain;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004787 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004788
4789 // emit leaq symbol@TLSGD(%rip), %rdi
4790 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004791 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004792 GA->getValueType(0),
4793 GA->getOffset());
Dan Gohman8181bd12008-07-27 21:46:04 +00004794 SDValue Ops[] = { DAG.getEntryNode(), TGA};
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004795 SDValue Result = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004796 Chain = Result.getValue(1);
4797 InFlag = Result.getValue(2);
4798
aslb204cd52008-08-16 12:58:29 +00004799 // call __tls_get_addr. This function receives its argument in
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004800 // the register RDI.
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004801 Chain = DAG.getCopyToReg(Chain, dl, X86::RDI, Result, InFlag);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004802 InFlag = Chain.getValue(1);
4803
4804 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004805 SDValue Ops1[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00004806 DAG.getTargetExternalSymbol("__tls_get_addr",
4807 PtrVT),
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004808 DAG.getRegister(X86::RDI, PtrVT),
4809 InFlag };
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004810 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops1, 4);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004811 InFlag = Chain.getValue(1);
4812
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004813 return DAG.getCopyFromReg(Chain, dl, X86::RAX, PtrVT, InFlag);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004814}
4815
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004816// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
4817// "local exec" model.
Dan Gohman8181bd12008-07-27 21:46:04 +00004818static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Rafael Espindola7b620af2009-02-27 13:37:18 +00004819 const MVT PtrVT, TLSModel::Model model) {
Dale Johannesenea996922009-02-04 20:06:27 +00004820 DebugLoc dl = GA->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004821 // Get the Thread Pointer
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004822 SDValue ThreadPointer = DAG.getNode(X86ISD::THREAD_POINTER,
4823 DebugLoc::getUnknownLoc(), PtrVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004824 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
4825 // exec)
Dan Gohman8181bd12008-07-27 21:46:04 +00004826 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004827 GA->getValueType(0),
4828 GA->getOffset());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004829 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, TGA);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004830
Rafael Espindola7b620af2009-02-27 13:37:18 +00004831 if (model == TLSModel::InitialExec)
Dale Johannesenea996922009-02-04 20:06:27 +00004832 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004833 PseudoSourceValue::getGOT(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004834
4835 // The address of the thread local variable is the add of the thread
4836 // pointer with the offset of the variable.
Dale Johannesenea996922009-02-04 20:06:27 +00004837 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004838}
4839
Dan Gohman8181bd12008-07-27 21:46:04 +00004840SDValue
4841X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004842 // TODO: implement the "local dynamic" model
4843 // TODO: implement the "initial exec"model for pic executables
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004844 assert(Subtarget->isTargetELF() &&
4845 "TLS not implemented for non-ELF targets");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004846 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Rafael Espindola7b620af2009-02-27 13:37:18 +00004847 GlobalValue *GV = GA->getGlobal();
4848 TLSModel::Model model =
4849 getTLSModel (GV, getTargetMachine().getRelocationModel());
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004850 if (Subtarget->is64Bit()) {
Rafael Espindola7b620af2009-02-27 13:37:18 +00004851 switch (model) {
4852 case TLSModel::GeneralDynamic:
4853 case TLSModel::LocalDynamic: // not implemented
4854 case TLSModel::InitialExec: // not implemented
4855 case TLSModel::LocalExec: // not implemented
4856 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
4857 default:
4858 assert (0 && "Unknown TLS model");
4859 }
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004860 } else {
Rafael Espindola7b620af2009-02-27 13:37:18 +00004861 switch (model) {
4862 case TLSModel::GeneralDynamic:
4863 case TLSModel::LocalDynamic: // not implemented
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004864 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Rafael Espindola7b620af2009-02-27 13:37:18 +00004865
4866 case TLSModel::InitialExec:
4867 case TLSModel::LocalExec:
4868 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model);
4869 default:
4870 assert (0 && "Unknown TLS model");
4871 }
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004872 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004873}
4874
Dan Gohman8181bd12008-07-27 21:46:04 +00004875SDValue
4876X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004877 // FIXME there isn't really any debug info here
4878 DebugLoc dl = Op.getDebugLoc();
Bill Wendlingfef06052008-09-16 21:48:12 +00004879 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
4880 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004881 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004882 // With PIC, the address is actually $g + Offset.
4883 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4884 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004885 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Scott Michel91099d62009-02-17 22:15:04 +00004886 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004887 DebugLoc::getUnknownLoc(),
4888 getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004889 Result);
4890 }
4891
4892 return Result;
4893}
4894
Dan Gohman8181bd12008-07-27 21:46:04 +00004895SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004896 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dale Johannesen175fdef2009-02-06 21:50:26 +00004897 // FIXME there isn't really any debug into here
4898 DebugLoc dl = JT->getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00004899 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004900 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004901 // With PIC, the address is actually $g + Offset.
4902 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4903 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004904 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004905 DAG.getNode(X86ISD::GlobalBaseReg,
4906 DebugLoc::getUnknownLoc(),
4907 getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004908 Result);
4909 }
4910
4911 return Result;
4912}
4913
Chris Lattner62814a32007-10-17 06:02:13 +00004914/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michel91099d62009-02-17 22:15:04 +00004915/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohman8181bd12008-07-27 21:46:04 +00004916SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) {
Dan Gohman092014e2008-03-03 22:22:09 +00004917 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Duncan Sands92c43912008-06-06 12:08:01 +00004918 MVT VT = Op.getValueType();
4919 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004920 DebugLoc dl = Op.getDebugLoc();
Chris Lattner62814a32007-10-17 06:02:13 +00004921 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman8181bd12008-07-27 21:46:04 +00004922 SDValue ShOpLo = Op.getOperand(0);
4923 SDValue ShOpHi = Op.getOperand(1);
4924 SDValue ShAmt = Op.getOperand(2);
4925 SDValue Tmp1 = isSRA ?
Scott Michel91099d62009-02-17 22:15:04 +00004926 DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Dale Johannesence0805b2009-02-03 19:33:06 +00004927 DAG.getConstant(VTBits - 1, MVT::i8)) :
Dan Gohman092014e2008-03-03 22:22:09 +00004928 DAG.getConstant(0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004929
Dan Gohman8181bd12008-07-27 21:46:04 +00004930 SDValue Tmp2, Tmp3;
Chris Lattner62814a32007-10-17 06:02:13 +00004931 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004932 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
4933 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00004934 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00004935 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
4936 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00004937 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004938
Dale Johannesence0805b2009-02-03 19:33:06 +00004939 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
Dan Gohman092014e2008-03-03 22:22:09 +00004940 DAG.getConstant(VTBits, MVT::i8));
Dale Johannesence0805b2009-02-03 19:33:06 +00004941 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, VT,
Chris Lattner62814a32007-10-17 06:02:13 +00004942 AndNode, DAG.getConstant(0, MVT::i8));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004943
Dan Gohman8181bd12008-07-27 21:46:04 +00004944 SDValue Hi, Lo;
4945 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
4946 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
4947 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf19591c2008-06-30 10:19:09 +00004948
Chris Lattner62814a32007-10-17 06:02:13 +00004949 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004950 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4951 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner62814a32007-10-17 06:02:13 +00004952 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00004953 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4954 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner62814a32007-10-17 06:02:13 +00004955 }
4956
Dan Gohman8181bd12008-07-27 21:46:04 +00004957 SDValue Ops[2] = { Lo, Hi };
Dale Johannesence0805b2009-02-03 19:33:06 +00004958 return DAG.getMergeValues(Ops, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004959}
4960
Dan Gohman8181bd12008-07-27 21:46:04 +00004961SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004962 MVT SrcVT = Op.getOperand(0).getValueType();
Duncan Sandsec142ee2008-06-08 20:54:56 +00004963 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004964 "Unknown SINT_TO_FP to lower!");
Scott Michel91099d62009-02-17 22:15:04 +00004965
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004966 // These are really Legal; caller falls through into that case.
4967 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Dan Gohman8181bd12008-07-27 21:46:04 +00004968 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00004969 if (SrcVT == MVT::i64 && Op.getValueType() != MVT::f80 &&
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004970 Subtarget->is64Bit())
Dan Gohman8181bd12008-07-27 21:46:04 +00004971 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00004972
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004973 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00004974 unsigned Size = SrcVT.getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004975 MachineFunction &MF = DAG.getMachineFunction();
4976 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
Dan Gohman8181bd12008-07-27 21:46:04 +00004977 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00004978 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Dan Gohman12a9c082008-02-06 22:27:42 +00004979 StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004980 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004981
4982 // Build the FILD
4983 SDVTList Tys;
Chris Lattnercf515b52008-01-16 06:24:21 +00004984 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen2fc20782007-09-14 22:26:36 +00004985 if (useSSE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004986 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
4987 else
4988 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00004989 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004990 Ops.push_back(Chain);
4991 Ops.push_back(StackSlot);
4992 Ops.push_back(DAG.getValueType(SrcVT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004993 SDValue Result = DAG.getNode(useSSE ? X86ISD::FILD_FLAG : X86ISD::FILD, dl,
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004994 Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004995
Dale Johannesen2fc20782007-09-14 22:26:36 +00004996 if (useSSE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004997 Chain = Result.getValue(1);
Dan Gohman8181bd12008-07-27 21:46:04 +00004998 SDValue InFlag = Result.getValue(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004999
5000 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
5001 // shouldn't be necessary except that RFP cannot be live across
5002 // multiple blocks. When stackifier is fixed, they can be uncoupled.
5003 MachineFunction &MF = DAG.getMachineFunction();
5004 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
Dan Gohman8181bd12008-07-27 21:46:04 +00005005 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005006 Tys = DAG.getVTList(MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00005007 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005008 Ops.push_back(Chain);
5009 Ops.push_back(Result);
5010 Ops.push_back(StackSlot);
5011 Ops.push_back(DAG.getValueType(Op.getValueType()));
5012 Ops.push_back(InFlag);
Dale Johannesence0805b2009-02-03 19:33:06 +00005013 Chain = DAG.getNode(X86ISD::FST, dl, Tys, &Ops[0], Ops.size());
5014 Result = DAG.getLoad(Op.getValueType(), dl, Chain, StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005015 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005016 }
5017
5018 return Result;
5019}
5020
Bill Wendling14a30ef2009-01-17 03:56:04 +00005021// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
5022SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op, SelectionDAG &DAG) {
5023 // This algorithm is not obvious. Here it is in C code, more or less:
5024 /*
5025 double uint64_to_double( uint32_t hi, uint32_t lo ) {
5026 static const __m128i exp = { 0x4330000045300000ULL, 0 };
5027 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesenfb019af2008-10-21 23:07:49 +00005028
Bill Wendling14a30ef2009-01-17 03:56:04 +00005029 // Copy ints to xmm registers.
5030 __m128i xh = _mm_cvtsi32_si128( hi );
5031 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesenfb019af2008-10-21 23:07:49 +00005032
Bill Wendling14a30ef2009-01-17 03:56:04 +00005033 // Combine into low half of a single xmm register.
5034 __m128i x = _mm_unpacklo_epi32( xh, xl );
5035 __m128d d;
5036 double sd;
Dale Johannesenfb019af2008-10-21 23:07:49 +00005037
Bill Wendling14a30ef2009-01-17 03:56:04 +00005038 // Merge in appropriate exponents to give the integer bits the right
5039 // magnitude.
5040 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesenfb019af2008-10-21 23:07:49 +00005041
Bill Wendling14a30ef2009-01-17 03:56:04 +00005042 // Subtract away the biases to deal with the IEEE-754 double precision
5043 // implicit 1.
5044 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesenfb019af2008-10-21 23:07:49 +00005045
Bill Wendling14a30ef2009-01-17 03:56:04 +00005046 // All conversions up to here are exact. The correctly rounded result is
5047 // calculated using the current rounding mode using the following
5048 // horizontal add.
5049 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
5050 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
5051 // store doesn't really need to be here (except
5052 // maybe to zero the other double)
5053 return sd;
5054 }
5055 */
Dale Johannesenfb019af2008-10-21 23:07:49 +00005056
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005057 DebugLoc dl = Op.getDebugLoc();
Dale Johannesence0805b2009-02-03 19:33:06 +00005058
Dale Johannesena359b8b2008-10-21 20:50:01 +00005059 // Build some magic constants.
Bill Wendling14a30ef2009-01-17 03:56:04 +00005060 std::vector<Constant*> CV0;
Dale Johannesena359b8b2008-10-21 20:50:01 +00005061 CV0.push_back(ConstantInt::get(APInt(32, 0x45300000)));
5062 CV0.push_back(ConstantInt::get(APInt(32, 0x43300000)));
5063 CV0.push_back(ConstantInt::get(APInt(32, 0)));
5064 CV0.push_back(ConstantInt::get(APInt(32, 0)));
5065 Constant *C0 = ConstantVector::get(CV0);
5066 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 4);
5067
Bill Wendling14a30ef2009-01-17 03:56:04 +00005068 std::vector<Constant*> CV1;
Dale Johannesena359b8b2008-10-21 20:50:01 +00005069 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4530000000000000ULL))));
5070 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4330000000000000ULL))));
5071 Constant *C1 = ConstantVector::get(CV1);
5072 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 4);
5073
5074 SmallVector<SDValue, 4> MaskVec;
5075 MaskVec.push_back(DAG.getConstant(0, MVT::i32));
5076 MaskVec.push_back(DAG.getConstant(4, MVT::i32));
5077 MaskVec.push_back(DAG.getConstant(1, MVT::i32));
5078 MaskVec.push_back(DAG.getConstant(5, MVT::i32));
Evan Cheng907a2d22009-02-25 22:49:59 +00005079 SDValue UnpcklMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
5080 &MaskVec[0], MaskVec.size());
Dale Johannesena359b8b2008-10-21 20:50:01 +00005081 SmallVector<SDValue, 4> MaskVec2;
Duncan Sandsca872ca2008-10-22 11:24:12 +00005082 MaskVec2.push_back(DAG.getConstant(1, MVT::i32));
5083 MaskVec2.push_back(DAG.getConstant(0, MVT::i32));
Evan Cheng907a2d22009-02-25 22:49:59 +00005084 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32,
5085 &MaskVec2[0], MaskVec2.size());
Dale Johannesena359b8b2008-10-21 20:50:01 +00005086
Dale Johannesence0805b2009-02-03 19:33:06 +00005087 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5088 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sandsca872ca2008-10-22 11:24:12 +00005089 Op.getOperand(0),
5090 DAG.getIntPtrConstant(1)));
Dale Johannesence0805b2009-02-03 19:33:06 +00005091 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5092 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sandsca872ca2008-10-22 11:24:12 +00005093 Op.getOperand(0),
5094 DAG.getIntPtrConstant(0)));
Dale Johannesence0805b2009-02-03 19:33:06 +00005095 SDValue Unpck1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v4i32,
Dale Johannesena359b8b2008-10-21 20:50:01 +00005096 XR1, XR2, UnpcklMask);
Dale Johannesence0805b2009-02-03 19:33:06 +00005097 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005098 PseudoSourceValue::getConstantPool(), 0,
5099 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005100 SDValue Unpck2 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v4i32,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005101 Unpck1, CLod0, UnpcklMask);
Dale Johannesence0805b2009-02-03 19:33:06 +00005102 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2);
5103 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005104 PseudoSourceValue::getConstantPool(), 0,
5105 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005106 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling14a30ef2009-01-17 03:56:04 +00005107
Dale Johannesena359b8b2008-10-21 20:50:01 +00005108 // Add the halves; easiest way is to swap them into another reg first.
Dale Johannesence0805b2009-02-03 19:33:06 +00005109 SDValue Shuf = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2f64,
Dale Johannesena359b8b2008-10-21 20:50:01 +00005110 Sub, Sub, ShufMask);
Dale Johannesence0805b2009-02-03 19:33:06 +00005111 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
5112 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesena359b8b2008-10-21 20:50:01 +00005113 DAG.getIntPtrConstant(0));
5114}
5115
Bill Wendling14a30ef2009-01-17 03:56:04 +00005116// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
5117SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005118 DebugLoc dl = Op.getDebugLoc();
Bill Wendling14a30ef2009-01-17 03:56:04 +00005119 // FP constant to bias correct the final result.
5120 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
5121 MVT::f64);
5122
5123 // Load the 32-bit value into an XMM register.
Dale Johannesence0805b2009-02-03 19:33:06 +00005124 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5125 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005126 Op.getOperand(0),
5127 DAG.getIntPtrConstant(0)));
5128
Dale Johannesence0805b2009-02-03 19:33:06 +00005129 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
5130 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load),
Bill Wendling14a30ef2009-01-17 03:56:04 +00005131 DAG.getIntPtrConstant(0));
5132
5133 // Or the load with the bias.
Dale Johannesence0805b2009-02-03 19:33:06 +00005134 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
5135 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
5136 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Chengc0ab5e52009-01-19 08:19:57 +00005137 MVT::v2f64, Load)),
Dale Johannesence0805b2009-02-03 19:33:06 +00005138 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
5139 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Chengc0ab5e52009-01-19 08:19:57 +00005140 MVT::v2f64, Bias)));
Dale Johannesence0805b2009-02-03 19:33:06 +00005141 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
5142 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or),
Bill Wendling14a30ef2009-01-17 03:56:04 +00005143 DAG.getIntPtrConstant(0));
5144
5145 // Subtract the bias.
Dale Johannesence0805b2009-02-03 19:33:06 +00005146 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling14a30ef2009-01-17 03:56:04 +00005147
5148 // Handle final rounding.
Bill Wendlingdb547de2009-01-17 07:40:19 +00005149 MVT DestVT = Op.getValueType();
5150
5151 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005152 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendlingdb547de2009-01-17 07:40:19 +00005153 DAG.getIntPtrConstant(0));
5154 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005155 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendlingdb547de2009-01-17 07:40:19 +00005156 }
5157
5158 // Handle final rounding.
5159 return Sub;
Bill Wendling14a30ef2009-01-17 03:56:04 +00005160}
5161
5162SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Evan Cheng44fd2392009-01-19 08:08:22 +00005163 SDValue N0 = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005164 DebugLoc dl = Op.getDebugLoc();
Bill Wendling14a30ef2009-01-17 03:56:04 +00005165
Evan Cheng44fd2392009-01-19 08:08:22 +00005166 // Now not UINT_TO_FP is legal (it's marked custom), dag combiner won't
5167 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
5168 // the optimization here.
5169 if (DAG.SignBitIsZero(N0))
Dale Johannesence0805b2009-02-03 19:33:06 +00005170 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Cheng44fd2392009-01-19 08:08:22 +00005171
5172 MVT SrcVT = N0.getValueType();
Bill Wendling14a30ef2009-01-17 03:56:04 +00005173 if (SrcVT == MVT::i64) {
5174 // We only handle SSE2 f64 target here; caller can handle the rest.
5175 if (Op.getValueType() != MVT::f64 || !X86ScalarSSEf64)
5176 return SDValue();
Bill Wendlingdb547de2009-01-17 07:40:19 +00005177
Bill Wendling14a30ef2009-01-17 03:56:04 +00005178 return LowerUINT_TO_FP_i64(Op, DAG);
5179 } else if (SrcVT == MVT::i32) {
Bill Wendling14a30ef2009-01-17 03:56:04 +00005180 return LowerUINT_TO_FP_i32(Op, DAG);
5181 }
5182
5183 assert(0 && "Unknown UINT_TO_FP to lower!");
5184 return SDValue();
5185}
5186
Dan Gohman8181bd12008-07-27 21:46:04 +00005187std::pair<SDValue,SDValue> X86TargetLowering::
5188FP_TO_SINTHelper(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005189 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsec142ee2008-06-08 20:54:56 +00005190 assert(Op.getValueType().getSimpleVT() <= MVT::i64 &&
5191 Op.getValueType().getSimpleVT() >= MVT::i16 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005192 "Unknown FP_TO_SINT to lower!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005193
Dale Johannesen2fc20782007-09-14 22:26:36 +00005194 // These are really Legal.
Scott Michel91099d62009-02-17 22:15:04 +00005195 if (Op.getValueType() == MVT::i32 &&
Chris Lattnercf515b52008-01-16 06:24:21 +00005196 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman8181bd12008-07-27 21:46:04 +00005197 return std::make_pair(SDValue(), SDValue());
Dale Johannesen958b08b2007-09-19 23:55:34 +00005198 if (Subtarget->is64Bit() &&
5199 Op.getValueType() == MVT::i64 &&
5200 Op.getOperand(0).getValueType() != MVT::f80)
Dan Gohman8181bd12008-07-27 21:46:04 +00005201 return std::make_pair(SDValue(), SDValue());
Dale Johannesen2fc20782007-09-14 22:26:36 +00005202
Evan Cheng05441e62007-10-15 20:11:21 +00005203 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
5204 // stack slot.
5205 MachineFunction &MF = DAG.getMachineFunction();
Duncan Sands92c43912008-06-06 12:08:01 +00005206 unsigned MemSize = Op.getValueType().getSizeInBits()/8;
Evan Cheng05441e62007-10-15 20:11:21 +00005207 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
Dan Gohman8181bd12008-07-27 21:46:04 +00005208 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005209 unsigned Opc;
Duncan Sands92c43912008-06-06 12:08:01 +00005210 switch (Op.getValueType().getSimpleVT()) {
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005211 default: assert(0 && "Invalid FP_TO_SINT to lower!");
5212 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
5213 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
5214 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005215 }
5216
Dan Gohman8181bd12008-07-27 21:46:04 +00005217 SDValue Chain = DAG.getEntryNode();
5218 SDValue Value = Op.getOperand(0);
Chris Lattnercf515b52008-01-16 06:24:21 +00005219 if (isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005220 assert(Op.getValueType() == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Dale Johannesence0805b2009-02-03 19:33:06 +00005221 Chain = DAG.getStore(Chain, dl, Value, StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005222 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005223 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00005224 SDValue Ops[] = {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005225 Chain, StackSlot, DAG.getValueType(Op.getOperand(0).getValueType())
5226 };
Dale Johannesence0805b2009-02-03 19:33:06 +00005227 Value = DAG.getNode(X86ISD::FLD, dl, Tys, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005228 Chain = Value.getValue(1);
5229 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
5230 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
5231 }
5232
5233 // Build the FP_TO_INT*_IN_MEM
Dan Gohman8181bd12008-07-27 21:46:04 +00005234 SDValue Ops[] = { Chain, Value, StackSlot };
Dale Johannesence0805b2009-02-03 19:33:06 +00005235 SDValue FIST = DAG.getNode(Opc, dl, MVT::Other, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005236
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005237 return std::make_pair(FIST, StackSlot);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005238}
5239
Dan Gohman8181bd12008-07-27 21:46:04 +00005240SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) {
5241 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(Op, DAG);
5242 SDValue FIST = Vals.first, StackSlot = Vals.second;
Gabor Greif1c80d112008-08-28 21:40:38 +00005243 if (FIST.getNode() == 0) return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00005244
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005245 // Load the result.
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005246 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Dale Johannesence0805b2009-02-03 19:33:06 +00005247 FIST, StackSlot, NULL, 0);
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005248}
5249
Dan Gohman8181bd12008-07-27 21:46:04 +00005250SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005251 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00005252 MVT VT = Op.getValueType();
5253 MVT EltVT = VT;
5254 if (VT.isVector())
5255 EltVT = VT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005256 std::vector<Constant*> CV;
5257 if (EltVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005258 Constant *C = ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005259 CV.push_back(C);
5260 CV.push_back(C);
5261 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005262 Constant *C = ConstantFP::get(APFloat(APInt(32, ~(1U << 31))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005263 CV.push_back(C);
5264 CV.push_back(C);
5265 CV.push_back(C);
5266 CV.push_back(C);
5267 }
Dan Gohman11821702007-07-27 17:16:43 +00005268 Constant *C = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005269 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00005270 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005271 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005272 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005273 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005274}
5275
Dan Gohman8181bd12008-07-27 21:46:04 +00005276SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005277 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00005278 MVT VT = Op.getValueType();
5279 MVT EltVT = VT;
Evan Cheng92b8f782007-07-19 23:36:01 +00005280 unsigned EltNum = 1;
Duncan Sands92c43912008-06-06 12:08:01 +00005281 if (VT.isVector()) {
5282 EltVT = VT.getVectorElementType();
5283 EltNum = VT.getVectorNumElements();
Evan Cheng92b8f782007-07-19 23:36:01 +00005284 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005285 std::vector<Constant*> CV;
5286 if (EltVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005287 Constant *C = ConstantFP::get(APFloat(APInt(64, 1ULL << 63)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005288 CV.push_back(C);
5289 CV.push_back(C);
5290 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005291 Constant *C = ConstantFP::get(APFloat(APInt(32, 1U << 31)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005292 CV.push_back(C);
5293 CV.push_back(C);
5294 CV.push_back(C);
5295 CV.push_back(C);
5296 }
Dan Gohman11821702007-07-27 17:16:43 +00005297 Constant *C = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005298 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00005299 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005300 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005301 false, 16);
Duncan Sands92c43912008-06-06 12:08:01 +00005302 if (VT.isVector()) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005303 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
5304 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Scott Michel91099d62009-02-17 22:15:04 +00005305 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesence0805b2009-02-03 19:33:06 +00005306 Op.getOperand(0)),
5307 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask)));
Evan Cheng92b8f782007-07-19 23:36:01 +00005308 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00005309 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng92b8f782007-07-19 23:36:01 +00005310 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005311}
5312
Dan Gohman8181bd12008-07-27 21:46:04 +00005313SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
5314 SDValue Op0 = Op.getOperand(0);
5315 SDValue Op1 = Op.getOperand(1);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005316 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00005317 MVT VT = Op.getValueType();
5318 MVT SrcVT = Op1.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005319
5320 // If second operand is smaller, extend it first.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005321 if (SrcVT.bitsLT(VT)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005322 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005323 SrcVT = VT;
5324 }
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005325 // And if it is bigger, shrink it first.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005326 if (SrcVT.bitsGT(VT)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005327 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005328 SrcVT = VT;
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005329 }
5330
5331 // At this point the operands and the result should have the same
5332 // type, and that won't be f80 since that is not custom lowered.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005333
5334 // First get the sign bit of second operand.
5335 std::vector<Constant*> CV;
5336 if (SrcVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005337 CV.push_back(ConstantFP::get(APFloat(APInt(64, 1ULL << 63))));
5338 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005339 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005340 CV.push_back(ConstantFP::get(APFloat(APInt(32, 1U << 31))));
5341 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5342 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5343 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005344 }
Dan Gohman11821702007-07-27 17:16:43 +00005345 Constant *C = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005346 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00005347 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005348 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005349 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005350 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005351
5352 // Shift sign bit right or left if the two operands have different types.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005353 if (SrcVT.bitsGT(VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005354 // Op0 is MVT::f32, Op1 is MVT::f64.
Dale Johannesence0805b2009-02-03 19:33:06 +00005355 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
5356 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005357 DAG.getConstant(32, MVT::i32));
Dale Johannesence0805b2009-02-03 19:33:06 +00005358 SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit);
5359 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner5872a362008-01-17 07:00:52 +00005360 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005361 }
5362
5363 // Clear first operand sign bit.
5364 CV.clear();
5365 if (VT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005366 CV.push_back(ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63)))));
5367 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005368 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005369 CV.push_back(ConstantFP::get(APFloat(APInt(32, ~(1U << 31)))));
5370 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5371 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5372 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005373 }
Dan Gohman11821702007-07-27 17:16:43 +00005374 C = ConstantVector::get(CV);
5375 CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00005376 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005377 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005378 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005379 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005380
5381 // Or the value with the sign bit.
Dale Johannesence0805b2009-02-03 19:33:06 +00005382 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005383}
5384
Dan Gohman99a12192009-03-04 19:44:21 +00005385/// Emit nodes that will be selected as "test Op0,Op0", or something
5386/// equivalent.
Dan Gohmanc8b47852009-03-07 01:58:32 +00005387SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
5388 SelectionDAG &DAG) {
Dan Gohman99a12192009-03-04 19:44:21 +00005389 DebugLoc dl = Op.getDebugLoc();
5390
Dan Gohmanc8b47852009-03-07 01:58:32 +00005391 // CF and OF aren't always set the way we want. Determine which
5392 // of these we need.
5393 bool NeedCF = false;
5394 bool NeedOF = false;
5395 switch (X86CC) {
5396 case X86::COND_A: case X86::COND_AE:
5397 case X86::COND_B: case X86::COND_BE:
5398 NeedCF = true;
5399 break;
5400 case X86::COND_G: case X86::COND_GE:
5401 case X86::COND_L: case X86::COND_LE:
5402 case X86::COND_O: case X86::COND_NO:
5403 NeedOF = true;
5404 break;
5405 default: break;
5406 }
5407
Dan Gohman99a12192009-03-04 19:44:21 +00005408 // See if we can use the EFLAGS value from the operand instead of
Dan Gohmanc8b47852009-03-07 01:58:32 +00005409 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
5410 // we prove that the arithmetic won't overflow, we can't use OF or CF.
5411 if (Op.getResNo() == 0 && !NeedOF && !NeedCF) {
Dan Gohman99a12192009-03-04 19:44:21 +00005412 unsigned Opcode = 0;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005413 unsigned NumOperands = 0;
Dan Gohman99a12192009-03-04 19:44:21 +00005414 switch (Op.getNode()->getOpcode()) {
5415 case ISD::ADD:
5416 // Due to an isel shortcoming, be conservative if this add is likely to
5417 // be selected as part of a load-modify-store instruction. When the root
5418 // node in a match is a store, isel doesn't know how to remap non-chain
5419 // non-flag uses of other nodes in the match, such as the ADD in this
5420 // case. This leads to the ADD being left around and reselected, with
5421 // the result being two adds in the output.
5422 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
5423 UE = Op.getNode()->use_end(); UI != UE; ++UI)
5424 if (UI->getOpcode() == ISD::STORE)
5425 goto default_case;
Dan Gohman99a12192009-03-04 19:44:21 +00005426 if (ConstantSDNode *C =
Dan Gohmand90a8fd2009-03-05 19:32:48 +00005427 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
5428 // An add of one will be selected as an INC.
Dan Gohman99a12192009-03-04 19:44:21 +00005429 if (C->getAPIntValue() == 1) {
5430 Opcode = X86ISD::INC;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005431 NumOperands = 1;
Dan Gohman99a12192009-03-04 19:44:21 +00005432 break;
5433 }
Dan Gohmand90a8fd2009-03-05 19:32:48 +00005434 // An add of negative one (subtract of one) will be selected as a DEC.
5435 if (C->getAPIntValue().isAllOnesValue()) {
5436 Opcode = X86ISD::DEC;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005437 NumOperands = 1;
Dan Gohmand90a8fd2009-03-05 19:32:48 +00005438 break;
5439 }
5440 }
Dan Gohman99a12192009-03-04 19:44:21 +00005441 // Otherwise use a regular EFLAGS-setting add.
5442 Opcode = X86ISD::ADD;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005443 NumOperands = 2;
Dan Gohman99a12192009-03-04 19:44:21 +00005444 break;
5445 case ISD::SUB:
5446 // Due to the ISEL shortcoming noted above, be conservative if this sub is
5447 // likely to be selected as part of a load-modify-store instruction.
5448 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
5449 UE = Op.getNode()->use_end(); UI != UE; ++UI)
5450 if (UI->getOpcode() == ISD::STORE)
5451 goto default_case;
Dan Gohman99a12192009-03-04 19:44:21 +00005452 // Otherwise use a regular EFLAGS-setting sub.
5453 Opcode = X86ISD::SUB;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005454 NumOperands = 2;
Dan Gohman99a12192009-03-04 19:44:21 +00005455 break;
5456 case X86ISD::ADD:
5457 case X86ISD::SUB:
5458 case X86ISD::INC:
5459 case X86ISD::DEC:
5460 return SDValue(Op.getNode(), 1);
5461 default:
5462 default_case:
5463 break;
5464 }
5465 if (Opcode != 0) {
5466 const MVT *VTs = DAG.getNodeValueTypes(Op.getValueType(), MVT::i32);
5467 SmallVector<SDValue, 4> Ops;
Dan Gohmanc8b47852009-03-07 01:58:32 +00005468 for (unsigned i = 0; i != NumOperands; ++i)
Dan Gohman99a12192009-03-04 19:44:21 +00005469 Ops.push_back(Op.getOperand(i));
Dan Gohmanc8b47852009-03-07 01:58:32 +00005470 SDValue New = DAG.getNode(Opcode, dl, VTs, 2, &Ops[0], NumOperands);
Dan Gohman99a12192009-03-04 19:44:21 +00005471 DAG.ReplaceAllUsesWith(Op, New);
5472 return SDValue(New.getNode(), 1);
5473 }
5474 }
5475
5476 // Otherwise just emit a CMP with 0, which is the TEST pattern.
5477 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
5478 DAG.getConstant(0, Op.getValueType()));
5479}
5480
5481/// Emit nodes that will be selected as "cmp Op0,Op1", or something
5482/// equivalent.
Dan Gohmanc8b47852009-03-07 01:58:32 +00005483SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
5484 SelectionDAG &DAG) {
Dan Gohman99a12192009-03-04 19:44:21 +00005485 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
5486 if (C->getAPIntValue() == 0)
Dan Gohmanc8b47852009-03-07 01:58:32 +00005487 return EmitTest(Op0, X86CC, DAG);
Dan Gohman99a12192009-03-04 19:44:21 +00005488
5489 DebugLoc dl = Op0.getDebugLoc();
5490 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
5491}
5492
Dan Gohman8181bd12008-07-27 21:46:04 +00005493SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
Evan Cheng950aac02007-09-25 01:57:46 +00005494 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
Dan Gohman8181bd12008-07-27 21:46:04 +00005495 SDValue Op0 = Op.getOperand(0);
5496 SDValue Op1 = Op.getOperand(1);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005497 DebugLoc dl = Op.getDebugLoc();
Chris Lattner77a62312008-12-25 05:34:37 +00005498 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Scott Michel91099d62009-02-17 22:15:04 +00005499
Dan Gohman22cefb02009-01-29 01:59:02 +00005500 // Lower (X & (1 << N)) == 0 to BT(X, N).
5501 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
5502 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Dan Gohman13dd9522009-01-13 23:25:30 +00005503 if (Op0.getOpcode() == ISD::AND &&
5504 Op0.hasOneUse() &&
5505 Op1.getOpcode() == ISD::Constant &&
Dan Gohman22cefb02009-01-29 01:59:02 +00005506 cast<ConstantSDNode>(Op1)->getZExtValue() == 0 &&
Chris Lattner77a62312008-12-25 05:34:37 +00005507 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Dan Gohman22cefb02009-01-29 01:59:02 +00005508 SDValue LHS, RHS;
5509 if (Op0.getOperand(1).getOpcode() == ISD::SHL) {
5510 if (ConstantSDNode *Op010C =
5511 dyn_cast<ConstantSDNode>(Op0.getOperand(1).getOperand(0)))
5512 if (Op010C->getZExtValue() == 1) {
5513 LHS = Op0.getOperand(0);
5514 RHS = Op0.getOperand(1).getOperand(1);
5515 }
5516 } else if (Op0.getOperand(0).getOpcode() == ISD::SHL) {
5517 if (ConstantSDNode *Op000C =
5518 dyn_cast<ConstantSDNode>(Op0.getOperand(0).getOperand(0)))
5519 if (Op000C->getZExtValue() == 1) {
5520 LHS = Op0.getOperand(1);
5521 RHS = Op0.getOperand(0).getOperand(1);
5522 }
5523 } else if (Op0.getOperand(1).getOpcode() == ISD::Constant) {
5524 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op0.getOperand(1));
5525 SDValue AndLHS = Op0.getOperand(0);
5526 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
5527 LHS = AndLHS.getOperand(0);
5528 RHS = AndLHS.getOperand(1);
5529 }
5530 }
Evan Cheng950aac02007-09-25 01:57:46 +00005531
Dan Gohman22cefb02009-01-29 01:59:02 +00005532 if (LHS.getNode()) {
Chris Lattner77a62312008-12-25 05:34:37 +00005533 // If LHS is i8, promote it to i16 with any_extend. There is no i8 BT
5534 // instruction. Since the shift amount is in-range-or-undefined, we know
5535 // that doing a bittest on the i16 value is ok. We extend to i32 because
5536 // the encoding for the i16 version is larger than the i32 version.
5537 if (LHS.getValueType() == MVT::i8)
Dale Johannesence0805b2009-02-03 19:33:06 +00005538 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattner77a62312008-12-25 05:34:37 +00005539
5540 // If the operand types disagree, extend the shift amount to match. Since
5541 // BT ignores high bits (like shifts) we can use anyextend.
5542 if (LHS.getValueType() != RHS.getValueType())
Dale Johannesence0805b2009-02-03 19:33:06 +00005543 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohman22cefb02009-01-29 01:59:02 +00005544
Dale Johannesence0805b2009-02-03 19:33:06 +00005545 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Dan Gohman0fc9ed62009-01-07 00:15:08 +00005546 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Dale Johannesence0805b2009-02-03 19:33:06 +00005547 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattner77a62312008-12-25 05:34:37 +00005548 DAG.getConstant(Cond, MVT::i8), BT);
5549 }
5550 }
5551
5552 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
5553 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Scott Michel91099d62009-02-17 22:15:04 +00005554
Dan Gohmanc8b47852009-03-07 01:58:32 +00005555 SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
Dale Johannesence0805b2009-02-03 19:33:06 +00005556 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattner60435922008-12-24 00:11:37 +00005557 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng950aac02007-09-25 01:57:46 +00005558}
5559
Dan Gohman8181bd12008-07-27 21:46:04 +00005560SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
5561 SDValue Cond;
5562 SDValue Op0 = Op.getOperand(0);
5563 SDValue Op1 = Op.getOperand(1);
5564 SDValue CC = Op.getOperand(2);
Nate Begeman03605a02008-07-17 16:51:19 +00005565 MVT VT = Op.getValueType();
5566 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
5567 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005568 DebugLoc dl = Op.getDebugLoc();
Nate Begeman03605a02008-07-17 16:51:19 +00005569
5570 if (isFP) {
5571 unsigned SSECC = 8;
Evan Cheng33754092008-08-05 22:19:15 +00005572 MVT VT0 = Op0.getValueType();
5573 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
5574 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman03605a02008-07-17 16:51:19 +00005575 bool Swap = false;
5576
5577 switch (SetCCOpcode) {
5578 default: break;
Nate Begeman6357f9d2008-07-25 19:05:58 +00005579 case ISD::SETOEQ:
Nate Begeman03605a02008-07-17 16:51:19 +00005580 case ISD::SETEQ: SSECC = 0; break;
Scott Michel91099d62009-02-17 22:15:04 +00005581 case ISD::SETOGT:
Nate Begeman03605a02008-07-17 16:51:19 +00005582 case ISD::SETGT: Swap = true; // Fallthrough
5583 case ISD::SETLT:
5584 case ISD::SETOLT: SSECC = 1; break;
5585 case ISD::SETOGE:
5586 case ISD::SETGE: Swap = true; // Fallthrough
5587 case ISD::SETLE:
5588 case ISD::SETOLE: SSECC = 2; break;
5589 case ISD::SETUO: SSECC = 3; break;
Nate Begeman6357f9d2008-07-25 19:05:58 +00005590 case ISD::SETUNE:
Nate Begeman03605a02008-07-17 16:51:19 +00005591 case ISD::SETNE: SSECC = 4; break;
5592 case ISD::SETULE: Swap = true;
5593 case ISD::SETUGE: SSECC = 5; break;
5594 case ISD::SETULT: Swap = true;
5595 case ISD::SETUGT: SSECC = 6; break;
5596 case ISD::SETO: SSECC = 7; break;
5597 }
5598 if (Swap)
5599 std::swap(Op0, Op1);
5600
Nate Begeman6357f9d2008-07-25 19:05:58 +00005601 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman03605a02008-07-17 16:51:19 +00005602 if (SSECC == 8) {
Nate Begeman6357f9d2008-07-25 19:05:58 +00005603 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005604 SDValue UNORD, EQ;
Dale Johannesence0805b2009-02-03 19:33:06 +00005605 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
5606 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
5607 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begeman6357f9d2008-07-25 19:05:58 +00005608 }
5609 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005610 SDValue ORD, NEQ;
Dale Johannesence0805b2009-02-03 19:33:06 +00005611 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
5612 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
5613 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begeman6357f9d2008-07-25 19:05:58 +00005614 }
5615 assert(0 && "Illegal FP comparison");
Nate Begeman03605a02008-07-17 16:51:19 +00005616 }
5617 // Handle all other FP comparisons here.
Dale Johannesence0805b2009-02-03 19:33:06 +00005618 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman03605a02008-07-17 16:51:19 +00005619 }
Scott Michel91099d62009-02-17 22:15:04 +00005620
Nate Begeman03605a02008-07-17 16:51:19 +00005621 // We are handling one of the integer comparisons here. Since SSE only has
5622 // GT and EQ comparisons for integer, swapping operands and multiple
5623 // operations may be required for some comparisons.
5624 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
5625 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michel91099d62009-02-17 22:15:04 +00005626
Nate Begeman03605a02008-07-17 16:51:19 +00005627 switch (VT.getSimpleVT()) {
5628 default: break;
5629 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
5630 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
5631 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
5632 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
5633 }
Scott Michel91099d62009-02-17 22:15:04 +00005634
Nate Begeman03605a02008-07-17 16:51:19 +00005635 switch (SetCCOpcode) {
5636 default: break;
5637 case ISD::SETNE: Invert = true;
5638 case ISD::SETEQ: Opc = EQOpc; break;
5639 case ISD::SETLT: Swap = true;
5640 case ISD::SETGT: Opc = GTOpc; break;
5641 case ISD::SETGE: Swap = true;
5642 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
5643 case ISD::SETULT: Swap = true;
5644 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
5645 case ISD::SETUGE: Swap = true;
5646 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
5647 }
5648 if (Swap)
5649 std::swap(Op0, Op1);
Scott Michel91099d62009-02-17 22:15:04 +00005650
Nate Begeman03605a02008-07-17 16:51:19 +00005651 // Since SSE has no unsigned integer comparisons, we need to flip the sign
5652 // bits of the inputs before performing those operations.
5653 if (FlipSigns) {
5654 MVT EltVT = VT.getVectorElementType();
Duncan Sands505ba942009-02-01 18:06:53 +00005655 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
5656 EltVT);
Dan Gohman8181bd12008-07-27 21:46:04 +00005657 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Cheng907a2d22009-02-25 22:49:59 +00005658 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
5659 SignBits.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00005660 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
5661 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman03605a02008-07-17 16:51:19 +00005662 }
Scott Michel91099d62009-02-17 22:15:04 +00005663
Dale Johannesence0805b2009-02-03 19:33:06 +00005664 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman03605a02008-07-17 16:51:19 +00005665
5666 // If the logical-not of the result is required, perform that now.
Bob Wilson81a42cf2009-01-22 17:39:32 +00005667 if (Invert)
Dale Johannesence0805b2009-02-03 19:33:06 +00005668 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson81a42cf2009-01-22 17:39:32 +00005669
Nate Begeman03605a02008-07-17 16:51:19 +00005670 return Result;
5671}
Evan Cheng950aac02007-09-25 01:57:46 +00005672
Evan Chengd580f022008-12-03 08:38:43 +00005673// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman99a12192009-03-04 19:44:21 +00005674static bool isX86LogicalCmp(SDValue Op) {
5675 unsigned Opc = Op.getNode()->getOpcode();
5676 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
5677 return true;
5678 if (Op.getResNo() == 1 &&
5679 (Opc == X86ISD::ADD ||
5680 Opc == X86ISD::SUB ||
5681 Opc == X86ISD::SMUL ||
5682 Opc == X86ISD::UMUL ||
5683 Opc == X86ISD::INC ||
5684 Opc == X86ISD::DEC))
5685 return true;
5686
5687 return false;
Evan Chengd580f022008-12-03 08:38:43 +00005688}
5689
Dan Gohman8181bd12008-07-27 21:46:04 +00005690SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005691 bool addTest = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00005692 SDValue Cond = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005693 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00005694 SDValue CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005695
5696 if (Cond.getOpcode() == ISD::SETCC)
Evan Cheng621216e2007-09-29 00:00:36 +00005697 Cond = LowerSETCC(Cond, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005698
Evan Cheng50d37ab2007-10-08 22:16:29 +00005699 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5700 // setting operand in place of the X86ISD::SETCC.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005701 if (Cond.getOpcode() == X86ISD::SETCC) {
5702 CC = Cond.getOperand(0);
5703
Dan Gohman8181bd12008-07-27 21:46:04 +00005704 SDValue Cmp = Cond.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005705 unsigned Opc = Cmp.getOpcode();
Duncan Sands92c43912008-06-06 12:08:01 +00005706 MVT VT = Op.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00005707
Evan Cheng50d37ab2007-10-08 22:16:29 +00005708 bool IllegalFPCMov = false;
Duncan Sands92c43912008-06-06 12:08:01 +00005709 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattnercf515b52008-01-16 06:24:21 +00005710 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman40686732008-09-26 21:54:37 +00005711 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michel91099d62009-02-17 22:15:04 +00005712
Chris Lattnere4577dc2009-03-12 06:52:53 +00005713 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
5714 Opc == X86ISD::BT) { // FIXME
Evan Cheng50d37ab2007-10-08 22:16:29 +00005715 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00005716 addTest = false;
5717 }
5718 }
5719
5720 if (addTest) {
5721 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohmanc8b47852009-03-07 01:58:32 +00005722 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng950aac02007-09-25 01:57:46 +00005723 }
5724
Duncan Sands92c43912008-06-06 12:08:01 +00005725 const MVT *VTs = DAG.getNodeValueTypes(Op.getValueType(),
Evan Cheng950aac02007-09-25 01:57:46 +00005726 MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005727 SmallVector<SDValue, 4> Ops;
Evan Cheng950aac02007-09-25 01:57:46 +00005728 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
5729 // condition is true.
5730 Ops.push_back(Op.getOperand(2));
5731 Ops.push_back(Op.getOperand(1));
5732 Ops.push_back(CC);
5733 Ops.push_back(Cond);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005734 return DAG.getNode(X86ISD::CMOV, dl, VTs, 2, &Ops[0], Ops.size());
Evan Cheng950aac02007-09-25 01:57:46 +00005735}
5736
Evan Chengd580f022008-12-03 08:38:43 +00005737// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
5738// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
5739// from the AND / OR.
5740static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
5741 Opc = Op.getOpcode();
5742 if (Opc != ISD::OR && Opc != ISD::AND)
5743 return false;
5744 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5745 Op.getOperand(0).hasOneUse() &&
5746 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
5747 Op.getOperand(1).hasOneUse());
5748}
5749
Evan Cheng67f98b12009-02-02 08:19:07 +00005750// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
5751// 1 and that the SETCC node has a single use.
Evan Cheng8c3af2c2009-02-02 08:07:36 +00005752static bool isXor1OfSetCC(SDValue Op) {
5753 if (Op.getOpcode() != ISD::XOR)
5754 return false;
5755 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
5756 if (N1C && N1C->getAPIntValue() == 1) {
5757 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5758 Op.getOperand(0).hasOneUse();
5759 }
5760 return false;
5761}
5762
Dan Gohman8181bd12008-07-27 21:46:04 +00005763SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005764 bool addTest = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00005765 SDValue Chain = Op.getOperand(0);
5766 SDValue Cond = Op.getOperand(1);
5767 SDValue Dest = Op.getOperand(2);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005768 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00005769 SDValue CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005770
5771 if (Cond.getOpcode() == ISD::SETCC)
Evan Cheng621216e2007-09-29 00:00:36 +00005772 Cond = LowerSETCC(Cond, DAG);
Chris Lattner77a62312008-12-25 05:34:37 +00005773#if 0
5774 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingf5399032008-12-12 21:15:41 +00005775 else if (Cond.getOpcode() == X86ISD::ADD ||
5776 Cond.getOpcode() == X86ISD::SUB ||
5777 Cond.getOpcode() == X86ISD::SMUL ||
5778 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling7e04be62008-12-09 22:08:41 +00005779 Cond = LowerXALUO(Cond, DAG);
Chris Lattner77a62312008-12-25 05:34:37 +00005780#endif
Scott Michel91099d62009-02-17 22:15:04 +00005781
Evan Cheng50d37ab2007-10-08 22:16:29 +00005782 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5783 // setting operand in place of the X86ISD::SETCC.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005784 if (Cond.getOpcode() == X86ISD::SETCC) {
5785 CC = Cond.getOperand(0);
5786
Dan Gohman8181bd12008-07-27 21:46:04 +00005787 SDValue Cmp = Cond.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005788 unsigned Opc = Cmp.getOpcode();
Chris Lattner77a62312008-12-25 05:34:37 +00005789 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman99a12192009-03-04 19:44:21 +00005790 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng50d37ab2007-10-08 22:16:29 +00005791 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00005792 addTest = false;
Bill Wendlingd3511522008-12-02 01:06:39 +00005793 } else {
Evan Chengd580f022008-12-03 08:38:43 +00005794 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling809e7bd2008-12-03 08:32:02 +00005795 default: break;
5796 case X86::COND_O:
Dan Gohman0fc9ed62009-01-07 00:15:08 +00005797 case X86::COND_B:
Chris Lattner77a62312008-12-25 05:34:37 +00005798 // These can only come from an arithmetic instruction with overflow,
5799 // e.g. SADDO, UADDO.
Bill Wendling809e7bd2008-12-03 08:32:02 +00005800 Cond = Cond.getNode()->getOperand(1);
5801 addTest = false;
5802 break;
Bill Wendlingd3511522008-12-02 01:06:39 +00005803 }
Evan Cheng950aac02007-09-25 01:57:46 +00005804 }
Evan Chengd580f022008-12-03 08:38:43 +00005805 } else {
5806 unsigned CondOpc;
5807 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
5808 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Chengd580f022008-12-03 08:38:43 +00005809 if (CondOpc == ISD::OR) {
5810 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
5811 // two branches instead of an explicit OR instruction with a
5812 // separate test.
5813 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman99a12192009-03-04 19:44:21 +00005814 isX86LogicalCmp(Cmp)) {
Evan Chengd580f022008-12-03 08:38:43 +00005815 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005816 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Chengd580f022008-12-03 08:38:43 +00005817 Chain, Dest, CC, Cmp);
5818 CC = Cond.getOperand(1).getOperand(0);
5819 Cond = Cmp;
5820 addTest = false;
5821 }
5822 } else { // ISD::AND
5823 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
5824 // two branches instead of an explicit AND instruction with a
5825 // separate test. However, we only do this if this block doesn't
5826 // have a fall-through edge, because this requires an explicit
5827 // jmp when the condition is false.
5828 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman99a12192009-03-04 19:44:21 +00005829 isX86LogicalCmp(Cmp) &&
Evan Chengd580f022008-12-03 08:38:43 +00005830 Op.getNode()->hasOneUse()) {
5831 X86::CondCode CCode =
5832 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5833 CCode = X86::GetOppositeBranchCondition(CCode);
5834 CC = DAG.getConstant(CCode, MVT::i8);
5835 SDValue User = SDValue(*Op.getNode()->use_begin(), 0);
5836 // Look for an unconditional branch following this conditional branch.
5837 // We need this because we need to reverse the successors in order
5838 // to implement FCMP_OEQ.
5839 if (User.getOpcode() == ISD::BR) {
5840 SDValue FalseBB = User.getOperand(1);
5841 SDValue NewBR =
5842 DAG.UpdateNodeOperands(User, User.getOperand(0), Dest);
5843 assert(NewBR == User);
5844 Dest = FalseBB;
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005845
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005846 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Chengd580f022008-12-03 08:38:43 +00005847 Chain, Dest, CC, Cmp);
5848 X86::CondCode CCode =
5849 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
5850 CCode = X86::GetOppositeBranchCondition(CCode);
5851 CC = DAG.getConstant(CCode, MVT::i8);
5852 Cond = Cmp;
5853 addTest = false;
5854 }
5855 }
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005856 }
Evan Cheng8c3af2c2009-02-02 08:07:36 +00005857 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
5858 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
5859 // It should be transformed during dag combiner except when the condition
5860 // is set by a arithmetics with overflow node.
5861 X86::CondCode CCode =
5862 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5863 CCode = X86::GetOppositeBranchCondition(CCode);
5864 CC = DAG.getConstant(CCode, MVT::i8);
5865 Cond = Cond.getOperand(0).getOperand(1);
5866 addTest = false;
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005867 }
Evan Cheng950aac02007-09-25 01:57:46 +00005868 }
5869
5870 if (addTest) {
5871 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohmanc8b47852009-03-07 01:58:32 +00005872 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng950aac02007-09-25 01:57:46 +00005873 }
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005874 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005875 Chain, Dest, CC, Cond);
Evan Cheng950aac02007-09-25 01:57:46 +00005876}
5877
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005878
5879// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
5880// Calls to _alloca is needed to probe the stack when allocating more than 4k
5881// bytes in one go. Touching the stack at 4K increments is necessary to ensure
5882// that the guard pages used by the OS virtual memory manager are allocated in
5883// correct sequence.
Dan Gohman8181bd12008-07-27 21:46:04 +00005884SDValue
5885X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005886 SelectionDAG &DAG) {
5887 assert(Subtarget->isTargetCygMing() &&
5888 "This should be used only on Cygwin/Mingw targets");
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005889 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005890
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005891 // Get the inputs.
Dan Gohman8181bd12008-07-27 21:46:04 +00005892 SDValue Chain = Op.getOperand(0);
5893 SDValue Size = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005894 // FIXME: Ensure alignment here
5895
Dan Gohman8181bd12008-07-27 21:46:04 +00005896 SDValue Flag;
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005897
Duncan Sands92c43912008-06-06 12:08:01 +00005898 MVT IntPtr = getPointerTy();
5899 MVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005900
Chris Lattnerfe5d4022008-10-11 22:08:30 +00005901 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005902
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00005903 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005904 Flag = Chain.getValue(1);
5905
5906 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005907 SDValue Ops[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00005908 DAG.getTargetExternalSymbol("_alloca", IntPtr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005909 DAG.getRegister(X86::EAX, IntPtr),
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005910 DAG.getRegister(X86StackPtr, SPTy),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005911 Flag };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005912 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005913 Flag = Chain.getValue(1);
5914
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005915 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnerfe5d4022008-10-11 22:08:30 +00005916 DAG.getIntPtrConstant(0, true),
5917 DAG.getIntPtrConstant(0, true),
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005918 Flag);
5919
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00005920 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005921
Dan Gohman8181bd12008-07-27 21:46:04 +00005922 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005923 return DAG.getMergeValues(Ops1, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005924}
5925
Dan Gohman8181bd12008-07-27 21:46:04 +00005926SDValue
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005927X86TargetLowering::EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl,
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005928 SDValue Chain,
5929 SDValue Dst, SDValue Src,
5930 SDValue Size, unsigned Align,
5931 const Value *DstSV,
Bill Wendling4b2e3782008-10-01 00:59:58 +00005932 uint64_t DstSVOff) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00005933 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005934
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005935 // If not DWORD aligned or size is more than the threshold, call the library.
5936 // The libc version is likely to be faster for these cases. It can use the
5937 // address value and run time information about the CPU.
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005938 if ((Align & 3) != 0 ||
Dan Gohmane8b391e2008-04-12 04:36:06 +00005939 !ConstantSize ||
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005940 ConstantSize->getZExtValue() >
5941 getSubtarget()->getMaxInlineSizeThreshold()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005942 SDValue InFlag(0, 0);
Dan Gohmanf95c2bf2008-04-01 20:38:36 +00005943
5944 // Check to see if there is a specialized entry-point for memory zeroing.
Dan Gohmane8b391e2008-04-12 04:36:06 +00005945 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005946
Bill Wendling4b2e3782008-10-01 00:59:58 +00005947 if (const char *bzeroEntry = V &&
5948 V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
5949 MVT IntPtr = getPointerTy();
5950 const Type *IntPtrTy = TD->getIntPtrType();
Scott Michel91099d62009-02-17 22:15:04 +00005951 TargetLowering::ArgListTy Args;
Bill Wendling4b2e3782008-10-01 00:59:58 +00005952 TargetLowering::ArgListEntry Entry;
5953 Entry.Node = Dst;
5954 Entry.Ty = IntPtrTy;
5955 Args.push_back(Entry);
5956 Entry.Node = Size;
5957 Args.push_back(Entry);
5958 std::pair<SDValue,SDValue> CallResult =
Scott Michel91099d62009-02-17 22:15:04 +00005959 LowerCallTo(Chain, Type::VoidTy, false, false, false, false,
5960 CallingConv::C, false,
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005961 DAG.getExternalSymbol(bzeroEntry, IntPtr), Args, DAG, dl);
Bill Wendling4b2e3782008-10-01 00:59:58 +00005962 return CallResult.second;
Dan Gohmanf95c2bf2008-04-01 20:38:36 +00005963 }
5964
Dan Gohmane8b391e2008-04-12 04:36:06 +00005965 // Otherwise have the target-independent code call memset.
Dan Gohman8181bd12008-07-27 21:46:04 +00005966 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005967 }
5968
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005969 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00005970 SDValue InFlag(0, 0);
Duncan Sands92c43912008-06-06 12:08:01 +00005971 MVT AVT;
Dan Gohman8181bd12008-07-27 21:46:04 +00005972 SDValue Count;
Dan Gohmane8b391e2008-04-12 04:36:06 +00005973 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005974 unsigned BytesLeft = 0;
5975 bool TwoRepStos = false;
5976 if (ValC) {
5977 unsigned ValReg;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005978 uint64_t Val = ValC->getZExtValue() & 255;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005979
5980 // If the value is a constant, then we can potentially use larger sets.
5981 switch (Align & 3) {
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005982 case 2: // WORD aligned
5983 AVT = MVT::i16;
5984 ValReg = X86::AX;
5985 Val = (Val << 8) | Val;
5986 break;
5987 case 0: // DWORD aligned
5988 AVT = MVT::i32;
5989 ValReg = X86::EAX;
5990 Val = (Val << 8) | Val;
5991 Val = (Val << 16) | Val;
5992 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
5993 AVT = MVT::i64;
5994 ValReg = X86::RAX;
5995 Val = (Val << 32) | Val;
5996 }
5997 break;
5998 default: // Byte aligned
5999 AVT = MVT::i8;
6000 ValReg = X86::AL;
6001 Count = DAG.getIntPtrConstant(SizeVal);
6002 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006003 }
6004
Duncan Sandsec142ee2008-06-08 20:54:56 +00006005 if (AVT.bitsGT(MVT::i8)) {
Duncan Sands92c43912008-06-06 12:08:01 +00006006 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohmane8b391e2008-04-12 04:36:06 +00006007 Count = DAG.getIntPtrConstant(SizeVal / UBytes);
6008 BytesLeft = SizeVal % UBytes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006009 }
6010
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006011 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, AVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006012 InFlag);
6013 InFlag = Chain.getValue(1);
6014 } else {
6015 AVT = MVT::i8;
Dan Gohman271d1c22008-04-16 01:32:32 +00006016 Count = DAG.getIntPtrConstant(SizeVal);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006017 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006018 InFlag = Chain.getValue(1);
6019 }
6020
Scott Michel91099d62009-02-17 22:15:04 +00006021 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006022 X86::ECX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006023 Count, InFlag);
6024 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00006025 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006026 X86::EDI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00006027 Dst, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006028 InFlag = Chain.getValue(1);
6029
6030 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006031 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006032 Ops.push_back(Chain);
6033 Ops.push_back(DAG.getValueType(AVT));
6034 Ops.push_back(InFlag);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006035 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006036
6037 if (TwoRepStos) {
6038 InFlag = Chain.getValue(1);
Dan Gohmane8b391e2008-04-12 04:36:06 +00006039 Count = Size;
Duncan Sands92c43912008-06-06 12:08:01 +00006040 MVT CVT = Count.getValueType();
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006041 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006042 DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
Scott Michel91099d62009-02-17 22:15:04 +00006043 Chain = DAG.getCopyToReg(Chain, dl, (CVT == MVT::i64) ? X86::RCX :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006044 X86::ECX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006045 Left, InFlag);
6046 InFlag = Chain.getValue(1);
6047 Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6048 Ops.clear();
6049 Ops.push_back(Chain);
6050 Ops.push_back(DAG.getValueType(MVT::i8));
6051 Ops.push_back(InFlag);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006052 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006053 } else if (BytesLeft) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00006054 // Handle the last 1 - 7 bytes.
6055 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands92c43912008-06-06 12:08:01 +00006056 MVT AddrVT = Dst.getValueType();
6057 MVT SizeVT = Size.getValueType();
Dan Gohmane8b391e2008-04-12 04:36:06 +00006058
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006059 Chain = DAG.getMemset(Chain, dl,
6060 DAG.getNode(ISD::ADD, dl, AddrVT, Dst,
Dan Gohmane8b391e2008-04-12 04:36:06 +00006061 DAG.getConstant(Offset, AddrVT)),
6062 Src,
6063 DAG.getConstant(BytesLeft, SizeVT),
Dan Gohman65118f42008-04-28 17:15:20 +00006064 Align, DstSV, DstSVOff + Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006065 }
6066
Dan Gohmane8b391e2008-04-12 04:36:06 +00006067 // TODO: Use a Tokenfactor, as in memcpy, instead of a single chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006068 return Chain;
6069}
6070
Dan Gohman8181bd12008-07-27 21:46:04 +00006071SDValue
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006072X86TargetLowering::EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00006073 SDValue Chain, SDValue Dst, SDValue Src,
6074 SDValue Size, unsigned Align,
6075 bool AlwaysInline,
6076 const Value *DstSV, uint64_t DstSVOff,
Scott Michel91099d62009-02-17 22:15:04 +00006077 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00006078 // This requires the copy size to be a constant, preferrably
6079 // within a subtarget-specific limit.
6080 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
6081 if (!ConstantSize)
Dan Gohman8181bd12008-07-27 21:46:04 +00006082 return SDValue();
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006083 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohmane8b391e2008-04-12 04:36:06 +00006084 if (!AlwaysInline && SizeVal > getSubtarget()->getMaxInlineSizeThreshold())
Dan Gohman8181bd12008-07-27 21:46:04 +00006085 return SDValue();
Dan Gohmane8b391e2008-04-12 04:36:06 +00006086
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00006087 /// If not DWORD aligned, call the library.
6088 if ((Align & 3) != 0)
6089 return SDValue();
6090
6091 // DWORD aligned
6092 MVT AVT = MVT::i32;
6093 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) // QWORD aligned
Dan Gohmane8b391e2008-04-12 04:36:06 +00006094 AVT = MVT::i64;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006095
Duncan Sands92c43912008-06-06 12:08:01 +00006096 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohmane8b391e2008-04-12 04:36:06 +00006097 unsigned CountVal = SizeVal / UBytes;
Dan Gohman8181bd12008-07-27 21:46:04 +00006098 SDValue Count = DAG.getIntPtrConstant(CountVal);
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00006099 unsigned BytesLeft = SizeVal % UBytes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006100
Dan Gohman8181bd12008-07-27 21:46:04 +00006101 SDValue InFlag(0, 0);
Scott Michel91099d62009-02-17 22:15:04 +00006102 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006103 X86::ECX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006104 Count, InFlag);
6105 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00006106 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006107 X86::EDI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00006108 Dst, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006109 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00006110 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RSI :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006111 X86::ESI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00006112 Src, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006113 InFlag = Chain.getValue(1);
6114
6115 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006116 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006117 Ops.push_back(Chain);
6118 Ops.push_back(DAG.getValueType(AVT));
6119 Ops.push_back(InFlag);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006120 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, dl, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006121
Dan Gohman8181bd12008-07-27 21:46:04 +00006122 SmallVector<SDValue, 4> Results;
Evan Cheng38d3c522008-04-25 00:26:43 +00006123 Results.push_back(RepMovs);
Rafael Espindolaf12f3a92007-09-28 12:53:01 +00006124 if (BytesLeft) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00006125 // Handle the last 1 - 7 bytes.
6126 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands92c43912008-06-06 12:08:01 +00006127 MVT DstVT = Dst.getValueType();
6128 MVT SrcVT = Src.getValueType();
6129 MVT SizeVT = Size.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00006130 Results.push_back(DAG.getMemcpy(Chain, dl,
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006131 DAG.getNode(ISD::ADD, dl, DstVT, Dst,
Evan Cheng38d3c522008-04-25 00:26:43 +00006132 DAG.getConstant(Offset, DstVT)),
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006133 DAG.getNode(ISD::ADD, dl, SrcVT, Src,
Evan Cheng38d3c522008-04-25 00:26:43 +00006134 DAG.getConstant(Offset, SrcVT)),
Dan Gohmane8b391e2008-04-12 04:36:06 +00006135 DAG.getConstant(BytesLeft, SizeVT),
6136 Align, AlwaysInline,
Dan Gohman65118f42008-04-28 17:15:20 +00006137 DstSV, DstSVOff + Offset,
6138 SrcSV, SrcSVOff + Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006139 }
6140
Scott Michel91099d62009-02-17 22:15:04 +00006141 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006142 &Results[0], Results.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006143}
6144
Dan Gohman8181bd12008-07-27 21:46:04 +00006145SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) {
Dan Gohman12a9c082008-02-06 22:27:42 +00006146 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006147 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006148
6149 if (!Subtarget->is64Bit()) {
6150 // vastart just stores the address of the VarArgsFrameIndex slot into the
6151 // memory location argument.
Dan Gohman8181bd12008-07-27 21:46:04 +00006152 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006153 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006154 }
6155
6156 // __va_list_tag:
6157 // gp_offset (0 - 6 * 8)
6158 // fp_offset (48 - 48 + 8 * 16)
6159 // overflow_arg_area (point to parameters coming in memory).
6160 // reg_save_area
Dan Gohman8181bd12008-07-27 21:46:04 +00006161 SmallVector<SDValue, 8> MemOps;
6162 SDValue FIN = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006163 // Store gp_offset
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006164 SDValue Store = DAG.getStore(Op.getOperand(0), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006165 DAG.getConstant(VarArgsGPOffset, MVT::i32),
Dan Gohman12a9c082008-02-06 22:27:42 +00006166 FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006167 MemOps.push_back(Store);
6168
6169 // Store fp_offset
Scott Michel91099d62009-02-17 22:15:04 +00006170 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006171 FIN, DAG.getIntPtrConstant(4));
6172 Store = DAG.getStore(Op.getOperand(0), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006173 DAG.getConstant(VarArgsFPOffset, MVT::i32),
Dan Gohman12a9c082008-02-06 22:27:42 +00006174 FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006175 MemOps.push_back(Store);
6176
6177 // Store ptr to overflow_arg_area
Scott Michel91099d62009-02-17 22:15:04 +00006178 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006179 FIN, DAG.getIntPtrConstant(4));
Dan Gohman8181bd12008-07-27 21:46:04 +00006180 SDValue OVFIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006181 Store = DAG.getStore(Op.getOperand(0), dl, OVFIN, FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006182 MemOps.push_back(Store);
6183
6184 // Store ptr to reg_save_area.
Scott Michel91099d62009-02-17 22:15:04 +00006185 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006186 FIN, DAG.getIntPtrConstant(8));
Dan Gohman8181bd12008-07-27 21:46:04 +00006187 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006188 Store = DAG.getStore(Op.getOperand(0), dl, RSFIN, FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006189 MemOps.push_back(Store);
Scott Michel91099d62009-02-17 22:15:04 +00006190 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006191 &MemOps[0], MemOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006192}
6193
Dan Gohman8181bd12008-07-27 21:46:04 +00006194SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) {
Dan Gohman827cb1f2008-05-10 01:26:14 +00006195 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
6196 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_arg!");
Dan Gohman8181bd12008-07-27 21:46:04 +00006197 SDValue Chain = Op.getOperand(0);
6198 SDValue SrcPtr = Op.getOperand(1);
6199 SDValue SrcSV = Op.getOperand(2);
Dan Gohman827cb1f2008-05-10 01:26:14 +00006200
6201 assert(0 && "VAArgInst is not yet implemented for x86-64!");
6202 abort();
Dan Gohman8181bd12008-07-27 21:46:04 +00006203 return SDValue();
Dan Gohman827cb1f2008-05-10 01:26:14 +00006204}
6205
Dan Gohman8181bd12008-07-27 21:46:04 +00006206SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006207 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman840ff5c2008-04-18 20:55:41 +00006208 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman8181bd12008-07-27 21:46:04 +00006209 SDValue Chain = Op.getOperand(0);
6210 SDValue DstPtr = Op.getOperand(1);
6211 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman12a9c082008-02-06 22:27:42 +00006212 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
6213 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006214 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006215
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006216 return DAG.getMemcpy(Chain, dl, DstPtr, SrcPtr,
Dan Gohman840ff5c2008-04-18 20:55:41 +00006217 DAG.getIntPtrConstant(24), 8, false,
6218 DstSV, 0, SrcSV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006219}
6220
Dan Gohman8181bd12008-07-27 21:46:04 +00006221SDValue
6222X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006223 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006224 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006225 switch (IntNo) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006226 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006227 // Comparison intrinsics.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006228 case Intrinsic::x86_sse_comieq_ss:
6229 case Intrinsic::x86_sse_comilt_ss:
6230 case Intrinsic::x86_sse_comile_ss:
6231 case Intrinsic::x86_sse_comigt_ss:
6232 case Intrinsic::x86_sse_comige_ss:
6233 case Intrinsic::x86_sse_comineq_ss:
6234 case Intrinsic::x86_sse_ucomieq_ss:
6235 case Intrinsic::x86_sse_ucomilt_ss:
6236 case Intrinsic::x86_sse_ucomile_ss:
6237 case Intrinsic::x86_sse_ucomigt_ss:
6238 case Intrinsic::x86_sse_ucomige_ss:
6239 case Intrinsic::x86_sse_ucomineq_ss:
6240 case Intrinsic::x86_sse2_comieq_sd:
6241 case Intrinsic::x86_sse2_comilt_sd:
6242 case Intrinsic::x86_sse2_comile_sd:
6243 case Intrinsic::x86_sse2_comigt_sd:
6244 case Intrinsic::x86_sse2_comige_sd:
6245 case Intrinsic::x86_sse2_comineq_sd:
6246 case Intrinsic::x86_sse2_ucomieq_sd:
6247 case Intrinsic::x86_sse2_ucomilt_sd:
6248 case Intrinsic::x86_sse2_ucomile_sd:
6249 case Intrinsic::x86_sse2_ucomigt_sd:
6250 case Intrinsic::x86_sse2_ucomige_sd:
6251 case Intrinsic::x86_sse2_ucomineq_sd: {
6252 unsigned Opc = 0;
6253 ISD::CondCode CC = ISD::SETCC_INVALID;
6254 switch (IntNo) {
6255 default: break;
6256 case Intrinsic::x86_sse_comieq_ss:
6257 case Intrinsic::x86_sse2_comieq_sd:
6258 Opc = X86ISD::COMI;
6259 CC = ISD::SETEQ;
6260 break;
6261 case Intrinsic::x86_sse_comilt_ss:
6262 case Intrinsic::x86_sse2_comilt_sd:
6263 Opc = X86ISD::COMI;
6264 CC = ISD::SETLT;
6265 break;
6266 case Intrinsic::x86_sse_comile_ss:
6267 case Intrinsic::x86_sse2_comile_sd:
6268 Opc = X86ISD::COMI;
6269 CC = ISD::SETLE;
6270 break;
6271 case Intrinsic::x86_sse_comigt_ss:
6272 case Intrinsic::x86_sse2_comigt_sd:
6273 Opc = X86ISD::COMI;
6274 CC = ISD::SETGT;
6275 break;
6276 case Intrinsic::x86_sse_comige_ss:
6277 case Intrinsic::x86_sse2_comige_sd:
6278 Opc = X86ISD::COMI;
6279 CC = ISD::SETGE;
6280 break;
6281 case Intrinsic::x86_sse_comineq_ss:
6282 case Intrinsic::x86_sse2_comineq_sd:
6283 Opc = X86ISD::COMI;
6284 CC = ISD::SETNE;
6285 break;
6286 case Intrinsic::x86_sse_ucomieq_ss:
6287 case Intrinsic::x86_sse2_ucomieq_sd:
6288 Opc = X86ISD::UCOMI;
6289 CC = ISD::SETEQ;
6290 break;
6291 case Intrinsic::x86_sse_ucomilt_ss:
6292 case Intrinsic::x86_sse2_ucomilt_sd:
6293 Opc = X86ISD::UCOMI;
6294 CC = ISD::SETLT;
6295 break;
6296 case Intrinsic::x86_sse_ucomile_ss:
6297 case Intrinsic::x86_sse2_ucomile_sd:
6298 Opc = X86ISD::UCOMI;
6299 CC = ISD::SETLE;
6300 break;
6301 case Intrinsic::x86_sse_ucomigt_ss:
6302 case Intrinsic::x86_sse2_ucomigt_sd:
6303 Opc = X86ISD::UCOMI;
6304 CC = ISD::SETGT;
6305 break;
6306 case Intrinsic::x86_sse_ucomige_ss:
6307 case Intrinsic::x86_sse2_ucomige_sd:
6308 Opc = X86ISD::UCOMI;
6309 CC = ISD::SETGE;
6310 break;
6311 case Intrinsic::x86_sse_ucomineq_ss:
6312 case Intrinsic::x86_sse2_ucomineq_sd:
6313 Opc = X86ISD::UCOMI;
6314 CC = ISD::SETNE;
6315 break;
6316 }
6317
Dan Gohman8181bd12008-07-27 21:46:04 +00006318 SDValue LHS = Op.getOperand(1);
6319 SDValue RHS = Op.getOperand(2);
Chris Lattnerebb91142008-12-24 23:53:05 +00006320 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006321 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
6322 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Evan Cheng89c17632008-08-17 19:22:34 +00006323 DAG.getConstant(X86CC, MVT::i8), Cond);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006324 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006325 }
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006326
6327 // Fix vector shift instructions where the last operand is a non-immediate
6328 // i32 value.
6329 case Intrinsic::x86_sse2_pslli_w:
6330 case Intrinsic::x86_sse2_pslli_d:
6331 case Intrinsic::x86_sse2_pslli_q:
6332 case Intrinsic::x86_sse2_psrli_w:
6333 case Intrinsic::x86_sse2_psrli_d:
6334 case Intrinsic::x86_sse2_psrli_q:
6335 case Intrinsic::x86_sse2_psrai_w:
6336 case Intrinsic::x86_sse2_psrai_d:
6337 case Intrinsic::x86_mmx_pslli_w:
6338 case Intrinsic::x86_mmx_pslli_d:
6339 case Intrinsic::x86_mmx_pslli_q:
6340 case Intrinsic::x86_mmx_psrli_w:
6341 case Intrinsic::x86_mmx_psrli_d:
6342 case Intrinsic::x86_mmx_psrli_q:
6343 case Intrinsic::x86_mmx_psrai_w:
6344 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006345 SDValue ShAmt = Op.getOperand(2);
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006346 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman8181bd12008-07-27 21:46:04 +00006347 return SDValue();
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006348
6349 unsigned NewIntNo = 0;
Duncan Sands92c43912008-06-06 12:08:01 +00006350 MVT ShAmtVT = MVT::v4i32;
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006351 switch (IntNo) {
6352 case Intrinsic::x86_sse2_pslli_w:
6353 NewIntNo = Intrinsic::x86_sse2_psll_w;
6354 break;
6355 case Intrinsic::x86_sse2_pslli_d:
6356 NewIntNo = Intrinsic::x86_sse2_psll_d;
6357 break;
6358 case Intrinsic::x86_sse2_pslli_q:
6359 NewIntNo = Intrinsic::x86_sse2_psll_q;
6360 break;
6361 case Intrinsic::x86_sse2_psrli_w:
6362 NewIntNo = Intrinsic::x86_sse2_psrl_w;
6363 break;
6364 case Intrinsic::x86_sse2_psrli_d:
6365 NewIntNo = Intrinsic::x86_sse2_psrl_d;
6366 break;
6367 case Intrinsic::x86_sse2_psrli_q:
6368 NewIntNo = Intrinsic::x86_sse2_psrl_q;
6369 break;
6370 case Intrinsic::x86_sse2_psrai_w:
6371 NewIntNo = Intrinsic::x86_sse2_psra_w;
6372 break;
6373 case Intrinsic::x86_sse2_psrai_d:
6374 NewIntNo = Intrinsic::x86_sse2_psra_d;
6375 break;
6376 default: {
6377 ShAmtVT = MVT::v2i32;
6378 switch (IntNo) {
6379 case Intrinsic::x86_mmx_pslli_w:
6380 NewIntNo = Intrinsic::x86_mmx_psll_w;
6381 break;
6382 case Intrinsic::x86_mmx_pslli_d:
6383 NewIntNo = Intrinsic::x86_mmx_psll_d;
6384 break;
6385 case Intrinsic::x86_mmx_pslli_q:
6386 NewIntNo = Intrinsic::x86_mmx_psll_q;
6387 break;
6388 case Intrinsic::x86_mmx_psrli_w:
6389 NewIntNo = Intrinsic::x86_mmx_psrl_w;
6390 break;
6391 case Intrinsic::x86_mmx_psrli_d:
6392 NewIntNo = Intrinsic::x86_mmx_psrl_d;
6393 break;
6394 case Intrinsic::x86_mmx_psrli_q:
6395 NewIntNo = Intrinsic::x86_mmx_psrl_q;
6396 break;
6397 case Intrinsic::x86_mmx_psrai_w:
6398 NewIntNo = Intrinsic::x86_mmx_psra_w;
6399 break;
6400 case Intrinsic::x86_mmx_psrai_d:
6401 NewIntNo = Intrinsic::x86_mmx_psra_d;
6402 break;
6403 default: abort(); // Can't reach here.
6404 }
6405 break;
6406 }
6407 }
Duncan Sands92c43912008-06-06 12:08:01 +00006408 MVT VT = Op.getValueType();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006409 ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT,
6410 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, ShAmtVT, ShAmt));
6411 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006412 DAG.getConstant(NewIntNo, MVT::i32),
6413 Op.getOperand(1), ShAmt);
6414 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006415 }
6416}
6417
Dan Gohman8181bd12008-07-27 21:46:04 +00006418SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
Bill Wendling6ddc87b2009-01-16 19:25:27 +00006419 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006420 DebugLoc dl = Op.getDebugLoc();
Bill Wendling6ddc87b2009-01-16 19:25:27 +00006421
6422 if (Depth > 0) {
6423 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
6424 SDValue Offset =
6425 DAG.getConstant(TD->getPointerSize(),
6426 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006427 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michel91099d62009-02-17 22:15:04 +00006428 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006429 FrameAddr, Offset),
Bill Wendling6ddc87b2009-01-16 19:25:27 +00006430 NULL, 0);
6431 }
6432
6433 // Just load the return address.
Dan Gohman8181bd12008-07-27 21:46:04 +00006434 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michel91099d62009-02-17 22:15:04 +00006435 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006436 RetAddrFI, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006437}
6438
Dan Gohman8181bd12008-07-27 21:46:04 +00006439SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
Evan Cheng33633672008-09-27 01:56:22 +00006440 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6441 MFI->setFrameAddressIsTaken(true);
6442 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006443 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng33633672008-09-27 01:56:22 +00006444 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
6445 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006446 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng33633672008-09-27 01:56:22 +00006447 while (Depth--)
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006448 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, NULL, 0);
Evan Cheng33633672008-09-27 01:56:22 +00006449 return FrameAddr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006450}
6451
Dan Gohman8181bd12008-07-27 21:46:04 +00006452SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Anton Korobeynikov566f9d92008-09-08 21:12:11 +00006453 SelectionDAG &DAG) {
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006454 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006455}
6456
Dan Gohman8181bd12008-07-27 21:46:04 +00006457SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006458{
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006459 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman8181bd12008-07-27 21:46:04 +00006460 SDValue Chain = Op.getOperand(0);
6461 SDValue Offset = Op.getOperand(1);
6462 SDValue Handler = Op.getOperand(2);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006463 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006464
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006465 SDValue Frame = DAG.getRegister(Subtarget->is64Bit() ? X86::RBP : X86::EBP,
6466 getPointerTy());
6467 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006468
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006469 SDValue StoreAddr = DAG.getNode(ISD::SUB, dl, getPointerTy(), Frame,
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006470 DAG.getIntPtrConstant(-TD->getPointerSize()));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006471 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
6472 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, NULL, 0);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006473 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006474 MF.getRegInfo().addLiveOut(StoreAddrReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006475
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006476 return DAG.getNode(X86ISD::EH_RETURN, dl,
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006477 MVT::Other,
6478 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006479}
6480
Dan Gohman8181bd12008-07-27 21:46:04 +00006481SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006482 SelectionDAG &DAG) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006483 SDValue Root = Op.getOperand(0);
6484 SDValue Trmp = Op.getOperand(1); // trampoline
6485 SDValue FPtr = Op.getOperand(2); // nested function
6486 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006487 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006488
Dan Gohman12a9c082008-02-06 22:27:42 +00006489 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006490
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006491 const X86InstrInfo *TII =
6492 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
6493
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006494 if (Subtarget->is64Bit()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006495 SDValue OutChains[6];
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006496
6497 // Large code-model.
6498
6499 const unsigned char JMP64r = TII->getBaseOpcodeFor(X86::JMP64r);
6500 const unsigned char MOV64ri = TII->getBaseOpcodeFor(X86::MOV64ri);
6501
Dan Gohmanb41dfba2008-05-14 01:58:56 +00006502 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
6503 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006504
6505 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
6506
6507 // Load the pointer to the nested function into R11.
6508 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman8181bd12008-07-27 21:46:04 +00006509 SDValue Addr = Trmp;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006510 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6511 Addr, TrmpAddr, 0);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006512
Scott Michel91099d62009-02-17 22:15:04 +00006513 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006514 DAG.getConstant(2, MVT::i64));
6515 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr, TrmpAddr, 2, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006516
6517 // Load the 'nest' parameter value into R10.
6518 // R10 is specified in X86CallingConv.td
6519 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Scott Michel91099d62009-02-17 22:15:04 +00006520 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006521 DAG.getConstant(10, MVT::i64));
6522 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6523 Addr, TrmpAddr, 10);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006524
Scott Michel91099d62009-02-17 22:15:04 +00006525 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006526 DAG.getConstant(12, MVT::i64));
6527 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 12, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006528
6529 // Jump to the nested function.
6530 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Scott Michel91099d62009-02-17 22:15:04 +00006531 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006532 DAG.getConstant(20, MVT::i64));
6533 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6534 Addr, TrmpAddr, 20);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006535
6536 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Scott Michel91099d62009-02-17 22:15:04 +00006537 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006538 DAG.getConstant(22, MVT::i64));
6539 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00006540 TrmpAddr, 22);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006541
Dan Gohman8181bd12008-07-27 21:46:04 +00006542 SDValue Ops[] =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006543 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
6544 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006545 } else {
Dan Gohman0bd70702008-01-31 01:01:48 +00006546 const Function *Func =
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006547 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
6548 unsigned CC = Func->getCallingConv();
Duncan Sands466eadd2007-08-29 19:01:20 +00006549 unsigned NestReg;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006550
6551 switch (CC) {
6552 default:
6553 assert(0 && "Unsupported calling convention");
6554 case CallingConv::C:
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006555 case CallingConv::X86_StdCall: {
6556 // Pass 'nest' parameter in ECX.
6557 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00006558 NestReg = X86::ECX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006559
6560 // Check that ECX wasn't needed by an 'inreg' parameter.
6561 const FunctionType *FTy = Func->getFunctionType();
Devang Pateld222f862008-09-25 21:00:45 +00006562 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006563
Chris Lattner1c8733e2008-03-12 17:45:29 +00006564 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006565 unsigned InRegCount = 0;
6566 unsigned Idx = 1;
6567
6568 for (FunctionType::param_iterator I = FTy->param_begin(),
6569 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Pateld222f862008-09-25 21:00:45 +00006570 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006571 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006572 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006573
6574 if (InRegCount > 2) {
6575 cerr << "Nest register in use - reduce number of inreg parameters!\n";
6576 abort();
6577 }
6578 }
6579 break;
6580 }
6581 case CallingConv::X86_FastCall:
Duncan Sands162c1d52008-09-10 13:22:10 +00006582 case CallingConv::Fast:
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006583 // Pass 'nest' parameter in EAX.
6584 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00006585 NestReg = X86::EAX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006586 break;
6587 }
6588
Dan Gohman8181bd12008-07-27 21:46:04 +00006589 SDValue OutChains[4];
6590 SDValue Addr, Disp;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006591
Scott Michel91099d62009-02-17 22:15:04 +00006592 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006593 DAG.getConstant(10, MVT::i32));
6594 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006595
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006596 const unsigned char MOV32ri = TII->getBaseOpcodeFor(X86::MOV32ri);
Dan Gohmanb41dfba2008-05-14 01:58:56 +00006597 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michel91099d62009-02-17 22:15:04 +00006598 OutChains[0] = DAG.getStore(Root, dl,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006599 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Dan Gohman12a9c082008-02-06 22:27:42 +00006600 Trmp, TrmpAddr, 0);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006601
Scott Michel91099d62009-02-17 22:15:04 +00006602 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006603 DAG.getConstant(1, MVT::i32));
6604 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 1, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006605
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006606 const unsigned char JMP = TII->getBaseOpcodeFor(X86::JMP);
Scott Michel91099d62009-02-17 22:15:04 +00006607 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006608 DAG.getConstant(5, MVT::i32));
6609 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00006610 TrmpAddr, 5, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006611
Scott Michel91099d62009-02-17 22:15:04 +00006612 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006613 DAG.getConstant(6, MVT::i32));
6614 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr, TrmpAddr, 6, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006615
Dan Gohman8181bd12008-07-27 21:46:04 +00006616 SDValue Ops[] =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006617 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
6618 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006619 }
6620}
6621
Dan Gohman8181bd12008-07-27 21:46:04 +00006622SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006623 /*
6624 The rounding mode is in bits 11:10 of FPSR, and has the following
6625 settings:
6626 00 Round to nearest
6627 01 Round to -inf
6628 10 Round to +inf
6629 11 Round to 0
6630
6631 FLT_ROUNDS, on the other hand, expects the following:
6632 -1 Undefined
6633 0 Round to 0
6634 1 Round to nearest
6635 2 Round to +inf
6636 3 Round to -inf
6637
6638 To perform the conversion, we do:
6639 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
6640 */
6641
6642 MachineFunction &MF = DAG.getMachineFunction();
6643 const TargetMachine &TM = MF.getTarget();
6644 const TargetFrameInfo &TFI = *TM.getFrameInfo();
6645 unsigned StackAlignment = TFI.getStackAlignment();
Duncan Sands92c43912008-06-06 12:08:01 +00006646 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006647 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006648
6649 // Save FP Control Word to stack slot
6650 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment);
Dan Gohman8181bd12008-07-27 21:46:04 +00006651 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006652
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006653 SDValue Chain = DAG.getNode(X86ISD::FNSTCW16m, dl, MVT::Other,
Evan Cheng6617eed2008-09-24 23:26:36 +00006654 DAG.getEntryNode(), StackSlot);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006655
6656 // Load FP Control Word from stack slot
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006657 SDValue CWD = DAG.getLoad(MVT::i16, dl, Chain, StackSlot, NULL, 0);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006658
6659 // Transform as necessary
Dan Gohman8181bd12008-07-27 21:46:04 +00006660 SDValue CWD1 =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006661 DAG.getNode(ISD::SRL, dl, MVT::i16,
6662 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006663 CWD, DAG.getConstant(0x800, MVT::i16)),
6664 DAG.getConstant(11, MVT::i8));
Dan Gohman8181bd12008-07-27 21:46:04 +00006665 SDValue CWD2 =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006666 DAG.getNode(ISD::SRL, dl, MVT::i16,
6667 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006668 CWD, DAG.getConstant(0x400, MVT::i16)),
6669 DAG.getConstant(9, MVT::i8));
6670
Dan Gohman8181bd12008-07-27 21:46:04 +00006671 SDValue RetVal =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006672 DAG.getNode(ISD::AND, dl, MVT::i16,
6673 DAG.getNode(ISD::ADD, dl, MVT::i16,
6674 DAG.getNode(ISD::OR, dl, MVT::i16, CWD1, CWD2),
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006675 DAG.getConstant(1, MVT::i16)),
6676 DAG.getConstant(3, MVT::i16));
6677
6678
Duncan Sands92c43912008-06-06 12:08:01 +00006679 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen24dd9a52009-02-07 00:55:49 +00006680 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006681}
6682
Dan Gohman8181bd12008-07-27 21:46:04 +00006683SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00006684 MVT VT = Op.getValueType();
6685 MVT OpVT = VT;
6686 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006687 DebugLoc dl = Op.getDebugLoc();
Evan Cheng48679f42007-12-14 02:13:44 +00006688
6689 Op = Op.getOperand(0);
6690 if (VT == MVT::i8) {
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006691 // Zero extend to i32 since there is not an i8 bsr.
Evan Cheng48679f42007-12-14 02:13:44 +00006692 OpVT = MVT::i32;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006693 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006694 }
Evan Cheng48679f42007-12-14 02:13:44 +00006695
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006696 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
6697 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006698 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006699
6700 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Dan Gohman8181bd12008-07-27 21:46:04 +00006701 SmallVector<SDValue, 4> Ops;
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006702 Ops.push_back(Op);
6703 Ops.push_back(DAG.getConstant(NumBits+NumBits-1, OpVT));
6704 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6705 Ops.push_back(Op.getValue(1));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006706 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006707
6708 // Finally xor with NumBits-1.
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006709 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006710
Evan Cheng48679f42007-12-14 02:13:44 +00006711 if (VT == MVT::i8)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006712 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006713 return Op;
6714}
6715
Dan Gohman8181bd12008-07-27 21:46:04 +00006716SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00006717 MVT VT = Op.getValueType();
6718 MVT OpVT = VT;
6719 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006720 DebugLoc dl = Op.getDebugLoc();
Evan Cheng48679f42007-12-14 02:13:44 +00006721
6722 Op = Op.getOperand(0);
6723 if (VT == MVT::i8) {
6724 OpVT = MVT::i32;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006725 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006726 }
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006727
6728 // Issue a bsf (scan bits forward) which also sets EFLAGS.
6729 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006730 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006731
6732 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Dan Gohman8181bd12008-07-27 21:46:04 +00006733 SmallVector<SDValue, 4> Ops;
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006734 Ops.push_back(Op);
6735 Ops.push_back(DAG.getConstant(NumBits, OpVT));
6736 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6737 Ops.push_back(Op.getValue(1));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006738 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006739
Evan Cheng48679f42007-12-14 02:13:44 +00006740 if (VT == MVT::i8)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006741 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006742 return Op;
6743}
6744
Mon P Wang14edb092008-12-18 21:42:19 +00006745SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) {
6746 MVT VT = Op.getValueType();
6747 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006748 DebugLoc dl = Op.getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00006749
Mon P Wang14edb092008-12-18 21:42:19 +00006750 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
6751 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
6752 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
6753 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
6754 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
6755 //
6756 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
6757 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
6758 // return AloBlo + AloBhi + AhiBlo;
6759
6760 SDValue A = Op.getOperand(0);
6761 SDValue B = Op.getOperand(1);
Scott Michel91099d62009-02-17 22:15:04 +00006762
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006763 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006764 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6765 A, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006766 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006767 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6768 B, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006769 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006770 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6771 A, B);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006772 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006773 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6774 A, Bhi);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006775 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006776 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6777 Ahi, B);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006778 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006779 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6780 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006781 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006782 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6783 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006784 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
6785 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wang14edb092008-12-18 21:42:19 +00006786 return Res;
6787}
6788
6789
Bill Wendling7e04be62008-12-09 22:08:41 +00006790SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) {
6791 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
6792 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendlingd3511522008-12-02 01:06:39 +00006793 // looks for this combo and may remove the "setcc" instruction if the "setcc"
6794 // has only one use.
Bill Wendlingd06b4202008-11-26 22:37:40 +00006795 SDNode *N = Op.getNode();
Bill Wendlingd3511522008-12-02 01:06:39 +00006796 SDValue LHS = N->getOperand(0);
6797 SDValue RHS = N->getOperand(1);
Bill Wendling7e04be62008-12-09 22:08:41 +00006798 unsigned BaseOp = 0;
6799 unsigned Cond = 0;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006800 DebugLoc dl = Op.getDebugLoc();
Bill Wendling7e04be62008-12-09 22:08:41 +00006801
6802 switch (Op.getOpcode()) {
6803 default: assert(0 && "Unknown ovf instruction!");
6804 case ISD::SADDO:
Dan Gohman99a12192009-03-04 19:44:21 +00006805 // A subtract of one will be selected as a INC. Note that INC doesn't
6806 // set CF, so we can't do this for UADDO.
6807 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
6808 if (C->getAPIntValue() == 1) {
6809 BaseOp = X86ISD::INC;
6810 Cond = X86::COND_O;
6811 break;
6812 }
Bill Wendlingae034ed2008-12-12 00:56:36 +00006813 BaseOp = X86ISD::ADD;
Bill Wendling7e04be62008-12-09 22:08:41 +00006814 Cond = X86::COND_O;
6815 break;
6816 case ISD::UADDO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006817 BaseOp = X86ISD::ADD;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006818 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006819 break;
6820 case ISD::SSUBO:
Dan Gohman99a12192009-03-04 19:44:21 +00006821 // A subtract of one will be selected as a DEC. Note that DEC doesn't
6822 // set CF, so we can't do this for USUBO.
6823 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
6824 if (C->getAPIntValue() == 1) {
6825 BaseOp = X86ISD::DEC;
6826 Cond = X86::COND_O;
6827 break;
6828 }
Bill Wendlingae034ed2008-12-12 00:56:36 +00006829 BaseOp = X86ISD::SUB;
Bill Wendling7e04be62008-12-09 22:08:41 +00006830 Cond = X86::COND_O;
6831 break;
6832 case ISD::USUBO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006833 BaseOp = X86ISD::SUB;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006834 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006835 break;
6836 case ISD::SMULO:
Bill Wendlingf5399032008-12-12 21:15:41 +00006837 BaseOp = X86ISD::SMUL;
Bill Wendling7e04be62008-12-09 22:08:41 +00006838 Cond = X86::COND_O;
6839 break;
6840 case ISD::UMULO:
Bill Wendlingf5399032008-12-12 21:15:41 +00006841 BaseOp = X86ISD::UMUL;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006842 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006843 break;
6844 }
Bill Wendlingd06b4202008-11-26 22:37:40 +00006845
Bill Wendlingd3511522008-12-02 01:06:39 +00006846 // Also sets EFLAGS.
6847 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006848 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendlingd06b4202008-11-26 22:37:40 +00006849
Bill Wendlingd3511522008-12-02 01:06:39 +00006850 SDValue SetCC =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006851 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Bill Wendling35f1a9d2008-12-10 02:01:32 +00006852 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendlingd06b4202008-11-26 22:37:40 +00006853
Bill Wendlingd3511522008-12-02 01:06:39 +00006854 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
6855 return Sum;
Bill Wendling4c134df2008-11-24 19:21:46 +00006856}
6857
Dan Gohman8181bd12008-07-27 21:46:04 +00006858SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanc70fa752008-06-25 16:07:49 +00006859 MVT T = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006860 DebugLoc dl = Op.getDebugLoc();
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00006861 unsigned Reg = 0;
6862 unsigned size = 0;
Duncan Sands92c43912008-06-06 12:08:01 +00006863 switch(T.getSimpleVT()) {
6864 default:
6865 assert(false && "Invalid value type!");
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006866 case MVT::i8: Reg = X86::AL; size = 1; break;
6867 case MVT::i16: Reg = X86::AX; size = 2; break;
6868 case MVT::i32: Reg = X86::EAX; size = 4; break;
Scott Michel91099d62009-02-17 22:15:04 +00006869 case MVT::i64:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006870 assert(Subtarget->is64Bit() && "Node not type legal!");
6871 Reg = X86::RAX; size = 8;
Andrew Lenharth81580822008-03-05 01:15:49 +00006872 break;
Bill Wendlingd3511522008-12-02 01:06:39 +00006873 }
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006874 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), dl, Reg,
Dale Johannesenddb761b2008-09-11 03:12:59 +00006875 Op.getOperand(2), SDValue());
Dan Gohman8181bd12008-07-27 21:46:04 +00006876 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng6617eed2008-09-24 23:26:36 +00006877 Op.getOperand(1),
6878 Op.getOperand(3),
6879 DAG.getTargetConstant(size, MVT::i8),
6880 cpIn.getValue(1) };
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006881 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006882 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG_DAG, dl, Tys, Ops, 5);
Scott Michel91099d62009-02-17 22:15:04 +00006883 SDValue cpOut =
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006884 DAG.getCopyFromReg(Result.getValue(0), dl, Reg, T, Result.getValue(1));
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006885 return cpOut;
6886}
6887
Duncan Sands7d9834b2008-12-01 11:39:25 +00006888SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Gabor Greif825aa892008-08-28 23:19:51 +00006889 SelectionDAG &DAG) {
Duncan Sands7d9834b2008-12-01 11:39:25 +00006890 assert(Subtarget->is64Bit() && "Result not type legalized?");
Andrew Lenharth81580822008-03-05 01:15:49 +00006891 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands7d9834b2008-12-01 11:39:25 +00006892 SDValue TheChain = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006893 DebugLoc dl = Op.getDebugLoc();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006894 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006895 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
6896 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006897 rax.getValue(2));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006898 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006899 DAG.getConstant(32, MVT::i8));
6900 SDValue Ops[] = {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006901 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands7d9834b2008-12-01 11:39:25 +00006902 rdx.getValue(1)
6903 };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006904 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesenf160d802008-10-02 18:53:47 +00006905}
6906
Dale Johannesen9011d872008-09-29 22:25:26 +00006907SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
6908 SDNode *Node = Op.getNode();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006909 DebugLoc dl = Node->getDebugLoc();
Dale Johannesen9011d872008-09-29 22:25:26 +00006910 MVT T = Node->getValueType(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006911 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Chengef356282009-02-23 09:03:22 +00006912 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006913 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006914 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen9011d872008-09-29 22:25:26 +00006915 Node->getOperand(0),
6916 Node->getOperand(1), negOp,
6917 cast<AtomicSDNode>(Node)->getSrcValue(),
6918 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang078a62d2008-05-05 19:05:59 +00006919}
6920
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006921/// LowerOperation - Provide custom lowering hooks for some operations.
6922///
Dan Gohman8181bd12008-07-27 21:46:04 +00006923SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006924 switch (Op.getOpcode()) {
6925 default: assert(0 && "Should not custom lower this!");
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006926 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
6927 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006928 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
6929 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6930 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6931 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
6932 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
6933 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
6934 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
6935 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendlingfef06052008-09-16 21:48:12 +00006936 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006937 case ISD::SHL_PARTS:
6938 case ISD::SRA_PARTS:
6939 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
6940 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesena359b8b2008-10-21 20:50:01 +00006941 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006942 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
6943 case ISD::FABS: return LowerFABS(Op, DAG);
6944 case ISD::FNEG: return LowerFNEG(Op, DAG);
6945 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Cheng621216e2007-09-29 00:00:36 +00006946 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman03605a02008-07-17 16:51:19 +00006947 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Cheng621216e2007-09-29 00:00:36 +00006948 case ISD::SELECT: return LowerSELECT(Op, DAG);
6949 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006950 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
6951 case ISD::CALL: return LowerCALL(Op, DAG);
6952 case ISD::RET: return LowerRET(Op, DAG);
6953 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006954 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman827cb1f2008-05-10 01:26:14 +00006955 case ISD::VAARG: return LowerVAARG(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006956 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
6957 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
6958 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
6959 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
6960 case ISD::FRAME_TO_ARGS_OFFSET:
6961 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
6962 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
6963 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006964 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman819574c2008-01-31 00:41:03 +00006965 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng48679f42007-12-14 02:13:44 +00006966 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
6967 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wang14edb092008-12-18 21:42:19 +00006968 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Bill Wendling7e04be62008-12-09 22:08:41 +00006969 case ISD::SADDO:
6970 case ISD::UADDO:
6971 case ISD::SSUBO:
6972 case ISD::USUBO:
6973 case ISD::SMULO:
6974 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands7d9834b2008-12-01 11:39:25 +00006975 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006976 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006977}
6978
Duncan Sands7d9834b2008-12-01 11:39:25 +00006979void X86TargetLowering::
6980ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
6981 SelectionDAG &DAG, unsigned NewOp) {
6982 MVT T = Node->getValueType(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006983 DebugLoc dl = Node->getDebugLoc();
Duncan Sands7d9834b2008-12-01 11:39:25 +00006984 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
6985
6986 SDValue Chain = Node->getOperand(0);
6987 SDValue In1 = Node->getOperand(1);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006988 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006989 Node->getOperand(2), DAG.getIntPtrConstant(0));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006990 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006991 Node->getOperand(2), DAG.getIntPtrConstant(1));
6992 // This is a generalized SDNode, not an AtomicSDNode, so it doesn't
6993 // have a MemOperand. Pass the info through as a normal operand.
6994 SDValue LSI = DAG.getMemOperand(cast<MemSDNode>(Node)->getMemOperand());
6995 SDValue Ops[] = { Chain, In1, In2L, In2H, LSI };
6996 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006997 SDValue Result = DAG.getNode(NewOp, dl, Tys, Ops, 5);
Duncan Sands7d9834b2008-12-01 11:39:25 +00006998 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006999 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007000 Results.push_back(Result.getValue(2));
7001}
7002
Duncan Sandsac496a12008-07-04 11:47:58 +00007003/// ReplaceNodeResults - Replace a node with an illegal result type
7004/// with a new node built out of custom code.
Duncan Sands7d9834b2008-12-01 11:39:25 +00007005void X86TargetLowering::ReplaceNodeResults(SDNode *N,
7006 SmallVectorImpl<SDValue>&Results,
7007 SelectionDAG &DAG) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007008 DebugLoc dl = N->getDebugLoc();
Chris Lattnerdfb947d2007-11-24 07:07:01 +00007009 switch (N->getOpcode()) {
Duncan Sands8ec7aa72008-10-20 15:56:33 +00007010 default:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007011 assert(false && "Do not know how to custom type legalize this operation!");
7012 return;
7013 case ISD::FP_TO_SINT: {
7014 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(SDValue(N, 0), DAG);
7015 SDValue FIST = Vals.first, StackSlot = Vals.second;
7016 if (FIST.getNode() != 0) {
7017 MVT VT = N->getValueType(0);
7018 // Return a load from the stack slot.
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007019 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot, NULL, 0));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007020 }
7021 return;
7022 }
7023 case ISD::READCYCLECOUNTER: {
7024 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
7025 SDValue TheChain = N->getOperand(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007026 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Scott Michel91099d62009-02-17 22:15:04 +00007027 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007028 rd.getValue(1));
7029 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007030 eax.getValue(2));
7031 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
7032 SDValue Ops[] = { eax, edx };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007033 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007034 Results.push_back(edx.getValue(1));
7035 return;
7036 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007037 case ISD::ATOMIC_CMP_SWAP: {
Duncan Sands7d9834b2008-12-01 11:39:25 +00007038 MVT T = N->getValueType(0);
7039 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
7040 SDValue cpInL, cpInH;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007041 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands7d9834b2008-12-01 11:39:25 +00007042 DAG.getConstant(0, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007043 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands7d9834b2008-12-01 11:39:25 +00007044 DAG.getConstant(1, MVT::i32));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007045 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
7046 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007047 cpInL.getValue(1));
7048 SDValue swapInL, swapInH;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007049 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands7d9834b2008-12-01 11:39:25 +00007050 DAG.getConstant(0, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007051 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands7d9834b2008-12-01 11:39:25 +00007052 DAG.getConstant(1, MVT::i32));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007053 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007054 cpInH.getValue(1));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007055 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007056 swapInL.getValue(1));
7057 SDValue Ops[] = { swapInH.getValue(0),
7058 N->getOperand(1),
7059 swapInH.getValue(1) };
7060 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007061 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG8_DAG, dl, Tys, Ops, 3);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007062 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
7063 MVT::i32, Result.getValue(1));
7064 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
7065 MVT::i32, cpOutL.getValue(2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007066 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007067 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007068 Results.push_back(cpOutH.getValue(1));
7069 return;
7070 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007071 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007072 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
7073 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007074 case ISD::ATOMIC_LOAD_AND:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007075 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
7076 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007077 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007078 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
7079 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007080 case ISD::ATOMIC_LOAD_OR:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007081 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
7082 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007083 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007084 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
7085 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007086 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007087 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
7088 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007089 case ISD::ATOMIC_SWAP:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007090 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
7091 return;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00007092 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007093}
7094
7095const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
7096 switch (Opcode) {
7097 default: return NULL;
Evan Cheng48679f42007-12-14 02:13:44 +00007098 case X86ISD::BSF: return "X86ISD::BSF";
7099 case X86ISD::BSR: return "X86ISD::BSR";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007100 case X86ISD::SHLD: return "X86ISD::SHLD";
7101 case X86ISD::SHRD: return "X86ISD::SHRD";
7102 case X86ISD::FAND: return "X86ISD::FAND";
7103 case X86ISD::FOR: return "X86ISD::FOR";
7104 case X86ISD::FXOR: return "X86ISD::FXOR";
7105 case X86ISD::FSRL: return "X86ISD::FSRL";
7106 case X86ISD::FILD: return "X86ISD::FILD";
7107 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
7108 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
7109 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
7110 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
7111 case X86ISD::FLD: return "X86ISD::FLD";
7112 case X86ISD::FST: return "X86ISD::FST";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007113 case X86ISD::CALL: return "X86ISD::CALL";
7114 case X86ISD::TAILCALL: return "X86ISD::TAILCALL";
7115 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohman7fe9b7f2008-12-23 22:45:23 +00007116 case X86ISD::BT: return "X86ISD::BT";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007117 case X86ISD::CMP: return "X86ISD::CMP";
7118 case X86ISD::COMI: return "X86ISD::COMI";
7119 case X86ISD::UCOMI: return "X86ISD::UCOMI";
7120 case X86ISD::SETCC: return "X86ISD::SETCC";
7121 case X86ISD::CMOV: return "X86ISD::CMOV";
7122 case X86ISD::BRCOND: return "X86ISD::BRCOND";
7123 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
7124 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
7125 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007126 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
7127 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Nate Begemand77e59e2008-02-11 04:19:36 +00007128 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007129 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begemand77e59e2008-02-11 04:19:36 +00007130 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
7131 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007132 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begeman2c87c422009-02-23 08:49:38 +00007133 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007134 case X86ISD::FMAX: return "X86ISD::FMAX";
7135 case X86ISD::FMIN: return "X86ISD::FMIN";
7136 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
7137 case X86ISD::FRCP: return "X86ISD::FRCP";
7138 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
7139 case X86ISD::THREAD_POINTER: return "X86ISD::THREAD_POINTER";
7140 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00007141 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00007142 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng40ee6e52008-05-08 00:57:18 +00007143 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
7144 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesenf160d802008-10-02 18:53:47 +00007145 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
7146 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
7147 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
7148 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
7149 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
7150 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chenge9b9c672008-05-09 21:53:03 +00007151 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
7152 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengdea99362008-05-29 08:22:04 +00007153 case X86ISD::VSHL: return "X86ISD::VSHL";
7154 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman03605a02008-07-17 16:51:19 +00007155 case X86ISD::CMPPD: return "X86ISD::CMPPD";
7156 case X86ISD::CMPPS: return "X86ISD::CMPPS";
7157 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
7158 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
7159 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
7160 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
7161 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
7162 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
7163 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
7164 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingae034ed2008-12-12 00:56:36 +00007165 case X86ISD::ADD: return "X86ISD::ADD";
7166 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingf5399032008-12-12 21:15:41 +00007167 case X86ISD::SMUL: return "X86ISD::SMUL";
7168 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman99a12192009-03-04 19:44:21 +00007169 case X86ISD::INC: return "X86ISD::INC";
7170 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007171 }
7172}
7173
7174// isLegalAddressingMode - Return true if the addressing mode represented
7175// by AM is legal for this target, for a load/store of the specified type.
Scott Michel91099d62009-02-17 22:15:04 +00007176bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007177 const Type *Ty) const {
7178 // X86 supports extremely general addressing modes.
Scott Michel91099d62009-02-17 22:15:04 +00007179
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007180 // X86 allows a sign-extended 32-bit immediate field as a displacement.
7181 if (AM.BaseOffs <= -(1LL << 32) || AM.BaseOffs >= (1LL << 32)-1)
7182 return false;
Scott Michel91099d62009-02-17 22:15:04 +00007183
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007184 if (AM.BaseGV) {
Evan Cheng6a1f3f12007-08-01 23:46:47 +00007185 // We can only fold this if we don't need an extra load.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007186 if (Subtarget->GVRequiresExtraLoad(AM.BaseGV, getTargetMachine(), false))
7187 return false;
Dale Johannesen64660e92008-12-05 21:47:27 +00007188 // If BaseGV requires a register, we cannot also have a BaseReg.
7189 if (Subtarget->GVRequiresRegister(AM.BaseGV, getTargetMachine(), false) &&
7190 AM.HasBaseReg)
7191 return false;
Evan Cheng6a1f3f12007-08-01 23:46:47 +00007192
7193 // X86-64 only supports addr of globals in small code model.
7194 if (Subtarget->is64Bit()) {
7195 if (getTargetMachine().getCodeModel() != CodeModel::Small)
7196 return false;
7197 // If lower 4G is not available, then we must use rip-relative addressing.
7198 if (AM.BaseOffs || AM.Scale > 1)
7199 return false;
7200 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007201 }
Scott Michel91099d62009-02-17 22:15:04 +00007202
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007203 switch (AM.Scale) {
7204 case 0:
7205 case 1:
7206 case 2:
7207 case 4:
7208 case 8:
7209 // These scales always work.
7210 break;
7211 case 3:
7212 case 5:
7213 case 9:
7214 // These scales are formed with basereg+scalereg. Only accept if there is
7215 // no basereg yet.
7216 if (AM.HasBaseReg)
7217 return false;
7218 break;
7219 default: // Other stuff never works.
7220 return false;
7221 }
Scott Michel91099d62009-02-17 22:15:04 +00007222
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007223 return true;
7224}
7225
7226
Evan Cheng27a820a2007-10-26 01:56:11 +00007227bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
7228 if (!Ty1->isInteger() || !Ty2->isInteger())
7229 return false;
Evan Cheng7f152602007-10-29 07:57:50 +00007230 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
7231 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Chengca0e80f2008-03-20 02:18:41 +00007232 if (NumBits1 <= NumBits2)
Evan Cheng7f152602007-10-29 07:57:50 +00007233 return false;
7234 return Subtarget->is64Bit() || NumBits1 < 64;
Evan Cheng27a820a2007-10-26 01:56:11 +00007235}
7236
Duncan Sands92c43912008-06-06 12:08:01 +00007237bool X86TargetLowering::isTruncateFree(MVT VT1, MVT VT2) const {
7238 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng9decb332007-10-29 19:58:20 +00007239 return false;
Duncan Sands92c43912008-06-06 12:08:01 +00007240 unsigned NumBits1 = VT1.getSizeInBits();
7241 unsigned NumBits2 = VT2.getSizeInBits();
Evan Chengca0e80f2008-03-20 02:18:41 +00007242 if (NumBits1 <= NumBits2)
Evan Cheng9decb332007-10-29 19:58:20 +00007243 return false;
7244 return Subtarget->is64Bit() || NumBits1 < 64;
7245}
Evan Cheng27a820a2007-10-26 01:56:11 +00007246
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007247/// isShuffleMaskLegal - Targets can use this to indicate that they only
7248/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
7249/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
7250/// are assumed to be legal.
7251bool
Dan Gohman8181bd12008-07-27 21:46:04 +00007252X86TargetLowering::isShuffleMaskLegal(SDValue Mask, MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007253 // Only do shuffles on 128-bit vector types for now.
Nate Begeman2c87c422009-02-23 08:49:38 +00007254 // FIXME: pshufb, blends
Duncan Sands92c43912008-06-06 12:08:01 +00007255 if (VT.getSizeInBits() == 64) return false;
Gabor Greif1c80d112008-08-28 21:40:38 +00007256 return (Mask.getNode()->getNumOperands() <= 4 ||
7257 isIdentityMask(Mask.getNode()) ||
7258 isIdentityMask(Mask.getNode(), true) ||
7259 isSplatMask(Mask.getNode()) ||
Nate Begeman2c87c422009-02-23 08:49:38 +00007260 X86::isPSHUFHWMask(Mask.getNode()) ||
7261 X86::isPSHUFLWMask(Mask.getNode()) ||
Gabor Greif1c80d112008-08-28 21:40:38 +00007262 X86::isUNPCKLMask(Mask.getNode()) ||
7263 X86::isUNPCKHMask(Mask.getNode()) ||
7264 X86::isUNPCKL_v_undef_Mask(Mask.getNode()) ||
7265 X86::isUNPCKH_v_undef_Mask(Mask.getNode()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007266}
7267
Dan Gohman48d5f062008-04-09 20:09:42 +00007268bool
Dan Gohman8181bd12008-07-27 21:46:04 +00007269X86TargetLowering::isVectorClearMaskLegal(const std::vector<SDValue> &BVOps,
Duncan Sands92c43912008-06-06 12:08:01 +00007270 MVT EVT, SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007271 unsigned NumElts = BVOps.size();
7272 // Only do shuffles on 128-bit vector types for now.
Duncan Sands92c43912008-06-06 12:08:01 +00007273 if (EVT.getSizeInBits() * NumElts == 64) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007274 if (NumElts == 2) return true;
7275 if (NumElts == 4) {
7276 return (isMOVLMask(&BVOps[0], 4) ||
7277 isCommutedMOVL(&BVOps[0], 4, true) ||
Scott Michel91099d62009-02-17 22:15:04 +00007278 isSHUFPMask(&BVOps[0], 4) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007279 isCommutedSHUFP(&BVOps[0], 4));
7280 }
7281 return false;
7282}
7283
7284//===----------------------------------------------------------------------===//
7285// X86 Scheduler Hooks
7286//===----------------------------------------------------------------------===//
7287
Mon P Wang078a62d2008-05-05 19:05:59 +00007288// private utility function
7289MachineBasicBlock *
7290X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
7291 MachineBasicBlock *MBB,
7292 unsigned regOpc,
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007293 unsigned immOpc,
Dale Johannesend20e4452008-08-19 18:47:28 +00007294 unsigned LoadOpc,
7295 unsigned CXchgOpc,
7296 unsigned copyOpc,
7297 unsigned notOpc,
7298 unsigned EAXreg,
7299 TargetRegisterClass *RC,
Dan Gohman96d60922009-02-07 16:15:20 +00007300 bool invSrc) const {
Mon P Wang078a62d2008-05-05 19:05:59 +00007301 // For the atomic bitwise operator, we generate
7302 // thisMBB:
7303 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00007304 // ld t1 = [bitinstr.addr]
7305 // op t2 = t1, [bitinstr.val]
7306 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00007307 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7308 // bz newMBB
7309 // fallthrough -->nextMBB
7310 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7311 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007312 MachineFunction::iterator MBBIter = MBB;
Mon P Wang078a62d2008-05-05 19:05:59 +00007313 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00007314
Mon P Wang078a62d2008-05-05 19:05:59 +00007315 /// First build the CFG
7316 MachineFunction *F = MBB->getParent();
7317 MachineBasicBlock *thisMBB = MBB;
Dan Gohman221a4372008-07-07 23:14:23 +00007318 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7319 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7320 F->insert(MBBIter, newMBB);
7321 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007322
Mon P Wang078a62d2008-05-05 19:05:59 +00007323 // Move all successors to thisMBB to nextMBB
7324 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007325
Mon P Wang078a62d2008-05-05 19:05:59 +00007326 // Update thisMBB to fall through to newMBB
7327 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007328
Mon P Wang078a62d2008-05-05 19:05:59 +00007329 // newMBB jumps to itself and fall through to nextMBB
7330 newMBB->addSuccessor(nextMBB);
7331 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007332
Mon P Wang078a62d2008-05-05 19:05:59 +00007333 // Insert instructions into newMBB based on incoming instruction
7334 assert(bInstr->getNumOperands() < 8 && "unexpected number of operands");
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007335 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang078a62d2008-05-05 19:05:59 +00007336 MachineOperand& destOper = bInstr->getOperand(0);
7337 MachineOperand* argOpers[6];
7338 int numArgs = bInstr->getNumOperands() - 1;
7339 for (int i=0; i < numArgs; ++i)
7340 argOpers[i] = &bInstr->getOperand(i+1);
7341
7342 // x86 address has 4 operands: base, index, scale, and displacement
7343 int lastAddrIndx = 3; // [0,3]
7344 int valArgIndx = 4;
Scott Michel91099d62009-02-17 22:15:04 +00007345
Dale Johannesend20e4452008-08-19 18:47:28 +00007346 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007347 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00007348 for (int i=0; i <= lastAddrIndx; ++i)
7349 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007350
Dale Johannesend20e4452008-08-19 18:47:28 +00007351 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007352 if (invSrc) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007353 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007354 }
Scott Michel91099d62009-02-17 22:15:04 +00007355 else
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007356 tt = t1;
7357
Dale Johannesend20e4452008-08-19 18:47:28 +00007358 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007359 assert((argOpers[valArgIndx]->isReg() ||
7360 argOpers[valArgIndx]->isImm()) &&
Dan Gohman7f7f3652008-09-13 17:58:21 +00007361 "invalid operand");
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007362 if (argOpers[valArgIndx]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007363 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang078a62d2008-05-05 19:05:59 +00007364 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007365 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007366 MIB.addReg(tt);
Mon P Wang078a62d2008-05-05 19:05:59 +00007367 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007368
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007369 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), EAXreg);
Mon P Wang318b0372008-05-05 22:56:23 +00007370 MIB.addReg(t1);
Scott Michel91099d62009-02-17 22:15:04 +00007371
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007372 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang078a62d2008-05-05 19:05:59 +00007373 for (int i=0; i <= lastAddrIndx; ++i)
7374 (*MIB).addOperand(*argOpers[i]);
7375 MIB.addReg(t2);
Mon P Wang50584a62008-07-17 04:54:06 +00007376 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7377 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7378
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007379 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), destOper.getReg());
Dale Johannesend20e4452008-08-19 18:47:28 +00007380 MIB.addReg(EAXreg);
Scott Michel91099d62009-02-17 22:15:04 +00007381
Mon P Wang078a62d2008-05-05 19:05:59 +00007382 // insert branch
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007383 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007384
Dan Gohman221a4372008-07-07 23:14:23 +00007385 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
Mon P Wang078a62d2008-05-05 19:05:59 +00007386 return nextMBB;
7387}
7388
Dale Johannesen44eb5372008-10-03 19:41:08 +00007389// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang078a62d2008-05-05 19:05:59 +00007390MachineBasicBlock *
Dale Johannesenf160d802008-10-02 18:53:47 +00007391X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
7392 MachineBasicBlock *MBB,
7393 unsigned regOpcL,
7394 unsigned regOpcH,
7395 unsigned immOpcL,
7396 unsigned immOpcH,
Dan Gohman96d60922009-02-07 16:15:20 +00007397 bool invSrc) const {
Dale Johannesenf160d802008-10-02 18:53:47 +00007398 // For the atomic bitwise operator, we generate
7399 // thisMBB (instructions are in pairs, except cmpxchg8b)
7400 // ld t1,t2 = [bitinstr.addr]
7401 // newMBB:
7402 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
7403 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007404 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesenf160d802008-10-02 18:53:47 +00007405 // mov ECX, EBX <- t5, t6
7406 // mov EAX, EDX <- t1, t2
7407 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
7408 // mov t3, t4 <- EAX, EDX
7409 // bz newMBB
7410 // result in out1, out2
7411 // fallthrough -->nextMBB
7412
7413 const TargetRegisterClass *RC = X86::GR32RegisterClass;
7414 const unsigned LoadOpc = X86::MOV32rm;
7415 const unsigned copyOpc = X86::MOV32rr;
7416 const unsigned NotOpc = X86::NOT32r;
7417 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7418 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
7419 MachineFunction::iterator MBBIter = MBB;
7420 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00007421
Dale Johannesenf160d802008-10-02 18:53:47 +00007422 /// First build the CFG
7423 MachineFunction *F = MBB->getParent();
7424 MachineBasicBlock *thisMBB = MBB;
7425 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7426 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7427 F->insert(MBBIter, newMBB);
7428 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007429
Dale Johannesenf160d802008-10-02 18:53:47 +00007430 // Move all successors to thisMBB to nextMBB
7431 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007432
Dale Johannesenf160d802008-10-02 18:53:47 +00007433 // Update thisMBB to fall through to newMBB
7434 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007435
Dale Johannesenf160d802008-10-02 18:53:47 +00007436 // newMBB jumps to itself and fall through to nextMBB
7437 newMBB->addSuccessor(nextMBB);
7438 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007439
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007440 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesenf160d802008-10-02 18:53:47 +00007441 // Insert instructions into newMBB based on incoming instruction
7442 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
7443 assert(bInstr->getNumOperands() < 18 && "unexpected number of operands");
7444 MachineOperand& dest1Oper = bInstr->getOperand(0);
7445 MachineOperand& dest2Oper = bInstr->getOperand(1);
7446 MachineOperand* argOpers[6];
7447 for (int i=0; i < 6; ++i)
7448 argOpers[i] = &bInstr->getOperand(i+2);
7449
7450 // x86 address has 4 operands: base, index, scale, and displacement
7451 int lastAddrIndx = 3; // [0,3]
Scott Michel91099d62009-02-17 22:15:04 +00007452
Dale Johannesenf160d802008-10-02 18:53:47 +00007453 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007454 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesenf160d802008-10-02 18:53:47 +00007455 for (int i=0; i <= lastAddrIndx; ++i)
7456 (*MIB).addOperand(*argOpers[i]);
7457 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007458 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007459 // add 4 to displacement.
Dale Johannesenf160d802008-10-02 18:53:47 +00007460 for (int i=0; i <= lastAddrIndx-1; ++i)
7461 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007462 MachineOperand newOp3 = *(argOpers[3]);
7463 if (newOp3.isImm())
7464 newOp3.setImm(newOp3.getImm()+4);
7465 else
7466 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesenf160d802008-10-02 18:53:47 +00007467 (*MIB).addOperand(newOp3);
7468
7469 // t3/4 are defined later, at the bottom of the loop
7470 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
7471 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007472 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesenf160d802008-10-02 18:53:47 +00007473 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007474 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesenf160d802008-10-02 18:53:47 +00007475 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
7476
7477 unsigned tt1 = F->getRegInfo().createVirtualRegister(RC);
7478 unsigned tt2 = F->getRegInfo().createVirtualRegister(RC);
Scott Michel91099d62009-02-17 22:15:04 +00007479 if (invSrc) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007480 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt1).addReg(t1);
7481 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt2).addReg(t2);
Dale Johannesenf160d802008-10-02 18:53:47 +00007482 } else {
7483 tt1 = t1;
7484 tt2 = t2;
7485 }
7486
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007487 assert((argOpers[4]->isReg() || argOpers[4]->isImm()) &&
Dale Johannesenf160d802008-10-02 18:53:47 +00007488 "invalid operand");
7489 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
7490 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007491 if (argOpers[4]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007492 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesenf160d802008-10-02 18:53:47 +00007493 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007494 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007495 if (regOpcL != X86::MOV32rr)
7496 MIB.addReg(tt1);
Dale Johannesenf160d802008-10-02 18:53:47 +00007497 (*MIB).addOperand(*argOpers[4]);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007498 assert(argOpers[5]->isReg() == argOpers[4]->isReg());
7499 assert(argOpers[5]->isImm() == argOpers[4]->isImm());
7500 if (argOpers[5]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007501 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesenf160d802008-10-02 18:53:47 +00007502 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007503 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007504 if (regOpcH != X86::MOV32rr)
7505 MIB.addReg(tt2);
Dale Johannesenf160d802008-10-02 18:53:47 +00007506 (*MIB).addOperand(*argOpers[5]);
7507
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007508 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EAX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007509 MIB.addReg(t1);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007510 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EDX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007511 MIB.addReg(t2);
7512
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007513 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EBX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007514 MIB.addReg(t5);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007515 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::ECX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007516 MIB.addReg(t6);
Scott Michel91099d62009-02-17 22:15:04 +00007517
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007518 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesenf160d802008-10-02 18:53:47 +00007519 for (int i=0; i <= lastAddrIndx; ++i)
7520 (*MIB).addOperand(*argOpers[i]);
7521
7522 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7523 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7524
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007525 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t3);
Dale Johannesenf160d802008-10-02 18:53:47 +00007526 MIB.addReg(X86::EAX);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007527 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t4);
Dale Johannesenf160d802008-10-02 18:53:47 +00007528 MIB.addReg(X86::EDX);
Scott Michel91099d62009-02-17 22:15:04 +00007529
Dale Johannesenf160d802008-10-02 18:53:47 +00007530 // insert branch
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007531 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Dale Johannesenf160d802008-10-02 18:53:47 +00007532
7533 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
7534 return nextMBB;
7535}
7536
7537// private utility function
7538MachineBasicBlock *
Mon P Wang078a62d2008-05-05 19:05:59 +00007539X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
7540 MachineBasicBlock *MBB,
Dan Gohman96d60922009-02-07 16:15:20 +00007541 unsigned cmovOpc) const {
Mon P Wang078a62d2008-05-05 19:05:59 +00007542 // For the atomic min/max operator, we generate
7543 // thisMBB:
7544 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00007545 // ld t1 = [min/max.addr]
Scott Michel91099d62009-02-17 22:15:04 +00007546 // mov t2 = [min/max.val]
Mon P Wang078a62d2008-05-05 19:05:59 +00007547 // cmp t1, t2
7548 // cmov[cond] t2 = t1
Mon P Wang318b0372008-05-05 22:56:23 +00007549 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00007550 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7551 // bz newMBB
7552 // fallthrough -->nextMBB
7553 //
7554 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7555 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007556 MachineFunction::iterator MBBIter = MBB;
Mon P Wang078a62d2008-05-05 19:05:59 +00007557 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00007558
Mon P Wang078a62d2008-05-05 19:05:59 +00007559 /// First build the CFG
7560 MachineFunction *F = MBB->getParent();
7561 MachineBasicBlock *thisMBB = MBB;
Dan Gohman221a4372008-07-07 23:14:23 +00007562 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7563 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7564 F->insert(MBBIter, newMBB);
7565 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007566
Mon P Wang078a62d2008-05-05 19:05:59 +00007567 // Move all successors to thisMBB to nextMBB
7568 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007569
Mon P Wang078a62d2008-05-05 19:05:59 +00007570 // Update thisMBB to fall through to newMBB
7571 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007572
Mon P Wang078a62d2008-05-05 19:05:59 +00007573 // newMBB jumps to newMBB and fall through to nextMBB
7574 newMBB->addSuccessor(nextMBB);
7575 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007576
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007577 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang078a62d2008-05-05 19:05:59 +00007578 // Insert instructions into newMBB based on incoming instruction
7579 assert(mInstr->getNumOperands() < 8 && "unexpected number of operands");
7580 MachineOperand& destOper = mInstr->getOperand(0);
7581 MachineOperand* argOpers[6];
7582 int numArgs = mInstr->getNumOperands() - 1;
7583 for (int i=0; i < numArgs; ++i)
7584 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michel91099d62009-02-17 22:15:04 +00007585
Mon P Wang078a62d2008-05-05 19:05:59 +00007586 // x86 address has 4 operands: base, index, scale, and displacement
7587 int lastAddrIndx = 3; // [0,3]
7588 int valArgIndx = 4;
Scott Michel91099d62009-02-17 22:15:04 +00007589
Mon P Wang318b0372008-05-05 22:56:23 +00007590 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007591 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00007592 for (int i=0; i <= lastAddrIndx; ++i)
7593 (*MIB).addOperand(*argOpers[i]);
Mon P Wang318b0372008-05-05 22:56:23 +00007594
Mon P Wang078a62d2008-05-05 19:05:59 +00007595 // We only support register and immediate values
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007596 assert((argOpers[valArgIndx]->isReg() ||
7597 argOpers[valArgIndx]->isImm()) &&
Dan Gohman7f7f3652008-09-13 17:58:21 +00007598 "invalid operand");
Scott Michel91099d62009-02-17 22:15:04 +00007599
7600 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007601 if (argOpers[valArgIndx]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007602 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Scott Michel91099d62009-02-17 22:15:04 +00007603 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007604 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang078a62d2008-05-05 19:05:59 +00007605 (*MIB).addOperand(*argOpers[valArgIndx]);
7606
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007607 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), X86::EAX);
Mon P Wang318b0372008-05-05 22:56:23 +00007608 MIB.addReg(t1);
7609
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007610 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang078a62d2008-05-05 19:05:59 +00007611 MIB.addReg(t1);
7612 MIB.addReg(t2);
7613
7614 // Generate movc
7615 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007616 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang078a62d2008-05-05 19:05:59 +00007617 MIB.addReg(t2);
7618 MIB.addReg(t1);
7619
7620 // Cmp and exchange if none has modified the memory location
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007621 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang078a62d2008-05-05 19:05:59 +00007622 for (int i=0; i <= lastAddrIndx; ++i)
7623 (*MIB).addOperand(*argOpers[i]);
7624 MIB.addReg(t3);
Mon P Wang50584a62008-07-17 04:54:06 +00007625 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7626 (*MIB).addMemOperand(*F, *mInstr->memoperands_begin());
Scott Michel91099d62009-02-17 22:15:04 +00007627
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007628 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), destOper.getReg());
Mon P Wang078a62d2008-05-05 19:05:59 +00007629 MIB.addReg(X86::EAX);
Scott Michel91099d62009-02-17 22:15:04 +00007630
Mon P Wang078a62d2008-05-05 19:05:59 +00007631 // insert branch
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007632 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007633
Dan Gohman221a4372008-07-07 23:14:23 +00007634 F->DeleteMachineInstr(mInstr); // The pseudo instruction is gone now.
Mon P Wang078a62d2008-05-05 19:05:59 +00007635 return nextMBB;
7636}
7637
7638
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007639MachineBasicBlock *
Evan Chenge637db12008-01-30 18:18:23 +00007640X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman96d60922009-02-07 16:15:20 +00007641 MachineBasicBlock *BB) const {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007642 DebugLoc dl = MI->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007643 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7644 switch (MI->getOpcode()) {
7645 default: assert(false && "Unexpected instr type to insert");
Mon P Wang83edba52008-12-12 01:25:51 +00007646 case X86::CMOV_V1I64:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007647 case X86::CMOV_FR32:
7648 case X86::CMOV_FR64:
7649 case X86::CMOV_V4F32:
7650 case X86::CMOV_V2F64:
Evan Cheng621216e2007-09-29 00:00:36 +00007651 case X86::CMOV_V2I64: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007652 // To "insert" a SELECT_CC instruction, we actually have to insert the
7653 // diamond control-flow pattern. The incoming instruction knows the
7654 // destination vreg to set, the condition code register to branch on, the
7655 // true/false values to select between, and a branch opcode to use.
7656 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007657 MachineFunction::iterator It = BB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007658 ++It;
7659
7660 // thisMBB:
7661 // ...
7662 // TrueVal = ...
7663 // cmpTY ccX, r1, r2
7664 // bCC copy1MBB
7665 // fallthrough --> copy0MBB
7666 MachineBasicBlock *thisMBB = BB;
Dan Gohman221a4372008-07-07 23:14:23 +00007667 MachineFunction *F = BB->getParent();
7668 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7669 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007670 unsigned Opc =
7671 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007672 BuildMI(BB, dl, TII->get(Opc)).addMBB(sinkMBB);
Dan Gohman221a4372008-07-07 23:14:23 +00007673 F->insert(It, copy0MBB);
7674 F->insert(It, sinkMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007675 // Update machine-CFG edges by transferring all successors of the current
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007676 // block to the new block which will contain the Phi node for the select.
Mon P Wang078a62d2008-05-05 19:05:59 +00007677 sinkMBB->transferSuccessors(BB);
7678
7679 // Add the true and fallthrough blocks as its successors.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007680 BB->addSuccessor(copy0MBB);
7681 BB->addSuccessor(sinkMBB);
7682
7683 // copy0MBB:
7684 // %FalseValue = ...
7685 // # fallthrough to sinkMBB
7686 BB = copy0MBB;
7687
7688 // Update machine-CFG edges
7689 BB->addSuccessor(sinkMBB);
7690
7691 // sinkMBB:
7692 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7693 // ...
7694 BB = sinkMBB;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007695 BuildMI(BB, dl, TII->get(X86::PHI), MI->getOperand(0).getReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007696 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7697 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7698
Dan Gohman221a4372008-07-07 23:14:23 +00007699 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007700 return BB;
7701 }
7702
7703 case X86::FP32_TO_INT16_IN_MEM:
7704 case X86::FP32_TO_INT32_IN_MEM:
7705 case X86::FP32_TO_INT64_IN_MEM:
7706 case X86::FP64_TO_INT16_IN_MEM:
7707 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00007708 case X86::FP64_TO_INT64_IN_MEM:
7709 case X86::FP80_TO_INT16_IN_MEM:
7710 case X86::FP80_TO_INT32_IN_MEM:
7711 case X86::FP80_TO_INT64_IN_MEM: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007712 // Change the floating point control register to use "round towards zero"
7713 // mode when truncating to an integer value.
7714 MachineFunction *F = BB->getParent();
7715 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007716 addFrameReference(BuildMI(BB, dl, TII->get(X86::FNSTCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007717
7718 // Load the old value of the high byte of the control word...
7719 unsigned OldCW =
Chris Lattner1b989192007-12-31 04:13:23 +00007720 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Scott Michel91099d62009-02-17 22:15:04 +00007721 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16rm), OldCW),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007722 CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007723
7724 // Set the high part to be round to zero...
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007725 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mi)), CWFrameIdx)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007726 .addImm(0xC7F);
7727
7728 // Reload the modified control word now...
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007729 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007730
7731 // Restore the memory image of control word to original value
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007732 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mr)), CWFrameIdx)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007733 .addReg(OldCW);
7734
7735 // Get the X86 opcode to use.
7736 unsigned Opc;
7737 switch (MI->getOpcode()) {
7738 default: assert(0 && "illegal opcode!");
7739 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
7740 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
7741 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
7742 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
7743 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
7744 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00007745 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
7746 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
7747 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007748 }
7749
7750 X86AddressMode AM;
7751 MachineOperand &Op = MI->getOperand(0);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007752 if (Op.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007753 AM.BaseType = X86AddressMode::RegBase;
7754 AM.Base.Reg = Op.getReg();
7755 } else {
7756 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner6017d482007-12-30 23:10:15 +00007757 AM.Base.FrameIndex = Op.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007758 }
7759 Op = MI->getOperand(1);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007760 if (Op.isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007761 AM.Scale = Op.getImm();
7762 Op = MI->getOperand(2);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007763 if (Op.isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007764 AM.IndexReg = Op.getImm();
7765 Op = MI->getOperand(3);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007766 if (Op.isGlobal()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007767 AM.GV = Op.getGlobal();
7768 } else {
7769 AM.Disp = Op.getImm();
7770 }
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007771 addFullAddress(BuildMI(BB, dl, TII->get(Opc)), AM)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007772 .addReg(MI->getOperand(4).getReg());
7773
7774 // Reload the original control word now.
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007775 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007776
Dan Gohman221a4372008-07-07 23:14:23 +00007777 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007778 return BB;
7779 }
Mon P Wang078a62d2008-05-05 19:05:59 +00007780 case X86::ATOMAND32:
7781 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michel91099d62009-02-17 22:15:04 +00007782 X86::AND32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00007783 X86::LCMPXCHG32, X86::MOV32rr,
7784 X86::NOT32r, X86::EAX,
7785 X86::GR32RegisterClass);
Mon P Wang078a62d2008-05-05 19:05:59 +00007786 case X86::ATOMOR32:
Scott Michel91099d62009-02-17 22:15:04 +00007787 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
7788 X86::OR32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00007789 X86::LCMPXCHG32, X86::MOV32rr,
7790 X86::NOT32r, X86::EAX,
7791 X86::GR32RegisterClass);
Mon P Wang078a62d2008-05-05 19:05:59 +00007792 case X86::ATOMXOR32:
7793 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michel91099d62009-02-17 22:15:04 +00007794 X86::XOR32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00007795 X86::LCMPXCHG32, X86::MOV32rr,
7796 X86::NOT32r, X86::EAX,
7797 X86::GR32RegisterClass);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007798 case X86::ATOMNAND32:
7799 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007800 X86::AND32ri, X86::MOV32rm,
7801 X86::LCMPXCHG32, X86::MOV32rr,
7802 X86::NOT32r, X86::EAX,
7803 X86::GR32RegisterClass, true);
Mon P Wang078a62d2008-05-05 19:05:59 +00007804 case X86::ATOMMIN32:
7805 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
7806 case X86::ATOMMAX32:
7807 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
7808 case X86::ATOMUMIN32:
7809 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
7810 case X86::ATOMUMAX32:
7811 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesend20e4452008-08-19 18:47:28 +00007812
7813 case X86::ATOMAND16:
7814 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7815 X86::AND16ri, X86::MOV16rm,
7816 X86::LCMPXCHG16, X86::MOV16rr,
7817 X86::NOT16r, X86::AX,
7818 X86::GR16RegisterClass);
7819 case X86::ATOMOR16:
Scott Michel91099d62009-02-17 22:15:04 +00007820 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007821 X86::OR16ri, X86::MOV16rm,
7822 X86::LCMPXCHG16, X86::MOV16rr,
7823 X86::NOT16r, X86::AX,
7824 X86::GR16RegisterClass);
7825 case X86::ATOMXOR16:
7826 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
7827 X86::XOR16ri, X86::MOV16rm,
7828 X86::LCMPXCHG16, X86::MOV16rr,
7829 X86::NOT16r, X86::AX,
7830 X86::GR16RegisterClass);
7831 case X86::ATOMNAND16:
7832 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7833 X86::AND16ri, X86::MOV16rm,
7834 X86::LCMPXCHG16, X86::MOV16rr,
7835 X86::NOT16r, X86::AX,
7836 X86::GR16RegisterClass, true);
7837 case X86::ATOMMIN16:
7838 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
7839 case X86::ATOMMAX16:
7840 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
7841 case X86::ATOMUMIN16:
7842 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
7843 case X86::ATOMUMAX16:
7844 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
7845
7846 case X86::ATOMAND8:
7847 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7848 X86::AND8ri, X86::MOV8rm,
7849 X86::LCMPXCHG8, X86::MOV8rr,
7850 X86::NOT8r, X86::AL,
7851 X86::GR8RegisterClass);
7852 case X86::ATOMOR8:
Scott Michel91099d62009-02-17 22:15:04 +00007853 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007854 X86::OR8ri, X86::MOV8rm,
7855 X86::LCMPXCHG8, X86::MOV8rr,
7856 X86::NOT8r, X86::AL,
7857 X86::GR8RegisterClass);
7858 case X86::ATOMXOR8:
7859 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
7860 X86::XOR8ri, X86::MOV8rm,
7861 X86::LCMPXCHG8, X86::MOV8rr,
7862 X86::NOT8r, X86::AL,
7863 X86::GR8RegisterClass);
7864 case X86::ATOMNAND8:
7865 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7866 X86::AND8ri, X86::MOV8rm,
7867 X86::LCMPXCHG8, X86::MOV8rr,
7868 X86::NOT8r, X86::AL,
7869 X86::GR8RegisterClass, true);
7870 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesenf160d802008-10-02 18:53:47 +00007871 // This group is for 64-bit host.
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007872 case X86::ATOMAND64:
7873 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michel91099d62009-02-17 22:15:04 +00007874 X86::AND64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007875 X86::LCMPXCHG64, X86::MOV64rr,
7876 X86::NOT64r, X86::RAX,
7877 X86::GR64RegisterClass);
7878 case X86::ATOMOR64:
Scott Michel91099d62009-02-17 22:15:04 +00007879 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
7880 X86::OR64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007881 X86::LCMPXCHG64, X86::MOV64rr,
7882 X86::NOT64r, X86::RAX,
7883 X86::GR64RegisterClass);
7884 case X86::ATOMXOR64:
7885 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michel91099d62009-02-17 22:15:04 +00007886 X86::XOR64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007887 X86::LCMPXCHG64, X86::MOV64rr,
7888 X86::NOT64r, X86::RAX,
7889 X86::GR64RegisterClass);
7890 case X86::ATOMNAND64:
7891 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
7892 X86::AND64ri32, X86::MOV64rm,
7893 X86::LCMPXCHG64, X86::MOV64rr,
7894 X86::NOT64r, X86::RAX,
7895 X86::GR64RegisterClass, true);
7896 case X86::ATOMMIN64:
7897 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
7898 case X86::ATOMMAX64:
7899 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
7900 case X86::ATOMUMIN64:
7901 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
7902 case X86::ATOMUMAX64:
7903 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesenf160d802008-10-02 18:53:47 +00007904
7905 // This group does 64-bit operations on a 32-bit host.
7906 case X86::ATOMAND6432:
Scott Michel91099d62009-02-17 22:15:04 +00007907 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007908 X86::AND32rr, X86::AND32rr,
7909 X86::AND32ri, X86::AND32ri,
7910 false);
7911 case X86::ATOMOR6432:
Scott Michel91099d62009-02-17 22:15:04 +00007912 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007913 X86::OR32rr, X86::OR32rr,
7914 X86::OR32ri, X86::OR32ri,
7915 false);
7916 case X86::ATOMXOR6432:
Scott Michel91099d62009-02-17 22:15:04 +00007917 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007918 X86::XOR32rr, X86::XOR32rr,
7919 X86::XOR32ri, X86::XOR32ri,
7920 false);
7921 case X86::ATOMNAND6432:
Scott Michel91099d62009-02-17 22:15:04 +00007922 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007923 X86::AND32rr, X86::AND32rr,
7924 X86::AND32ri, X86::AND32ri,
7925 true);
Dale Johannesenf160d802008-10-02 18:53:47 +00007926 case X86::ATOMADD6432:
Scott Michel91099d62009-02-17 22:15:04 +00007927 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007928 X86::ADD32rr, X86::ADC32rr,
7929 X86::ADD32ri, X86::ADC32ri,
7930 false);
Dale Johannesenf160d802008-10-02 18:53:47 +00007931 case X86::ATOMSUB6432:
Scott Michel91099d62009-02-17 22:15:04 +00007932 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007933 X86::SUB32rr, X86::SBB32rr,
7934 X86::SUB32ri, X86::SBB32ri,
7935 false);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007936 case X86::ATOMSWAP6432:
Scott Michel91099d62009-02-17 22:15:04 +00007937 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007938 X86::MOV32rr, X86::MOV32rr,
7939 X86::MOV32ri, X86::MOV32ri,
7940 false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007941 }
7942}
7943
7944//===----------------------------------------------------------------------===//
7945// X86 Optimization Hooks
7946//===----------------------------------------------------------------------===//
7947
Dan Gohman8181bd12008-07-27 21:46:04 +00007948void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmand0dfc772008-02-13 22:28:48 +00007949 const APInt &Mask,
Dan Gohman229fa052008-02-13 00:35:47 +00007950 APInt &KnownZero,
7951 APInt &KnownOne,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007952 const SelectionDAG &DAG,
7953 unsigned Depth) const {
7954 unsigned Opc = Op.getOpcode();
7955 assert((Opc >= ISD::BUILTIN_OP_END ||
7956 Opc == ISD::INTRINSIC_WO_CHAIN ||
7957 Opc == ISD::INTRINSIC_W_CHAIN ||
7958 Opc == ISD::INTRINSIC_VOID) &&
7959 "Should use MaskedValueIsZero if you don't know whether Op"
7960 " is a target node!");
7961
Dan Gohman1d79e432008-02-13 23:07:24 +00007962 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007963 switch (Opc) {
7964 default: break;
Evan Cheng8e9b21c2009-02-02 09:15:04 +00007965 case X86ISD::ADD:
7966 case X86ISD::SUB:
7967 case X86ISD::SMUL:
7968 case X86ISD::UMUL:
Dan Gohman99a12192009-03-04 19:44:21 +00007969 case X86ISD::INC:
7970 case X86ISD::DEC:
Evan Cheng8e9b21c2009-02-02 09:15:04 +00007971 // These nodes' second result is a boolean.
7972 if (Op.getResNo() == 0)
7973 break;
7974 // Fallthrough
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007975 case X86ISD::SETCC:
Dan Gohman229fa052008-02-13 00:35:47 +00007976 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
7977 Mask.getBitWidth() - 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007978 break;
7979 }
7980}
7981
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007982/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengef7be082008-05-12 19:56:52 +00007983/// node is a GlobalAddress + offset.
7984bool X86TargetLowering::isGAPlusOffset(SDNode *N,
7985 GlobalValue* &GA, int64_t &Offset) const{
7986 if (N->getOpcode() == X86ISD::Wrapper) {
7987 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007988 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman36322c72008-10-18 02:06:02 +00007989 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007990 return true;
7991 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007992 }
Evan Chengef7be082008-05-12 19:56:52 +00007993 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007994}
7995
Evan Chengef7be082008-05-12 19:56:52 +00007996static bool isBaseAlignmentOfN(unsigned N, SDNode *Base,
7997 const TargetLowering &TLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007998 GlobalValue *GV;
Nick Lewycky4bd3fca2008-02-02 08:29:58 +00007999 int64_t Offset = 0;
Evan Chengef7be082008-05-12 19:56:52 +00008000 if (TLI.isGAPlusOffset(Base, GV, Offset))
Evan Cheng40ee6e52008-05-08 00:57:18 +00008001 return (GV->getAlignment() >= N && (Offset % N) == 0);
Chris Lattner3834cf32008-01-26 20:07:42 +00008002 // DAG combine handles the stack object case.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008003 return false;
8004}
8005
Dan Gohman8181bd12008-07-27 21:46:04 +00008006static bool EltsFromConsecutiveLoads(SDNode *N, SDValue PermMask,
Duncan Sands92c43912008-06-06 12:08:01 +00008007 unsigned NumElems, MVT EVT,
Evan Chengef7be082008-05-12 19:56:52 +00008008 SDNode *&Base,
8009 SelectionDAG &DAG, MachineFrameInfo *MFI,
8010 const TargetLowering &TLI) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00008011 Base = NULL;
8012 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00008013 SDValue Idx = PermMask.getOperand(i);
Evan Cheng40ee6e52008-05-08 00:57:18 +00008014 if (Idx.getOpcode() == ISD::UNDEF) {
8015 if (!Base)
8016 return false;
8017 continue;
8018 }
8019
Dan Gohman8181bd12008-07-27 21:46:04 +00008020 SDValue Elt = DAG.getShuffleScalarElt(N, i);
Gabor Greif1c80d112008-08-28 21:40:38 +00008021 if (!Elt.getNode() ||
8022 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
Evan Cheng40ee6e52008-05-08 00:57:18 +00008023 return false;
8024 if (!Base) {
Gabor Greif1c80d112008-08-28 21:40:38 +00008025 Base = Elt.getNode();
Evan Cheng92ee6822008-05-10 06:46:49 +00008026 if (Base->getOpcode() == ISD::UNDEF)
8027 return false;
Evan Cheng40ee6e52008-05-08 00:57:18 +00008028 continue;
8029 }
8030 if (Elt.getOpcode() == ISD::UNDEF)
8031 continue;
8032
Gabor Greif1c80d112008-08-28 21:40:38 +00008033 if (!TLI.isConsecutiveLoad(Elt.getNode(), Base,
Duncan Sands92c43912008-06-06 12:08:01 +00008034 EVT.getSizeInBits()/8, i, MFI))
Evan Cheng40ee6e52008-05-08 00:57:18 +00008035 return false;
8036 }
8037 return true;
8038}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008039
8040/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
8041/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
8042/// if the load addresses are consecutive, non-overlapping, and in the right
8043/// order.
Dan Gohman8181bd12008-07-27 21:46:04 +00008044static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Evan Chengef7be082008-05-12 19:56:52 +00008045 const TargetLowering &TLI) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00008046 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008047 DebugLoc dl = N->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00008048 MVT VT = N->getValueType(0);
8049 MVT EVT = VT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00008050 SDValue PermMask = N->getOperand(2);
Evan Chengbad18452008-05-05 22:12:23 +00008051 unsigned NumElems = PermMask.getNumOperands();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008052 SDNode *Base = NULL;
Evan Chengef7be082008-05-12 19:56:52 +00008053 if (!EltsFromConsecutiveLoads(N, PermMask, NumElems, EVT, Base,
8054 DAG, MFI, TLI))
Dan Gohman8181bd12008-07-27 21:46:04 +00008055 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008056
Dan Gohman11821702007-07-27 17:16:43 +00008057 LoadSDNode *LD = cast<LoadSDNode>(Base);
Gabor Greif1c80d112008-08-28 21:40:38 +00008058 if (isBaseAlignmentOfN(16, Base->getOperand(1).getNode(), TLI))
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008059 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
Scott Michel91099d62009-02-17 22:15:04 +00008060 LD->getSrcValue(), LD->getSrcValueOffset(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008061 LD->isVolatile());
8062 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
8063 LD->getSrcValue(), LD->getSrcValueOffset(),
8064 LD->isVolatile(), LD->getAlignment());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008065}
8066
Evan Chengb6290462008-05-12 23:04:07 +00008067/// PerformBuildVectorCombine - build_vector 0,(load i64 / f64) -> movq / movsd.
Dan Gohman8181bd12008-07-27 21:46:04 +00008068static SDValue PerformBuildVectorCombine(SDNode *N, SelectionDAG &DAG,
Dan Gohman22cefb02009-01-29 01:59:02 +00008069 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng6617eed2008-09-24 23:26:36 +00008070 const X86Subtarget *Subtarget,
8071 const TargetLowering &TLI) {
Evan Chengdea99362008-05-29 08:22:04 +00008072 unsigned NumOps = N->getNumOperands();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008073 DebugLoc dl = N->getDebugLoc();
Evan Chengdea99362008-05-29 08:22:04 +00008074
Evan Chenge9b9c672008-05-09 21:53:03 +00008075 // Ignore single operand BUILD_VECTOR.
Evan Chengdea99362008-05-29 08:22:04 +00008076 if (NumOps == 1)
Dan Gohman8181bd12008-07-27 21:46:04 +00008077 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00008078
Duncan Sands92c43912008-06-06 12:08:01 +00008079 MVT VT = N->getValueType(0);
8080 MVT EVT = VT.getVectorElementType();
Evan Chenge9b9c672008-05-09 21:53:03 +00008081 if ((EVT != MVT::i64 && EVT != MVT::f64) || Subtarget->is64Bit())
8082 // We are looking for load i64 and zero extend. We want to transform
8083 // it before legalizer has a chance to expand it. Also look for i64
8084 // BUILD_PAIR bit casted to f64.
Dan Gohman8181bd12008-07-27 21:46:04 +00008085 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00008086 // This must be an insertion into a zero vector.
Dan Gohman8181bd12008-07-27 21:46:04 +00008087 SDValue HighElt = N->getOperand(1);
Evan Cheng5b0c30e2008-05-10 00:58:41 +00008088 if (!isZeroNode(HighElt))
Dan Gohman8181bd12008-07-27 21:46:04 +00008089 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00008090
8091 // Value must be a load.
Gabor Greif1c80d112008-08-28 21:40:38 +00008092 SDNode *Base = N->getOperand(0).getNode();
Evan Chenge9b9c672008-05-09 21:53:03 +00008093 if (!isa<LoadSDNode>(Base)) {
Evan Chengb6290462008-05-12 23:04:07 +00008094 if (Base->getOpcode() != ISD::BIT_CONVERT)
Dan Gohman8181bd12008-07-27 21:46:04 +00008095 return SDValue();
Gabor Greif1c80d112008-08-28 21:40:38 +00008096 Base = Base->getOperand(0).getNode();
Evan Chengb6290462008-05-12 23:04:07 +00008097 if (!isa<LoadSDNode>(Base))
Dan Gohman8181bd12008-07-27 21:46:04 +00008098 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00008099 }
Evan Chenge9b9c672008-05-09 21:53:03 +00008100
8101 // Transform it into VZEXT_LOAD addr.
Evan Chengb6290462008-05-12 23:04:07 +00008102 LoadSDNode *LD = cast<LoadSDNode>(Base);
Scott Michel91099d62009-02-17 22:15:04 +00008103
Nate Begeman211c4742008-05-28 00:24:25 +00008104 // Load must not be an extload.
8105 if (LD->getExtensionType() != ISD::NON_EXTLOAD)
Dan Gohman8181bd12008-07-27 21:46:04 +00008106 return SDValue();
Mon P Wang28b36412009-01-30 07:07:40 +00008107
8108 // Load type should legal type so we don't have to legalize it.
8109 if (!TLI.isTypeLegal(VT))
8110 return SDValue();
8111
Evan Cheng6617eed2008-09-24 23:26:36 +00008112 SDVTList Tys = DAG.getVTList(VT, MVT::Other);
8113 SDValue Ops[] = { LD->getChain(), LD->getBasePtr() };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008114 SDValue ResNode = DAG.getNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2);
Dan Gohman22cefb02009-01-29 01:59:02 +00008115 TargetLowering::TargetLoweringOpt TLO(DAG);
8116 TLO.CombineTo(SDValue(Base, 1), ResNode.getValue(1));
8117 DCI.CommitTargetLoweringOpt(TLO);
Evan Cheng6617eed2008-09-24 23:26:36 +00008118 return ResNode;
Scott Michel91099d62009-02-17 22:15:04 +00008119}
Evan Chenge9b9c672008-05-09 21:53:03 +00008120
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008121/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008122static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner472f1d52009-03-11 05:48:52 +00008123 const X86Subtarget *Subtarget) {
8124 DebugLoc DL = N->getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00008125 SDValue Cond = N->getOperand(0);
Chris Lattner472f1d52009-03-11 05:48:52 +00008126 // Get the LHS/RHS of the select.
8127 SDValue LHS = N->getOperand(1);
8128 SDValue RHS = N->getOperand(2);
8129
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008130 // If we have SSE[12] support, try to form min/max nodes.
8131 if (Subtarget->hasSSE2() &&
Chris Lattner472f1d52009-03-11 05:48:52 +00008132 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
8133 Cond.getOpcode() == ISD::SETCC) {
8134 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008135
Chris Lattner472f1d52009-03-11 05:48:52 +00008136 unsigned Opcode = 0;
8137 if (LHS == Cond.getOperand(0) && RHS == Cond.getOperand(1)) {
8138 switch (CC) {
8139 default: break;
8140 case ISD::SETOLE: // (X <= Y) ? X : Y -> min
8141 case ISD::SETULE:
8142 case ISD::SETLE:
8143 if (!UnsafeFPMath) break;
8144 // FALL THROUGH.
8145 case ISD::SETOLT: // (X olt/lt Y) ? X : Y -> min
8146 case ISD::SETLT:
8147 Opcode = X86ISD::FMIN;
8148 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008149
Chris Lattner472f1d52009-03-11 05:48:52 +00008150 case ISD::SETOGT: // (X > Y) ? X : Y -> max
8151 case ISD::SETUGT:
8152 case ISD::SETGT:
8153 if (!UnsafeFPMath) break;
8154 // FALL THROUGH.
8155 case ISD::SETUGE: // (X uge/ge Y) ? X : Y -> max
8156 case ISD::SETGE:
8157 Opcode = X86ISD::FMAX;
8158 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008159 }
Chris Lattner472f1d52009-03-11 05:48:52 +00008160 } else if (LHS == Cond.getOperand(1) && RHS == Cond.getOperand(0)) {
8161 switch (CC) {
8162 default: break;
8163 case ISD::SETOGT: // (X > Y) ? Y : X -> min
8164 case ISD::SETUGT:
8165 case ISD::SETGT:
8166 if (!UnsafeFPMath) break;
8167 // FALL THROUGH.
8168 case ISD::SETUGE: // (X uge/ge Y) ? Y : X -> min
8169 case ISD::SETGE:
8170 Opcode = X86ISD::FMIN;
8171 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008172
Chris Lattner472f1d52009-03-11 05:48:52 +00008173 case ISD::SETOLE: // (X <= Y) ? Y : X -> max
8174 case ISD::SETULE:
8175 case ISD::SETLE:
8176 if (!UnsafeFPMath) break;
8177 // FALL THROUGH.
8178 case ISD::SETOLT: // (X olt/lt Y) ? Y : X -> max
8179 case ISD::SETLT:
8180 Opcode = X86ISD::FMAX;
8181 break;
8182 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008183 }
8184
Chris Lattner472f1d52009-03-11 05:48:52 +00008185 if (Opcode)
8186 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008187 }
Chris Lattner472f1d52009-03-11 05:48:52 +00008188
Chris Lattnere4577dc2009-03-12 06:52:53 +00008189 // If this is a select between two integer constants, try to do some
8190 // optimizations.
8191 if (ConstantSDNode *LHSC = dyn_cast<ConstantSDNode>(LHS)) {
8192 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS))
8193 // Don't do this for crazy integer types.
8194 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
8195 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
8196 // so that LHSC (the true value) is larger than RHSC (the false value).
8197 bool NeedsCondInvert = false;
8198
8199 if (LHSC->getAPIntValue().ult(RHSC->getAPIntValue()) &&
8200 // Efficiently invertible.
8201 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
8202 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
8203 isa<ConstantSDNode>(Cond.getOperand(1))))) {
8204 NeedsCondInvert = true;
8205 std::swap(LHSC, RHSC);
8206 }
8207
8208 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
8209 if (RHSC->getAPIntValue() == 0 && LHSC->getAPIntValue().isPowerOf2()) {
8210 if (NeedsCondInvert) // Invert the condition if needed.
8211 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
8212 DAG.getConstant(1, Cond.getValueType()));
8213
8214 // Zero extend the condition if needed.
8215 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
8216
8217 unsigned ShAmt = LHSC->getAPIntValue().logBase2();
8218 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
8219 DAG.getConstant(ShAmt, MVT::i8));
8220 }
8221 }
8222 }
8223
Dan Gohman8181bd12008-07-27 21:46:04 +00008224 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008225}
8226
Chris Lattnere4577dc2009-03-12 06:52:53 +00008227/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
8228static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
8229 TargetLowering::DAGCombinerInfo &DCI) {
8230 DebugLoc DL = N->getDebugLoc();
8231
8232 // If the flag operand isn't dead, don't touch this CMOV.
8233 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
8234 return SDValue();
8235
8236 // If this is a select between two integer constants, try to do some
8237 // optimizations. Note that the operands are ordered the opposite of SELECT
8238 // operands.
8239 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
8240 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
8241 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
8242 // larger than FalseC (the false value).
8243 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
8244
8245 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
8246 CC = X86::GetOppositeBranchCondition(CC);
8247 std::swap(TrueC, FalseC);
8248 }
8249
8250 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
8251 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
8252 SDValue Cond = N->getOperand(3);
8253 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8254 DAG.getConstant(CC, MVT::i8), Cond);
8255
8256 // Zero extend the condition if needed.
8257 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
8258
8259 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
8260 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
8261 DAG.getConstant(ShAmt, MVT::i8));
8262 if (N->getNumValues() == 2) // Dead flag value?
8263 return DCI.CombineTo(N, Cond, SDValue());
8264 return Cond;
8265 }
8266 }
8267 }
8268 return SDValue();
8269}
8270
8271
sampo025b75c2009-01-26 00:52:55 +00008272/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
8273/// when possible.
8274static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
8275 const X86Subtarget *Subtarget) {
8276 // On X86 with SSE2 support, we can transform this to a vector shift if
8277 // all elements are shifted by the same amount. We can't do this in legalize
8278 // because the a constant vector is typically transformed to a constant pool
8279 // so we have no knowledge of the shift amount.
sampo087d53c2009-01-26 03:15:31 +00008280 if (!Subtarget->hasSSE2())
8281 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00008282
sampo025b75c2009-01-26 00:52:55 +00008283 MVT VT = N->getValueType(0);
sampo087d53c2009-01-26 03:15:31 +00008284 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
8285 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00008286
Mon P Wanga91e9642009-01-28 08:12:05 +00008287 SDValue ShAmtOp = N->getOperand(1);
8288 MVT EltVT = VT.getVectorElementType();
Chris Lattner472f1d52009-03-11 05:48:52 +00008289 DebugLoc DL = N->getDebugLoc();
Mon P Wanga91e9642009-01-28 08:12:05 +00008290 SDValue BaseShAmt;
8291 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
8292 unsigned NumElts = VT.getVectorNumElements();
8293 unsigned i = 0;
8294 for (; i != NumElts; ++i) {
8295 SDValue Arg = ShAmtOp.getOperand(i);
8296 if (Arg.getOpcode() == ISD::UNDEF) continue;
8297 BaseShAmt = Arg;
8298 break;
8299 }
8300 for (; i != NumElts; ++i) {
8301 SDValue Arg = ShAmtOp.getOperand(i);
8302 if (Arg.getOpcode() == ISD::UNDEF) continue;
8303 if (Arg != BaseShAmt) {
8304 return SDValue();
8305 }
8306 }
8307 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
8308 isSplatMask(ShAmtOp.getOperand(2).getNode())) {
Chris Lattner472f1d52009-03-11 05:48:52 +00008309 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
Mon P Wanga91e9642009-01-28 08:12:05 +00008310 DAG.getIntPtrConstant(0));
8311 } else
sampo087d53c2009-01-26 03:15:31 +00008312 return SDValue();
sampo025b75c2009-01-26 00:52:55 +00008313
sampo087d53c2009-01-26 03:15:31 +00008314 if (EltVT.bitsGT(MVT::i32))
Chris Lattner472f1d52009-03-11 05:48:52 +00008315 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008316 else if (EltVT.bitsLT(MVT::i32))
Chris Lattner472f1d52009-03-11 05:48:52 +00008317 BaseShAmt = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, BaseShAmt);
sampo025b75c2009-01-26 00:52:55 +00008318
sampo087d53c2009-01-26 03:15:31 +00008319 // The shift amount is identical so we can do a vector shift.
8320 SDValue ValOp = N->getOperand(0);
8321 switch (N->getOpcode()) {
8322 default:
8323 assert(0 && "Unknown shift opcode!");
8324 break;
8325 case ISD::SHL:
8326 if (VT == MVT::v2i64)
Chris Lattner472f1d52009-03-11 05:48:52 +00008327 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008328 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8329 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008330 if (VT == MVT::v4i32)
Chris Lattner472f1d52009-03-11 05:48:52 +00008331 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008332 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8333 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008334 if (VT == MVT::v8i16)
Chris Lattner472f1d52009-03-11 05:48:52 +00008335 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008336 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8337 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008338 break;
8339 case ISD::SRA:
8340 if (VT == MVT::v4i32)
Chris Lattner472f1d52009-03-11 05:48:52 +00008341 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008342 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
8343 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008344 if (VT == MVT::v8i16)
Chris Lattner472f1d52009-03-11 05:48:52 +00008345 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008346 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
8347 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008348 break;
8349 case ISD::SRL:
8350 if (VT == MVT::v2i64)
Chris Lattner472f1d52009-03-11 05:48:52 +00008351 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008352 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8353 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008354 if (VT == MVT::v4i32)
Chris Lattner472f1d52009-03-11 05:48:52 +00008355 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008356 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
8357 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008358 if (VT == MVT::v8i16)
Chris Lattner472f1d52009-03-11 05:48:52 +00008359 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008360 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
8361 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008362 break;
sampo025b75c2009-01-26 00:52:55 +00008363 }
8364 return SDValue();
8365}
8366
Chris Lattnerce84ae42008-02-22 02:09:43 +00008367/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008368static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Chengc944c5d2009-03-12 05:59:15 +00008369 const X86Subtarget *Subtarget) {
Chris Lattnerce84ae42008-02-22 02:09:43 +00008370 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
8371 // the FP state in cases where an emms may be missing.
Dale Johannesend112b802008-02-25 19:20:14 +00008372 // A preferable solution to the general problem is to figure out the right
8373 // places to insert EMMS. This qualifies as a quick hack.
Evan Chengc944c5d2009-03-12 05:59:15 +00008374
8375 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng40ee6e52008-05-08 00:57:18 +00008376 StoreSDNode *St = cast<StoreSDNode>(N);
Evan Chengc944c5d2009-03-12 05:59:15 +00008377 MVT VT = St->getValue().getValueType();
8378 if (VT.getSizeInBits() != 64)
8379 return SDValue();
8380
8381 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloat && Subtarget->hasSSE2();
8382 if ((VT.isVector() ||
8383 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesend112b802008-02-25 19:20:14 +00008384 isa<LoadSDNode>(St->getValue()) &&
8385 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
8386 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greif1c80d112008-08-28 21:40:38 +00008387 SDNode* LdVal = St->getValue().getNode();
Dale Johannesend112b802008-02-25 19:20:14 +00008388 LoadSDNode *Ld = 0;
8389 int TokenFactorIndex = -1;
Dan Gohman8181bd12008-07-27 21:46:04 +00008390 SmallVector<SDValue, 8> Ops;
Gabor Greif1c80d112008-08-28 21:40:38 +00008391 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesend112b802008-02-25 19:20:14 +00008392 // Must be a store of a load. We currently handle two cases: the load
8393 // is a direct child, and it's under an intervening TokenFactor. It is
8394 // possible to dig deeper under nested TokenFactors.
Dale Johannesen49151bc2008-02-25 22:29:22 +00008395 if (ChainVal == LdVal)
Dale Johannesend112b802008-02-25 19:20:14 +00008396 Ld = cast<LoadSDNode>(St->getChain());
8397 else if (St->getValue().hasOneUse() &&
8398 ChainVal->getOpcode() == ISD::TokenFactor) {
8399 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greif1c80d112008-08-28 21:40:38 +00008400 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesend112b802008-02-25 19:20:14 +00008401 TokenFactorIndex = i;
8402 Ld = cast<LoadSDNode>(St->getValue());
8403 } else
8404 Ops.push_back(ChainVal->getOperand(i));
8405 }
8406 }
Dale Johannesend112b802008-02-25 19:20:14 +00008407
Evan Chengc944c5d2009-03-12 05:59:15 +00008408 if (!Ld || !ISD::isNormalLoad(Ld))
8409 return SDValue();
Dale Johannesend112b802008-02-25 19:20:14 +00008410
Evan Chengc944c5d2009-03-12 05:59:15 +00008411 // If this is not the MMX case, i.e. we are just turning i64 load/store
8412 // into f64 load/store, avoid the transformation if there are multiple
8413 // uses of the loaded value.
8414 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
8415 return SDValue();
Dale Johannesend112b802008-02-25 19:20:14 +00008416
Evan Chengc944c5d2009-03-12 05:59:15 +00008417 DebugLoc LdDL = Ld->getDebugLoc();
8418 DebugLoc StDL = N->getDebugLoc();
8419 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
8420 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
8421 // pair instead.
8422 if (Subtarget->is64Bit() || F64IsLegal) {
8423 MVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
8424 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(),
8425 Ld->getBasePtr(), Ld->getSrcValue(),
8426 Ld->getSrcValueOffset(), Ld->isVolatile(),
8427 Ld->getAlignment());
8428 SDValue NewChain = NewLd.getValue(1);
Dale Johannesend112b802008-02-25 19:20:14 +00008429 if (TokenFactorIndex != -1) {
Evan Chengc944c5d2009-03-12 05:59:15 +00008430 Ops.push_back(NewChain);
8431 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesend112b802008-02-25 19:20:14 +00008432 Ops.size());
8433 }
Evan Chengc944c5d2009-03-12 05:59:15 +00008434 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattnerce84ae42008-02-22 02:09:43 +00008435 St->getSrcValue(), St->getSrcValueOffset(),
8436 St->isVolatile(), St->getAlignment());
8437 }
Evan Chengc944c5d2009-03-12 05:59:15 +00008438
8439 // Otherwise, lower to two pairs of 32-bit loads / stores.
8440 SDValue LoAddr = Ld->getBasePtr();
8441 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
8442 DAG.getConstant(4, MVT::i32));
8443
8444 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
8445 Ld->getSrcValue(), Ld->getSrcValueOffset(),
8446 Ld->isVolatile(), Ld->getAlignment());
8447 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
8448 Ld->getSrcValue(), Ld->getSrcValueOffset()+4,
8449 Ld->isVolatile(),
8450 MinAlign(Ld->getAlignment(), 4));
8451
8452 SDValue NewChain = LoLd.getValue(1);
8453 if (TokenFactorIndex != -1) {
8454 Ops.push_back(LoLd);
8455 Ops.push_back(HiLd);
8456 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
8457 Ops.size());
8458 }
8459
8460 LoAddr = St->getBasePtr();
8461 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
8462 DAG.getConstant(4, MVT::i32));
8463
8464 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
8465 St->getSrcValue(), St->getSrcValueOffset(),
8466 St->isVolatile(), St->getAlignment());
8467 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
8468 St->getSrcValue(),
8469 St->getSrcValueOffset() + 4,
8470 St->isVolatile(),
8471 MinAlign(St->getAlignment(), 4));
8472 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattnerce84ae42008-02-22 02:09:43 +00008473 }
Dan Gohman8181bd12008-07-27 21:46:04 +00008474 return SDValue();
Chris Lattnerce84ae42008-02-22 02:09:43 +00008475}
8476
Chris Lattner470d5dc2008-01-25 06:14:17 +00008477/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
8478/// X86ISD::FXOR nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008479static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner470d5dc2008-01-25 06:14:17 +00008480 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
8481 // F[X]OR(0.0, x) -> x
8482 // F[X]OR(x, 0.0) -> x
Chris Lattnerf82998f2008-01-25 05:46:26 +00008483 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8484 if (C->getValueAPF().isPosZero())
8485 return N->getOperand(1);
8486 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8487 if (C->getValueAPF().isPosZero())
8488 return N->getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +00008489 return SDValue();
Chris Lattnerf82998f2008-01-25 05:46:26 +00008490}
8491
8492/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008493static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattnerf82998f2008-01-25 05:46:26 +00008494 // FAND(0.0, x) -> 0.0
8495 // FAND(x, 0.0) -> 0.0
8496 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8497 if (C->getValueAPF().isPosZero())
8498 return N->getOperand(0);
8499 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8500 if (C->getValueAPF().isPosZero())
8501 return N->getOperand(1);
Dan Gohman8181bd12008-07-27 21:46:04 +00008502 return SDValue();
Chris Lattnerf82998f2008-01-25 05:46:26 +00008503}
8504
Dan Gohman22cefb02009-01-29 01:59:02 +00008505static SDValue PerformBTCombine(SDNode *N,
8506 SelectionDAG &DAG,
8507 TargetLowering::DAGCombinerInfo &DCI) {
8508 // BT ignores high bits in the bit index operand.
8509 SDValue Op1 = N->getOperand(1);
8510 if (Op1.hasOneUse()) {
8511 unsigned BitWidth = Op1.getValueSizeInBits();
8512 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
8513 APInt KnownZero, KnownOne;
8514 TargetLowering::TargetLoweringOpt TLO(DAG);
8515 TargetLowering &TLI = DAG.getTargetLoweringInfo();
8516 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
8517 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
8518 DCI.CommitTargetLoweringOpt(TLO);
8519 }
8520 return SDValue();
8521}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008522
Dan Gohman8181bd12008-07-27 21:46:04 +00008523SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng62370f32008-11-05 06:03:38 +00008524 DAGCombinerInfo &DCI) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008525 SelectionDAG &DAG = DCI.DAG;
8526 switch (N->getOpcode()) {
8527 default: break;
Evan Chengef7be082008-05-12 19:56:52 +00008528 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
8529 case ISD::BUILD_VECTOR:
Dan Gohman22cefb02009-01-29 01:59:02 +00008530 return PerformBuildVectorCombine(N, DAG, DCI, Subtarget, *this);
Chris Lattnerf82998f2008-01-25 05:46:26 +00008531 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnere4577dc2009-03-12 06:52:53 +00008532 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
sampo025b75c2009-01-26 00:52:55 +00008533 case ISD::SHL:
8534 case ISD::SRA:
8535 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng40ee6e52008-05-08 00:57:18 +00008536 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner470d5dc2008-01-25 06:14:17 +00008537 case X86ISD::FXOR:
Chris Lattnerf82998f2008-01-25 05:46:26 +00008538 case X86ISD::FOR: return PerformFORCombine(N, DAG);
8539 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohman22cefb02009-01-29 01:59:02 +00008540 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008541 }
8542
Dan Gohman8181bd12008-07-27 21:46:04 +00008543 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008544}
8545
8546//===----------------------------------------------------------------------===//
8547// X86 Inline Assembly Support
8548//===----------------------------------------------------------------------===//
8549
8550/// getConstraintType - Given a constraint letter, return the type of
8551/// constraint it is for this target.
8552X86TargetLowering::ConstraintType
8553X86TargetLowering::getConstraintType(const std::string &Constraint) const {
8554 if (Constraint.size() == 1) {
8555 switch (Constraint[0]) {
8556 case 'A':
Dale Johannesen73920c02008-11-13 21:52:36 +00008557 return C_Register;
Chris Lattner267805f2008-03-11 19:06:29 +00008558 case 'f':
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008559 case 'r':
8560 case 'R':
8561 case 'l':
8562 case 'q':
8563 case 'Q':
8564 case 'x':
Dale Johannesen9ab553f2008-04-01 00:57:48 +00008565 case 'y':
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008566 case 'Y':
8567 return C_RegisterClass;
Dale Johannesenf190a032009-02-12 20:58:09 +00008568 case 'e':
8569 case 'Z':
8570 return C_Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008571 default:
8572 break;
8573 }
8574 }
8575 return TargetLowering::getConstraintType(Constraint);
8576}
8577
Dale Johannesene99fc902008-01-29 02:21:21 +00008578/// LowerXConstraint - try to replace an X constraint, which matches anything,
8579/// with another that has more specific requirements based on the type of the
8580/// corresponding operand.
Chris Lattnereca405c2008-04-26 23:02:14 +00008581const char *X86TargetLowering::
Duncan Sands92c43912008-06-06 12:08:01 +00008582LowerXConstraint(MVT ConstraintVT) const {
Chris Lattnereca405c2008-04-26 23:02:14 +00008583 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
8584 // 'f' like normal targets.
Duncan Sands92c43912008-06-06 12:08:01 +00008585 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesene99fc902008-01-29 02:21:21 +00008586 if (Subtarget->hasSSE2())
Chris Lattnereca405c2008-04-26 23:02:14 +00008587 return "Y";
8588 if (Subtarget->hasSSE1())
8589 return "x";
8590 }
Scott Michel91099d62009-02-17 22:15:04 +00008591
Chris Lattnereca405c2008-04-26 23:02:14 +00008592 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesene99fc902008-01-29 02:21:21 +00008593}
8594
Chris Lattnera531abc2007-08-25 00:47:38 +00008595/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
8596/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman8181bd12008-07-27 21:46:04 +00008597void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattnera531abc2007-08-25 00:47:38 +00008598 char Constraint,
Evan Cheng7f250d62008-09-24 00:05:32 +00008599 bool hasMemory,
Dan Gohman8181bd12008-07-27 21:46:04 +00008600 std::vector<SDValue>&Ops,
Chris Lattnereca405c2008-04-26 23:02:14 +00008601 SelectionDAG &DAG) const {
Dan Gohman8181bd12008-07-27 21:46:04 +00008602 SDValue Result(0, 0);
Scott Michel91099d62009-02-17 22:15:04 +00008603
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008604 switch (Constraint) {
8605 default: break;
8606 case 'I':
8607 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008608 if (C->getZExtValue() <= 31) {
8609 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattnera531abc2007-08-25 00:47:38 +00008610 break;
8611 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008612 }
Chris Lattnera531abc2007-08-25 00:47:38 +00008613 return;
Evan Cheng4fb2c0f2008-09-22 23:57:37 +00008614 case 'J':
8615 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8616 if (C->getZExtValue() <= 63) {
8617 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8618 break;
8619 }
8620 }
8621 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008622 case 'N':
8623 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008624 if (C->getZExtValue() <= 255) {
8625 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattnera531abc2007-08-25 00:47:38 +00008626 break;
8627 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008628 }
Chris Lattnera531abc2007-08-25 00:47:38 +00008629 return;
Dale Johannesenf190a032009-02-12 20:58:09 +00008630 case 'e': {
8631 // 32-bit signed value
8632 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8633 const ConstantInt *CI = C->getConstantIntValue();
8634 if (CI->isValueValidForType(Type::Int32Ty, C->getSExtValue())) {
8635 // Widen to 64 bits here to get it sign extended.
8636 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
8637 break;
8638 }
8639 // FIXME gcc accepts some relocatable values here too, but only in certain
8640 // memory models; it's complicated.
8641 }
8642 return;
8643 }
8644 case 'Z': {
8645 // 32-bit unsigned value
8646 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8647 const ConstantInt *CI = C->getConstantIntValue();
8648 if (CI->isValueValidForType(Type::Int32Ty, C->getZExtValue())) {
8649 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8650 break;
8651 }
8652 }
8653 // FIXME gcc accepts some relocatable values here too, but only in certain
8654 // memory models; it's complicated.
8655 return;
8656 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008657 case 'i': {
8658 // Literal immediates are always ok.
Chris Lattnera531abc2007-08-25 00:47:38 +00008659 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesenf190a032009-02-12 20:58:09 +00008660 // Widen to 64 bits here to get it sign extended.
8661 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattnera531abc2007-08-25 00:47:38 +00008662 break;
8663 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008664
8665 // If we are in non-pic codegen mode, we allow the address of a global (with
8666 // an optional displacement) to be used with 'i'.
8667 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
8668 int64_t Offset = 0;
Scott Michel91099d62009-02-17 22:15:04 +00008669
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008670 // Match either (GA) or (GA+C)
8671 if (GA) {
8672 Offset = GA->getOffset();
8673 } else if (Op.getOpcode() == ISD::ADD) {
8674 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8675 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
8676 if (C && GA) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008677 Offset = GA->getOffset()+C->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008678 } else {
8679 C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8680 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
8681 if (C && GA)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008682 Offset = GA->getOffset()+C->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008683 else
8684 C = 0, GA = 0;
8685 }
8686 }
Scott Michel91099d62009-02-17 22:15:04 +00008687
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008688 if (GA) {
Scott Michel91099d62009-02-17 22:15:04 +00008689 if (hasMemory)
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00008690 Op = LowerGlobalAddress(GA->getGlobal(), Op.getDebugLoc(),
Dale Johannesenea996922009-02-04 20:06:27 +00008691 Offset, DAG);
Evan Cheng7f250d62008-09-24 00:05:32 +00008692 else
8693 Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
8694 Offset);
Chris Lattnera531abc2007-08-25 00:47:38 +00008695 Result = Op;
8696 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008697 }
8698
8699 // Otherwise, not valid for this mode.
Chris Lattnera531abc2007-08-25 00:47:38 +00008700 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008701 }
8702 }
Scott Michel91099d62009-02-17 22:15:04 +00008703
Gabor Greif1c80d112008-08-28 21:40:38 +00008704 if (Result.getNode()) {
Chris Lattnera531abc2007-08-25 00:47:38 +00008705 Ops.push_back(Result);
8706 return;
8707 }
Evan Cheng7f250d62008-09-24 00:05:32 +00008708 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, hasMemory,
8709 Ops, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008710}
8711
8712std::vector<unsigned> X86TargetLowering::
8713getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +00008714 MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008715 if (Constraint.size() == 1) {
8716 // FIXME: not handling fp-stack yet!
8717 switch (Constraint[0]) { // GCC X86 Constraint Letters
8718 default: break; // Unknown constraint letter
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008719 case 'q': // Q_REGS (GENERAL_REGS in 64-bit mode)
8720 case 'Q': // Q_REGS
8721 if (VT == MVT::i32)
8722 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
8723 else if (VT == MVT::i16)
8724 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
8725 else if (VT == MVT::i8)
Evan Chengf85c10f2007-08-13 23:27:11 +00008726 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Chris Lattner35032592007-11-04 06:51:12 +00008727 else if (VT == MVT::i64)
8728 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
8729 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008730 }
8731 }
8732
8733 return std::vector<unsigned>();
8734}
8735
8736std::pair<unsigned, const TargetRegisterClass*>
8737X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +00008738 MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008739 // First, see if this is a constraint that directly corresponds to an LLVM
8740 // register class.
8741 if (Constraint.size() == 1) {
8742 // GCC Constraint Letters
8743 switch (Constraint[0]) {
8744 default: break;
8745 case 'r': // GENERAL_REGS
8746 case 'R': // LEGACY_REGS
8747 case 'l': // INDEX_REGS
Chris Lattnerbbfea052008-10-17 18:15:05 +00008748 if (VT == MVT::i8)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008749 return std::make_pair(0U, X86::GR8RegisterClass);
Chris Lattnerbbfea052008-10-17 18:15:05 +00008750 if (VT == MVT::i16)
8751 return std::make_pair(0U, X86::GR16RegisterClass);
8752 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michel91099d62009-02-17 22:15:04 +00008753 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattnerbbfea052008-10-17 18:15:05 +00008754 return std::make_pair(0U, X86::GR64RegisterClass);
Chris Lattner267805f2008-03-11 19:06:29 +00008755 case 'f': // FP Stack registers.
8756 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
8757 // value to the correct fpstack register class.
8758 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
8759 return std::make_pair(0U, X86::RFP32RegisterClass);
8760 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
8761 return std::make_pair(0U, X86::RFP64RegisterClass);
8762 return std::make_pair(0U, X86::RFP80RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008763 case 'y': // MMX_REGS if MMX allowed.
8764 if (!Subtarget->hasMMX()) break;
8765 return std::make_pair(0U, X86::VR64RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008766 case 'Y': // SSE_REGS if SSE2 allowed
8767 if (!Subtarget->hasSSE2()) break;
8768 // FALL THROUGH.
8769 case 'x': // SSE_REGS if SSE1 allowed
8770 if (!Subtarget->hasSSE1()) break;
Duncan Sands92c43912008-06-06 12:08:01 +00008771
8772 switch (VT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008773 default: break;
8774 // Scalar SSE types.
8775 case MVT::f32:
8776 case MVT::i32:
8777 return std::make_pair(0U, X86::FR32RegisterClass);
8778 case MVT::f64:
8779 case MVT::i64:
8780 return std::make_pair(0U, X86::FR64RegisterClass);
8781 // Vector types.
8782 case MVT::v16i8:
8783 case MVT::v8i16:
8784 case MVT::v4i32:
8785 case MVT::v2i64:
8786 case MVT::v4f32:
8787 case MVT::v2f64:
8788 return std::make_pair(0U, X86::VR128RegisterClass);
8789 }
8790 break;
8791 }
8792 }
Scott Michel91099d62009-02-17 22:15:04 +00008793
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008794 // Use the default implementation in TargetLowering to convert the register
8795 // constraint into a member of a register class.
8796 std::pair<unsigned, const TargetRegisterClass*> Res;
8797 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
8798
8799 // Not found as a standard register?
8800 if (Res.second == 0) {
8801 // GCC calls "st(0)" just plain "st".
8802 if (StringsEqualNoCase("{st}", Constraint)) {
8803 Res.first = X86::ST0;
Chris Lattner3cfe51b2007-09-24 05:27:37 +00008804 Res.second = X86::RFP80RegisterClass;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008805 }
Dale Johannesen73920c02008-11-13 21:52:36 +00008806 // 'A' means EAX + EDX.
8807 if (Constraint == "A") {
8808 Res.first = X86::EAX;
8809 Res.second = X86::GRADRegisterClass;
8810 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008811 return Res;
8812 }
8813
8814 // Otherwise, check to see if this is a register class of the wrong value
8815 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
8816 // turn into {ax},{dx}.
8817 if (Res.second->hasType(VT))
8818 return Res; // Correct type already, nothing to do.
8819
8820 // All of the single-register GCC register classes map their values onto
8821 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
8822 // really want an 8-bit or 32-bit register, map to the appropriate register
8823 // class and return the appropriate register.
Chris Lattnere9d7f792008-08-26 06:19:02 +00008824 if (Res.second == X86::GR16RegisterClass) {
8825 if (VT == MVT::i8) {
8826 unsigned DestReg = 0;
8827 switch (Res.first) {
8828 default: break;
8829 case X86::AX: DestReg = X86::AL; break;
8830 case X86::DX: DestReg = X86::DL; break;
8831 case X86::CX: DestReg = X86::CL; break;
8832 case X86::BX: DestReg = X86::BL; break;
8833 }
8834 if (DestReg) {
8835 Res.first = DestReg;
8836 Res.second = Res.second = X86::GR8RegisterClass;
8837 }
8838 } else if (VT == MVT::i32) {
8839 unsigned DestReg = 0;
8840 switch (Res.first) {
8841 default: break;
8842 case X86::AX: DestReg = X86::EAX; break;
8843 case X86::DX: DestReg = X86::EDX; break;
8844 case X86::CX: DestReg = X86::ECX; break;
8845 case X86::BX: DestReg = X86::EBX; break;
8846 case X86::SI: DestReg = X86::ESI; break;
8847 case X86::DI: DestReg = X86::EDI; break;
8848 case X86::BP: DestReg = X86::EBP; break;
8849 case X86::SP: DestReg = X86::ESP; break;
8850 }
8851 if (DestReg) {
8852 Res.first = DestReg;
8853 Res.second = Res.second = X86::GR32RegisterClass;
8854 }
8855 } else if (VT == MVT::i64) {
8856 unsigned DestReg = 0;
8857 switch (Res.first) {
8858 default: break;
8859 case X86::AX: DestReg = X86::RAX; break;
8860 case X86::DX: DestReg = X86::RDX; break;
8861 case X86::CX: DestReg = X86::RCX; break;
8862 case X86::BX: DestReg = X86::RBX; break;
8863 case X86::SI: DestReg = X86::RSI; break;
8864 case X86::DI: DestReg = X86::RDI; break;
8865 case X86::BP: DestReg = X86::RBP; break;
8866 case X86::SP: DestReg = X86::RSP; break;
8867 }
8868 if (DestReg) {
8869 Res.first = DestReg;
8870 Res.second = Res.second = X86::GR64RegisterClass;
8871 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008872 }
Chris Lattnere9d7f792008-08-26 06:19:02 +00008873 } else if (Res.second == X86::FR32RegisterClass ||
8874 Res.second == X86::FR64RegisterClass ||
8875 Res.second == X86::VR128RegisterClass) {
8876 // Handle references to XMM physical registers that got mapped into the
8877 // wrong class. This can happen with constraints like {xmm0} where the
8878 // target independent register mapper will just pick the first match it can
8879 // find, ignoring the required type.
8880 if (VT == MVT::f32)
8881 Res.second = X86::FR32RegisterClass;
8882 else if (VT == MVT::f64)
8883 Res.second = X86::FR64RegisterClass;
8884 else if (X86::VR128RegisterClass->hasType(VT))
8885 Res.second = X86::VR128RegisterClass;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008886 }
8887
8888 return Res;
8889}
Mon P Wang1448aad2008-10-30 08:01:45 +00008890
8891//===----------------------------------------------------------------------===//
8892// X86 Widen vector type
8893//===----------------------------------------------------------------------===//
8894
8895/// getWidenVectorType: given a vector type, returns the type to widen
8896/// to (e.g., v7i8 to v8i8). If the vector type is legal, it returns itself.
8897/// If there is no vector type that we want to widen to, returns MVT::Other
Mon P Wanga5a239f2008-11-06 05:31:54 +00008898/// When and where to widen is target dependent based on the cost of
Mon P Wang1448aad2008-10-30 08:01:45 +00008899/// scalarizing vs using the wider vector type.
8900
Dan Gohman0fe66c92009-01-15 17:34:08 +00008901MVT X86TargetLowering::getWidenVectorType(MVT VT) const {
Mon P Wang1448aad2008-10-30 08:01:45 +00008902 assert(VT.isVector());
8903 if (isTypeLegal(VT))
8904 return VT;
Scott Michel91099d62009-02-17 22:15:04 +00008905
Mon P Wang1448aad2008-10-30 08:01:45 +00008906 // TODO: In computeRegisterProperty, we can compute the list of legal vector
8907 // type based on element type. This would speed up our search (though
8908 // it may not be worth it since the size of the list is relatively
8909 // small).
8910 MVT EltVT = VT.getVectorElementType();
8911 unsigned NElts = VT.getVectorNumElements();
Scott Michel91099d62009-02-17 22:15:04 +00008912
Mon P Wang1448aad2008-10-30 08:01:45 +00008913 // On X86, it make sense to widen any vector wider than 1
8914 if (NElts <= 1)
8915 return MVT::Other;
Scott Michel91099d62009-02-17 22:15:04 +00008916
8917 for (unsigned nVT = MVT::FIRST_VECTOR_VALUETYPE;
Mon P Wang1448aad2008-10-30 08:01:45 +00008918 nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
8919 MVT SVT = (MVT::SimpleValueType)nVT;
Scott Michel91099d62009-02-17 22:15:04 +00008920
8921 if (isTypeLegal(SVT) &&
8922 SVT.getVectorElementType() == EltVT &&
Mon P Wang1448aad2008-10-30 08:01:45 +00008923 SVT.getVectorNumElements() > NElts)
8924 return SVT;
8925 }
8926 return MVT::Other;
8927}