blob: 9ce5e484e7dea72f4c1bf0b33684702b67e63729 [file] [log] [blame]
Arnold Schwaighofera70fe792007-10-12 21:53:12 +00001//===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that X86 uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#include "X86.h"
16#include "X86InstrBuilder.h"
17#include "X86ISelLowering.h"
18#include "X86MachineFunctionInfo.h"
19#include "X86TargetMachine.h"
20#include "llvm/CallingConv.h"
21#include "llvm/Constants.h"
22#include "llvm/DerivedTypes.h"
23#include "llvm/GlobalVariable.h"
24#include "llvm/Function.h"
25#include "llvm/Intrinsics.h"
Evan Cheng75184a92007-12-11 01:46:18 +000026#include "llvm/ADT/BitVector.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027#include "llvm/ADT/VectorExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/CodeGen/CallingConvLower.h"
29#include "llvm/CodeGen/MachineFrameInfo.h"
30#include "llvm/CodeGen/MachineFunction.h"
31#include "llvm/CodeGen/MachineInstrBuilder.h"
Evan Cheng2e28d622008-02-02 04:07:54 +000032#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner1b989192007-12-31 04:13:23 +000033#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman12a9c082008-02-06 22:27:42 +000034#include "llvm/CodeGen/PseudoSourceValue.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036#include "llvm/Support/MathExtras.h"
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +000037#include "llvm/Support/Debug.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038#include "llvm/Target/TargetOptions.h"
Evan Cheng75184a92007-12-11 01:46:18 +000039#include "llvm/ADT/SmallSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040#include "llvm/ADT/StringExtras.h"
Mon P Wang1f292322008-11-23 04:37:22 +000041#include "llvm/Support/CommandLine.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042using namespace llvm;
43
Mon P Wang1f292322008-11-23 04:37:22 +000044static cl::opt<bool>
Mon P Wangba7e48e2008-11-24 02:10:43 +000045DisableMMX("disable-mmx", cl::Hidden, cl::desc("Disable use of MMX"));
Mon P Wang1f292322008-11-23 04:37:22 +000046
Evan Cheng2aea0b42008-04-25 19:11:04 +000047// Forward declarations.
Dale Johannesence0805b2009-02-03 19:33:06 +000048static SDValue getMOVLMask(unsigned NumElems, SelectionDAG &DAG, DebugLoc dl);
Evan Cheng2aea0b42008-04-25 19:11:04 +000049
Dan Gohmanb41dfba2008-05-14 01:58:56 +000050X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051 : TargetLowering(TM) {
52 Subtarget = &TM.getSubtarget<X86Subtarget>();
Dale Johannesene0e0fd02007-09-23 14:52:20 +000053 X86ScalarSSEf64 = Subtarget->hasSSE2();
54 X86ScalarSSEf32 = Subtarget->hasSSE1();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovd0fef972008-09-09 18:22:57 +000056
Chris Lattnerdec9cb52008-01-24 08:07:48 +000057 bool Fast = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058
59 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovd0fef972008-09-09 18:22:57 +000060 TD = getTargetData();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061
62 // Set up the TargetLowering object.
63
64 // X86 is weird, it always uses i8 for shift amounts and setcc results.
65 setShiftAmountType(MVT::i8);
Duncan Sands8cf4a822008-11-23 15:47:28 +000066 setBooleanContents(ZeroOrOneBooleanContent);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067 setSchedulingPreference(SchedulingForRegPressure);
68 setShiftAmountFlavor(Mask); // shl X, 32 == shl X, 0
69 setStackPointerRegisterToSaveRestore(X86StackPtr);
70
71 if (Subtarget->isTargetDarwin()) {
72 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
73 setUseUnderscoreSetJmp(false);
74 setUseUnderscoreLongJmp(false);
75 } else if (Subtarget->isTargetMingw()) {
76 // MS runtime is weird: it exports _setjmp, but longjmp!
77 setUseUnderscoreSetJmp(true);
78 setUseUnderscoreLongJmp(false);
79 } else {
80 setUseUnderscoreSetJmp(true);
81 setUseUnderscoreLongJmp(true);
82 }
Scott Michel91099d62009-02-17 22:15:04 +000083
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084 // Set up the register classes.
85 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
86 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
87 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
88 if (Subtarget->is64Bit())
89 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
90
Evan Cheng08c171a2008-10-14 21:26:46 +000091 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000092
Scott Michel91099d62009-02-17 22:15:04 +000093 // We don't accept any truncstore of integer registers.
Chris Lattner3bc08502008-01-17 19:59:44 +000094 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
95 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
96 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
97 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
98 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
Evan Cheng71343822008-10-15 02:05:31 +000099 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
100
101 // SETOEQ and SETUNE require checking two conditions.
102 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
103 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
104 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
105 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
106 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
107 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattner3bc08502008-01-17 19:59:44 +0000108
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
110 // operation.
111 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
112 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
113 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
114
115 if (Subtarget->is64Bit()) {
116 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
117 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
118 } else {
Dale Johannesena359b8b2008-10-21 20:50:01 +0000119 if (X86ScalarSSEf64) {
120 // We have an impenetrably clever algorithm for ui64->double only.
121 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Bill Wendling14a30ef2009-01-17 03:56:04 +0000122
123 // We have faster algorithm for ui32->single only.
124 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Dale Johannesena359b8b2008-10-21 20:50:01 +0000125 } else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
127 }
128
129 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
130 // this operation.
131 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
132 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
133 // SSE has no i16 to fp conversion, only i32
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000134 if (X86ScalarSSEf32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000136 // f32 and f64 cases are Legal, f80 case is not
137 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
138 } else {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
140 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
141 }
142
Dale Johannesen958b08b2007-09-19 23:55:34 +0000143 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
144 // are Legal, f80 is custom lowered.
145 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
146 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147
148 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
149 // this operation.
150 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
151 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
152
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000153 if (X86ScalarSSEf32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000155 // f32 and f64 cases are Legal, f80 case is not
156 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 } else {
158 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
159 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
160 }
161
162 // Handle FP_TO_UINT by promoting the destination to a larger signed
163 // conversion.
164 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
165 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
166 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
167
168 if (Subtarget->is64Bit()) {
169 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
170 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
171 } else {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000172 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 // Expand FP_TO_UINT into a select.
174 // FIXME: We would like to use a Custom expander here eventually to do
175 // the optimal thing for SSE vs. the default expansion in the legalizer.
176 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
177 else
178 // With SSE3 we can use fisttpll to convert to a signed i64.
179 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
180 }
181
182 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000183 if (!X86ScalarSSEf64) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand);
185 setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand);
186 }
187
Dan Gohman8450d862008-02-18 19:34:53 +0000188 // Scalar integer divide and remainder are lowered to use operations that
189 // produce two results, to match the available instructions. This exposes
190 // the two-result form to trivial CSE, which is able to combine x/y and x%y
191 // into a single instruction.
192 //
193 // Scalar integer multiply-high is also lowered to use two-result
194 // operations, to match the available instructions. However, plain multiply
195 // (low) operations are left as Legal, as there are single-result
196 // instructions for this in x86. Using the two-result multiply instructions
197 // when both high and low results are needed must be arranged by dagcombine.
Dan Gohman5a199552007-10-08 18:33:35 +0000198 setOperationAction(ISD::MULHS , MVT::i8 , Expand);
199 setOperationAction(ISD::MULHU , MVT::i8 , Expand);
200 setOperationAction(ISD::SDIV , MVT::i8 , Expand);
201 setOperationAction(ISD::UDIV , MVT::i8 , Expand);
202 setOperationAction(ISD::SREM , MVT::i8 , Expand);
203 setOperationAction(ISD::UREM , MVT::i8 , Expand);
Dan Gohman5a199552007-10-08 18:33:35 +0000204 setOperationAction(ISD::MULHS , MVT::i16 , Expand);
205 setOperationAction(ISD::MULHU , MVT::i16 , Expand);
206 setOperationAction(ISD::SDIV , MVT::i16 , Expand);
207 setOperationAction(ISD::UDIV , MVT::i16 , Expand);
208 setOperationAction(ISD::SREM , MVT::i16 , Expand);
209 setOperationAction(ISD::UREM , MVT::i16 , Expand);
Dan Gohman5a199552007-10-08 18:33:35 +0000210 setOperationAction(ISD::MULHS , MVT::i32 , Expand);
211 setOperationAction(ISD::MULHU , MVT::i32 , Expand);
212 setOperationAction(ISD::SDIV , MVT::i32 , Expand);
213 setOperationAction(ISD::UDIV , MVT::i32 , Expand);
214 setOperationAction(ISD::SREM , MVT::i32 , Expand);
215 setOperationAction(ISD::UREM , MVT::i32 , Expand);
Dan Gohman5a199552007-10-08 18:33:35 +0000216 setOperationAction(ISD::MULHS , MVT::i64 , Expand);
217 setOperationAction(ISD::MULHU , MVT::i64 , Expand);
218 setOperationAction(ISD::SDIV , MVT::i64 , Expand);
219 setOperationAction(ISD::UDIV , MVT::i64 , Expand);
220 setOperationAction(ISD::SREM , MVT::i64 , Expand);
221 setOperationAction(ISD::UREM , MVT::i64 , Expand);
Dan Gohman242a5ba2007-09-25 18:23:27 +0000222
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000223 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
224 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
225 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
226 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227 if (Subtarget->is64Bit())
Christopher Lamb0a7c8662007-08-10 21:48:46 +0000228 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
229 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
230 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000231 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
232 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
Chris Lattnerb7a5cca2008-03-07 06:36:32 +0000233 setOperationAction(ISD::FREM , MVT::f32 , Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 setOperationAction(ISD::FREM , MVT::f64 , Expand);
Chris Lattnerb7a5cca2008-03-07 06:36:32 +0000235 setOperationAction(ISD::FREM , MVT::f80 , Expand);
Dan Gohman819574c2008-01-31 00:41:03 +0000236 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michel91099d62009-02-17 22:15:04 +0000237
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000239 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
240 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000241 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000242 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
243 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000245 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
246 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000247 if (Subtarget->is64Bit()) {
248 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000249 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
250 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251 }
252
253 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
254 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
255
256 // These should be promoted to a larger select which is supported.
257 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
258 setOperationAction(ISD::SELECT , MVT::i8 , Promote);
259 // X86 wants to expand cmov itself.
260 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
261 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
262 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
263 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000264 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000265 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
266 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
267 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
268 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
269 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000270 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000271 if (Subtarget->is64Bit()) {
272 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
273 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
274 }
275 // X86 ret instruction may pop stack.
276 setOperationAction(ISD::RET , MVT::Other, Custom);
Anton Korobeynikov566f9d92008-09-08 21:12:11 +0000277 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278
279 // Darwin ABI issue.
280 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
281 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
282 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
283 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +0000284 if (Subtarget->is64Bit())
285 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Bill Wendlingfef06052008-09-16 21:48:12 +0000286 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000287 if (Subtarget->is64Bit()) {
288 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
289 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
290 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
Bill Wendlingfef06052008-09-16 21:48:12 +0000291 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000292 }
293 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
294 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
295 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
296 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman092014e2008-03-03 22:22:09 +0000297 if (Subtarget->is64Bit()) {
298 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
299 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
300 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
301 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302
Evan Cheng8d51ab32008-03-10 19:38:10 +0000303 if (Subtarget->hasSSE1())
304 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Chengd1d68072008-03-08 00:58:38 +0000305
Andrew Lenharth0531ec52008-02-16 14:46:26 +0000306 if (!Subtarget->hasSSE2())
307 setOperationAction(ISD::MEMBARRIER , MVT::Other, Expand);
308
Mon P Wang078a62d2008-05-05 19:05:59 +0000309 // Expand certain atomics
Dan Gohmanbebba8d2008-12-23 21:37:04 +0000310 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
311 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
312 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
313 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendlingdb2280a2008-08-20 00:28:16 +0000314
Dan Gohmanbebba8d2008-12-23 21:37:04 +0000315 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
316 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
317 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
318 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharth0531ec52008-02-16 14:46:26 +0000319
Dale Johannesenf160d802008-10-02 18:53:47 +0000320 if (!Subtarget->is64Bit()) {
Dan Gohmanbebba8d2008-12-23 21:37:04 +0000321 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
322 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
323 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
324 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
325 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
326 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
327 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesenf160d802008-10-02 18:53:47 +0000328 }
329
Dan Gohman472d12c2008-06-30 20:59:49 +0000330 // Use the default ISD::DBG_STOPPOINT, ISD::DECLARE expansion.
331 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000332 // FIXME - use subtarget debug flags
333 if (!Subtarget->isTargetDarwin() &&
334 !Subtarget->isTargetELF() &&
Dan Gohmanfa607c92008-07-01 00:05:16 +0000335 !Subtarget->isTargetCygMing()) {
336 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
337 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
338 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339
340 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
341 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
342 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
343 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
344 if (Subtarget->is64Bit()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000345 setExceptionPointerRegister(X86::RAX);
346 setExceptionSelectorRegister(X86::RDX);
347 } else {
348 setExceptionPointerRegister(X86::EAX);
349 setExceptionSelectorRegister(X86::EDX);
350 }
Anton Korobeynikov23ca9c52007-09-03 00:36:06 +0000351 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
Anton Korobeynikov566f9d92008-09-08 21:12:11 +0000352 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
353
Duncan Sands7407a9f2007-09-11 14:10:23 +0000354 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsd8455ca2007-07-27 20:02:49 +0000355
Chris Lattner56b941f2008-01-15 21:58:22 +0000356 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +0000357
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000358 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
359 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000361 if (Subtarget->is64Bit()) {
362 setOperationAction(ISD::VAARG , MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000364 } else {
365 setOperationAction(ISD::VAARG , MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000367 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368
369 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
370 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
371 if (Subtarget->is64Bit())
372 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
373 if (Subtarget->isTargetCygMing())
374 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
375 else
376 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
377
Evan Cheng0b84fe12009-02-13 22:36:38 +0000378 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000379 // f32 and f64 use SSE.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000380 // Set up the FP register classes.
381 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
382 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
383
384 // Use ANDPD to simulate FABS.
385 setOperationAction(ISD::FABS , MVT::f64, Custom);
386 setOperationAction(ISD::FABS , MVT::f32, Custom);
387
388 // Use XORP to simulate FNEG.
389 setOperationAction(ISD::FNEG , MVT::f64, Custom);
390 setOperationAction(ISD::FNEG , MVT::f32, Custom);
391
392 // Use ANDPD and ORPD to simulate FCOPYSIGN.
393 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
394 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
395
396 // We don't support sin/cos/fmod
397 setOperationAction(ISD::FSIN , MVT::f64, Expand);
398 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399 setOperationAction(ISD::FSIN , MVT::f32, Expand);
400 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000401
402 // Expand FP immediates into loads from the stack, except for the special
403 // cases we handle.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000404 addLegalFPImmediate(APFloat(+0.0)); // xorpd
405 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Dale Johannesen8f83a6b2007-08-09 01:04:01 +0000406
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000407 // Floating truncations from f80 and extensions to f80 go through memory.
408 // If optimizing, we lie about this though and handle it in
409 // InstructionSelectPreprocess so that dagcombine2 can hack on these.
410 if (Fast) {
411 setConvertAction(MVT::f32, MVT::f80, Expand);
412 setConvertAction(MVT::f64, MVT::f80, Expand);
413 setConvertAction(MVT::f80, MVT::f32, Expand);
414 setConvertAction(MVT::f80, MVT::f64, Expand);
415 }
Evan Cheng0b84fe12009-02-13 22:36:38 +0000416 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000417 // Use SSE for f32, x87 for f64.
418 // Set up the FP register classes.
419 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
420 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
421
422 // Use ANDPS to simulate FABS.
423 setOperationAction(ISD::FABS , MVT::f32, Custom);
424
425 // Use XORP to simulate FNEG.
426 setOperationAction(ISD::FNEG , MVT::f32, Custom);
427
428 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
429
430 // Use ANDPS and ORPS to simulate FCOPYSIGN.
431 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
432 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
433
434 // We don't support sin/cos/fmod
435 setOperationAction(ISD::FSIN , MVT::f32, Expand);
436 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000437
Nate Begemane2ba64f2008-02-14 08:57:00 +0000438 // Special cases we handle for FP constants.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000439 addLegalFPImmediate(APFloat(+0.0f)); // xorps
440 addLegalFPImmediate(APFloat(+0.0)); // FLD0
441 addLegalFPImmediate(APFloat(+1.0)); // FLD1
442 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
443 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
444
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000445 // SSE <-> X87 conversions go through memory. If optimizing, we lie about
446 // this though and handle it in InstructionSelectPreprocess so that
447 // dagcombine2 can hack on these.
448 if (Fast) {
449 setConvertAction(MVT::f32, MVT::f64, Expand);
450 setConvertAction(MVT::f32, MVT::f80, Expand);
Scott Michel91099d62009-02-17 22:15:04 +0000451 setConvertAction(MVT::f80, MVT::f32, Expand);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000452 setConvertAction(MVT::f64, MVT::f32, Expand);
453 // And x87->x87 truncations also.
454 setConvertAction(MVT::f80, MVT::f64, Expand);
455 }
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000456
457 if (!UnsafeFPMath) {
458 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
459 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
460 }
Evan Cheng0b84fe12009-02-13 22:36:38 +0000461 } else if (!UseSoftFloat) {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000462 // f32 and f64 in x87.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000463 // Set up the FP register classes.
464 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
465 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
466
467 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
468 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
469 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
470 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen8f83a6b2007-08-09 01:04:01 +0000471
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000472 // Floating truncations go through memory. If optimizing, we lie about
473 // this though and handle it in InstructionSelectPreprocess so that
474 // dagcombine2 can hack on these.
475 if (Fast) {
Scott Michel91099d62009-02-17 22:15:04 +0000476 setConvertAction(MVT::f80, MVT::f32, Expand);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000477 setConvertAction(MVT::f64, MVT::f32, Expand);
478 setConvertAction(MVT::f80, MVT::f64, Expand);
479 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480
481 if (!UnsafeFPMath) {
482 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
483 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
484 }
Dale Johannesenbbe2b702007-08-30 00:23:21 +0000485 addLegalFPImmediate(APFloat(+0.0)); // FLD0
486 addLegalFPImmediate(APFloat(+1.0)); // FLD1
487 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
488 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000489 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
490 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
491 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
492 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 }
494
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000495 // Long double always uses X87.
Evan Cheng0b84fe12009-02-13 22:36:38 +0000496 if (!UseSoftFloat) {
497 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
498 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
499 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
500 {
501 bool ignored;
502 APFloat TmpFlt(+0.0);
503 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
504 &ignored);
505 addLegalFPImmediate(TmpFlt); // FLD0
506 TmpFlt.changeSign();
507 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
508 APFloat TmpFlt2(+1.0);
509 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
510 &ignored);
511 addLegalFPImmediate(TmpFlt2); // FLD1
512 TmpFlt2.changeSign();
513 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
514 }
Scott Michel91099d62009-02-17 22:15:04 +0000515
Evan Cheng0b84fe12009-02-13 22:36:38 +0000516 if (!UnsafeFPMath) {
517 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
518 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
519 }
Dale Johannesen7f1076b2007-09-26 21:10:55 +0000520 }
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000521
Dan Gohman2f7b1982007-10-11 23:21:31 +0000522 // Always use a library call for pow.
523 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
524 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
525 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
526
Dale Johannesen92b33082008-09-04 00:47:13 +0000527 setOperationAction(ISD::FLOG, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000528 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000529 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000530 setOperationAction(ISD::FEXP, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000531 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
532
Mon P Wanga5a239f2008-11-06 05:31:54 +0000533 // First set operation action for all vector types to either promote
Mon P Wang1448aad2008-10-30 08:01:45 +0000534 // (for widening) or expand (for scalarization). Then we will selectively
535 // turn on ones that can be effectively codegen'd.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000536 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
537 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
Duncan Sands92c43912008-06-06 12:08:01 +0000538 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
539 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
540 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
541 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
542 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
543 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
544 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
545 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
546 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
547 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
548 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
549 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
550 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
Gabor Greif825aa892008-08-28 23:19:51 +0000551 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
552 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
553 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
Duncan Sands92c43912008-06-06 12:08:01 +0000554 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
555 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
556 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
557 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
558 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
559 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
560 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
561 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
562 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
563 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
564 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
565 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
566 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
567 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
568 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
574 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
Dale Johannesen177edff2008-09-10 17:31:40 +0000576 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
577 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
579 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
580 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 }
582
Evan Cheng0b84fe12009-02-13 22:36:38 +0000583 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
584 // with -msoft-float, disable use of MMX as well.
585 if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 addRegisterClass(MVT::v8i8, X86::VR64RegisterClass);
587 addRegisterClass(MVT::v4i16, X86::VR64RegisterClass);
588 addRegisterClass(MVT::v2i32, X86::VR64RegisterClass);
Dale Johannesena585daf2008-06-24 22:01:44 +0000589 addRegisterClass(MVT::v2f32, X86::VR64RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000590 addRegisterClass(MVT::v1i64, X86::VR64RegisterClass);
591
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
657 setTruncStoreAction(MVT::v8i16, MVT::v8i8, Expand);
658 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
Evan Cheng0b84fe12009-02-13 22:36:38 +0000665 if (!UseSoftFloat && 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
Evan Cheng0b84fe12009-02-13 22:36:38 +0000682 if (!UseSoftFloat && Subtarget->hasSSE2()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Cheng0b84fe12009-02-13 22:36:38 +0000684
685 // FIXME: Unfortunately -soft-float means XMM registers cannot be used even
686 // 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 }
730 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
731 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
732 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
733 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000734 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000735 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000736 if (Subtarget->is64Bit()) {
737 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
Dale Johannesen2ff963d2007-10-31 00:32:36 +0000738 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000739 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000740
741 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
742 for (unsigned VT = (unsigned)MVT::v16i8; VT != (unsigned)MVT::v2i64; VT++) {
Duncan Sands92c43912008-06-06 12:08:01 +0000743 setOperationAction(ISD::AND, (MVT::SimpleValueType)VT, Promote);
744 AddPromotedToType (ISD::AND, (MVT::SimpleValueType)VT, MVT::v2i64);
745 setOperationAction(ISD::OR, (MVT::SimpleValueType)VT, Promote);
746 AddPromotedToType (ISD::OR, (MVT::SimpleValueType)VT, MVT::v2i64);
747 setOperationAction(ISD::XOR, (MVT::SimpleValueType)VT, Promote);
748 AddPromotedToType (ISD::XOR, (MVT::SimpleValueType)VT, MVT::v2i64);
749 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Promote);
750 AddPromotedToType (ISD::LOAD, (MVT::SimpleValueType)VT, MVT::v2i64);
751 setOperationAction(ISD::SELECT, (MVT::SimpleValueType)VT, Promote);
752 AddPromotedToType (ISD::SELECT, (MVT::SimpleValueType)VT, MVT::v2i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000753 }
754
Chris Lattner3bc08502008-01-17 19:59:44 +0000755 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000756
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000757 // Custom lower v2i64 and v2f64 selects.
758 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
759 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
760 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
761 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michel91099d62009-02-17 22:15:04 +0000762
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000763 }
Evan Cheng0b84fe12009-02-13 22:36:38 +0000764
Nate Begemand77e59e2008-02-11 04:19:36 +0000765 if (Subtarget->hasSSE41()) {
766 // FIXME: Do we need to handle scalar-to-vector here?
767 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
768
769 // i8 and i16 vectors are custom , because the source register and source
770 // source memory operand types are not the same width. f32 vectors are
771 // custom since the immediate controlling the insert encodes additional
772 // information.
773 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
774 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangac2a3c52009-01-15 21:10:20 +0000775 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Nate Begemand77e59e2008-02-11 04:19:36 +0000776 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
777
778 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
779 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangac2a3c52009-01-15 21:10:20 +0000780 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
Evan Cheng6c249332008-03-24 21:52:23 +0000781 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begemand77e59e2008-02-11 04:19:36 +0000782
783 if (Subtarget->is64Bit()) {
Nate Begeman4294c1f2008-02-12 22:51:28 +0000784 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
785 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begemand77e59e2008-02-11 04:19:36 +0000786 }
787 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000788
Nate Begeman03605a02008-07-17 16:51:19 +0000789 if (Subtarget->hasSSE42()) {
790 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
791 }
Scott Michel91099d62009-02-17 22:15:04 +0000792
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000793 // We want to custom lower some of our intrinsics.
794 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
795
Bill Wendling7e04be62008-12-09 22:08:41 +0000796 // Add/Sub/Mul with overflow operations are custom lowered.
Bill Wendling4c134df2008-11-24 19:21:46 +0000797 setOperationAction(ISD::SADDO, MVT::i32, Custom);
798 setOperationAction(ISD::SADDO, MVT::i64, Custom);
799 setOperationAction(ISD::UADDO, MVT::i32, Custom);
800 setOperationAction(ISD::UADDO, MVT::i64, Custom);
Bill Wendling7e04be62008-12-09 22:08:41 +0000801 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
802 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
803 setOperationAction(ISD::USUBO, MVT::i32, Custom);
804 setOperationAction(ISD::USUBO, MVT::i64, Custom);
805 setOperationAction(ISD::SMULO, MVT::i32, Custom);
806 setOperationAction(ISD::SMULO, MVT::i64, Custom);
807 setOperationAction(ISD::UMULO, MVT::i32, Custom);
808 setOperationAction(ISD::UMULO, MVT::i64, Custom);
Bill Wendling4c134df2008-11-24 19:21:46 +0000809
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000810 // We have target-specific dag combine patterns for the following nodes:
811 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Evan Chenge9b9c672008-05-09 21:53:03 +0000812 setTargetDAGCombine(ISD::BUILD_VECTOR);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000813 setTargetDAGCombine(ISD::SELECT);
sampo025b75c2009-01-26 00:52:55 +0000814 setTargetDAGCombine(ISD::SHL);
815 setTargetDAGCombine(ISD::SRA);
816 setTargetDAGCombine(ISD::SRL);
Chris Lattnerce84ae42008-02-22 02:09:43 +0000817 setTargetDAGCombine(ISD::STORE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818
819 computeRegisterProperties();
820
821 // FIXME: These should be based on subtarget info. Plus, the values should
822 // be smaller when we are in optimizing for size mode.
Dan Gohman97fab242008-06-30 21:00:56 +0000823 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
824 maxStoresPerMemcpy = 16; // For @llvm.memcpy -> sequence of stores
825 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000826 allowUnalignedMemoryAccesses = true; // x86 supports it!
Evan Cheng45c1edb2008-02-28 00:43:03 +0000827 setPrefLoopAlignment(16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000828}
829
Scott Michel502151f2008-03-10 15:42:14 +0000830
Duncan Sands4a361272009-01-01 15:52:00 +0000831MVT X86TargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel502151f2008-03-10 15:42:14 +0000832 return MVT::i8;
833}
834
835
Evan Cheng5a67b812008-01-23 23:17:41 +0000836/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
837/// the desired ByVal argument alignment.
838static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
839 if (MaxAlign == 16)
840 return;
841 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
842 if (VTy->getBitWidth() == 128)
843 MaxAlign = 16;
Evan Cheng5a67b812008-01-23 23:17:41 +0000844 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
845 unsigned EltAlign = 0;
846 getMaxByValAlign(ATy->getElementType(), EltAlign);
847 if (EltAlign > MaxAlign)
848 MaxAlign = EltAlign;
849 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
850 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
851 unsigned EltAlign = 0;
852 getMaxByValAlign(STy->getElementType(i), EltAlign);
853 if (EltAlign > MaxAlign)
854 MaxAlign = EltAlign;
855 if (MaxAlign == 16)
856 break;
857 }
858 }
859 return;
860}
861
862/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
863/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesena58b8622008-02-08 19:48:20 +0000864/// that contain SSE vectors are placed at 16-byte boundaries while the rest
865/// are at 4-byte boundaries.
Evan Cheng5a67b812008-01-23 23:17:41 +0000866unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng9a6e0fa2008-08-21 21:00:15 +0000867 if (Subtarget->is64Bit()) {
868 // Max of 8 and alignment of type.
Anton Korobeynikovd0fef972008-09-09 18:22:57 +0000869 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng9a6e0fa2008-08-21 21:00:15 +0000870 if (TyAlign > 8)
871 return TyAlign;
872 return 8;
873 }
874
Evan Cheng5a67b812008-01-23 23:17:41 +0000875 unsigned Align = 4;
Dale Johannesena58b8622008-02-08 19:48:20 +0000876 if (Subtarget->hasSSE1())
877 getMaxByValAlign(Ty, Align);
Evan Cheng5a67b812008-01-23 23:17:41 +0000878 return Align;
879}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880
Evan Cheng8c590372008-05-15 08:39:06 +0000881/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng2f1033e2008-05-15 22:13:02 +0000882/// and store operations as a result of memset, memcpy, and memmove
883/// lowering. It returns MVT::iAny if SelectionDAG should be responsible for
Evan Cheng8c590372008-05-15 08:39:06 +0000884/// determining it.
Duncan Sands92c43912008-06-06 12:08:01 +0000885MVT
Evan Cheng8c590372008-05-15 08:39:06 +0000886X86TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned Align,
887 bool isSrcConst, bool isSrcStr) const {
Chris Lattnerf0bf1062008-10-28 05:49:35 +0000888 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
889 // linux. This is because the stack realignment code can't handle certain
890 // cases like PR2962. This should be removed when PR2962 is fixed.
891 if (Subtarget->getStackAlignment() >= 16) {
892 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE2() && Size >= 16)
893 return MVT::v4i32;
894 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE1() && Size >= 16)
895 return MVT::v4f32;
896 }
Evan Cheng8c590372008-05-15 08:39:06 +0000897 if (Subtarget->is64Bit() && Size >= 8)
898 return MVT::i64;
899 return MVT::i32;
900}
901
902
Evan Cheng6fb06762007-11-09 01:32:10 +0000903/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
904/// jumptable.
Dan Gohman8181bd12008-07-27 21:46:04 +0000905SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Evan Cheng6fb06762007-11-09 01:32:10 +0000906 SelectionDAG &DAG) const {
907 if (usesGlobalOffsetTable())
Dale Johannesen24dd9a52009-02-07 00:55:49 +0000908 return DAG.getGLOBAL_OFFSET_TABLE(getPointerTy());
Evan Cheng6fb06762007-11-09 01:32:10 +0000909 if (!Subtarget->isPICStyleRIPRel())
Dale Johannesen24dd9a52009-02-07 00:55:49 +0000910 // This doesn't have DebugLoc associated with it, but is not really the
911 // same as a Register.
912 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc::getUnknownLoc(),
913 getPointerTy());
Evan Cheng6fb06762007-11-09 01:32:10 +0000914 return Table;
915}
916
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000917//===----------------------------------------------------------------------===//
918// Return Value Calling Convention Implementation
919//===----------------------------------------------------------------------===//
920
921#include "X86GenCallingConv.inc"
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000922
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000923/// LowerRET - Lower an ISD::RET node.
Dan Gohman8181bd12008-07-27 21:46:04 +0000924SDValue X86TargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +0000925 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000926 assert((Op.getNumOperands() & 1) == 1 && "ISD::RET should have odd # args");
Scott Michel91099d62009-02-17 22:15:04 +0000927
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000928 SmallVector<CCValAssign, 16> RVLocs;
929 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
930 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
931 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Gabor Greif1c80d112008-08-28 21:40:38 +0000932 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_X86);
Scott Michel91099d62009-02-17 22:15:04 +0000933
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000934 // If this is the first return lowered for this function, add the regs to the
935 // liveout set for the function.
Chris Lattner1b989192007-12-31 04:13:23 +0000936 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000937 for (unsigned i = 0; i != RVLocs.size(); ++i)
938 if (RVLocs[i].isRegLoc())
Chris Lattner1b989192007-12-31 04:13:23 +0000939 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000940 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000941 SDValue Chain = Op.getOperand(0);
Scott Michel91099d62009-02-17 22:15:04 +0000942
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000943 // Handle tail call return.
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000944 Chain = GetPossiblePreceedingTailCall(Chain, X86ISD::TAILCALL);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000945 if (Chain.getOpcode() == X86ISD::TAILCALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000946 SDValue TailCall = Chain;
947 SDValue TargetAddress = TailCall.getOperand(1);
948 SDValue StackAdjustment = TailCall.getOperand(2);
Chris Lattnerf8decf52008-01-16 05:52:18 +0000949 assert(((TargetAddress.getOpcode() == ISD::Register &&
Arnold Schwaighofer4da27f62008-09-22 14:50:07 +0000950 (cast<RegisterSDNode>(TargetAddress)->getReg() == X86::EAX ||
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000951 cast<RegisterSDNode>(TargetAddress)->getReg() == X86::R9)) ||
Bill Wendlingfef06052008-09-16 21:48:12 +0000952 TargetAddress.getOpcode() == ISD::TargetExternalSymbol ||
Scott Michel91099d62009-02-17 22:15:04 +0000953 TargetAddress.getOpcode() == ISD::TargetGlobalAddress) &&
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000954 "Expecting an global address, external symbol, or register");
Chris Lattnerf8decf52008-01-16 05:52:18 +0000955 assert(StackAdjustment.getOpcode() == ISD::Constant &&
956 "Expecting a const value");
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000957
Dan Gohman8181bd12008-07-27 21:46:04 +0000958 SmallVector<SDValue,8> Operands;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000959 Operands.push_back(Chain.getOperand(0));
960 Operands.push_back(TargetAddress);
961 Operands.push_back(StackAdjustment);
962 // Copy registers used by the call. Last operand is a flag so it is not
963 // copied.
Arnold Schwaighofer10202b32007-10-16 09:05:00 +0000964 for (unsigned i=3; i < TailCall.getNumOperands()-1; i++) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000965 Operands.push_back(Chain.getOperand(i));
966 }
Scott Michel91099d62009-02-17 22:15:04 +0000967 return DAG.getNode(X86ISD::TC_RETURN, dl, MVT::Other, &Operands[0],
Arnold Schwaighofer10202b32007-10-16 09:05:00 +0000968 Operands.size());
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000969 }
Scott Michel91099d62009-02-17 22:15:04 +0000970
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000971 // Regular return.
Dan Gohman8181bd12008-07-27 21:46:04 +0000972 SDValue Flag;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000973
Dan Gohman8181bd12008-07-27 21:46:04 +0000974 SmallVector<SDValue, 6> RetOps;
Chris Lattnerb56cc342008-03-11 03:23:40 +0000975 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
976 // Operand #1 = Bytes To Pop
977 RetOps.push_back(DAG.getConstant(getBytesToPopOnReturn(), MVT::i16));
Scott Michel91099d62009-02-17 22:15:04 +0000978
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000979 // Copy the result values into the output registers.
Chris Lattnere22e1fb2008-03-10 21:08:41 +0000980 for (unsigned i = 0; i != RVLocs.size(); ++i) {
981 CCValAssign &VA = RVLocs[i];
982 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohman8181bd12008-07-27 21:46:04 +0000983 SDValue ValToCopy = Op.getOperand(i*2+1);
Scott Michel91099d62009-02-17 22:15:04 +0000984
Chris Lattnerb56cc342008-03-11 03:23:40 +0000985 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
986 // the RET instruction and handled by the FP Stackifier.
Dan Gohman6c4be722009-02-04 17:28:58 +0000987 if (VA.getLocReg() == X86::ST0 ||
988 VA.getLocReg() == X86::ST1) {
Chris Lattnerb56cc342008-03-11 03:23:40 +0000989 // If this is a copy from an xmm register to ST(0), use an FPExtend to
990 // change the value to the FP stack register class.
Dan Gohman6c4be722009-02-04 17:28:58 +0000991 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Dale Johannesence0805b2009-02-03 19:33:06 +0000992 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattnerb56cc342008-03-11 03:23:40 +0000993 RetOps.push_back(ValToCopy);
994 // Don't emit a copytoreg.
995 continue;
996 }
Dale Johannesena585daf2008-06-24 22:01:44 +0000997
Evan Chengef356282009-02-23 09:03:22 +0000998 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
999 // which is returned in RAX / RDX.
Evan Chenge8db6e02009-02-22 08:05:12 +00001000 if (Subtarget->is64Bit()) {
1001 MVT ValVT = ValToCopy.getValueType();
Evan Chengef356282009-02-23 09:03:22 +00001002 if (ValVT.isVector() && ValVT.getSizeInBits() == 64) {
Evan Chenge8db6e02009-02-22 08:05:12 +00001003 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy);
Evan Chengef356282009-02-23 09:03:22 +00001004 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1)
1005 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, ValToCopy);
1006 }
Evan Chenge8db6e02009-02-22 08:05:12 +00001007 }
1008
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001009 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001010 Flag = Chain.getValue(1);
1011 }
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001012
1013 // The x86-64 ABI for returning structs by value requires that we copy
1014 // the sret argument into %rax for the return. We saved the argument into
1015 // a virtual register in the entry block, so now we copy the value out
1016 // and into %rax.
1017 if (Subtarget->is64Bit() &&
1018 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1019 MachineFunction &MF = DAG.getMachineFunction();
1020 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1021 unsigned Reg = FuncInfo->getSRetReturnReg();
1022 if (!Reg) {
1023 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1024 FuncInfo->setSRetReturnReg(Reg);
1025 }
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001026 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001027
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001028 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001029 Flag = Chain.getValue(1);
1030 }
Scott Michel91099d62009-02-17 22:15:04 +00001031
Chris Lattnerb56cc342008-03-11 03:23:40 +00001032 RetOps[0] = Chain; // Update chain.
1033
1034 // Add the flag if we have it.
Gabor Greif1c80d112008-08-28 21:40:38 +00001035 if (Flag.getNode())
Chris Lattnerb56cc342008-03-11 03:23:40 +00001036 RetOps.push_back(Flag);
Scott Michel91099d62009-02-17 22:15:04 +00001037
1038 return DAG.getNode(X86ISD::RET_FLAG, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00001039 MVT::Other, &RetOps[0], RetOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001040}
1041
1042
1043/// LowerCallResult - Lower the result values of an ISD::CALL into the
1044/// appropriate copies out of appropriate physical registers. This assumes that
1045/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
1046/// being lowered. The returns a SDNode with the same number of values as the
1047/// ISD::CALL.
1048SDNode *X86TargetLowering::
Scott Michel91099d62009-02-17 22:15:04 +00001049LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001050 unsigned CallingConv, SelectionDAG &DAG) {
Dale Johannesence0805b2009-02-03 19:33:06 +00001051
Scott Michel91099d62009-02-17 22:15:04 +00001052 DebugLoc dl = TheCall->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001053 // Assign locations to each value returned by this call.
1054 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman705e3f72008-09-13 01:54:27 +00001055 bool isVarArg = TheCall->isVarArg();
Edwin Törökaf8e1332009-02-01 18:15:56 +00001056 bool Is64Bit = Subtarget->is64Bit();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001057 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
1058 CCInfo.AnalyzeCallResult(TheCall, RetCC_X86);
1059
Dan Gohman8181bd12008-07-27 21:46:04 +00001060 SmallVector<SDValue, 8> ResultVals;
Scott Michel91099d62009-02-17 22:15:04 +00001061
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001062 // Copy all of the result registers out of their specified physreg.
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001063 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman6c4be722009-02-04 17:28:58 +00001064 CCValAssign &VA = RVLocs[i];
1065 MVT CopyVT = VA.getValVT();
Scott Michel91099d62009-02-17 22:15:04 +00001066
Edwin Törökaf8e1332009-02-01 18:15:56 +00001067 // If this is x86-64, and we disabled SSE, we can't return FP values
Scott Michel91099d62009-02-17 22:15:04 +00001068 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Edwin Törökaf8e1332009-02-01 18:15:56 +00001069 ((Is64Bit || TheCall->isInreg()) && !Subtarget->hasSSE1())) {
1070 cerr << "SSE register return with SSE disabled\n";
1071 exit(1);
1072 }
1073
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001074 // If this is a call to a function that returns an fp value on the floating
1075 // point stack, but where we prefer to use the value in xmm registers, copy
1076 // 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 +00001077 if ((VA.getLocReg() == X86::ST0 ||
1078 VA.getLocReg() == X86::ST1) &&
1079 isScalarFPTypeInSSEReg(VA.getValVT())) {
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001080 CopyVT = MVT::f80;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001081 }
Scott Michel91099d62009-02-17 22:15:04 +00001082
Evan Cheng9cc600e2009-02-20 20:43:02 +00001083 SDValue Val;
1084 if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Chengef356282009-02-23 09:03:22 +00001085 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1086 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1087 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1088 MVT::v2i64, InFlag).getValue(1);
1089 Val = Chain.getValue(0);
1090 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1091 Val, DAG.getConstant(0, MVT::i64));
1092 } else {
1093 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1094 MVT::i64, InFlag).getValue(1);
1095 Val = Chain.getValue(0);
1096 }
Evan Cheng9cc600e2009-02-20 20:43:02 +00001097 Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val);
1098 } else {
1099 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1100 CopyVT, InFlag).getValue(1);
1101 Val = Chain.getValue(0);
1102 }
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001103 InFlag = Chain.getValue(2);
Chris Lattner40758732007-12-29 06:41:28 +00001104
Dan Gohman6c4be722009-02-04 17:28:58 +00001105 if (CopyVT != VA.getValVT()) {
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001106 // Round the F80 the right size, which also moves to the appropriate xmm
1107 // register.
Dan Gohman6c4be722009-02-04 17:28:58 +00001108 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001109 // This truncation won't change the value.
1110 DAG.getIntPtrConstant(1));
1111 }
Scott Michel91099d62009-02-17 22:15:04 +00001112
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001113 ResultVals.push_back(Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001114 }
Duncan Sands698842f2008-07-02 17:40:58 +00001115
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001116 // Merge everything together with a MERGE_VALUES node.
1117 ResultVals.push_back(Chain);
Dale Johannesence0805b2009-02-03 19:33:06 +00001118 return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(),
1119 &ResultVals[0], ResultVals.size()).getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001120}
1121
1122
1123//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001124// C & StdCall & Fast Calling Convention implementation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001125//===----------------------------------------------------------------------===//
1126// StdCall calling convention seems to be standard for many Windows' API
1127// routines and around. It differs from C calling convention just a little:
1128// callee should clean up the stack, not caller. Symbols should be also
1129// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001130// For info on fast calling convention see Fast Calling Convention (tail call)
1131// implementation LowerX86_32FastCCCallTo.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001132
1133/// AddLiveIn - This helper function adds the specified physical register to the
1134/// MachineFunction as a live in value. It also creates a corresponding virtual
1135/// register for it.
1136static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
1137 const TargetRegisterClass *RC) {
1138 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner1b989192007-12-31 04:13:23 +00001139 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
1140 MF.getRegInfo().addLiveIn(PReg, VReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001141 return VReg;
1142}
1143
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001144/// CallIsStructReturn - Determines whether a CALL node uses struct return
1145/// semantics.
Dan Gohman705e3f72008-09-13 01:54:27 +00001146static bool CallIsStructReturn(CallSDNode *TheCall) {
1147 unsigned NumOps = TheCall->getNumArgs();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001148 if (!NumOps)
1149 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001150
Dan Gohman705e3f72008-09-13 01:54:27 +00001151 return TheCall->getArgFlags(0).isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001152}
1153
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001154/// ArgsAreStructReturn - Determines whether a FORMAL_ARGUMENTS node uses struct
1155/// return semantics.
Dan Gohman8181bd12008-07-27 21:46:04 +00001156static bool ArgsAreStructReturn(SDValue Op) {
Gabor Greif1c80d112008-08-28 21:40:38 +00001157 unsigned NumArgs = Op.getNode()->getNumValues() - 1;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001158 if (!NumArgs)
1159 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001160
1161 return cast<ARG_FLAGSSDNode>(Op.getOperand(3))->getArgFlags().isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001162}
1163
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001164/// IsCalleePop - Determines whether a CALL or FORMAL_ARGUMENTS node requires
1165/// the callee to pop its own arguments. Callee pop is necessary to support tail
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001166/// calls.
Dan Gohman705e3f72008-09-13 01:54:27 +00001167bool X86TargetLowering::IsCalleePop(bool IsVarArg, unsigned CallingConv) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001168 if (IsVarArg)
1169 return false;
1170
Dan Gohman705e3f72008-09-13 01:54:27 +00001171 switch (CallingConv) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001172 default:
1173 return false;
1174 case CallingConv::X86_StdCall:
1175 return !Subtarget->is64Bit();
1176 case CallingConv::X86_FastCall:
1177 return !Subtarget->is64Bit();
1178 case CallingConv::Fast:
1179 return PerformTailCallOpt;
1180 }
1181}
1182
Dan Gohman705e3f72008-09-13 01:54:27 +00001183/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1184/// given CallingConvention value.
1185CCAssignFn *X86TargetLowering::CCAssignFnForNode(unsigned CC) const {
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001186 if (Subtarget->is64Bit()) {
Anton Korobeynikov06d49b02008-03-22 20:57:27 +00001187 if (Subtarget->isTargetWin64())
Anton Korobeynikov99bd1882008-03-22 20:37:30 +00001188 return CC_X86_Win64_C;
Evan Chengded8f902008-09-07 09:07:23 +00001189 else if (CC == CallingConv::Fast && PerformTailCallOpt)
1190 return CC_X86_64_TailCall;
1191 else
1192 return CC_X86_64_C;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001193 }
1194
Gordon Henriksen18ace102008-01-05 16:56:59 +00001195 if (CC == CallingConv::X86_FastCall)
1196 return CC_X86_32_FastCall;
Evan Chenga9d15b92008-09-10 18:25:29 +00001197 else if (CC == CallingConv::Fast)
1198 return CC_X86_32_FastCC;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001199 else
1200 return CC_X86_32_C;
1201}
1202
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001203/// NameDecorationForFORMAL_ARGUMENTS - Selects the appropriate decoration to
1204/// apply to a MachineFunction containing a given FORMAL_ARGUMENTS node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001205NameDecorationStyle
Dan Gohman8181bd12008-07-27 21:46:04 +00001206X86TargetLowering::NameDecorationForFORMAL_ARGUMENTS(SDValue Op) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001207 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001208 if (CC == CallingConv::X86_FastCall)
1209 return FastCall;
1210 else if (CC == CallingConv::X86_StdCall)
1211 return StdCall;
1212 return None;
1213}
1214
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001215
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001216/// CallRequiresGOTInRegister - Check whether the call requires the GOT pointer
1217/// in a register before calling.
1218bool X86TargetLowering::CallRequiresGOTPtrInReg(bool Is64Bit, bool IsTailCall) {
1219 return !IsTailCall && !Is64Bit &&
1220 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1221 Subtarget->isPICStyleGOT();
1222}
1223
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001224/// CallRequiresFnAddressInReg - Check whether the call requires the function
1225/// address to be loaded in a register.
Scott Michel91099d62009-02-17 22:15:04 +00001226bool
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001227X86TargetLowering::CallRequiresFnAddressInReg(bool Is64Bit, bool IsTailCall) {
Scott Michel91099d62009-02-17 22:15:04 +00001228 return !Is64Bit && IsTailCall &&
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001229 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1230 Subtarget->isPICStyleGOT();
1231}
1232
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001233/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1234/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001235/// the specific parameter attribute. The copy will be passed as a byval
1236/// function parameter.
Scott Michel91099d62009-02-17 22:15:04 +00001237static SDValue
Dan Gohman8181bd12008-07-27 21:46:04 +00001238CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001239 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1240 DebugLoc dl) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001241 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001242 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001243 /*AlwaysInline=*/true, NULL, 0, NULL, 0);
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001244}
1245
Dan Gohman8181bd12008-07-27 21:46:04 +00001246SDValue X86TargetLowering::LowerMemArgument(SDValue Op, SelectionDAG &DAG,
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001247 const CCValAssign &VA,
1248 MachineFrameInfo *MFI,
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001249 unsigned CC,
Dan Gohman8181bd12008-07-27 21:46:04 +00001250 SDValue Root, unsigned i) {
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001251 // Create the nodes corresponding to a load from this parameter slot.
Duncan Sandsc93fae32008-03-21 09:14:45 +00001252 ISD::ArgFlagsTy Flags =
1253 cast<ARG_FLAGSSDNode>(Op.getOperand(3 + i))->getArgFlags();
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001254 bool AlwaysUseMutable = (CC==CallingConv::Fast) && PerformTailCallOpt;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001255 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Evan Cheng3e42a522008-01-10 02:24:25 +00001256
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001257 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michel91099d62009-02-17 22:15:04 +00001258 // changed with more analysis.
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001259 // In case of tail call optimization mark all arguments mutable. Since they
1260 // could be overwritten by lowering of arguments in case of a tail call.
Duncan Sands92c43912008-06-06 12:08:01 +00001261 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001262 VA.getLocMemOffset(), isImmutable);
Dan Gohman8181bd12008-07-27 21:46:04 +00001263 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Duncan Sandsc93fae32008-03-21 09:14:45 +00001264 if (Flags.isByVal())
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001265 return FIN;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00001266 return DAG.getLoad(VA.getValVT(), Op.getDebugLoc(), Root, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001267 PseudoSourceValue::getFixedStack(FI), 0);
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001268}
1269
Dan Gohman8181bd12008-07-27 21:46:04 +00001270SDValue
1271X86TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001272 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001273 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00001274 DebugLoc dl = Op.getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00001275
Gordon Henriksen18ace102008-01-05 16:56:59 +00001276 const Function* Fn = MF.getFunction();
1277 if (Fn->hasExternalLinkage() &&
1278 Subtarget->isTargetCygMing() &&
1279 Fn->getName() == "main")
1280 FuncInfo->setForceFramePointer(true);
1281
1282 // Decorate the function name.
1283 FuncInfo->setDecorationStyle(NameDecorationForFORMAL_ARGUMENTS(Op));
Scott Michel91099d62009-02-17 22:15:04 +00001284
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001285 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman8181bd12008-07-27 21:46:04 +00001286 SDValue Root = Op.getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001287 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001288 unsigned CC = MF.getFunction()->getCallingConv();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001289 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001290 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001291
1292 assert(!(isVarArg && CC == CallingConv::Fast) &&
1293 "Var args not supported with calling convention fastcc");
1294
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001295 // Assign locations to all of the incoming arguments.
1296 SmallVector<CCValAssign, 16> ArgLocs;
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001297 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman705e3f72008-09-13 01:54:27 +00001298 CCInfo.AnalyzeFormalArguments(Op.getNode(), CCAssignFnForNode(CC));
Scott Michel91099d62009-02-17 22:15:04 +00001299
Dan Gohman8181bd12008-07-27 21:46:04 +00001300 SmallVector<SDValue, 8> ArgValues;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001301 unsigned LastVal = ~0U;
1302 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1303 CCValAssign &VA = ArgLocs[i];
1304 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1305 // places.
1306 assert(VA.getValNo() != LastVal &&
1307 "Don't support value assigned to multiple locs yet");
1308 LastVal = VA.getValNo();
Scott Michel91099d62009-02-17 22:15:04 +00001309
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001310 if (VA.isRegLoc()) {
Duncan Sands92c43912008-06-06 12:08:01 +00001311 MVT RegVT = VA.getLocVT();
Devang Patelf3707e82009-01-05 17:31:22 +00001312 TargetRegisterClass *RC = NULL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001313 if (RegVT == MVT::i32)
1314 RC = X86::GR32RegisterClass;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001315 else if (Is64Bit && RegVT == MVT::i64)
1316 RC = X86::GR64RegisterClass;
Dale Johannesen51552f62008-02-05 20:46:33 +00001317 else if (RegVT == MVT::f32)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001318 RC = X86::FR32RegisterClass;
Dale Johannesen51552f62008-02-05 20:46:33 +00001319 else if (RegVT == MVT::f64)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001320 RC = X86::FR64RegisterClass;
Duncan Sands92c43912008-06-06 12:08:01 +00001321 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengf5af6fe2008-04-25 07:56:45 +00001322 RC = X86::VR128RegisterClass;
Duncan Sands92c43912008-06-06 12:08:01 +00001323 else if (RegVT.isVector()) {
1324 assert(RegVT.getSizeInBits() == 64);
Evan Chengf5af6fe2008-04-25 07:56:45 +00001325 if (!Is64Bit)
1326 RC = X86::VR64RegisterClass; // MMX values are passed in MMXs.
1327 else {
1328 // Darwin calling convention passes MMX values in either GPRs or
1329 // XMMs in x86-64. Other targets pass them in memory.
1330 if (RegVT != MVT::v1i64 && Subtarget->hasSSE2()) {
1331 RC = X86::VR128RegisterClass; // MMX values are passed in XMMs.
1332 RegVT = MVT::v2i64;
1333 } else {
1334 RC = X86::GR64RegisterClass; // v1i64 values are passed in GPRs.
1335 RegVT = MVT::i64;
1336 }
1337 }
1338 } else {
1339 assert(0 && "Unknown argument type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001340 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001341
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001342 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001343 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, RegVT);
Scott Michel91099d62009-02-17 22:15:04 +00001344
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001345 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1346 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1347 // right size.
1348 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesence0805b2009-02-03 19:33:06 +00001349 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001350 DAG.getValueType(VA.getValVT()));
1351 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesence0805b2009-02-03 19:33:06 +00001352 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001353 DAG.getValueType(VA.getValVT()));
Scott Michel91099d62009-02-17 22:15:04 +00001354
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001355 if (VA.getLocInfo() != CCValAssign::Full)
Dale Johannesence0805b2009-02-03 19:33:06 +00001356 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Scott Michel91099d62009-02-17 22:15:04 +00001357
Gordon Henriksen18ace102008-01-05 16:56:59 +00001358 // Handle MMX values passed in GPRs.
Evan Chengad6980b2008-04-25 20:13:28 +00001359 if (Is64Bit && RegVT != VA.getLocVT()) {
Duncan Sands92c43912008-06-06 12:08:01 +00001360 if (RegVT.getSizeInBits() == 64 && RC == X86::GR64RegisterClass)
Dale Johannesence0805b2009-02-03 19:33:06 +00001361 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Chengad6980b2008-04-25 20:13:28 +00001362 else if (RC == X86::VR128RegisterClass) {
Dale Johannesence0805b2009-02-03 19:33:06 +00001363 ArgValue = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1364 ArgValue, DAG.getConstant(0, MVT::i64));
1365 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Chengad6980b2008-04-25 20:13:28 +00001366 }
1367 }
Scott Michel91099d62009-02-17 22:15:04 +00001368
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001369 ArgValues.push_back(ArgValue);
1370 } else {
1371 assert(VA.isMemLoc());
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001372 ArgValues.push_back(LowerMemArgument(Op, DAG, VA, MFI, CC, Root, i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001373 }
1374 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001375
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001376 // The x86-64 ABI for returning structs by value requires that we copy
1377 // the sret argument into %rax for the return. Save the argument into
1378 // a virtual register so that we can access it from the return points.
1379 if (Is64Bit && DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1380 MachineFunction &MF = DAG.getMachineFunction();
1381 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1382 unsigned Reg = FuncInfo->getSRetReturnReg();
1383 if (!Reg) {
1384 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1385 FuncInfo->setSRetReturnReg(Reg);
1386 }
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001387 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, ArgValues[0]);
Dale Johannesence0805b2009-02-03 19:33:06 +00001388 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Root);
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001389 }
1390
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001391 unsigned StackSize = CCInfo.getNextStackOffset();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001392 // align stack specially for tail calls
Evan Chengded8f902008-09-07 09:07:23 +00001393 if (PerformTailCallOpt && CC == CallingConv::Fast)
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001394 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001395
1396 // If the function takes variable number of arguments, make a frame index for
1397 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001398 if (isVarArg) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001399 if (Is64Bit || CC != CallingConv::X86_FastCall) {
1400 VarArgsFrameIndex = MFI->CreateFixedObject(1, StackSize);
1401 }
1402 if (Is64Bit) {
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001403 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1404
1405 // FIXME: We should really autogenerate these arrays
1406 static const unsigned GPR64ArgRegsWin64[] = {
1407 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen18ace102008-01-05 16:56:59 +00001408 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001409 static const unsigned XMMArgRegsWin64[] = {
1410 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3
1411 };
1412 static const unsigned GPR64ArgRegs64Bit[] = {
1413 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1414 };
1415 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001416 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1417 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1418 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001419 const unsigned *GPR64ArgRegs, *XMMArgRegs;
1420
1421 if (IsWin64) {
1422 TotalNumIntRegs = 4; TotalNumXMMRegs = 4;
1423 GPR64ArgRegs = GPR64ArgRegsWin64;
1424 XMMArgRegs = XMMArgRegsWin64;
1425 } else {
1426 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1427 GPR64ArgRegs = GPR64ArgRegs64Bit;
1428 XMMArgRegs = XMMArgRegs64Bit;
1429 }
1430 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1431 TotalNumIntRegs);
1432 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs,
1433 TotalNumXMMRegs);
1434
Evan Cheng0b84fe12009-02-13 22:36:38 +00001435 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Edwin Törökaf8e1332009-02-01 18:15:56 +00001436 "SSE register cannot be used when SSE is disabled!");
Evan Cheng0b84fe12009-02-13 22:36:38 +00001437 assert(!(NumXMMRegs && UseSoftFloat) &&
1438 "SSE register cannot be used when SSE is disabled!");
1439 if (UseSoftFloat || !Subtarget->hasSSE1()) {
Edwin Törökaf8e1332009-02-01 18:15:56 +00001440 // Kernel mode asks for SSE to be disabled, so don't push them
1441 // on the stack.
1442 TotalNumXMMRegs = 0;
1443 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001444 // For X86-64, if there are vararg parameters that are passed via
1445 // registers, then we must store them to their spots on the stack so they
1446 // may be loaded by deferencing the result of va_next.
1447 VarArgsGPOffset = NumIntRegs * 8;
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001448 VarArgsFPOffset = TotalNumIntRegs * 8 + NumXMMRegs * 16;
1449 RegSaveFrameIndex = MFI->CreateStackObject(TotalNumIntRegs * 8 +
1450 TotalNumXMMRegs * 16, 16);
1451
Gordon Henriksen18ace102008-01-05 16:56:59 +00001452 // Store the integer parameter registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00001453 SmallVector<SDValue, 8> MemOps;
1454 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00001455 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001456 DAG.getIntPtrConstant(VarArgsGPOffset));
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001457 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001458 unsigned VReg = AddLiveIn(MF, GPR64ArgRegs[NumIntRegs],
1459 X86::GR64RegisterClass);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001460 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::i64);
Dan Gohman8181bd12008-07-27 21:46:04 +00001461 SDValue Store =
Dale Johannesence0805b2009-02-03 19:33:06 +00001462 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001463 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001464 MemOps.push_back(Store);
Dale Johannesence0805b2009-02-03 19:33:06 +00001465 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001466 DAG.getIntPtrConstant(8));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001467 }
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001468
Gordon Henriksen18ace102008-01-05 16:56:59 +00001469 // Now store the XMM (fp + vector) parameter registers.
Dale Johannesence0805b2009-02-03 19:33:06 +00001470 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001471 DAG.getIntPtrConstant(VarArgsFPOffset));
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001472 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001473 unsigned VReg = AddLiveIn(MF, XMMArgRegs[NumXMMRegs],
1474 X86::VR128RegisterClass);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001475 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::v4f32);
Dan Gohman8181bd12008-07-27 21:46:04 +00001476 SDValue Store =
Dale Johannesence0805b2009-02-03 19:33:06 +00001477 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001478 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001479 MemOps.push_back(Store);
Dale Johannesence0805b2009-02-03 19:33:06 +00001480 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001481 DAG.getIntPtrConstant(16));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001482 }
1483 if (!MemOps.empty())
Dale Johannesence0805b2009-02-03 19:33:06 +00001484 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Gordon Henriksen18ace102008-01-05 16:56:59 +00001485 &MemOps[0], MemOps.size());
1486 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001487 }
Scott Michel91099d62009-02-17 22:15:04 +00001488
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001489 ArgValues.push_back(Root);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001490
Gordon Henriksen18ace102008-01-05 16:56:59 +00001491 // Some CCs need callee pop.
Dan Gohman705e3f72008-09-13 01:54:27 +00001492 if (IsCalleePop(isVarArg, CC)) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001493 BytesToPopOnReturn = StackSize; // Callee pops everything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001494 BytesCallerReserves = 0;
1495 } else {
1496 BytesToPopOnReturn = 0; // Callee pops nothing.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001497 // If this is an sret function, the return should pop the hidden pointer.
Evan Chenga9d15b92008-09-10 18:25:29 +00001498 if (!Is64Bit && CC != CallingConv::Fast && ArgsAreStructReturn(Op))
Scott Michel91099d62009-02-17 22:15:04 +00001499 BytesToPopOnReturn = 4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001500 BytesCallerReserves = StackSize;
1501 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001502
Gordon Henriksen18ace102008-01-05 16:56:59 +00001503 if (!Is64Bit) {
1504 RegSaveFrameIndex = 0xAAAAAAA; // RegSaveFrameIndex is X86-64 only.
1505 if (CC == CallingConv::X86_FastCall)
1506 VarArgsFrameIndex = 0xAAAAAAA; // fastcc functions can't have varargs.
1507 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001508
Anton Korobeynikove844e472007-08-15 17:12:32 +00001509 FuncInfo->setBytesToPopOnReturn(BytesToPopOnReturn);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001510
1511 // Return the new list of results.
Dale Johannesence0805b2009-02-03 19:33:06 +00001512 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
Duncan Sands42d7bb82008-12-01 11:41:29 +00001513 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001514}
1515
Dan Gohman8181bd12008-07-27 21:46:04 +00001516SDValue
Dan Gohman705e3f72008-09-13 01:54:27 +00001517X86TargetLowering::LowerMemOpCallTo(CallSDNode *TheCall, SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00001518 const SDValue &StackPtr,
Evan Chengbc077bf2008-01-10 00:09:10 +00001519 const CCValAssign &VA,
Dan Gohman8181bd12008-07-27 21:46:04 +00001520 SDValue Chain,
Dan Gohman705e3f72008-09-13 01:54:27 +00001521 SDValue Arg, ISD::ArgFlagsTy Flags) {
Dale Johannesence0805b2009-02-03 19:33:06 +00001522 DebugLoc dl = TheCall->getDebugLoc();
Dan Gohman1190f3a2008-02-07 16:28:05 +00001523 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman8181bd12008-07-27 21:46:04 +00001524 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesence0805b2009-02-03 19:33:06 +00001525 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Duncan Sandsc93fae32008-03-21 09:14:45 +00001526 if (Flags.isByVal()) {
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001527 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Evan Chengbc077bf2008-01-10 00:09:10 +00001528 }
Dale Johannesence0805b2009-02-03 19:33:06 +00001529 return DAG.getStore(Chain, dl, Arg, PtrOff,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001530 PseudoSourceValue::getStack(), LocMemOffset);
Evan Chengbc077bf2008-01-10 00:09:10 +00001531}
1532
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001533/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001534/// optimization is performed and it is required.
Scott Michel91099d62009-02-17 22:15:04 +00001535SDValue
1536X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00001537 SDValue &OutRetAddr,
Scott Michel91099d62009-02-17 22:15:04 +00001538 SDValue Chain,
1539 bool IsTailCall,
1540 bool Is64Bit,
Dale Johannesence0805b2009-02-03 19:33:06 +00001541 int FPDiff,
1542 DebugLoc dl) {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001543 if (!IsTailCall || FPDiff==0) return Chain;
1544
1545 // Adjust the Return address stack slot.
Duncan Sands92c43912008-06-06 12:08:01 +00001546 MVT VT = getPointerTy();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001547 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001548
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001549 // Load the "old" Return address.
Dale Johannesence0805b2009-02-03 19:33:06 +00001550 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, NULL, 0);
Gabor Greif1c80d112008-08-28 21:40:38 +00001551 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001552}
1553
1554/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1555/// optimization is performed and it is required (FPDiff!=0).
Scott Michel91099d62009-02-17 22:15:04 +00001556static SDValue
1557EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman8181bd12008-07-27 21:46:04 +00001558 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesence0805b2009-02-03 19:33:06 +00001559 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001560 // Store the return address to the appropriate stack slot.
1561 if (!FPDiff) return Chain;
1562 // Calculate the new stack slot for the return address.
1563 int SlotSize = Is64Bit ? 8 : 4;
Scott Michel91099d62009-02-17 22:15:04 +00001564 int NewReturnAddrFI =
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001565 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize);
Duncan Sands92c43912008-06-06 12:08:01 +00001566 MVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman8181bd12008-07-27 21:46:04 +00001567 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michel91099d62009-02-17 22:15:04 +00001568 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001569 PseudoSourceValue::getFixedStack(NewReturnAddrFI), 0);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001570 return Chain;
1571}
1572
Dan Gohman8181bd12008-07-27 21:46:04 +00001573SDValue X86TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001574 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman705e3f72008-09-13 01:54:27 +00001575 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
1576 SDValue Chain = TheCall->getChain();
1577 unsigned CC = TheCall->getCallingConv();
1578 bool isVarArg = TheCall->isVarArg();
1579 bool IsTailCall = TheCall->isTailCall() &&
1580 CC == CallingConv::Fast && PerformTailCallOpt;
1581 SDValue Callee = TheCall->getCallee();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001582 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman705e3f72008-09-13 01:54:27 +00001583 bool IsStructRet = CallIsStructReturn(TheCall);
Dale Johannesence0805b2009-02-03 19:33:06 +00001584 DebugLoc dl = TheCall->getDebugLoc();
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001585
1586 assert(!(isVarArg && CC == CallingConv::Fast) &&
1587 "Var args not supported with calling convention fastcc");
1588
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001589 // Analyze operands of the call, assigning locations to each operand.
1590 SmallVector<CCValAssign, 16> ArgLocs;
1591 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman705e3f72008-09-13 01:54:27 +00001592 CCInfo.AnalyzeCallOperands(TheCall, CCAssignFnForNode(CC));
Scott Michel91099d62009-02-17 22:15:04 +00001593
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001594 // Get a count of how many bytes are to be pushed on the stack.
1595 unsigned NumBytes = CCInfo.getNextStackOffset();
Arnold Schwaighofere91fdbf2008-09-11 20:28:43 +00001596 if (PerformTailCallOpt && CC == CallingConv::Fast)
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001597 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001598
Gordon Henriksen18ace102008-01-05 16:56:59 +00001599 int FPDiff = 0;
1600 if (IsTailCall) {
1601 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michel91099d62009-02-17 22:15:04 +00001602 unsigned NumBytesCallerPushed =
Gordon Henriksen18ace102008-01-05 16:56:59 +00001603 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1604 FPDiff = NumBytesCallerPushed - NumBytes;
1605
1606 // Set the delta of movement of the returnaddr stackslot.
1607 // But only set if delta is greater than previous delta.
1608 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1609 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1610 }
1611
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001612 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001613
Dan Gohman8181bd12008-07-27 21:46:04 +00001614 SDValue RetAddrFrIdx;
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001615 // Load return adress for tail calls.
1616 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, IsTailCall, Is64Bit,
Dale Johannesence0805b2009-02-03 19:33:06 +00001617 FPDiff, dl);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001618
Dan Gohman8181bd12008-07-27 21:46:04 +00001619 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1620 SmallVector<SDValue, 8> MemOpChains;
1621 SDValue StackPtr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001622
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001623 // Walk the register/memloc assignments, inserting copies/loads. In the case
1624 // of tail call optimization arguments are handle later.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001625 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1626 CCValAssign &VA = ArgLocs[i];
Dan Gohman705e3f72008-09-13 01:54:27 +00001627 SDValue Arg = TheCall->getArg(i);
1628 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
1629 bool isByVal = Flags.isByVal();
Scott Michel91099d62009-02-17 22:15:04 +00001630
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001631 // Promote the value if needed.
1632 switch (VA.getLocInfo()) {
1633 default: assert(0 && "Unknown loc info!");
1634 case CCValAssign::Full: break;
1635 case CCValAssign::SExt:
Dale Johannesence0805b2009-02-03 19:33:06 +00001636 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001637 break;
1638 case CCValAssign::ZExt:
Dale Johannesence0805b2009-02-03 19:33:06 +00001639 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001640 break;
1641 case CCValAssign::AExt:
Dale Johannesence0805b2009-02-03 19:33:06 +00001642 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001643 break;
1644 }
Scott Michel91099d62009-02-17 22:15:04 +00001645
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001646 if (VA.isRegLoc()) {
Evan Cheng2aea0b42008-04-25 19:11:04 +00001647 if (Is64Bit) {
Duncan Sands92c43912008-06-06 12:08:01 +00001648 MVT RegVT = VA.getLocVT();
1649 if (RegVT.isVector() && RegVT.getSizeInBits() == 64)
Evan Cheng2aea0b42008-04-25 19:11:04 +00001650 switch (VA.getLocReg()) {
1651 default:
1652 break;
1653 case X86::RDI: case X86::RSI: case X86::RDX: case X86::RCX:
1654 case X86::R8: {
1655 // Special case: passing MMX values in GPR registers.
Dale Johannesence0805b2009-02-03 19:33:06 +00001656 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
Evan Cheng2aea0b42008-04-25 19:11:04 +00001657 break;
1658 }
1659 case X86::XMM0: case X86::XMM1: case X86::XMM2: case X86::XMM3:
1660 case X86::XMM4: case X86::XMM5: case X86::XMM6: case X86::XMM7: {
1661 // Special case: passing MMX values in XMM registers.
Dale Johannesence0805b2009-02-03 19:33:06 +00001662 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1663 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1664 Arg = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2i64,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00001665 DAG.getUNDEF(MVT::v2i64), Arg,
Dale Johannesence0805b2009-02-03 19:33:06 +00001666 getMOVLMask(2, DAG, dl));
Evan Cheng2aea0b42008-04-25 19:11:04 +00001667 break;
1668 }
1669 }
1670 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001671 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1672 } else {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001673 if (!IsTailCall || (IsTailCall && isByVal)) {
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001674 assert(VA.isMemLoc());
Gabor Greif1c80d112008-08-28 21:40:38 +00001675 if (StackPtr.getNode() == 0)
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001676 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
Scott Michel91099d62009-02-17 22:15:04 +00001677
Dan Gohman705e3f72008-09-13 01:54:27 +00001678 MemOpChains.push_back(LowerMemOpCallTo(TheCall, DAG, StackPtr, VA,
1679 Chain, Arg, Flags));
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001680 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001681 }
1682 }
Scott Michel91099d62009-02-17 22:15:04 +00001683
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001684 if (!MemOpChains.empty())
Dale Johannesence0805b2009-02-03 19:33:06 +00001685 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001686 &MemOpChains[0], MemOpChains.size());
1687
1688 // Build a sequence of copy-to-reg nodes chained together with token chain
1689 // and flag operands which copy the outgoing args into registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00001690 SDValue InFlag;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001691 // Tail call byval lowering might overwrite argument registers so in case of
1692 // tail call optimization the copies to registers are lowered later.
1693 if (!IsTailCall)
1694 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00001695 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001696 RegsToPass[i].second, InFlag);
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001697 InFlag = Chain.getValue(1);
1698 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001699
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001700 // ELF / PIC requires GOT in the EBX register before function calls via PLT
Scott Michel91099d62009-02-17 22:15:04 +00001701 // GOT pointer.
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001702 if (CallRequiresGOTPtrInReg(Is64Bit, IsTailCall)) {
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001703 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
Scott Michel91099d62009-02-17 22:15:04 +00001704 DAG.getNode(X86ISD::GlobalBaseReg,
1705 DebugLoc::getUnknownLoc(),
Dale Johannesen24dd9a52009-02-07 00:55:49 +00001706 getPointerTy()),
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001707 InFlag);
1708 InFlag = Chain.getValue(1);
1709 }
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001710 // If we are tail calling and generating PIC/GOT style code load the address
1711 // of the callee into ecx. The value in ecx is used as target of the tail
1712 // jump. This is done to circumvent the ebx/callee-saved problem for tail
1713 // calls on PIC/GOT architectures. Normally we would just put the address of
1714 // GOT into ebx and then call target@PLT. But for tail callss ebx would be
1715 // restored (since ebx is callee saved) before jumping to the target@PLT.
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001716 if (CallRequiresFnAddressInReg(Is64Bit, IsTailCall)) {
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001717 // Note: The actual moving to ecx is done further down.
1718 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
Evan Cheng7f250d62008-09-24 00:05:32 +00001719 if (G && !G->getGlobal()->hasHiddenVisibility() &&
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001720 !G->getGlobal()->hasProtectedVisibility())
1721 Callee = LowerGlobalAddress(Callee, DAG);
Bill Wendlingfef06052008-09-16 21:48:12 +00001722 else if (isa<ExternalSymbolSDNode>(Callee))
1723 Callee = LowerExternalSymbol(Callee,DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001724 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001725
Gordon Henriksen18ace102008-01-05 16:56:59 +00001726 if (Is64Bit && isVarArg) {
1727 // From AMD64 ABI document:
1728 // For calls that may call functions that use varargs or stdargs
1729 // (prototype-less calls or calls to functions containing ellipsis (...) in
1730 // the declaration) %al is used as hidden argument to specify the number
1731 // of SSE registers used. The contents of %al do not need to match exactly
1732 // the number of registers, but must be an ubound on the number of SSE
1733 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001734
1735 // FIXME: Verify this on Win64
Gordon Henriksen18ace102008-01-05 16:56:59 +00001736 // Count the number of XMM registers allocated.
1737 static const unsigned XMMArgRegs[] = {
1738 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1739 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1740 };
1741 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michel91099d62009-02-17 22:15:04 +00001742 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Edwin Törökaf8e1332009-02-01 18:15:56 +00001743 && "SSE registers cannot be used when SSE is disabled");
Scott Michel91099d62009-02-17 22:15:04 +00001744
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001745 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Gordon Henriksen18ace102008-01-05 16:56:59 +00001746 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
1747 InFlag = Chain.getValue(1);
1748 }
1749
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001750
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001751 // For tail calls lower the arguments to the 'real' stack slot.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001752 if (IsTailCall) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001753 SmallVector<SDValue, 8> MemOpChains2;
1754 SDValue FIN;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001755 int FI = 0;
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001756 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman8181bd12008-07-27 21:46:04 +00001757 InFlag = SDValue();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001758 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1759 CCValAssign &VA = ArgLocs[i];
1760 if (!VA.isRegLoc()) {
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001761 assert(VA.isMemLoc());
Dan Gohman705e3f72008-09-13 01:54:27 +00001762 SDValue Arg = TheCall->getArg(i);
1763 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001764 // Create frame index.
1765 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands92c43912008-06-06 12:08:01 +00001766 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001767 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001768 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001769
Duncan Sandsc93fae32008-03-21 09:14:45 +00001770 if (Flags.isByVal()) {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001771 // Copy relative to framepointer.
Dan Gohman8181bd12008-07-27 21:46:04 +00001772 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greif1c80d112008-08-28 21:40:38 +00001773 if (StackPtr.getNode() == 0)
Scott Michel91099d62009-02-17 22:15:04 +00001774 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001775 getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00001776 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001777
1778 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN, Chain,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001779 Flags, DAG, dl));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001780 } else {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001781 // Store relative to framepointer.
Dan Gohman12a9c082008-02-06 22:27:42 +00001782 MemOpChains2.push_back(
Dale Johannesence0805b2009-02-03 19:33:06 +00001783 DAG.getStore(Chain, dl, Arg, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001784 PseudoSourceValue::getFixedStack(FI), 0));
Scott Michel91099d62009-02-17 22:15:04 +00001785 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001786 }
1787 }
1788
1789 if (!MemOpChains2.empty())
Dale Johannesence0805b2009-02-03 19:33:06 +00001790 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighoferdfb21302008-01-11 14:34:56 +00001791 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001792
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001793 // Copy arguments to their registers.
1794 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00001795 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001796 RegsToPass[i].second, InFlag);
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001797 InFlag = Chain.getValue(1);
1798 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001799 InFlag =SDValue();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001800
Gordon Henriksen18ace102008-01-05 16:56:59 +00001801 // Store the return address to the appropriate stack slot.
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001802 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesence0805b2009-02-03 19:33:06 +00001803 FPDiff, dl);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001804 }
1805
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001806 // If the callee is a GlobalAddress node (quite common, every direct call is)
1807 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
1808 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1809 // We should use extra load for direct calls to dllimported functions in
1810 // non-JIT mode.
Evan Cheng1f282202008-07-16 01:34:02 +00001811 if (!Subtarget->GVRequiresExtraLoad(G->getGlobal(),
1812 getTargetMachine(), true))
Dan Gohman36322c72008-10-18 02:06:02 +00001813 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy(),
1814 G->getOffset());
Bill Wendlingfef06052008-09-16 21:48:12 +00001815 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1816 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001817 } else if (IsTailCall) {
Arnold Schwaighofer4da27f62008-09-22 14:50:07 +00001818 unsigned Opc = Is64Bit ? X86::R9 : X86::EAX;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001819
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001820 Chain = DAG.getCopyToReg(Chain, dl,
Scott Michel91099d62009-02-17 22:15:04 +00001821 DAG.getRegister(Opc, getPointerTy()),
Gordon Henriksen18ace102008-01-05 16:56:59 +00001822 Callee,InFlag);
1823 Callee = DAG.getRegister(Opc, getPointerTy());
1824 // Add register as live out.
1825 DAG.getMachineFunction().getRegInfo().addLiveOut(Opc);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001826 }
Scott Michel91099d62009-02-17 22:15:04 +00001827
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001828 // Returns a chain & a flag for retval copy to use.
1829 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00001830 SmallVector<SDValue, 8> Ops;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001831
1832 if (IsTailCall) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00001833 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1834 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001835 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00001836
Gordon Henriksen18ace102008-01-05 16:56:59 +00001837 // Returns a chain & a flag for retval copy to use.
1838 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1839 Ops.clear();
1840 }
Scott Michel91099d62009-02-17 22:15:04 +00001841
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001842 Ops.push_back(Chain);
1843 Ops.push_back(Callee);
1844
Gordon Henriksen18ace102008-01-05 16:56:59 +00001845 if (IsTailCall)
1846 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001847
Gordon Henriksen18ace102008-01-05 16:56:59 +00001848 // Add argument registers to the end of the list so that they are known live
1849 // into the call.
Evan Chenge14fc242008-01-07 23:08:23 +00001850 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1851 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1852 RegsToPass[i].second.getValueType()));
Scott Michel91099d62009-02-17 22:15:04 +00001853
Evan Cheng8ba45e62008-03-18 23:36:35 +00001854 // Add an implicit use GOT pointer in EBX.
1855 if (!IsTailCall && !Is64Bit &&
1856 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1857 Subtarget->isPICStyleGOT())
1858 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
1859
1860 // Add an implicit use of AL for x86 vararg functions.
1861 if (Is64Bit && isVarArg)
1862 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
1863
Gabor Greif1c80d112008-08-28 21:40:38 +00001864 if (InFlag.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001865 Ops.push_back(InFlag);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001866
Gordon Henriksen18ace102008-01-05 16:56:59 +00001867 if (IsTailCall) {
Scott Michel91099d62009-02-17 22:15:04 +00001868 assert(InFlag.getNode() &&
Gordon Henriksen18ace102008-01-05 16:56:59 +00001869 "Flag must be set. Depend on flag being set in LowerRET");
Dale Johannesence0805b2009-02-03 19:33:06 +00001870 Chain = DAG.getNode(X86ISD::TAILCALL, dl,
Dan Gohman705e3f72008-09-13 01:54:27 +00001871 TheCall->getVTList(), &Ops[0], Ops.size());
Scott Michel91099d62009-02-17 22:15:04 +00001872
Gabor Greif1c80d112008-08-28 21:40:38 +00001873 return SDValue(Chain.getNode(), Op.getResNo());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001874 }
1875
Dale Johannesence0805b2009-02-03 19:33:06 +00001876 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001877 InFlag = Chain.getValue(1);
1878
1879 // Create the CALLSEQ_END node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001880 unsigned NumBytesForCalleeToPush;
Dan Gohman705e3f72008-09-13 01:54:27 +00001881 if (IsCalleePop(isVarArg, CC))
Gordon Henriksen18ace102008-01-05 16:56:59 +00001882 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Evan Chenga9d15b92008-09-10 18:25:29 +00001883 else if (!Is64Bit && CC != CallingConv::Fast && IsStructRet)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001884 // If this is is a call to a struct-return function, the callee
1885 // pops the hidden struct pointer, so we have to push it back.
1886 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001887 NumBytesForCalleeToPush = 4;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001888 else
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001889 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michel91099d62009-02-17 22:15:04 +00001890
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001891 // Returns a flag for retval copy to use.
Bill Wendling22f8deb2007-11-13 00:44:25 +00001892 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001893 DAG.getIntPtrConstant(NumBytes, true),
1894 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
1895 true),
Bill Wendling22f8deb2007-11-13 00:44:25 +00001896 InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001897 InFlag = Chain.getValue(1);
1898
1899 // Handle result values, copying them out of physregs into vregs that we
1900 // return.
Dan Gohman705e3f72008-09-13 01:54:27 +00001901 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG),
Gabor Greif825aa892008-08-28 23:19:51 +00001902 Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001903}
1904
1905
1906//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001907// Fast Calling Convention (tail call) implementation
1908//===----------------------------------------------------------------------===//
1909
1910// Like std call, callee cleans arguments, convention except that ECX is
1911// reserved for storing the tail called function address. Only 2 registers are
1912// free for argument passing (inreg). Tail call optimization is performed
1913// provided:
1914// * tailcallopt is enabled
1915// * caller/callee are fastcc
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001916// On X86_64 architecture with GOT-style position independent code only local
1917// (within module) calls are supported at the moment.
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00001918// To keep the stack aligned according to platform abi the function
1919// GetAlignedArgumentStackSize ensures that argument delta is always multiples
1920// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001921// If a tail called function callee has more arguments than the caller the
1922// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00001923// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001924// original REtADDR, but before the saved framepointer or the spilled registers
1925// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
1926// stack layout:
1927// arg1
1928// arg2
1929// RETADDR
Scott Michel91099d62009-02-17 22:15:04 +00001930// [ new RETADDR
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001931// move area ]
1932// (possible EBP)
1933// ESI
1934// EDI
1935// local1 ..
1936
1937/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
1938/// for a 16 byte align requirement.
Scott Michel91099d62009-02-17 22:15:04 +00001939unsigned X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001940 SelectionDAG& DAG) {
Evan Chengded8f902008-09-07 09:07:23 +00001941 MachineFunction &MF = DAG.getMachineFunction();
1942 const TargetMachine &TM = MF.getTarget();
1943 const TargetFrameInfo &TFI = *TM.getFrameInfo();
1944 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michel91099d62009-02-17 22:15:04 +00001945 uint64_t AlignMask = StackAlignment - 1;
Evan Chengded8f902008-09-07 09:07:23 +00001946 int64_t Offset = StackSize;
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00001947 uint64_t SlotSize = TD->getPointerSize();
Evan Chengded8f902008-09-07 09:07:23 +00001948 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
1949 // Number smaller than 12 so just add the difference.
1950 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
1951 } else {
1952 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michel91099d62009-02-17 22:15:04 +00001953 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chengded8f902008-09-07 09:07:23 +00001954 (StackAlignment-SlotSize);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001955 }
Evan Chengded8f902008-09-07 09:07:23 +00001956 return Offset;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001957}
1958
1959/// IsEligibleForTailCallElimination - Check to see whether the next instruction
Evan Chenge7a87392007-11-02 01:26:22 +00001960/// following the call is a return. A function is eligible if caller/callee
1961/// calling conventions match, currently only fastcc supports tail calls, and
1962/// the function CALL is immediatly followed by a RET.
Dan Gohman705e3f72008-09-13 01:54:27 +00001963bool X86TargetLowering::IsEligibleForTailCallOptimization(CallSDNode *TheCall,
Dan Gohman8181bd12008-07-27 21:46:04 +00001964 SDValue Ret,
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001965 SelectionDAG& DAG) const {
Evan Chenge7a87392007-11-02 01:26:22 +00001966 if (!PerformTailCallOpt)
1967 return false;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001968
Dan Gohman705e3f72008-09-13 01:54:27 +00001969 if (CheckTailCallReturnConstraints(TheCall, Ret)) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001970 MachineFunction &MF = DAG.getMachineFunction();
1971 unsigned CallerCC = MF.getFunction()->getCallingConv();
Dan Gohman705e3f72008-09-13 01:54:27 +00001972 unsigned CalleeCC= TheCall->getCallingConv();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001973 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
Dan Gohman705e3f72008-09-13 01:54:27 +00001974 SDValue Callee = TheCall->getCallee();
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001975 // On x86/32Bit PIC/GOT tail calls are supported.
Evan Chenge7a87392007-11-02 01:26:22 +00001976 if (getTargetMachine().getRelocationModel() != Reloc::PIC_ ||
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001977 !Subtarget->isPICStyleGOT()|| !Subtarget->is64Bit())
Evan Chenge7a87392007-11-02 01:26:22 +00001978 return true;
1979
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001980 // Can only do local tail calls (in same module, hidden or protected) on
1981 // x86_64 PIC/GOT at the moment.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001982 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1983 return G->getGlobal()->hasHiddenVisibility()
1984 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001985 }
1986 }
Evan Chenge7a87392007-11-02 01:26:22 +00001987
1988 return false;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001989}
1990
Dan Gohmanca4857a2008-09-03 23:12:08 +00001991FastISel *
1992X86TargetLowering::createFastISel(MachineFunction &mf,
Dan Gohman76dd96e2008-09-23 21:53:34 +00001993 MachineModuleInfo *mmo,
Devang Patelfcf1c752009-01-13 00:35:13 +00001994 DwarfWriter *dw,
Dan Gohmanca4857a2008-09-03 23:12:08 +00001995 DenseMap<const Value *, unsigned> &vm,
1996 DenseMap<const BasicBlock *,
Dan Gohmand6211a72008-09-10 20:11:02 +00001997 MachineBasicBlock *> &bm,
Dan Gohman9dd43582008-10-14 23:54:11 +00001998 DenseMap<const AllocaInst *, int> &am
1999#ifndef NDEBUG
2000 , SmallSet<Instruction*, 8> &cil
2001#endif
2002 ) {
Devang Patelfcf1c752009-01-13 00:35:13 +00002003 return X86::createFastISel(mf, mmo, dw, vm, bm, am
Dan Gohman9dd43582008-10-14 23:54:11 +00002004#ifndef NDEBUG
2005 , cil
2006#endif
2007 );
Dan Gohman97805ee2008-08-19 21:32:53 +00002008}
2009
2010
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002011//===----------------------------------------------------------------------===//
2012// Other Lowering Hooks
2013//===----------------------------------------------------------------------===//
2014
2015
Dan Gohman8181bd12008-07-27 21:46:04 +00002016SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
Anton Korobeynikove844e472007-08-15 17:12:32 +00002017 MachineFunction &MF = DAG.getMachineFunction();
2018 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2019 int ReturnAddrIndex = FuncInfo->getRAIndex();
2020
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002021 if (ReturnAddrIndex == 0) {
2022 // Set up a frame object for the return address.
Bill Wendling6ddc87b2009-01-16 19:25:27 +00002023 uint64_t SlotSize = TD->getPointerSize();
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00002024 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize);
Anton Korobeynikove844e472007-08-15 17:12:32 +00002025 FuncInfo->setRAIndex(ReturnAddrIndex);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002026 }
2027
2028 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
2029}
2030
2031
Chris Lattnerebb91142008-12-24 23:53:05 +00002032/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2033/// specific condition code, returning the condition code and the LHS/RHS of the
2034/// comparison to make.
2035static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2036 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002037 if (!isFP) {
2038 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2039 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2040 // X > -1 -> X == 0, jump !sign.
2041 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattnerebb91142008-12-24 23:53:05 +00002042 return X86::COND_NS;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002043 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2044 // X < 0 -> X == 0, jump on sign.
Chris Lattnerebb91142008-12-24 23:53:05 +00002045 return X86::COND_S;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002046 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman37b34262007-09-17 14:49:27 +00002047 // X < 1 -> X <= 0
2048 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattnerebb91142008-12-24 23:53:05 +00002049 return X86::COND_LE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002050 }
2051 }
2052
2053 switch (SetCCOpcode) {
Chris Lattnerb8397512008-12-23 23:42:27 +00002054 default: assert(0 && "Invalid integer condition!");
Chris Lattnerebb91142008-12-24 23:53:05 +00002055 case ISD::SETEQ: return X86::COND_E;
2056 case ISD::SETGT: return X86::COND_G;
2057 case ISD::SETGE: return X86::COND_GE;
2058 case ISD::SETLT: return X86::COND_L;
2059 case ISD::SETLE: return X86::COND_LE;
2060 case ISD::SETNE: return X86::COND_NE;
2061 case ISD::SETULT: return X86::COND_B;
2062 case ISD::SETUGT: return X86::COND_A;
2063 case ISD::SETULE: return X86::COND_BE;
2064 case ISD::SETUGE: return X86::COND_AE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002065 }
Chris Lattnerb8397512008-12-23 23:42:27 +00002066 }
Scott Michel91099d62009-02-17 22:15:04 +00002067
Chris Lattnerb8397512008-12-23 23:42:27 +00002068 // First determine if it is required or is profitable to flip the operands.
Duncan Sandsc2a04622008-10-24 13:03:10 +00002069
Chris Lattnerb8397512008-12-23 23:42:27 +00002070 // If LHS is a foldable load, but RHS is not, flip the condition.
2071 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2072 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2073 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2074 std::swap(LHS, RHS);
Evan Chengfc937c92008-08-28 23:48:31 +00002075 }
2076
Chris Lattnerb8397512008-12-23 23:42:27 +00002077 switch (SetCCOpcode) {
2078 default: break;
2079 case ISD::SETOLT:
2080 case ISD::SETOLE:
2081 case ISD::SETUGT:
2082 case ISD::SETUGE:
2083 std::swap(LHS, RHS);
2084 break;
2085 }
2086
2087 // On a floating point condition, the flags are set as follows:
2088 // ZF PF CF op
2089 // 0 | 0 | 0 | X > Y
2090 // 0 | 0 | 1 | X < Y
2091 // 1 | 0 | 0 | X == Y
2092 // 1 | 1 | 1 | unordered
2093 switch (SetCCOpcode) {
Chris Lattnerebb91142008-12-24 23:53:05 +00002094 default: assert(0 && "Condcode should be pre-legalized away");
Chris Lattnerb8397512008-12-23 23:42:27 +00002095 case ISD::SETUEQ:
Chris Lattnerebb91142008-12-24 23:53:05 +00002096 case ISD::SETEQ: return X86::COND_E;
Chris Lattnerb8397512008-12-23 23:42:27 +00002097 case ISD::SETOLT: // flipped
2098 case ISD::SETOGT:
Chris Lattnerebb91142008-12-24 23:53:05 +00002099 case ISD::SETGT: return X86::COND_A;
Chris Lattnerb8397512008-12-23 23:42:27 +00002100 case ISD::SETOLE: // flipped
2101 case ISD::SETOGE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002102 case ISD::SETGE: return X86::COND_AE;
Chris Lattnerb8397512008-12-23 23:42:27 +00002103 case ISD::SETUGT: // flipped
2104 case ISD::SETULT:
Chris Lattnerebb91142008-12-24 23:53:05 +00002105 case ISD::SETLT: return X86::COND_B;
Chris Lattnerb8397512008-12-23 23:42:27 +00002106 case ISD::SETUGE: // flipped
2107 case ISD::SETULE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002108 case ISD::SETLE: return X86::COND_BE;
Chris Lattnerb8397512008-12-23 23:42:27 +00002109 case ISD::SETONE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002110 case ISD::SETNE: return X86::COND_NE;
2111 case ISD::SETUO: return X86::COND_P;
2112 case ISD::SETO: return X86::COND_NP;
Chris Lattnerb8397512008-12-23 23:42:27 +00002113 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002114}
2115
2116/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2117/// code. Current x86 isa includes the following FP cmov instructions:
2118/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
2119static bool hasFPCMov(unsigned X86CC) {
2120 switch (X86CC) {
2121 default:
2122 return false;
2123 case X86::COND_B:
2124 case X86::COND_BE:
2125 case X86::COND_E:
2126 case X86::COND_P:
2127 case X86::COND_A:
2128 case X86::COND_AE:
2129 case X86::COND_NE:
2130 case X86::COND_NP:
2131 return true;
2132 }
2133}
2134
2135/// isUndefOrInRange - Op is either an undef node or a ConstantSDNode. Return
2136/// true if Op is undef or if its value falls within the specified range (L, H].
Dan Gohman8181bd12008-07-27 21:46:04 +00002137static bool isUndefOrInRange(SDValue Op, unsigned Low, unsigned Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002138 if (Op.getOpcode() == ISD::UNDEF)
2139 return true;
2140
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002141 unsigned Val = cast<ConstantSDNode>(Op)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002142 return (Val >= Low && Val < Hi);
2143}
2144
2145/// isUndefOrEqual - Op is either an undef node or a ConstantSDNode. Return
2146/// true if Op is undef or if its value equal to the specified value.
Dan Gohman8181bd12008-07-27 21:46:04 +00002147static bool isUndefOrEqual(SDValue Op, unsigned Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002148 if (Op.getOpcode() == ISD::UNDEF)
2149 return true;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002150 return cast<ConstantSDNode>(Op)->getZExtValue() == Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002151}
2152
2153/// isPSHUFDMask - Return true if the specified VECTOR_SHUFFLE operand
2154/// specifies a shuffle of elements that is suitable for input to PSHUFD.
2155bool X86::isPSHUFDMask(SDNode *N) {
2156 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2157
Dan Gohman7dc19012007-08-02 21:17:01 +00002158 if (N->getNumOperands() != 2 && N->getNumOperands() != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002159 return false;
2160
2161 // Check if the value doesn't reference the second vector.
2162 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002163 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002164 if (Arg.getOpcode() == ISD::UNDEF) continue;
2165 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002166 if (cast<ConstantSDNode>(Arg)->getZExtValue() >= e)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002167 return false;
2168 }
2169
2170 return true;
2171}
2172
2173/// isPSHUFHWMask - Return true if the specified VECTOR_SHUFFLE operand
2174/// specifies a shuffle of elements that is suitable for input to PSHUFHW.
2175bool X86::isPSHUFHWMask(SDNode *N) {
2176 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2177
2178 if (N->getNumOperands() != 8)
2179 return false;
2180
2181 // Lower quadword copied in order.
2182 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002183 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002184 if (Arg.getOpcode() == ISD::UNDEF) continue;
2185 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002186 if (cast<ConstantSDNode>(Arg)->getZExtValue() != i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002187 return false;
2188 }
2189
2190 // Upper quadword shuffled.
2191 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002192 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002193 if (Arg.getOpcode() == ISD::UNDEF) continue;
2194 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002195 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002196 if (Val < 4 || Val > 7)
2197 return false;
2198 }
2199
2200 return true;
2201}
2202
2203/// isPSHUFLWMask - Return true if the specified VECTOR_SHUFFLE operand
2204/// specifies a shuffle of elements that is suitable for input to PSHUFLW.
2205bool X86::isPSHUFLWMask(SDNode *N) {
2206 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2207
2208 if (N->getNumOperands() != 8)
2209 return false;
2210
2211 // Upper quadword copied in order.
2212 for (unsigned i = 4; i != 8; ++i)
2213 if (!isUndefOrEqual(N->getOperand(i), i))
2214 return false;
2215
2216 // Lower quadword shuffled.
2217 for (unsigned i = 0; i != 4; ++i)
2218 if (!isUndefOrInRange(N->getOperand(i), 0, 4))
2219 return false;
2220
2221 return true;
2222}
2223
2224/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2225/// specifies a shuffle of elements that is suitable for input to SHUFP*.
djgc2517d32009-01-26 04:35:06 +00002226template<class SDOperand>
2227static bool isSHUFPMask(SDOperand *Elems, unsigned NumElems) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002228 if (NumElems != 2 && NumElems != 4) return false;
2229
2230 unsigned Half = NumElems / 2;
2231 for (unsigned i = 0; i < Half; ++i)
2232 if (!isUndefOrInRange(Elems[i], 0, NumElems))
2233 return false;
2234 for (unsigned i = Half; i < NumElems; ++i)
2235 if (!isUndefOrInRange(Elems[i], NumElems, NumElems*2))
2236 return false;
2237
2238 return true;
2239}
2240
2241bool X86::isSHUFPMask(SDNode *N) {
2242 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2243 return ::isSHUFPMask(N->op_begin(), N->getNumOperands());
2244}
2245
2246/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
2247/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2248/// half elements to come from vector 1 (which would equal the dest.) and
2249/// the upper half to come from vector 2.
djgc2517d32009-01-26 04:35:06 +00002250template<class SDOperand>
2251static bool isCommutedSHUFP(SDOperand *Ops, unsigned NumOps) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002252 if (NumOps != 2 && NumOps != 4) return false;
2253
2254 unsigned Half = NumOps / 2;
2255 for (unsigned i = 0; i < Half; ++i)
2256 if (!isUndefOrInRange(Ops[i], NumOps, NumOps*2))
2257 return false;
2258 for (unsigned i = Half; i < NumOps; ++i)
2259 if (!isUndefOrInRange(Ops[i], 0, NumOps))
2260 return false;
2261 return true;
2262}
2263
2264static bool isCommutedSHUFP(SDNode *N) {
2265 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2266 return isCommutedSHUFP(N->op_begin(), N->getNumOperands());
2267}
2268
2269/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2270/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
2271bool X86::isMOVHLPSMask(SDNode *N) {
2272 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2273
2274 if (N->getNumOperands() != 4)
2275 return false;
2276
2277 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
2278 return isUndefOrEqual(N->getOperand(0), 6) &&
2279 isUndefOrEqual(N->getOperand(1), 7) &&
2280 isUndefOrEqual(N->getOperand(2), 2) &&
2281 isUndefOrEqual(N->getOperand(3), 3);
2282}
2283
2284/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2285/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2286/// <2, 3, 2, 3>
2287bool X86::isMOVHLPS_v_undef_Mask(SDNode *N) {
2288 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2289
2290 if (N->getNumOperands() != 4)
2291 return false;
2292
2293 // Expect bit0 == 2, bit1 == 3, bit2 == 2, bit3 == 3
2294 return isUndefOrEqual(N->getOperand(0), 2) &&
2295 isUndefOrEqual(N->getOperand(1), 3) &&
2296 isUndefOrEqual(N->getOperand(2), 2) &&
2297 isUndefOrEqual(N->getOperand(3), 3);
2298}
2299
2300/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
2301/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
2302bool X86::isMOVLPMask(SDNode *N) {
2303 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2304
2305 unsigned NumElems = N->getNumOperands();
2306 if (NumElems != 2 && NumElems != 4)
2307 return false;
2308
2309 for (unsigned i = 0; i < NumElems/2; ++i)
2310 if (!isUndefOrEqual(N->getOperand(i), i + NumElems))
2311 return false;
2312
2313 for (unsigned i = NumElems/2; i < NumElems; ++i)
2314 if (!isUndefOrEqual(N->getOperand(i), i))
2315 return false;
2316
2317 return true;
2318}
2319
2320/// isMOVHPMask - Return true if the specified VECTOR_SHUFFLE operand
2321/// specifies a shuffle of elements that is suitable for input to MOVHP{S|D}
2322/// and MOVLHPS.
2323bool X86::isMOVHPMask(SDNode *N) {
2324 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2325
2326 unsigned NumElems = N->getNumOperands();
2327 if (NumElems != 2 && NumElems != 4)
2328 return false;
2329
2330 for (unsigned i = 0; i < NumElems/2; ++i)
2331 if (!isUndefOrEqual(N->getOperand(i), i))
2332 return false;
2333
2334 for (unsigned i = 0; i < NumElems/2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002335 SDValue Arg = N->getOperand(i + NumElems/2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002336 if (!isUndefOrEqual(Arg, i + NumElems))
2337 return false;
2338 }
2339
2340 return true;
2341}
2342
2343/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
2344/// specifies a shuffle of elements that is suitable for input to UNPCKL.
djgc2517d32009-01-26 04:35:06 +00002345template<class SDOperand>
2346bool static isUNPCKLMask(SDOperand *Elts, unsigned NumElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002347 bool V2IsSplat = false) {
2348 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2349 return false;
2350
2351 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002352 SDValue BitI = Elts[i];
2353 SDValue BitI1 = Elts[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002354 if (!isUndefOrEqual(BitI, j))
2355 return false;
2356 if (V2IsSplat) {
Mon P Wang56d91642009-02-04 01:16:59 +00002357 if (!isUndefOrEqual(BitI1, NumElts))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002358 return false;
2359 } else {
2360 if (!isUndefOrEqual(BitI1, j + NumElts))
2361 return false;
2362 }
2363 }
2364
2365 return true;
2366}
2367
2368bool X86::isUNPCKLMask(SDNode *N, bool V2IsSplat) {
2369 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2370 return ::isUNPCKLMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
2371}
2372
2373/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
2374/// specifies a shuffle of elements that is suitable for input to UNPCKH.
djgc2517d32009-01-26 04:35:06 +00002375template<class SDOperand>
2376bool static isUNPCKHMask(SDOperand *Elts, unsigned NumElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002377 bool V2IsSplat = false) {
2378 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2379 return false;
2380
2381 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002382 SDValue BitI = Elts[i];
2383 SDValue BitI1 = Elts[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002384 if (!isUndefOrEqual(BitI, j + NumElts/2))
2385 return false;
2386 if (V2IsSplat) {
2387 if (isUndefOrEqual(BitI1, NumElts))
2388 return false;
2389 } else {
2390 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
2391 return false;
2392 }
2393 }
2394
2395 return true;
2396}
2397
2398bool X86::isUNPCKHMask(SDNode *N, bool V2IsSplat) {
2399 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2400 return ::isUNPCKHMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
2401}
2402
2403/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
2404/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
2405/// <0, 0, 1, 1>
2406bool X86::isUNPCKL_v_undef_Mask(SDNode *N) {
2407 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2408
2409 unsigned NumElems = N->getNumOperands();
2410 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2411 return false;
2412
2413 for (unsigned i = 0, j = 0; i != NumElems; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002414 SDValue BitI = N->getOperand(i);
2415 SDValue BitI1 = N->getOperand(i+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002416
2417 if (!isUndefOrEqual(BitI, j))
2418 return false;
2419 if (!isUndefOrEqual(BitI1, j))
2420 return false;
2421 }
2422
2423 return true;
2424}
2425
2426/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
2427/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
2428/// <2, 2, 3, 3>
2429bool X86::isUNPCKH_v_undef_Mask(SDNode *N) {
2430 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2431
2432 unsigned NumElems = N->getNumOperands();
2433 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2434 return false;
2435
2436 for (unsigned i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002437 SDValue BitI = N->getOperand(i);
2438 SDValue BitI1 = N->getOperand(i + 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002439
2440 if (!isUndefOrEqual(BitI, j))
2441 return false;
2442 if (!isUndefOrEqual(BitI1, j))
2443 return false;
2444 }
2445
2446 return true;
2447}
2448
2449/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
2450/// specifies a shuffle of elements that is suitable for input to MOVSS,
2451/// MOVSD, and MOVD, i.e. setting the lowest element.
djgc2517d32009-01-26 04:35:06 +00002452template<class SDOperand>
2453static bool isMOVLMask(SDOperand *Elts, unsigned NumElts) {
Evan Cheng62cdc642007-12-06 22:14:22 +00002454 if (NumElts != 2 && NumElts != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002455 return false;
2456
2457 if (!isUndefOrEqual(Elts[0], NumElts))
2458 return false;
2459
2460 for (unsigned i = 1; i < NumElts; ++i) {
2461 if (!isUndefOrEqual(Elts[i], i))
2462 return false;
2463 }
2464
2465 return true;
2466}
2467
2468bool X86::isMOVLMask(SDNode *N) {
2469 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2470 return ::isMOVLMask(N->op_begin(), N->getNumOperands());
2471}
2472
2473/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
2474/// of what x86 movss want. X86 movs requires the lowest element to be lowest
2475/// element of vector 2 and the other elements to come from vector 1 in order.
djgc2517d32009-01-26 04:35:06 +00002476template<class SDOperand>
2477static bool isCommutedMOVL(SDOperand *Ops, unsigned NumOps,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002478 bool V2IsSplat = false,
2479 bool V2IsUndef = false) {
2480 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
2481 return false;
2482
2483 if (!isUndefOrEqual(Ops[0], 0))
2484 return false;
2485
2486 for (unsigned i = 1; i < NumOps; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002487 SDValue Arg = Ops[i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002488 if (!(isUndefOrEqual(Arg, i+NumOps) ||
2489 (V2IsUndef && isUndefOrInRange(Arg, NumOps, NumOps*2)) ||
2490 (V2IsSplat && isUndefOrEqual(Arg, NumOps))))
2491 return false;
2492 }
2493
2494 return true;
2495}
2496
2497static bool isCommutedMOVL(SDNode *N, bool V2IsSplat = false,
2498 bool V2IsUndef = false) {
2499 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2500 return isCommutedMOVL(N->op_begin(), N->getNumOperands(),
2501 V2IsSplat, V2IsUndef);
2502}
2503
2504/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2505/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
2506bool X86::isMOVSHDUPMask(SDNode *N) {
2507 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2508
2509 if (N->getNumOperands() != 4)
2510 return false;
2511
2512 // Expect 1, 1, 3, 3
2513 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002514 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002515 if (Arg.getOpcode() == ISD::UNDEF) continue;
2516 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002517 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002518 if (Val != 1) return false;
2519 }
2520
2521 bool HasHi = false;
2522 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002523 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002524 if (Arg.getOpcode() == ISD::UNDEF) continue;
2525 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002526 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002527 if (Val != 3) return false;
2528 HasHi = true;
2529 }
2530
2531 // Don't use movshdup if it can be done with a shufps.
2532 return HasHi;
2533}
2534
2535/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2536/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
2537bool X86::isMOVSLDUPMask(SDNode *N) {
2538 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2539
2540 if (N->getNumOperands() != 4)
2541 return false;
2542
2543 // Expect 0, 0, 2, 2
2544 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002545 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002546 if (Arg.getOpcode() == ISD::UNDEF) continue;
2547 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002548 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002549 if (Val != 0) return false;
2550 }
2551
2552 bool HasHi = false;
2553 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002554 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002555 if (Arg.getOpcode() == ISD::UNDEF) continue;
2556 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002557 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002558 if (Val != 2) return false;
2559 HasHi = true;
2560 }
2561
2562 // Don't use movshdup if it can be done with a shufps.
2563 return HasHi;
2564}
2565
2566/// isIdentityMask - Return true if the specified VECTOR_SHUFFLE operand
2567/// specifies a identity operation on the LHS or RHS.
2568static bool isIdentityMask(SDNode *N, bool RHS = false) {
2569 unsigned NumElems = N->getNumOperands();
2570 for (unsigned i = 0; i < NumElems; ++i)
2571 if (!isUndefOrEqual(N->getOperand(i), i + (RHS ? NumElems : 0)))
2572 return false;
2573 return true;
2574}
2575
2576/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2577/// a splat of a single element.
2578static bool isSplatMask(SDNode *N) {
2579 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2580
2581 // This is a splat operation if each element of the permute is the same, and
2582 // if the value doesn't reference the second vector.
2583 unsigned NumElems = N->getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002584 SDValue ElementBase;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002585 unsigned i = 0;
2586 for (; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002587 SDValue Elt = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002588 if (isa<ConstantSDNode>(Elt)) {
2589 ElementBase = Elt;
2590 break;
2591 }
2592 }
2593
Gabor Greif1c80d112008-08-28 21:40:38 +00002594 if (!ElementBase.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002595 return false;
2596
2597 for (; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002598 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002599 if (Arg.getOpcode() == ISD::UNDEF) continue;
2600 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2601 if (Arg != ElementBase) return false;
2602 }
2603
2604 // Make sure it is a splat of the first vector operand.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002605 return cast<ConstantSDNode>(ElementBase)->getZExtValue() < NumElems;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002606}
2607
Mon P Wang532c9632008-12-23 04:03:27 +00002608/// getSplatMaskEltNo - Given a splat mask, return the index to the element
2609/// we want to splat.
2610static SDValue getSplatMaskEltNo(SDNode *N) {
2611 assert(isSplatMask(N) && "Not a splat mask");
2612 unsigned NumElems = N->getNumOperands();
2613 SDValue ElementBase;
2614 unsigned i = 0;
2615 for (; i != NumElems; ++i) {
2616 SDValue Elt = N->getOperand(i);
2617 if (isa<ConstantSDNode>(Elt))
2618 return Elt;
2619 }
2620 assert(0 && " No splat value found!");
2621 return SDValue();
2622}
2623
2624
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002625/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2626/// a splat of a single element and it's a 2 or 4 element mask.
2627bool X86::isSplatMask(SDNode *N) {
2628 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2629
2630 // We can only splat 64-bit, and 32-bit quantities with a single instruction.
2631 if (N->getNumOperands() != 4 && N->getNumOperands() != 2)
2632 return false;
2633 return ::isSplatMask(N);
2634}
2635
2636/// isSplatLoMask - Return true if the specified VECTOR_SHUFFLE operand
2637/// specifies a splat of zero element.
2638bool X86::isSplatLoMask(SDNode *N) {
2639 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2640
2641 for (unsigned i = 0, e = N->getNumOperands(); i < e; ++i)
2642 if (!isUndefOrEqual(N->getOperand(i), 0))
2643 return false;
2644 return true;
2645}
2646
Evan Chenga2497eb2008-09-25 20:50:48 +00002647/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2648/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
2649bool X86::isMOVDDUPMask(SDNode *N) {
2650 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2651
2652 unsigned e = N->getNumOperands() / 2;
2653 for (unsigned i = 0; i < e; ++i)
2654 if (!isUndefOrEqual(N->getOperand(i), i))
2655 return false;
2656 for (unsigned i = 0; i < e; ++i)
2657 if (!isUndefOrEqual(N->getOperand(e+i), i))
2658 return false;
2659 return true;
2660}
2661
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002662/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
2663/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUF* and SHUFP*
2664/// instructions.
2665unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
2666 unsigned NumOperands = N->getNumOperands();
2667 unsigned Shift = (NumOperands == 4) ? 2 : 1;
2668 unsigned Mask = 0;
2669 for (unsigned i = 0; i < NumOperands; ++i) {
2670 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002671 SDValue Arg = N->getOperand(NumOperands-i-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002672 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002673 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002674 if (Val >= NumOperands) Val -= NumOperands;
2675 Mask |= Val;
2676 if (i != NumOperands - 1)
2677 Mask <<= Shift;
2678 }
2679
2680 return Mask;
2681}
2682
2683/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
2684/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFHW
2685/// instructions.
2686unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
2687 unsigned Mask = 0;
2688 // 8 nodes, but we only care about the last 4.
2689 for (unsigned i = 7; i >= 4; --i) {
2690 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002691 SDValue Arg = N->getOperand(i);
Mon P Wang56d91642009-02-04 01:16:59 +00002692 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002693 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Mon P Wang56d91642009-02-04 01:16:59 +00002694 Mask |= (Val - 4);
2695 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002696 if (i != 4)
2697 Mask <<= 2;
2698 }
2699
2700 return Mask;
2701}
2702
2703/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
2704/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFLW
2705/// instructions.
2706unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
2707 unsigned Mask = 0;
2708 // 8 nodes, but we only care about the first 4.
2709 for (int i = 3; i >= 0; --i) {
2710 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002711 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002712 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002713 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002714 Mask |= Val;
2715 if (i != 0)
2716 Mask <<= 2;
2717 }
2718
2719 return Mask;
2720}
2721
Chris Lattnere6aa3862007-11-25 00:24:49 +00002722/// CommuteVectorShuffle - Swap vector_shuffle operands as well as
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002723/// values in ther permute mask.
Dan Gohman8181bd12008-07-27 21:46:04 +00002724static SDValue CommuteVectorShuffle(SDValue Op, SDValue &V1,
2725 SDValue &V2, SDValue &Mask,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002726 SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00002727 MVT VT = Op.getValueType();
2728 MVT MaskVT = Mask.getValueType();
2729 MVT EltVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002730 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002731 SmallVector<SDValue, 8> MaskVec;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00002732 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002733
2734 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002735 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002736 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00002737 MaskVec.push_back(DAG.getUNDEF(EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002738 continue;
2739 }
2740 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002741 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002742 if (Val < NumElems)
2743 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2744 else
2745 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2746 }
2747
2748 std::swap(V1, V2);
Evan Cheng907a2d22009-02-25 22:49:59 +00002749 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], NumElems);
Dale Johannesence0805b2009-02-03 19:33:06 +00002750 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002751}
2752
Evan Chenga6769df2007-12-07 21:30:01 +00002753/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
2754/// the two vector operands have swapped position.
Evan Chengfca29242007-12-07 08:07:39 +00002755static
Dale Johannesence0805b2009-02-03 19:33:06 +00002756SDValue CommuteVectorShuffleMask(SDValue Mask, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002757 MVT MaskVT = Mask.getValueType();
2758 MVT EltVT = MaskVT.getVectorElementType();
Evan Chengfca29242007-12-07 08:07:39 +00002759 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002760 SmallVector<SDValue, 8> MaskVec;
Evan Chengfca29242007-12-07 08:07:39 +00002761 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002762 SDValue Arg = Mask.getOperand(i);
Evan Chengfca29242007-12-07 08:07:39 +00002763 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00002764 MaskVec.push_back(DAG.getUNDEF(EltVT));
Evan Chengfca29242007-12-07 08:07:39 +00002765 continue;
2766 }
2767 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002768 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengfca29242007-12-07 08:07:39 +00002769 if (Val < NumElems)
2770 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2771 else
2772 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2773 }
Evan Cheng907a2d22009-02-25 22:49:59 +00002774 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], NumElems);
Evan Chengfca29242007-12-07 08:07:39 +00002775}
2776
2777
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002778/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
2779/// match movhlps. The lower half elements should come from upper half of
2780/// V1 (and in order), and the upper half elements should come from the upper
2781/// half of V2 (and in order).
2782static bool ShouldXformToMOVHLPS(SDNode *Mask) {
2783 unsigned NumElems = Mask->getNumOperands();
2784 if (NumElems != 4)
2785 return false;
2786 for (unsigned i = 0, e = 2; i != e; ++i)
2787 if (!isUndefOrEqual(Mask->getOperand(i), i+2))
2788 return false;
2789 for (unsigned i = 2; i != 4; ++i)
2790 if (!isUndefOrEqual(Mask->getOperand(i), i+4))
2791 return false;
2792 return true;
2793}
2794
2795/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng40ee6e52008-05-08 00:57:18 +00002796/// is promoted to a vector. It also returns the LoadSDNode by reference if
2797/// required.
2798static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Chenga2497eb2008-09-25 20:50:48 +00002799 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
2800 return false;
2801 N = N->getOperand(0).getNode();
2802 if (!ISD::isNON_EXTLoad(N))
2803 return false;
2804 if (LD)
2805 *LD = cast<LoadSDNode>(N);
2806 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002807}
2808
2809/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
2810/// match movlp{s|d}. The lower half elements should come from lower half of
2811/// V1 (and in order), and the upper half elements should come from the upper
2812/// half of V2 (and in order). And since V1 will become the source of the
2813/// MOVLP, it must be either a vector load or a scalar load to vector.
2814static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2, SDNode *Mask) {
2815 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
2816 return false;
2817 // Is V2 is a vector load, don't do this transformation. We will try to use
2818 // load folding shufps op.
2819 if (ISD::isNON_EXTLoad(V2))
2820 return false;
2821
2822 unsigned NumElems = Mask->getNumOperands();
2823 if (NumElems != 2 && NumElems != 4)
2824 return false;
2825 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
2826 if (!isUndefOrEqual(Mask->getOperand(i), i))
2827 return false;
2828 for (unsigned i = NumElems/2; i != NumElems; ++i)
2829 if (!isUndefOrEqual(Mask->getOperand(i), i+NumElems))
2830 return false;
2831 return true;
2832}
2833
2834/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
2835/// all the same.
2836static bool isSplatVector(SDNode *N) {
2837 if (N->getOpcode() != ISD::BUILD_VECTOR)
2838 return false;
2839
Dan Gohman8181bd12008-07-27 21:46:04 +00002840 SDValue SplatValue = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002841 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
2842 if (N->getOperand(i) != SplatValue)
2843 return false;
2844 return true;
2845}
2846
2847/// isUndefShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2848/// to an undef.
2849static bool isUndefShuffle(SDNode *N) {
2850 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2851 return false;
2852
Dan Gohman8181bd12008-07-27 21:46:04 +00002853 SDValue V1 = N->getOperand(0);
2854 SDValue V2 = N->getOperand(1);
2855 SDValue Mask = N->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002856 unsigned NumElems = Mask.getNumOperands();
2857 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002858 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002859 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002860 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002861 if (Val < NumElems && V1.getOpcode() != ISD::UNDEF)
2862 return false;
2863 else if (Val >= NumElems && V2.getOpcode() != ISD::UNDEF)
2864 return false;
2865 }
2866 }
2867 return true;
2868}
2869
2870/// isZeroNode - Returns true if Elt is a constant zero or a floating point
2871/// constant +0.0.
Dan Gohman8181bd12008-07-27 21:46:04 +00002872static inline bool isZeroNode(SDValue Elt) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002873 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002874 cast<ConstantSDNode>(Elt)->getZExtValue() == 0) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002875 (isa<ConstantFPSDNode>(Elt) &&
Dale Johannesendf8a8312007-08-31 04:03:46 +00002876 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002877}
2878
2879/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2880/// to an zero vector.
2881static bool isZeroShuffle(SDNode *N) {
2882 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2883 return false;
2884
Dan Gohman8181bd12008-07-27 21:46:04 +00002885 SDValue V1 = N->getOperand(0);
2886 SDValue V2 = N->getOperand(1);
2887 SDValue Mask = N->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002888 unsigned NumElems = Mask.getNumOperands();
2889 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002890 SDValue Arg = Mask.getOperand(i);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002891 if (Arg.getOpcode() == ISD::UNDEF)
2892 continue;
Scott Michel91099d62009-02-17 22:15:04 +00002893
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002894 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Chris Lattnere6aa3862007-11-25 00:24:49 +00002895 if (Idx < NumElems) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002896 unsigned Opc = V1.getNode()->getOpcode();
2897 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002898 continue;
2899 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greif1c80d112008-08-28 21:40:38 +00002900 !isZeroNode(V1.getNode()->getOperand(Idx)))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002901 return false;
2902 } else if (Idx >= NumElems) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002903 unsigned Opc = V2.getNode()->getOpcode();
2904 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002905 continue;
2906 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greif1c80d112008-08-28 21:40:38 +00002907 !isZeroNode(V2.getNode()->getOperand(Idx - NumElems)))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002908 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002909 }
2910 }
2911 return true;
2912}
2913
2914/// getZeroVector - Returns a vector of specified type with all zero elements.
2915///
Dale Johannesence0805b2009-02-03 19:33:06 +00002916static SDValue getZeroVector(MVT VT, bool HasSSE2, SelectionDAG &DAG,
2917 DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002918 assert(VT.isVector() && "Expected a vector type");
Scott Michel91099d62009-02-17 22:15:04 +00002919
Chris Lattnere6aa3862007-11-25 00:24:49 +00002920 // Always build zero vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2921 // type. This ensures they get CSE'd.
Dan Gohman8181bd12008-07-27 21:46:04 +00002922 SDValue Vec;
Duncan Sands92c43912008-06-06 12:08:01 +00002923 if (VT.getSizeInBits() == 64) { // MMX
Dan Gohman8181bd12008-07-27 21:46:04 +00002924 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00002925 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002926 } else if (HasSSE2) { // SSE2
Dan Gohman8181bd12008-07-27 21:46:04 +00002927 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00002928 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002929 } else { // SSE1
Dan Gohman8181bd12008-07-27 21:46:04 +00002930 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Evan Cheng907a2d22009-02-25 22:49:59 +00002931 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002932 }
Dale Johannesence0805b2009-02-03 19:33:06 +00002933 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002934}
2935
Chris Lattnere6aa3862007-11-25 00:24:49 +00002936/// getOnesVector - Returns a vector of specified type with all bits set.
2937///
Dale Johannesence0805b2009-02-03 19:33:06 +00002938static SDValue getOnesVector(MVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002939 assert(VT.isVector() && "Expected a vector type");
Scott Michel91099d62009-02-17 22:15:04 +00002940
Chris Lattnere6aa3862007-11-25 00:24:49 +00002941 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2942 // type. This ensures they get CSE'd.
Dan Gohman8181bd12008-07-27 21:46:04 +00002943 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
2944 SDValue Vec;
Duncan Sands92c43912008-06-06 12:08:01 +00002945 if (VT.getSizeInBits() == 64) // MMX
Evan Cheng907a2d22009-02-25 22:49:59 +00002946 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002947 else // SSE
Evan Cheng907a2d22009-02-25 22:49:59 +00002948 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dale Johannesence0805b2009-02-03 19:33:06 +00002949 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002950}
2951
2952
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002953/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
2954/// that point to V2 points to its first element.
Dan Gohman8181bd12008-07-27 21:46:04 +00002955static SDValue NormalizeMask(SDValue Mask, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002956 assert(Mask.getOpcode() == ISD::BUILD_VECTOR);
2957
2958 bool Changed = false;
Dan Gohman8181bd12008-07-27 21:46:04 +00002959 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002960 unsigned NumElems = Mask.getNumOperands();
2961 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002962 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002963 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002964 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002965 if (Val > NumElems) {
2966 Arg = DAG.getConstant(NumElems, Arg.getValueType());
2967 Changed = true;
2968 }
2969 }
2970 MaskVec.push_back(Arg);
2971 }
2972
2973 if (Changed)
Evan Cheng907a2d22009-02-25 22:49:59 +00002974 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getDebugLoc(),
2975 Mask.getValueType(),
2976 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002977 return Mask;
2978}
2979
2980/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
2981/// operation of specified width.
Dale Johannesence0805b2009-02-03 19:33:06 +00002982static SDValue getMOVLMask(unsigned NumElems, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002983 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2984 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002985
Dan Gohman8181bd12008-07-27 21:46:04 +00002986 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002987 MaskVec.push_back(DAG.getConstant(NumElems, BaseVT));
2988 for (unsigned i = 1; i != NumElems; ++i)
2989 MaskVec.push_back(DAG.getConstant(i, BaseVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00002990 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
2991 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002992}
2993
2994/// getUnpacklMask - Returns a vector_shuffle mask for an unpackl operation
2995/// of specified width.
Scott Michel91099d62009-02-17 22:15:04 +00002996static SDValue getUnpacklMask(unsigned NumElems, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00002997 DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002998 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2999 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003000 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003001 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
3002 MaskVec.push_back(DAG.getConstant(i, BaseVT));
3003 MaskVec.push_back(DAG.getConstant(i + NumElems, BaseVT));
3004 }
Evan Cheng907a2d22009-02-25 22:49:59 +00003005 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3006 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003007}
3008
3009/// getUnpackhMask - Returns a vector_shuffle mask for an unpackh operation
3010/// of specified width.
Dale Johannesence0805b2009-02-03 19:33:06 +00003011static SDValue getUnpackhMask(unsigned NumElems, SelectionDAG &DAG,
3012 DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003013 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3014 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003015 unsigned Half = NumElems/2;
Dan Gohman8181bd12008-07-27 21:46:04 +00003016 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003017 for (unsigned i = 0; i != Half; ++i) {
3018 MaskVec.push_back(DAG.getConstant(i + Half, BaseVT));
3019 MaskVec.push_back(DAG.getConstant(i + NumElems + Half, BaseVT));
3020 }
Evan Cheng907a2d22009-02-25 22:49:59 +00003021 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3022 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003023}
3024
Chris Lattner2d91b962008-03-09 01:05:04 +00003025/// getSwapEltZeroMask - Returns a vector_shuffle mask for a shuffle that swaps
3026/// element #0 of a vector with the specified index, leaving the rest of the
3027/// elements in place.
Dan Gohman8181bd12008-07-27 21:46:04 +00003028static SDValue getSwapEltZeroMask(unsigned NumElems, unsigned DestElt,
Dale Johannesence0805b2009-02-03 19:33:06 +00003029 SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003030 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3031 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003032 SmallVector<SDValue, 8> MaskVec;
Chris Lattner2d91b962008-03-09 01:05:04 +00003033 // Element #0 of the result gets the elt we are replacing.
3034 MaskVec.push_back(DAG.getConstant(DestElt, BaseVT));
3035 for (unsigned i = 1; i != NumElems; ++i)
3036 MaskVec.push_back(DAG.getConstant(i == DestElt ? 0 : i, BaseVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00003037 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3038 &MaskVec[0], MaskVec.size());
Chris Lattner2d91b962008-03-09 01:05:04 +00003039}
3040
Evan Chengbf8b2c52008-04-05 00:30:36 +00003041/// PromoteSplat - Promote a splat of v4f32, v8i16 or v16i8 to v4i32.
Dan Gohman8181bd12008-07-27 21:46:04 +00003042static SDValue PromoteSplat(SDValue Op, SelectionDAG &DAG, bool HasSSE2) {
Duncan Sands92c43912008-06-06 12:08:01 +00003043 MVT PVT = HasSSE2 ? MVT::v4i32 : MVT::v4f32;
3044 MVT VT = Op.getValueType();
Evan Chengbf8b2c52008-04-05 00:30:36 +00003045 if (PVT == VT)
3046 return Op;
Dan Gohman8181bd12008-07-27 21:46:04 +00003047 SDValue V1 = Op.getOperand(0);
3048 SDValue Mask = Op.getOperand(2);
Mon P Wang532c9632008-12-23 04:03:27 +00003049 unsigned MaskNumElems = Mask.getNumOperands();
3050 unsigned NumElems = MaskNumElems;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003051 DebugLoc dl = Op.getDebugLoc();
Evan Chengbf8b2c52008-04-05 00:30:36 +00003052 // Special handling of v4f32 -> v4i32.
3053 if (VT != MVT::v4f32) {
Mon P Wang532c9632008-12-23 04:03:27 +00003054 // Find which element we want to splat.
3055 SDNode* EltNoNode = getSplatMaskEltNo(Mask.getNode()).getNode();
3056 unsigned EltNo = cast<ConstantSDNode>(EltNoNode)->getZExtValue();
3057 // unpack elements to the correct location
Evan Chengbf8b2c52008-04-05 00:30:36 +00003058 while (NumElems > 4) {
Mon P Wang532c9632008-12-23 04:03:27 +00003059 if (EltNo < NumElems/2) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003060 Mask = getUnpacklMask(MaskNumElems, DAG, dl);
Mon P Wang532c9632008-12-23 04:03:27 +00003061 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00003062 Mask = getUnpackhMask(MaskNumElems, DAG, dl);
Mon P Wang532c9632008-12-23 04:03:27 +00003063 EltNo -= NumElems/2;
3064 }
Dale Johannesence0805b2009-02-03 19:33:06 +00003065 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V1, Mask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00003066 NumElems >>= 1;
3067 }
Mon P Wang532c9632008-12-23 04:03:27 +00003068 SDValue Cst = DAG.getConstant(EltNo, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00003069 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003070 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003071
Dale Johannesence0805b2009-02-03 19:33:06 +00003072 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
3073 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, PVT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003074 DAG.getUNDEF(PVT), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00003075 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Shuffle);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003076}
3077
Evan Chenga2497eb2008-09-25 20:50:48 +00003078/// isVectorLoad - Returns true if the node is a vector load, a scalar
3079/// load that's promoted to vector, or a load bitcasted.
3080static bool isVectorLoad(SDValue Op) {
3081 assert(Op.getValueType().isVector() && "Expected a vector type");
3082 if (Op.getOpcode() == ISD::SCALAR_TO_VECTOR ||
3083 Op.getOpcode() == ISD::BIT_CONVERT) {
3084 return isa<LoadSDNode>(Op.getOperand(0));
3085 }
3086 return isa<LoadSDNode>(Op);
3087}
3088
3089
3090/// CanonicalizeMovddup - Cannonicalize movddup shuffle to v2f64.
3091///
3092static SDValue CanonicalizeMovddup(SDValue Op, SDValue V1, SDValue Mask,
3093 SelectionDAG &DAG, bool HasSSE3) {
3094 // If we have sse3 and shuffle has more than one use or input is a load, then
3095 // use movddup. Otherwise, use movlhps.
3096 bool UseMovddup = HasSSE3 && (!Op.hasOneUse() || isVectorLoad(V1));
3097 MVT PVT = UseMovddup ? MVT::v2f64 : MVT::v4f32;
3098 MVT VT = Op.getValueType();
3099 if (VT == PVT)
3100 return Op;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003101 DebugLoc dl = Op.getDebugLoc();
Evan Chenga2497eb2008-09-25 20:50:48 +00003102 unsigned NumElems = PVT.getVectorNumElements();
3103 if (NumElems == 2) {
3104 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00003105 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Chenga2497eb2008-09-25 20:50:48 +00003106 } else {
3107 assert(NumElems == 4);
3108 SDValue Cst0 = DAG.getTargetConstant(0, MVT::i32);
3109 SDValue Cst1 = DAG.getTargetConstant(1, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00003110 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
3111 Cst0, Cst1, Cst0, Cst1);
Evan Chenga2497eb2008-09-25 20:50:48 +00003112 }
3113
Dale Johannesence0805b2009-02-03 19:33:06 +00003114 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
3115 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, PVT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003116 DAG.getUNDEF(PVT), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00003117 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Shuffle);
Evan Chenga2497eb2008-09-25 20:50:48 +00003118}
3119
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003120/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattnere6aa3862007-11-25 00:24:49 +00003121/// vector of zero or undef vector. This produces a shuffle where the low
3122/// element of V2 is swizzled into the zero/undef vector, landing at element
3123/// 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 +00003124static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Cheng8c590372008-05-15 08:39:06 +00003125 bool isZero, bool HasSSE2,
3126 SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003127 DebugLoc dl = V2.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00003128 MVT VT = V2.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003129 SDValue V1 = isZero
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003130 ? getZeroVector(VT, HasSSE2, DAG, dl) : DAG.getUNDEF(VT);
Duncan Sands92c43912008-06-06 12:08:01 +00003131 unsigned NumElems = V2.getValueType().getVectorNumElements();
3132 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3133 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003134 SmallVector<SDValue, 16> MaskVec;
Chris Lattnere6aa3862007-11-25 00:24:49 +00003135 for (unsigned i = 0; i != NumElems; ++i)
3136 if (i == Idx) // If this is the insertion idx, put the low elt of V2 here.
3137 MaskVec.push_back(DAG.getConstant(NumElems, EVT));
3138 else
3139 MaskVec.push_back(DAG.getConstant(i, EVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00003140 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3141 &MaskVec[0], MaskVec.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00003142 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003143}
3144
Evan Chengdea99362008-05-29 08:22:04 +00003145/// getNumOfConsecutiveZeros - Return the number of elements in a result of
3146/// a shuffle that is zero.
3147static
Dan Gohman8181bd12008-07-27 21:46:04 +00003148unsigned getNumOfConsecutiveZeros(SDValue Op, SDValue Mask,
Evan Chengdea99362008-05-29 08:22:04 +00003149 unsigned NumElems, bool Low,
3150 SelectionDAG &DAG) {
3151 unsigned NumZeros = 0;
3152 for (unsigned i = 0; i < NumElems; ++i) {
Evan Cheng57db53b2008-06-25 20:52:59 +00003153 unsigned Index = Low ? i : NumElems-i-1;
Dan Gohman8181bd12008-07-27 21:46:04 +00003154 SDValue Idx = Mask.getOperand(Index);
Evan Chengdea99362008-05-29 08:22:04 +00003155 if (Idx.getOpcode() == ISD::UNDEF) {
3156 ++NumZeros;
3157 continue;
3158 }
Gabor Greif1c80d112008-08-28 21:40:38 +00003159 SDValue Elt = DAG.getShuffleScalarElt(Op.getNode(), Index);
3160 if (Elt.getNode() && isZeroNode(Elt))
Evan Chengdea99362008-05-29 08:22:04 +00003161 ++NumZeros;
3162 else
3163 break;
3164 }
3165 return NumZeros;
3166}
3167
3168/// isVectorShift - Returns true if the shuffle can be implemented as a
3169/// logical left or right shift of a vector.
Dan Gohman8181bd12008-07-27 21:46:04 +00003170static bool isVectorShift(SDValue Op, SDValue Mask, SelectionDAG &DAG,
3171 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Evan Chengdea99362008-05-29 08:22:04 +00003172 unsigned NumElems = Mask.getNumOperands();
3173
3174 isLeft = true;
3175 unsigned NumZeros= getNumOfConsecutiveZeros(Op, Mask, NumElems, true, DAG);
3176 if (!NumZeros) {
3177 isLeft = false;
3178 NumZeros = getNumOfConsecutiveZeros(Op, Mask, NumElems, false, DAG);
3179 if (!NumZeros)
3180 return false;
3181 }
3182
3183 bool SeenV1 = false;
3184 bool SeenV2 = false;
3185 for (unsigned i = NumZeros; i < NumElems; ++i) {
3186 unsigned Val = isLeft ? (i - NumZeros) : i;
Dan Gohman8181bd12008-07-27 21:46:04 +00003187 SDValue Idx = Mask.getOperand(isLeft ? i : (i - NumZeros));
Evan Chengdea99362008-05-29 08:22:04 +00003188 if (Idx.getOpcode() == ISD::UNDEF)
3189 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003190 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Chengdea99362008-05-29 08:22:04 +00003191 if (Index < NumElems)
3192 SeenV1 = true;
3193 else {
3194 Index -= NumElems;
3195 SeenV2 = true;
3196 }
3197 if (Index != Val)
3198 return false;
3199 }
3200 if (SeenV1 && SeenV2)
3201 return false;
3202
3203 ShVal = SeenV1 ? Op.getOperand(0) : Op.getOperand(1);
3204 ShAmt = NumZeros;
3205 return true;
3206}
3207
3208
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003209/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3210///
Dan Gohman8181bd12008-07-27 21:46:04 +00003211static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003212 unsigned NumNonZero, unsigned NumZero,
3213 SelectionDAG &DAG, TargetLowering &TLI) {
3214 if (NumNonZero > 8)
Dan Gohman8181bd12008-07-27 21:46:04 +00003215 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003216
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003217 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00003218 SDValue V(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003219 bool First = true;
3220 for (unsigned i = 0; i < 16; ++i) {
3221 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3222 if (ThisIsNonZero && First) {
3223 if (NumZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003224 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003225 else
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003226 V = DAG.getUNDEF(MVT::v8i16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003227 First = false;
3228 }
3229
3230 if ((i & 1) != 0) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003231 SDValue ThisElt(0, 0), LastElt(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003232 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3233 if (LastIsNonZero) {
Scott Michel91099d62009-02-17 22:15:04 +00003234 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00003235 MVT::i16, Op.getOperand(i-1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003236 }
3237 if (ThisIsNonZero) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003238 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3239 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003240 ThisElt, DAG.getConstant(8, MVT::i8));
3241 if (LastIsNonZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003242 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003243 } else
3244 ThisElt = LastElt;
3245
Gabor Greif1c80d112008-08-28 21:40:38 +00003246 if (ThisElt.getNode())
Dale Johannesence0805b2009-02-03 19:33:06 +00003247 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner5872a362008-01-17 07:00:52 +00003248 DAG.getIntPtrConstant(i/2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003249 }
3250 }
3251
Dale Johannesence0805b2009-02-03 19:33:06 +00003252 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003253}
3254
3255/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
3256///
Dan Gohman8181bd12008-07-27 21:46:04 +00003257static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003258 unsigned NumNonZero, unsigned NumZero,
3259 SelectionDAG &DAG, TargetLowering &TLI) {
3260 if (NumNonZero > 4)
Dan Gohman8181bd12008-07-27 21:46:04 +00003261 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003262
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003263 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00003264 SDValue V(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003265 bool First = true;
3266 for (unsigned i = 0; i < 8; ++i) {
3267 bool isNonZero = (NonZeros & (1 << i)) != 0;
3268 if (isNonZero) {
3269 if (First) {
3270 if (NumZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003271 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003272 else
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003273 V = DAG.getUNDEF(MVT::v8i16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003274 First = false;
3275 }
Scott Michel91099d62009-02-17 22:15:04 +00003276 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00003277 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner5872a362008-01-17 07:00:52 +00003278 DAG.getIntPtrConstant(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003279 }
3280 }
3281
3282 return V;
3283}
3284
Evan Chengdea99362008-05-29 08:22:04 +00003285/// getVShift - Return a vector logical shift node.
3286///
Dan Gohman8181bd12008-07-27 21:46:04 +00003287static SDValue getVShift(bool isLeft, MVT VT, SDValue SrcOp,
Evan Chengdea99362008-05-29 08:22:04 +00003288 unsigned NumBits, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003289 const TargetLowering &TLI, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003290 bool isMMX = VT.getSizeInBits() == 64;
3291 MVT ShVT = isMMX ? MVT::v1i64 : MVT::v2i64;
Evan Chengdea99362008-05-29 08:22:04 +00003292 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Dale Johannesence0805b2009-02-03 19:33:06 +00003293 SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp);
3294 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3295 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif825aa892008-08-28 23:19:51 +00003296 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengdea99362008-05-29 08:22:04 +00003297}
3298
Dan Gohman8181bd12008-07-27 21:46:04 +00003299SDValue
3300X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003301 DebugLoc dl = Op.getDebugLoc();
Chris Lattnere6aa3862007-11-25 00:24:49 +00003302 // All zero's are handled with pxor, all one's are handled with pcmpeqd.
Gabor Greif825aa892008-08-28 23:19:51 +00003303 if (ISD::isBuildVectorAllZeros(Op.getNode())
3304 || ISD::isBuildVectorAllOnes(Op.getNode())) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003305 // Canonicalize this to either <4 x i32> or <2 x i32> (SSE vs MMX) to
3306 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
3307 // eliminated on x86-32 hosts.
3308 if (Op.getValueType() == MVT::v4i32 || Op.getValueType() == MVT::v2i32)
3309 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003310
Gabor Greif1c80d112008-08-28 21:40:38 +00003311 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00003312 return getOnesVector(Op.getValueType(), DAG, dl);
3313 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattnere6aa3862007-11-25 00:24:49 +00003314 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003315
Duncan Sands92c43912008-06-06 12:08:01 +00003316 MVT VT = Op.getValueType();
3317 MVT EVT = VT.getVectorElementType();
3318 unsigned EVTBits = EVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003319
3320 unsigned NumElems = Op.getNumOperands();
3321 unsigned NumZero = 0;
3322 unsigned NumNonZero = 0;
3323 unsigned NonZeros = 0;
Chris Lattner92bdcb52008-03-08 22:48:29 +00003324 bool IsAllConstants = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00003325 SmallSet<SDValue, 8> Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003326 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003327 SDValue Elt = Op.getOperand(i);
Evan Chengc1073492007-12-12 06:45:40 +00003328 if (Elt.getOpcode() == ISD::UNDEF)
3329 continue;
3330 Values.insert(Elt);
3331 if (Elt.getOpcode() != ISD::Constant &&
3332 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattner92bdcb52008-03-08 22:48:29 +00003333 IsAllConstants = false;
Evan Chengc1073492007-12-12 06:45:40 +00003334 if (isZeroNode(Elt))
3335 NumZero++;
3336 else {
3337 NonZeros |= (1 << i);
3338 NumNonZero++;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003339 }
3340 }
3341
3342 if (NumNonZero == 0) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003343 // All undef vector. Return an UNDEF. All zero vectors were handled above.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003344 return DAG.getUNDEF(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003345 }
3346
Chris Lattner66a4dda2008-03-09 05:42:06 +00003347 // Special case for single non-zero, non-undef, element.
Evan Chengc1073492007-12-12 06:45:40 +00003348 if (NumNonZero == 1 && NumElems <= 4) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003349 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman8181bd12008-07-27 21:46:04 +00003350 SDValue Item = Op.getOperand(Idx);
Scott Michel91099d62009-02-17 22:15:04 +00003351
Chris Lattner2d91b962008-03-09 01:05:04 +00003352 // If this is an insertion of an i64 value on x86-32, and if the top bits of
3353 // the value are obviously zero, truncate the value to i32 and do the
3354 // insertion that way. Only do this if the value is non-constant or if the
3355 // value is a constant being inserted into element 0. It is cheaper to do
3356 // a constant pool load than it is to do a movd + shuffle.
3357 if (EVT == MVT::i64 && !Subtarget->is64Bit() &&
3358 (!IsAllConstants || Idx == 0)) {
3359 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
3360 // Handle MMX and SSE both.
Duncan Sands92c43912008-06-06 12:08:01 +00003361 MVT VecVT = VT == MVT::v2i64 ? MVT::v4i32 : MVT::v2i32;
3362 unsigned VecElts = VT == MVT::v2i64 ? 4 : 2;
Scott Michel91099d62009-02-17 22:15:04 +00003363
Chris Lattner2d91b962008-03-09 01:05:04 +00003364 // Truncate the value (which may itself be a constant) to i32, and
3365 // convert it to a vector with movd (S2V+shuffle to zero extend).
Dale Johannesence0805b2009-02-03 19:33:06 +00003366 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
3367 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Cheng8c590372008-05-15 08:39:06 +00003368 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3369 Subtarget->hasSSE2(), DAG);
Scott Michel91099d62009-02-17 22:15:04 +00003370
Chris Lattner2d91b962008-03-09 01:05:04 +00003371 // Now we have our 32-bit value zero extended in the low element of
3372 // a vector. If Idx != 0, swizzle it into place.
3373 if (Idx != 0) {
Scott Michel91099d62009-02-17 22:15:04 +00003374 SDValue Ops[] = {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003375 Item, DAG.getUNDEF(Item.getValueType()),
Dale Johannesence0805b2009-02-03 19:33:06 +00003376 getSwapEltZeroMask(VecElts, Idx, DAG, dl)
Chris Lattner2d91b962008-03-09 01:05:04 +00003377 };
Dale Johannesence0805b2009-02-03 19:33:06 +00003378 Item = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VecVT, Ops, 3);
Chris Lattner2d91b962008-03-09 01:05:04 +00003379 }
Dale Johannesence0805b2009-02-03 19:33:06 +00003380 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item);
Chris Lattner2d91b962008-03-09 01:05:04 +00003381 }
3382 }
Scott Michel91099d62009-02-17 22:15:04 +00003383
Chris Lattnerac914892008-03-08 22:59:52 +00003384 // If we have a constant or non-constant insertion into the low element of
3385 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
3386 // the rest of the elements. This will be matched as movd/movq/movss/movsd
3387 // depending on what the source datatype is. Because we can only get here
3388 // when NumElems <= 4, this only needs to handle i32/f32/i64/f64.
3389 if (Idx == 0 &&
3390 // Don't do this for i64 values on x86-32.
3391 (EVT != MVT::i64 || Subtarget->is64Bit())) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003392 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003393 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Evan Cheng8c590372008-05-15 08:39:06 +00003394 return getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3395 Subtarget->hasSSE2(), DAG);
Chris Lattner92bdcb52008-03-08 22:48:29 +00003396 }
Evan Chengdea99362008-05-29 08:22:04 +00003397
3398 // Is it a vector logical left shift?
3399 if (NumElems == 2 && Idx == 1 &&
3400 isZeroNode(Op.getOperand(0)) && !isZeroNode(Op.getOperand(1))) {
Duncan Sands92c43912008-06-06 12:08:01 +00003401 unsigned NumBits = VT.getSizeInBits();
Evan Chengdea99362008-05-29 08:22:04 +00003402 return getVShift(true, VT,
Scott Michel91099d62009-02-17 22:15:04 +00003403 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00003404 VT, Op.getOperand(1)),
Dale Johannesence0805b2009-02-03 19:33:06 +00003405 NumBits/2, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00003406 }
Scott Michel91099d62009-02-17 22:15:04 +00003407
Chris Lattner92bdcb52008-03-08 22:48:29 +00003408 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman8181bd12008-07-27 21:46:04 +00003409 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003410
Chris Lattnerac914892008-03-08 22:59:52 +00003411 // Otherwise, if this is a vector with i32 or f32 elements, and the element
3412 // is a non-constant being inserted into an element other than the low one,
3413 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
3414 // movd/movss) to move this into the low element, then shuffle it into
3415 // place.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003416 if (EVTBits == 32) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003417 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michel91099d62009-02-17 22:15:04 +00003418
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003419 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Cheng8c590372008-05-15 08:39:06 +00003420 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3421 Subtarget->hasSSE2(), DAG);
Duncan Sands92c43912008-06-06 12:08:01 +00003422 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3423 MVT MaskEVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003424 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003425 for (unsigned i = 0; i < NumElems; i++)
3426 MaskVec.push_back(DAG.getConstant((i == Idx) ? 0 : 1, MaskEVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00003427 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3428 &MaskVec[0], MaskVec.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00003429 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, Item,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003430 DAG.getUNDEF(VT), Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003431 }
3432 }
3433
Chris Lattner66a4dda2008-03-09 05:42:06 +00003434 // Splat is obviously ok. Let legalizer expand it to a shuffle.
3435 if (Values.size() == 1)
Dan Gohman8181bd12008-07-27 21:46:04 +00003436 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00003437
Dan Gohman21463242007-07-24 22:55:08 +00003438 // A vector full of immediates; various special cases are already
3439 // handled, so this is best done with a single constant-pool load.
Chris Lattner92bdcb52008-03-08 22:48:29 +00003440 if (IsAllConstants)
Dan Gohman8181bd12008-07-27 21:46:04 +00003441 return SDValue();
Dan Gohman21463242007-07-24 22:55:08 +00003442
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003443 // Let legalizer expand 2-wide build_vectors.
Evan Cheng40ee6e52008-05-08 00:57:18 +00003444 if (EVTBits == 64) {
3445 if (NumNonZero == 1) {
3446 // One half is zero or undef.
3447 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesence0805b2009-02-03 19:33:06 +00003448 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng40ee6e52008-05-08 00:57:18 +00003449 Op.getOperand(Idx));
Evan Cheng8c590372008-05-15 08:39:06 +00003450 return getShuffleVectorZeroOrUndef(V2, Idx, true,
3451 Subtarget->hasSSE2(), DAG);
Evan Cheng40ee6e52008-05-08 00:57:18 +00003452 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003453 return SDValue();
Evan Cheng40ee6e52008-05-08 00:57:18 +00003454 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003455
3456 // If element VT is < 32 bits, convert it to inserts into a zero vector.
3457 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003458 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003459 *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00003460 if (V.getNode()) return V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003461 }
3462
3463 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003464 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003465 *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00003466 if (V.getNode()) return V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003467 }
3468
3469 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman8181bd12008-07-27 21:46:04 +00003470 SmallVector<SDValue, 8> V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003471 V.resize(NumElems);
3472 if (NumElems == 4 && NumZero > 0) {
3473 for (unsigned i = 0; i < 4; ++i) {
3474 bool isZero = !(NonZeros & (1 << i));
3475 if (isZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003476 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003477 else
Dale Johannesence0805b2009-02-03 19:33:06 +00003478 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003479 }
3480
3481 for (unsigned i = 0; i < 2; ++i) {
3482 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
3483 default: break;
3484 case 0:
3485 V[i] = V[i*2]; // Must be a zero vector.
3486 break;
3487 case 1:
Dale Johannesence0805b2009-02-03 19:33:06 +00003488 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2+1], V[i*2],
3489 getMOVLMask(NumElems, DAG, dl));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003490 break;
3491 case 2:
Dale Johannesence0805b2009-02-03 19:33:06 +00003492 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2], V[i*2+1],
3493 getMOVLMask(NumElems, DAG, dl));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003494 break;
3495 case 3:
Dale Johannesence0805b2009-02-03 19:33:06 +00003496 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2], V[i*2+1],
3497 getUnpacklMask(NumElems, DAG, dl));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003498 break;
3499 }
3500 }
3501
Duncan Sands92c43912008-06-06 12:08:01 +00003502 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3503 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003504 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003505 bool Reverse = (NonZeros & 0x3) == 2;
3506 for (unsigned i = 0; i < 2; ++i)
3507 if (Reverse)
3508 MaskVec.push_back(DAG.getConstant(1-i, EVT));
3509 else
3510 MaskVec.push_back(DAG.getConstant(i, EVT));
3511 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
3512 for (unsigned i = 0; i < 2; ++i)
3513 if (Reverse)
3514 MaskVec.push_back(DAG.getConstant(1-i+NumElems, EVT));
3515 else
3516 MaskVec.push_back(DAG.getConstant(i+NumElems, EVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00003517 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3518 &MaskVec[0], MaskVec.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00003519 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[0], V[1], ShufMask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003520 }
3521
3522 if (Values.size() > 2) {
3523 // Expand into a number of unpckl*.
3524 // e.g. for v4f32
3525 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
3526 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
3527 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Dale Johannesence0805b2009-02-03 19:33:06 +00003528 SDValue UnpckMask = getUnpacklMask(NumElems, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003529 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesence0805b2009-02-03 19:33:06 +00003530 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003531 NumElems >>= 1;
3532 while (NumElems != 0) {
3533 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesence0805b2009-02-03 19:33:06 +00003534 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i], V[i + NumElems],
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003535 UnpckMask);
3536 NumElems >>= 1;
3537 }
3538 return V[0];
3539 }
3540
Dan Gohman8181bd12008-07-27 21:46:04 +00003541 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003542}
3543
Nate Begeman2c87c422009-02-23 08:49:38 +00003544// v8i16 shuffles - Prefer shuffles in the following order:
3545// 1. [all] pshuflw, pshufhw, optional move
3546// 2. [ssse3] 1 x pshufb
3547// 3. [ssse3] 2 x pshufb + 1 x por
3548// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Evan Chengfca29242007-12-07 08:07:39 +00003549static
Dan Gohman8181bd12008-07-27 21:46:04 +00003550SDValue LowerVECTOR_SHUFFLEv8i16(SDValue V1, SDValue V2,
Bill Wendling2c7cd592008-08-21 22:35:37 +00003551 SDValue PermMask, SelectionDAG &DAG,
Nate Begeman2c87c422009-02-23 08:49:38 +00003552 X86TargetLowering &TLI, DebugLoc dl) {
Gabor Greif1c80d112008-08-28 21:40:38 +00003553 SmallVector<SDValue, 8> MaskElts(PermMask.getNode()->op_begin(),
3554 PermMask.getNode()->op_end());
Nate Begeman2c87c422009-02-23 08:49:38 +00003555 SmallVector<int, 8> MaskVals;
Evan Cheng75184a92007-12-11 01:46:18 +00003556
Nate Begeman2c87c422009-02-23 08:49:38 +00003557 // Determine if more than 1 of the words in each of the low and high quadwords
3558 // of the result come from the same quadword of one of the two inputs. Undef
3559 // mask values count as coming from any quadword, for better codegen.
3560 SmallVector<unsigned, 4> LoQuad(4);
3561 SmallVector<unsigned, 4> HiQuad(4);
3562 BitVector InputQuads(4);
3563 for (unsigned i = 0; i < 8; ++i) {
3564 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Dan Gohman8181bd12008-07-27 21:46:04 +00003565 SDValue Elt = MaskElts[i];
Nate Begeman2c87c422009-02-23 08:49:38 +00003566 int EltIdx = Elt.getOpcode() == ISD::UNDEF ? -1 :
3567 cast<ConstantSDNode>(Elt)->getZExtValue();
3568 MaskVals.push_back(EltIdx);
3569 if (EltIdx < 0) {
3570 ++Quad[0];
3571 ++Quad[1];
3572 ++Quad[2];
3573 ++Quad[3];
Evan Cheng75184a92007-12-11 01:46:18 +00003574 continue;
Nate Begeman2c87c422009-02-23 08:49:38 +00003575 }
3576 ++Quad[EltIdx / 4];
3577 InputQuads.set(EltIdx / 4);
Evan Cheng75184a92007-12-11 01:46:18 +00003578 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003579
Nate Begeman2c87c422009-02-23 08:49:38 +00003580 int BestLoQuad = -1;
Evan Cheng75184a92007-12-11 01:46:18 +00003581 unsigned MaxQuad = 1;
3582 for (unsigned i = 0; i < 4; ++i) {
Nate Begeman2c87c422009-02-23 08:49:38 +00003583 if (LoQuad[i] > MaxQuad) {
3584 BestLoQuad = i;
3585 MaxQuad = LoQuad[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003586 }
Evan Chengfca29242007-12-07 08:07:39 +00003587 }
3588
Nate Begeman2c87c422009-02-23 08:49:38 +00003589 int BestHiQuad = -1;
Evan Cheng75184a92007-12-11 01:46:18 +00003590 MaxQuad = 1;
3591 for (unsigned i = 0; i < 4; ++i) {
Nate Begeman2c87c422009-02-23 08:49:38 +00003592 if (HiQuad[i] > MaxQuad) {
3593 BestHiQuad = i;
3594 MaxQuad = HiQuad[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003595 }
3596 }
3597
Nate Begeman2c87c422009-02-23 08:49:38 +00003598 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
3599 // of the two input vectors, shuffle them into one input vector so only a
3600 // single pshufb instruction is necessary. If There are more than 2 input
3601 // quads, disable the next transformation since it does not help SSSE3.
3602 bool V1Used = InputQuads[0] || InputQuads[1];
3603 bool V2Used = InputQuads[2] || InputQuads[3];
3604 if (TLI.getSubtarget()->hasSSSE3()) {
3605 if (InputQuads.count() == 2 && V1Used && V2Used) {
3606 BestLoQuad = InputQuads.find_first();
3607 BestHiQuad = InputQuads.find_next(BestLoQuad);
3608 }
3609 if (InputQuads.count() > 2) {
3610 BestLoQuad = -1;
3611 BestHiQuad = -1;
3612 }
3613 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003614
Nate Begeman2c87c422009-02-23 08:49:38 +00003615 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
3616 // the shuffle mask. If a quad is scored as -1, that means that it contains
3617 // words from all 4 input quadwords.
3618 SDValue NewV;
3619 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
3620 SmallVector<SDValue,8> MaskV;
3621 MaskV.push_back(DAG.getConstant(BestLoQuad < 0 ? 0 : BestLoQuad, MVT::i64));
3622 MaskV.push_back(DAG.getConstant(BestHiQuad < 0 ? 1 : BestHiQuad, MVT::i64));
Evan Cheng907a2d22009-02-25 22:49:59 +00003623 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64, &MaskV[0], 2);
Nate Begeman2c87c422009-02-23 08:49:38 +00003624
Dale Johannesence0805b2009-02-03 19:33:06 +00003625 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2i64,
Nate Begeman2c87c422009-02-23 08:49:38 +00003626 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1),
3627 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00003628 NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV);
Evan Cheng75184a92007-12-11 01:46:18 +00003629
Nate Begeman2c87c422009-02-23 08:49:38 +00003630 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
3631 // source words for the shuffle, to aid later transformations.
3632 bool AllWordsInNewV = true;
Evan Cheng75184a92007-12-11 01:46:18 +00003633 for (unsigned i = 0; i != 8; ++i) {
Nate Begeman2c87c422009-02-23 08:49:38 +00003634 int idx = MaskVals[i];
3635 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng75184a92007-12-11 01:46:18 +00003636 continue;
Nate Begeman2c87c422009-02-23 08:49:38 +00003637 AllWordsInNewV = false;
3638 break;
Evan Cheng75184a92007-12-11 01:46:18 +00003639 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003640
Nate Begeman2c87c422009-02-23 08:49:38 +00003641 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
3642 if (AllWordsInNewV) {
3643 for (int i = 0; i != 8; ++i) {
3644 int idx = MaskVals[i];
3645 if (idx < 0)
Evan Cheng75184a92007-12-11 01:46:18 +00003646 continue;
Nate Begeman2c87c422009-02-23 08:49:38 +00003647 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
3648 if ((idx != i) && idx < 4)
3649 pshufhw = false;
3650 if ((idx != i) && idx > 3)
3651 pshuflw = false;
Evan Cheng75184a92007-12-11 01:46:18 +00003652 }
Nate Begeman2c87c422009-02-23 08:49:38 +00003653 V1 = NewV;
3654 V2Used = false;
3655 BestLoQuad = 0;
3656 BestHiQuad = 1;
Evan Chengfca29242007-12-07 08:07:39 +00003657 }
Evan Cheng75184a92007-12-11 01:46:18 +00003658
Nate Begeman2c87c422009-02-23 08:49:38 +00003659 // If we've eliminated the use of V2, and the new mask is a pshuflw or
3660 // pshufhw, that's as cheap as it gets. Return the new shuffle.
3661 if (pshufhw || pshuflw) {
3662 MaskV.clear();
3663 for (unsigned i = 0; i != 8; ++i)
3664 MaskV.push_back((MaskVals[i] < 0) ? DAG.getUNDEF(MVT::i16)
3665 : DAG.getConstant(MaskVals[i],
3666 MVT::i16));
3667 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, NewV,
3668 DAG.getUNDEF(MVT::v8i16),
Evan Cheng907a2d22009-02-25 22:49:59 +00003669 DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i16,
3670 &MaskV[0], 8));
Evan Cheng75184a92007-12-11 01:46:18 +00003671 }
Evan Cheng75184a92007-12-11 01:46:18 +00003672 }
Nate Begeman2c87c422009-02-23 08:49:38 +00003673
3674 // If we have SSSE3, and all words of the result are from 1 input vector,
3675 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
3676 // is present, fall back to case 4.
3677 if (TLI.getSubtarget()->hasSSSE3()) {
3678 SmallVector<SDValue,16> pshufbMask;
3679
3680 // If we have elements from both input vectors, set the high bit of the
3681 // shuffle mask element to zero out elements that come from V2 in the V1
3682 // mask, and elements that come from V1 in the V2 mask, so that the two
3683 // results can be OR'd together.
3684 bool TwoInputs = V1Used && V2Used;
3685 for (unsigned i = 0; i != 8; ++i) {
3686 int EltIdx = MaskVals[i] * 2;
3687 if (TwoInputs && (EltIdx >= 16)) {
3688 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3689 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3690 continue;
3691 }
3692 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
3693 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
3694 }
3695 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V1);
3696 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00003697 DAG.getNode(ISD::BUILD_VECTOR, dl,
3698 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003699 if (!TwoInputs)
3700 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3701
3702 // Calculate the shuffle mask for the second input, shuffle it, and
3703 // OR it with the first shuffled input.
3704 pshufbMask.clear();
3705 for (unsigned i = 0; i != 8; ++i) {
3706 int EltIdx = MaskVals[i] * 2;
3707 if (EltIdx < 16) {
3708 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3709 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3710 continue;
3711 }
3712 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
3713 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
3714 }
3715 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V2);
3716 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00003717 DAG.getNode(ISD::BUILD_VECTOR, dl,
3718 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003719 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
3720 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3721 }
3722
3723 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
3724 // and update MaskVals with new element order.
3725 BitVector InOrder(8);
3726 if (BestLoQuad >= 0) {
3727 SmallVector<SDValue, 8> MaskV;
3728 for (int i = 0; i != 4; ++i) {
3729 int idx = MaskVals[i];
3730 if (idx < 0) {
3731 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3732 InOrder.set(i);
3733 } else if ((idx / 4) == BestLoQuad) {
3734 MaskV.push_back(DAG.getConstant(idx & 3, MVT::i16));
3735 InOrder.set(i);
3736 } else {
3737 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3738 }
3739 }
3740 for (unsigned i = 4; i != 8; ++i)
3741 MaskV.push_back(DAG.getConstant(i, MVT::i16));
3742 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, NewV,
3743 DAG.getUNDEF(MVT::v8i16),
Evan Cheng907a2d22009-02-25 22:49:59 +00003744 DAG.getNode(ISD::BUILD_VECTOR, dl,
3745 MVT::v8i16, &MaskV[0], 8));
Nate Begeman2c87c422009-02-23 08:49:38 +00003746 }
3747
3748 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
3749 // and update MaskVals with the new element order.
3750 if (BestHiQuad >= 0) {
3751 SmallVector<SDValue, 8> MaskV;
3752 for (unsigned i = 0; i != 4; ++i)
3753 MaskV.push_back(DAG.getConstant(i, MVT::i16));
3754 for (unsigned i = 4; i != 8; ++i) {
3755 int idx = MaskVals[i];
3756 if (idx < 0) {
3757 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3758 InOrder.set(i);
3759 } else if ((idx / 4) == BestHiQuad) {
3760 MaskV.push_back(DAG.getConstant((idx & 3) + 4, MVT::i16));
3761 InOrder.set(i);
3762 } else {
3763 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3764 }
3765 }
3766 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, NewV,
3767 DAG.getUNDEF(MVT::v8i16),
Evan Cheng907a2d22009-02-25 22:49:59 +00003768 DAG.getNode(ISD::BUILD_VECTOR, dl,
3769 MVT::v8i16, &MaskV[0], 8));
Nate Begeman2c87c422009-02-23 08:49:38 +00003770 }
3771
3772 // In case BestHi & BestLo were both -1, which means each quadword has a word
3773 // from each of the four input quadwords, calculate the InOrder bitvector now
3774 // before falling through to the insert/extract cleanup.
3775 if (BestLoQuad == -1 && BestHiQuad == -1) {
3776 NewV = V1;
3777 for (int i = 0; i != 8; ++i)
3778 if (MaskVals[i] < 0 || MaskVals[i] == i)
3779 InOrder.set(i);
3780 }
3781
3782 // The other elements are put in the right place using pextrw and pinsrw.
3783 for (unsigned i = 0; i != 8; ++i) {
3784 if (InOrder[i])
3785 continue;
3786 int EltIdx = MaskVals[i];
3787 if (EltIdx < 0)
3788 continue;
3789 SDValue ExtOp = (EltIdx < 8)
3790 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
3791 DAG.getIntPtrConstant(EltIdx))
3792 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
3793 DAG.getIntPtrConstant(EltIdx - 8));
3794 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
3795 DAG.getIntPtrConstant(i));
3796 }
3797 return NewV;
3798}
3799
3800// v16i8 shuffles - Prefer shuffles in the following order:
3801// 1. [ssse3] 1 x pshufb
3802// 2. [ssse3] 2 x pshufb + 1 x por
3803// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
3804static
3805SDValue LowerVECTOR_SHUFFLEv16i8(SDValue V1, SDValue V2,
3806 SDValue PermMask, SelectionDAG &DAG,
3807 X86TargetLowering &TLI, DebugLoc dl) {
3808 SmallVector<SDValue, 16> MaskElts(PermMask.getNode()->op_begin(),
3809 PermMask.getNode()->op_end());
3810 SmallVector<int, 16> MaskVals;
3811
3812 // If we have SSSE3, case 1 is generated when all result bytes come from
3813 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
3814 // present, fall back to case 3.
3815 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
3816 bool V1Only = true;
3817 bool V2Only = true;
3818 for (unsigned i = 0; i < 16; ++i) {
3819 SDValue Elt = MaskElts[i];
3820 int EltIdx = Elt.getOpcode() == ISD::UNDEF ? -1 :
3821 cast<ConstantSDNode>(Elt)->getZExtValue();
3822 MaskVals.push_back(EltIdx);
3823 if (EltIdx < 0)
3824 continue;
3825 if (EltIdx < 16)
3826 V2Only = false;
3827 else
3828 V1Only = false;
3829 }
3830
3831 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
3832 if (TLI.getSubtarget()->hasSSSE3()) {
3833 SmallVector<SDValue,16> pshufbMask;
3834
3835 // If all result elements are from one input vector, then only translate
3836 // undef mask values to 0x80 (zero out result) in the pshufb mask.
3837 //
3838 // Otherwise, we have elements from both input vectors, and must zero out
3839 // elements that come from V2 in the first mask, and V1 in the second mask
3840 // so that we can OR them together.
3841 bool TwoInputs = !(V1Only || V2Only);
3842 for (unsigned i = 0; i != 16; ++i) {
3843 int EltIdx = MaskVals[i];
3844 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
3845 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3846 continue;
3847 }
3848 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
3849 }
3850 // If all the elements are from V2, assign it to V1 and return after
3851 // building the first pshufb.
3852 if (V2Only)
3853 V1 = V2;
3854 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00003855 DAG.getNode(ISD::BUILD_VECTOR, dl,
3856 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003857 if (!TwoInputs)
3858 return V1;
3859
3860 // Calculate the shuffle mask for the second input, shuffle it, and
3861 // OR it with the first shuffled input.
3862 pshufbMask.clear();
3863 for (unsigned i = 0; i != 16; ++i) {
3864 int EltIdx = MaskVals[i];
3865 if (EltIdx < 16) {
3866 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3867 continue;
3868 }
3869 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
3870 }
3871 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00003872 DAG.getNode(ISD::BUILD_VECTOR, dl,
3873 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003874 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
3875 }
3876
3877 // No SSSE3 - Calculate in place words and then fix all out of place words
3878 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
3879 // the 16 different words that comprise the two doublequadword input vectors.
3880 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3881 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V2);
3882 SDValue NewV = V2Only ? V2 : V1;
3883 for (int i = 0; i != 8; ++i) {
3884 int Elt0 = MaskVals[i*2];
3885 int Elt1 = MaskVals[i*2+1];
3886
3887 // This word of the result is all undef, skip it.
3888 if (Elt0 < 0 && Elt1 < 0)
3889 continue;
3890
3891 // This word of the result is already in the correct place, skip it.
3892 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
3893 continue;
3894 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
3895 continue;
3896
3897 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
3898 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
3899 SDValue InsElt;
3900
3901 // If Elt1 is defined, extract it from the appropriate source. If the
3902 // source byte is not also odd, shift the extracted word left 8 bits.
3903 if (Elt1 >= 0) {
3904 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
3905 DAG.getIntPtrConstant(Elt1 / 2));
3906 if ((Elt1 & 1) == 0)
3907 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
3908 DAG.getConstant(8, TLI.getShiftAmountTy()));
3909 }
3910 // If Elt0 is defined, extract it from the appropriate source. If the
3911 // source byte is not also even, shift the extracted word right 8 bits. If
3912 // Elt1 was also defined, OR the extracted values together before
3913 // inserting them in the result.
3914 if (Elt0 >= 0) {
3915 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
3916 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
3917 if ((Elt0 & 1) != 0)
3918 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
3919 DAG.getConstant(8, TLI.getShiftAmountTy()));
3920 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
3921 : InsElt0;
3922 }
3923 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
3924 DAG.getIntPtrConstant(i));
3925 }
3926 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, NewV);
Evan Cheng75184a92007-12-11 01:46:18 +00003927}
3928
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003929/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
3930/// ones, or rewriting v4i32 / v2f32 as 2 wide ones if possible. This can be
3931/// done when every pair / quad of shuffle mask elements point to elements in
3932/// the right sequence. e.g.
Evan Cheng75184a92007-12-11 01:46:18 +00003933/// vector_shuffle <>, <>, < 3, 4, | 10, 11, | 0, 1, | 14, 15>
3934static
Dan Gohman8181bd12008-07-27 21:46:04 +00003935SDValue RewriteAsNarrowerShuffle(SDValue V1, SDValue V2,
Duncan Sands92c43912008-06-06 12:08:01 +00003936 MVT VT,
Dan Gohman8181bd12008-07-27 21:46:04 +00003937 SDValue PermMask, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003938 TargetLowering &TLI, DebugLoc dl) {
Evan Cheng75184a92007-12-11 01:46:18 +00003939 unsigned NumElems = PermMask.getNumOperands();
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003940 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Duncan Sands92c43912008-06-06 12:08:01 +00003941 MVT MaskVT = MVT::getIntVectorWithNumElements(NewWidth);
Duncan Sandsd3ace282008-07-21 10:20:31 +00003942 MVT MaskEltVT = MaskVT.getVectorElementType();
Duncan Sands92c43912008-06-06 12:08:01 +00003943 MVT NewVT = MaskVT;
3944 switch (VT.getSimpleVT()) {
3945 default: assert(false && "Unexpected!");
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003946 case MVT::v4f32: NewVT = MVT::v2f64; break;
3947 case MVT::v4i32: NewVT = MVT::v2i64; break;
3948 case MVT::v8i16: NewVT = MVT::v4i32; break;
3949 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003950 }
3951
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00003952 if (NewWidth == 2) {
Duncan Sands92c43912008-06-06 12:08:01 +00003953 if (VT.isInteger())
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003954 NewVT = MVT::v2i64;
3955 else
3956 NewVT = MVT::v2f64;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00003957 }
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003958 unsigned Scale = NumElems / NewWidth;
Dan Gohman8181bd12008-07-27 21:46:04 +00003959 SmallVector<SDValue, 8> MaskVec;
Evan Cheng75184a92007-12-11 01:46:18 +00003960 for (unsigned i = 0; i < NumElems; i += Scale) {
3961 unsigned StartIdx = ~0U;
3962 for (unsigned j = 0; j < Scale; ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003963 SDValue Elt = PermMask.getOperand(i+j);
Evan Cheng75184a92007-12-11 01:46:18 +00003964 if (Elt.getOpcode() == ISD::UNDEF)
3965 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003966 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003967 if (StartIdx == ~0U)
3968 StartIdx = EltIdx - (EltIdx % Scale);
3969 if (EltIdx != StartIdx + j)
Dan Gohman8181bd12008-07-27 21:46:04 +00003970 return SDValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003971 }
3972 if (StartIdx == ~0U)
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003973 MaskVec.push_back(DAG.getUNDEF(MaskEltVT));
Evan Cheng75184a92007-12-11 01:46:18 +00003974 else
Duncan Sandsd3ace282008-07-21 10:20:31 +00003975 MaskVec.push_back(DAG.getConstant(StartIdx / Scale, MaskEltVT));
Evan Chengfca29242007-12-07 08:07:39 +00003976 }
3977
Dale Johannesence0805b2009-02-03 19:33:06 +00003978 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1);
3979 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2);
3980 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, NewVT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00003981 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3982 &MaskVec[0], MaskVec.size()));
Evan Chengfca29242007-12-07 08:07:39 +00003983}
3984
Evan Chenge9b9c672008-05-09 21:53:03 +00003985/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng40ee6e52008-05-08 00:57:18 +00003986///
Dan Gohman8181bd12008-07-27 21:46:04 +00003987static SDValue getVZextMovL(MVT VT, MVT OpVT,
3988 SDValue SrcOp, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003989 const X86Subtarget *Subtarget, DebugLoc dl) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00003990 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
3991 LoadSDNode *LD = NULL;
Gabor Greif1c80d112008-08-28 21:40:38 +00003992 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng40ee6e52008-05-08 00:57:18 +00003993 LD = dyn_cast<LoadSDNode>(SrcOp);
3994 if (!LD) {
3995 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
3996 // instead.
Duncan Sands92c43912008-06-06 12:08:01 +00003997 MVT EVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Evan Cheng40ee6e52008-05-08 00:57:18 +00003998 if ((EVT != MVT::i64 || Subtarget->is64Bit()) &&
3999 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4000 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
4001 SrcOp.getOperand(0).getOperand(0).getValueType() == EVT) {
4002 // PR2108
4003 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Dale Johannesence0805b2009-02-03 19:33:06 +00004004 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4005 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4006 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4007 OpVT,
Gabor Greif825aa892008-08-28 23:19:51 +00004008 SrcOp.getOperand(0)
4009 .getOperand(0))));
Evan Cheng40ee6e52008-05-08 00:57:18 +00004010 }
4011 }
4012 }
4013
Dale Johannesence0805b2009-02-03 19:33:06 +00004014 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4015 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Scott Michel91099d62009-02-17 22:15:04 +00004016 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00004017 OpVT, SrcOp)));
Evan Cheng40ee6e52008-05-08 00:57:18 +00004018}
4019
Evan Chengf50554e2008-07-22 21:13:36 +00004020/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4021/// shuffles.
Dan Gohman8181bd12008-07-27 21:46:04 +00004022static SDValue
4023LowerVECTOR_SHUFFLE_4wide(SDValue V1, SDValue V2,
Dale Johannesence0805b2009-02-03 19:33:06 +00004024 SDValue PermMask, MVT VT, SelectionDAG &DAG,
4025 DebugLoc dl) {
Evan Chengf50554e2008-07-22 21:13:36 +00004026 MVT MaskVT = PermMask.getValueType();
4027 MVT MaskEVT = MaskVT.getVectorElementType();
4028 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola4e3ff5a2008-08-28 18:32:53 +00004029 Locs.resize(4);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004030 SmallVector<SDValue, 8> Mask1(4, DAG.getUNDEF(MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00004031 unsigned NumHi = 0;
4032 unsigned NumLo = 0;
Evan Chengf50554e2008-07-22 21:13:36 +00004033 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004034 SDValue Elt = PermMask.getOperand(i);
Evan Chengf50554e2008-07-22 21:13:36 +00004035 if (Elt.getOpcode() == ISD::UNDEF) {
4036 Locs[i] = std::make_pair(-1, -1);
4037 } else {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004038 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohmance57fd92008-08-04 23:09:15 +00004039 assert(Val < 8 && "Invalid VECTOR_SHUFFLE index!");
Evan Chengf50554e2008-07-22 21:13:36 +00004040 if (Val < 4) {
4041 Locs[i] = std::make_pair(0, NumLo);
4042 Mask1[NumLo] = Elt;
4043 NumLo++;
4044 } else {
4045 Locs[i] = std::make_pair(1, NumHi);
4046 if (2+NumHi < 4)
4047 Mask1[2+NumHi] = Elt;
4048 NumHi++;
4049 }
4050 }
4051 }
Evan Cheng3cae0332008-07-23 00:22:17 +00004052
Evan Chengf50554e2008-07-22 21:13:36 +00004053 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng3cae0332008-07-23 00:22:17 +00004054 // If no more than two elements come from either vector. This can be
4055 // implemented with two shuffles. First shuffle gather the elements.
4056 // The second shuffle, which takes the first shuffle as both of its
4057 // vector operands, put the elements into the right order.
Dale Johannesence0805b2009-02-03 19:33:06 +00004058 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004059 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4060 &Mask1[0], Mask1.size()));
Evan Cheng3cae0332008-07-23 00:22:17 +00004061
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004062 SmallVector<SDValue, 8> Mask2(4, DAG.getUNDEF(MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00004063 for (unsigned i = 0; i != 4; ++i) {
4064 if (Locs[i].first == -1)
4065 continue;
4066 else {
4067 unsigned Idx = (i < 2) ? 0 : 4;
4068 Idx += Locs[i].first * 2 + Locs[i].second;
4069 Mask2[i] = DAG.getConstant(Idx, MaskEVT);
4070 }
4071 }
4072
Dale Johannesence0805b2009-02-03 19:33:06 +00004073 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00004074 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4075 &Mask2[0], Mask2.size()));
Evan Cheng3cae0332008-07-23 00:22:17 +00004076 } else if (NumLo == 3 || NumHi == 3) {
4077 // Otherwise, we must have three elements from one vector, call it X, and
4078 // one element from the other, call it Y. First, use a shufps to build an
4079 // intermediate vector with the one element from Y and the element from X
4080 // that will be in the same half in the final destination (the indexes don't
4081 // matter). Then, use a shufps to build the final vector, taking the half
4082 // containing the element from Y from the intermediate, and the other half
4083 // from X.
4084 if (NumHi == 3) {
4085 // Normalize it so the 3 elements come from V1.
Dale Johannesence0805b2009-02-03 19:33:06 +00004086 PermMask = CommuteVectorShuffleMask(PermMask, DAG, dl);
Evan Cheng3cae0332008-07-23 00:22:17 +00004087 std::swap(V1, V2);
4088 }
4089
4090 // Find the element from V2.
4091 unsigned HiIndex;
4092 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004093 SDValue Elt = PermMask.getOperand(HiIndex);
Evan Cheng3cae0332008-07-23 00:22:17 +00004094 if (Elt.getOpcode() == ISD::UNDEF)
4095 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004096 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng3cae0332008-07-23 00:22:17 +00004097 if (Val >= 4)
4098 break;
4099 }
4100
4101 Mask1[0] = PermMask.getOperand(HiIndex);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004102 Mask1[1] = DAG.getUNDEF(MaskEVT);
Evan Cheng3cae0332008-07-23 00:22:17 +00004103 Mask1[2] = PermMask.getOperand(HiIndex^1);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004104 Mask1[3] = DAG.getUNDEF(MaskEVT);
Dale Johannesence0805b2009-02-03 19:33:06 +00004105 V2 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004106 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &Mask1[0], 4));
Evan Cheng3cae0332008-07-23 00:22:17 +00004107
4108 if (HiIndex >= 2) {
4109 Mask1[0] = PermMask.getOperand(0);
4110 Mask1[1] = PermMask.getOperand(1);
4111 Mask1[2] = DAG.getConstant(HiIndex & 1 ? 6 : 4, MaskEVT);
4112 Mask1[3] = DAG.getConstant(HiIndex & 1 ? 4 : 6, MaskEVT);
Dale Johannesence0805b2009-02-03 19:33:06 +00004113 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004114 DAG.getNode(ISD::BUILD_VECTOR, dl,
4115 MaskVT, &Mask1[0], 4));
Evan Cheng3cae0332008-07-23 00:22:17 +00004116 } else {
4117 Mask1[0] = DAG.getConstant(HiIndex & 1 ? 2 : 0, MaskEVT);
4118 Mask1[1] = DAG.getConstant(HiIndex & 1 ? 0 : 2, MaskEVT);
4119 Mask1[2] = PermMask.getOperand(2);
4120 Mask1[3] = PermMask.getOperand(3);
4121 if (Mask1[2].getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004122 Mask1[2] =
4123 DAG.getConstant(cast<ConstantSDNode>(Mask1[2])->getZExtValue()+4,
4124 MaskEVT);
Evan Cheng3cae0332008-07-23 00:22:17 +00004125 if (Mask1[3].getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004126 Mask1[3] =
4127 DAG.getConstant(cast<ConstantSDNode>(Mask1[3])->getZExtValue()+4,
4128 MaskEVT);
Dale Johannesence0805b2009-02-03 19:33:06 +00004129 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V2, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00004130 DAG.getNode(ISD::BUILD_VECTOR, dl,
4131 MaskVT, &Mask1[0], 4));
Evan Cheng3cae0332008-07-23 00:22:17 +00004132 }
Evan Chengf50554e2008-07-22 21:13:36 +00004133 }
4134
4135 // Break it into (shuffle shuffle_hi, shuffle_lo).
4136 Locs.clear();
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004137 SmallVector<SDValue,8> LoMask(4, DAG.getUNDEF(MaskEVT));
4138 SmallVector<SDValue,8> HiMask(4, DAG.getUNDEF(MaskEVT));
Dan Gohman8181bd12008-07-27 21:46:04 +00004139 SmallVector<SDValue,8> *MaskPtr = &LoMask;
Evan Chengf50554e2008-07-22 21:13:36 +00004140 unsigned MaskIdx = 0;
4141 unsigned LoIdx = 0;
4142 unsigned HiIdx = 2;
4143 for (unsigned i = 0; i != 4; ++i) {
4144 if (i == 2) {
4145 MaskPtr = &HiMask;
4146 MaskIdx = 1;
4147 LoIdx = 0;
4148 HiIdx = 2;
4149 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004150 SDValue Elt = PermMask.getOperand(i);
Evan Chengf50554e2008-07-22 21:13:36 +00004151 if (Elt.getOpcode() == ISD::UNDEF) {
4152 Locs[i] = std::make_pair(-1, -1);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004153 } else if (cast<ConstantSDNode>(Elt)->getZExtValue() < 4) {
Evan Chengf50554e2008-07-22 21:13:36 +00004154 Locs[i] = std::make_pair(MaskIdx, LoIdx);
4155 (*MaskPtr)[LoIdx] = Elt;
4156 LoIdx++;
4157 } else {
4158 Locs[i] = std::make_pair(MaskIdx, HiIdx);
4159 (*MaskPtr)[HiIdx] = Elt;
4160 HiIdx++;
4161 }
4162 }
4163
Dale Johannesence0805b2009-02-03 19:33:06 +00004164 SDValue LoShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004165 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengf50554e2008-07-22 21:13:36 +00004166 &LoMask[0], LoMask.size()));
Dale Johannesence0805b2009-02-03 19:33:06 +00004167 SDValue HiShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004168 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengf50554e2008-07-22 21:13:36 +00004169 &HiMask[0], HiMask.size()));
Dan Gohman8181bd12008-07-27 21:46:04 +00004170 SmallVector<SDValue, 8> MaskOps;
Evan Chengf50554e2008-07-22 21:13:36 +00004171 for (unsigned i = 0; i != 4; ++i) {
4172 if (Locs[i].first == -1) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004173 MaskOps.push_back(DAG.getUNDEF(MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00004174 } else {
4175 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
4176 MaskOps.push_back(DAG.getConstant(Idx, MaskEVT));
4177 }
4178 }
Dale Johannesence0805b2009-02-03 19:33:06 +00004179 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, LoShuffle, HiShuffle,
Evan Cheng907a2d22009-02-25 22:49:59 +00004180 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4181 &MaskOps[0], MaskOps.size()));
Evan Chengf50554e2008-07-22 21:13:36 +00004182}
4183
Dan Gohman8181bd12008-07-27 21:46:04 +00004184SDValue
4185X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
4186 SDValue V1 = Op.getOperand(0);
4187 SDValue V2 = Op.getOperand(1);
4188 SDValue PermMask = Op.getOperand(2);
Duncan Sands92c43912008-06-06 12:08:01 +00004189 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004190 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004191 unsigned NumElems = PermMask.getNumOperands();
Duncan Sands92c43912008-06-06 12:08:01 +00004192 bool isMMX = VT.getSizeInBits() == 64;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004193 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
4194 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
4195 bool V1IsSplat = false;
4196 bool V2IsSplat = false;
4197
Nate Begeman2c87c422009-02-23 08:49:38 +00004198 // FIXME: Check for legal shuffle and return?
4199
Gabor Greif1c80d112008-08-28 21:40:38 +00004200 if (isUndefShuffle(Op.getNode()))
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004201 return DAG.getUNDEF(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004202
Gabor Greif1c80d112008-08-28 21:40:38 +00004203 if (isZeroShuffle(Op.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00004204 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004205
Gabor Greif1c80d112008-08-28 21:40:38 +00004206 if (isIdentityMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004207 return V1;
Gabor Greif1c80d112008-08-28 21:40:38 +00004208 else if (isIdentityMask(PermMask.getNode(), true))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004209 return V2;
4210
Evan Chengae6c9212008-09-25 23:35:16 +00004211 // Canonicalize movddup shuffles.
4212 if (V2IsUndef && Subtarget->hasSSE2() &&
Evan Chengbdd9d9f2008-10-06 21:13:08 +00004213 VT.getSizeInBits() == 128 &&
Evan Chengae6c9212008-09-25 23:35:16 +00004214 X86::isMOVDDUPMask(PermMask.getNode()))
4215 return CanonicalizeMovddup(Op, V1, PermMask, DAG, Subtarget->hasSSE3());
4216
Gabor Greif1c80d112008-08-28 21:40:38 +00004217 if (isSplatMask(PermMask.getNode())) {
Evan Chengbf8b2c52008-04-05 00:30:36 +00004218 if (isMMX || NumElems < 4) return Op;
4219 // Promote it to a v4{if}32 splat.
4220 return PromoteSplat(Op, DAG, Subtarget->hasSSE2());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004221 }
4222
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004223 // If the shuffle can be profitably rewritten as a narrower shuffle, then
4224 // do it!
4225 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004226 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask, DAG,
4227 *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004228 if (NewOp.getNode())
Scott Michel91099d62009-02-17 22:15:04 +00004229 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Dale Johannesence0805b2009-02-03 19:33:06 +00004230 LowerVECTOR_SHUFFLE(NewOp, DAG));
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004231 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
4232 // FIXME: Figure out a cleaner way to do this.
4233 // Try to make use of movq to zero out the top part.
Gabor Greif1c80d112008-08-28 21:40:38 +00004234 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004235 SDValue NewOp = RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Dale Johannesence0805b2009-02-03 19:33:06 +00004236 DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004237 if (NewOp.getNode()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004238 SDValue NewV1 = NewOp.getOperand(0);
4239 SDValue NewV2 = NewOp.getOperand(1);
4240 SDValue NewMask = NewOp.getOperand(2);
Gabor Greif1c80d112008-08-28 21:40:38 +00004241 if (isCommutedMOVL(NewMask.getNode(), true, false)) {
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004242 NewOp = CommuteVectorShuffle(NewOp, NewV1, NewV2, NewMask, DAG);
Dale Johannesence0805b2009-02-03 19:33:06 +00004243 return getVZextMovL(VT, NewOp.getValueType(), NewV2, DAG, Subtarget,
4244 dl);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004245 }
4246 }
Gabor Greif1c80d112008-08-28 21:40:38 +00004247 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004248 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Dale Johannesence0805b2009-02-03 19:33:06 +00004249 DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004250 if (NewOp.getNode() && X86::isMOVLMask(NewOp.getOperand(2).getNode()))
Evan Chenge9b9c672008-05-09 21:53:03 +00004251 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
Dale Johannesence0805b2009-02-03 19:33:06 +00004252 DAG, Subtarget, dl);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004253 }
4254 }
4255
Evan Chengdea99362008-05-29 08:22:04 +00004256 // Check if this can be converted into a logical shift.
4257 bool isLeft = false;
4258 unsigned ShAmt = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00004259 SDValue ShVal;
Evan Chengdea99362008-05-29 08:22:04 +00004260 bool isShift = isVectorShift(Op, PermMask, DAG, isLeft, ShVal, ShAmt);
4261 if (isShift && ShVal.hasOneUse()) {
Scott Michel91099d62009-02-17 22:15:04 +00004262 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengdea99362008-05-29 08:22:04 +00004263 // v_set0 + movlhps or movhlps, etc.
Duncan Sands92c43912008-06-06 12:08:01 +00004264 MVT EVT = VT.getVectorElementType();
4265 ShAmt *= EVT.getSizeInBits();
Dale Johannesence0805b2009-02-03 19:33:06 +00004266 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00004267 }
4268
Gabor Greif1c80d112008-08-28 21:40:38 +00004269 if (X86::isMOVLMask(PermMask.getNode())) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00004270 if (V1IsUndef)
4271 return V2;
Gabor Greif1c80d112008-08-28 21:40:38 +00004272 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00004273 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Nate Begeman6357f9d2008-07-25 19:05:58 +00004274 if (!isMMX)
4275 return Op;
Evan Cheng40ee6e52008-05-08 00:57:18 +00004276 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004277
Gabor Greif1c80d112008-08-28 21:40:38 +00004278 if (!isMMX && (X86::isMOVSHDUPMask(PermMask.getNode()) ||
4279 X86::isMOVSLDUPMask(PermMask.getNode()) ||
4280 X86::isMOVHLPSMask(PermMask.getNode()) ||
4281 X86::isMOVHPMask(PermMask.getNode()) ||
4282 X86::isMOVLPMask(PermMask.getNode())))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004283 return Op;
4284
Gabor Greif1c80d112008-08-28 21:40:38 +00004285 if (ShouldXformToMOVHLPS(PermMask.getNode()) ||
4286 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004287 return CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4288
Evan Chengdea99362008-05-29 08:22:04 +00004289 if (isShift) {
4290 // No better options. Use a vshl / vsrl.
Duncan Sands92c43912008-06-06 12:08:01 +00004291 MVT EVT = VT.getVectorElementType();
4292 ShAmt *= EVT.getSizeInBits();
Dale Johannesence0805b2009-02-03 19:33:06 +00004293 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00004294 }
4295
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004296 bool Commuted = false;
Chris Lattnere6aa3862007-11-25 00:24:49 +00004297 // FIXME: This should also accept a bitcast of a splat? Be careful, not
4298 // 1,1,1,1 -> v8i16 though.
Gabor Greif1c80d112008-08-28 21:40:38 +00004299 V1IsSplat = isSplatVector(V1.getNode());
4300 V2IsSplat = isSplatVector(V2.getNode());
Scott Michel91099d62009-02-17 22:15:04 +00004301
Chris Lattnere6aa3862007-11-25 00:24:49 +00004302 // Canonicalize the splat or undef, if present, to be on the RHS.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004303 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
4304 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4305 std::swap(V1IsSplat, V2IsSplat);
4306 std::swap(V1IsUndef, V2IsUndef);
4307 Commuted = true;
4308 }
4309
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004310 // FIXME: Figure out a cleaner way to do this.
Gabor Greif1c80d112008-08-28 21:40:38 +00004311 if (isCommutedMOVL(PermMask.getNode(), V2IsSplat, V2IsUndef)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004312 if (V2IsUndef) return V1;
4313 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4314 if (V2IsSplat) {
4315 // V2 is a splat, so the mask may be malformed. That is, it may point
4316 // to any V2 element. The instruction selectior won't like this. Get
4317 // a corrected mask and commute to form a proper MOVS{S|D}.
Dale Johannesence0805b2009-02-03 19:33:06 +00004318 SDValue NewMask = getMOVLMask(NumElems, DAG, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004319 if (NewMask.getNode() != PermMask.getNode())
Dale Johannesence0805b2009-02-03 19:33:06 +00004320 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004321 }
4322 return Op;
4323 }
4324
Gabor Greif1c80d112008-08-28 21:40:38 +00004325 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4326 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4327 X86::isUNPCKLMask(PermMask.getNode()) ||
4328 X86::isUNPCKHMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004329 return Op;
4330
4331 if (V2IsSplat) {
4332 // Normalize mask so all entries that point to V2 points to its first
4333 // element then try to match unpck{h|l} again. If match, return a
4334 // new vector_shuffle with the corrected mask.
Dan Gohman8181bd12008-07-27 21:46:04 +00004335 SDValue NewMask = NormalizeMask(PermMask, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004336 if (NewMask.getNode() != PermMask.getNode()) {
Mon P Wang56d91642009-02-04 01:16:59 +00004337 if (X86::isUNPCKLMask(NewMask.getNode(), true)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004338 SDValue NewMask = getUnpacklMask(NumElems, DAG, dl);
4339 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Mon P Wang56d91642009-02-04 01:16:59 +00004340 } else if (X86::isUNPCKHMask(NewMask.getNode(), true)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004341 SDValue NewMask = getUnpackhMask(NumElems, DAG, dl);
4342 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004343 }
4344 }
4345 }
4346
4347 // Normalize the node to match x86 shuffle ops if needed
Gabor Greif1c80d112008-08-28 21:40:38 +00004348 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004349 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4350
4351 if (Commuted) {
4352 // Commute is back and try unpck* again.
4353 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004354 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4355 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4356 X86::isUNPCKLMask(PermMask.getNode()) ||
4357 X86::isUNPCKHMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004358 return Op;
4359 }
4360
Nate Begeman2c87c422009-02-23 08:49:38 +00004361 // FIXME: for mmx, bitcast v2i32 to v4i16 for shuffle.
Evan Chengbf8b2c52008-04-05 00:30:36 +00004362 // Try PSHUF* first, then SHUFP*.
4363 // MMX doesn't have PSHUFD but it does have PSHUFW. While it's theoretically
4364 // possible to shuffle a v2i32 using PSHUFW, that's not yet implemented.
Gabor Greif1c80d112008-08-28 21:40:38 +00004365 if (isMMX && NumElems == 4 && X86::isPSHUFDMask(PermMask.getNode())) {
Evan Chengbf8b2c52008-04-05 00:30:36 +00004366 if (V2.getOpcode() != ISD::UNDEF)
Dale Johannesence0805b2009-02-03 19:33:06 +00004367 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004368 DAG.getUNDEF(VT), PermMask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00004369 return Op;
4370 }
4371
4372 if (!isMMX) {
4373 if (Subtarget->hasSSE2() &&
Gabor Greif1c80d112008-08-28 21:40:38 +00004374 (X86::isPSHUFDMask(PermMask.getNode()) ||
4375 X86::isPSHUFHWMask(PermMask.getNode()) ||
4376 X86::isPSHUFLWMask(PermMask.getNode()))) {
Duncan Sands92c43912008-06-06 12:08:01 +00004377 MVT RVT = VT;
Evan Chengbf8b2c52008-04-05 00:30:36 +00004378 if (VT == MVT::v4f32) {
4379 RVT = MVT::v4i32;
Dale Johannesence0805b2009-02-03 19:33:06 +00004380 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, RVT,
4381 DAG.getNode(ISD::BIT_CONVERT, dl, RVT, V1),
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004382 DAG.getUNDEF(RVT), PermMask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00004383 } else if (V2.getOpcode() != ISD::UNDEF)
Dale Johannesence0805b2009-02-03 19:33:06 +00004384 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, RVT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004385 DAG.getUNDEF(RVT), PermMask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00004386 if (RVT != VT)
Dale Johannesence0805b2009-02-03 19:33:06 +00004387 Op = DAG.getNode(ISD::BIT_CONVERT, dl, VT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004388 return Op;
4389 }
4390
Evan Chengbf8b2c52008-04-05 00:30:36 +00004391 // Binary or unary shufps.
Gabor Greif1c80d112008-08-28 21:40:38 +00004392 if (X86::isSHUFPMask(PermMask.getNode()) ||
4393 (V2.getOpcode() == ISD::UNDEF && X86::isPSHUFDMask(PermMask.getNode())))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004394 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004395 }
4396
Evan Cheng75184a92007-12-11 01:46:18 +00004397 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
4398 if (VT == MVT::v8i16) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004399 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(V1, V2, PermMask, DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004400 if (NewOp.getNode())
Evan Cheng75184a92007-12-11 01:46:18 +00004401 return NewOp;
4402 }
4403
Nate Begeman2c87c422009-02-23 08:49:38 +00004404 if (VT == MVT::v16i8) {
4405 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(V1, V2, PermMask, DAG, *this, dl);
4406 if (NewOp.getNode())
4407 return NewOp;
4408 }
4409
Evan Chengf50554e2008-07-22 21:13:36 +00004410 // Handle all 4 wide cases with a number of shuffles except for MMX.
4411 if (NumElems == 4 && !isMMX)
Dale Johannesence0805b2009-02-03 19:33:06 +00004412 return LowerVECTOR_SHUFFLE_4wide(V1, V2, PermMask, VT, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004413
Dan Gohman8181bd12008-07-27 21:46:04 +00004414 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004415}
4416
Dan Gohman8181bd12008-07-27 21:46:04 +00004417SDValue
4418X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Nate Begemand77e59e2008-02-11 04:19:36 +00004419 SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004420 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004421 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00004422 if (VT.getSizeInBits() == 8) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004423 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begemand77e59e2008-02-11 04:19:36 +00004424 Op.getOperand(0), Op.getOperand(1));
Dale Johannesence0805b2009-02-03 19:33:06 +00004425 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begemand77e59e2008-02-11 04:19:36 +00004426 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004427 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands92c43912008-06-06 12:08:01 +00004428 } else if (VT.getSizeInBits() == 16) {
Evan Chengf9393b32009-01-02 05:29:08 +00004429 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
4430 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
4431 if (Idx == 0)
Dale Johannesence0805b2009-02-03 19:33:06 +00004432 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4433 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
4434 DAG.getNode(ISD::BIT_CONVERT, dl,
4435 MVT::v4i32,
Evan Chengf9393b32009-01-02 05:29:08 +00004436 Op.getOperand(0)),
4437 Op.getOperand(1)));
Dale Johannesence0805b2009-02-03 19:33:06 +00004438 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begemand77e59e2008-02-11 04:19:36 +00004439 Op.getOperand(0), Op.getOperand(1));
Dale Johannesence0805b2009-02-03 19:33:06 +00004440 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begemand77e59e2008-02-11 04:19:36 +00004441 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004442 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Evan Cheng6c249332008-03-24 21:52:23 +00004443 } else if (VT == MVT::f32) {
4444 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
4445 // the result back to FR32 register. It's only worth matching if the
Dan Gohman9fdd0142008-10-31 00:57:24 +00004446 // result has a single use which is a store or a bitcast to i32. And in
4447 // the case of a store, it's not worth it if the index is a constant 0,
4448 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng6c249332008-03-24 21:52:23 +00004449 if (!Op.hasOneUse())
Dan Gohman8181bd12008-07-27 21:46:04 +00004450 return SDValue();
Gabor Greif1c80d112008-08-28 21:40:38 +00004451 SDNode *User = *Op.getNode()->use_begin();
Dan Gohman9fdd0142008-10-31 00:57:24 +00004452 if ((User->getOpcode() != ISD::STORE ||
4453 (isa<ConstantSDNode>(Op.getOperand(1)) &&
4454 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman788db592008-04-16 02:32:24 +00004455 (User->getOpcode() != ISD::BIT_CONVERT ||
4456 User->getValueType(0) != MVT::i32))
Dan Gohman8181bd12008-07-27 21:46:04 +00004457 return SDValue();
Dale Johannesence0805b2009-02-03 19:33:06 +00004458 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michel91099d62009-02-17 22:15:04 +00004459 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32,
Dale Johannesence0805b2009-02-03 19:33:06 +00004460 Op.getOperand(0)),
4461 Op.getOperand(1));
4462 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract);
Mon P Wangac2a3c52009-01-15 21:10:20 +00004463 } else if (VT == MVT::i32) {
4464 // ExtractPS works with constant index.
4465 if (isa<ConstantSDNode>(Op.getOperand(1)))
4466 return Op;
Nate Begemand77e59e2008-02-11 04:19:36 +00004467 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004468 return SDValue();
Nate Begemand77e59e2008-02-11 04:19:36 +00004469}
4470
4471
Dan Gohman8181bd12008-07-27 21:46:04 +00004472SDValue
4473X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004474 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman8181bd12008-07-27 21:46:04 +00004475 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004476
Evan Cheng6c249332008-03-24 21:52:23 +00004477 if (Subtarget->hasSSE41()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004478 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004479 if (Res.getNode())
Evan Cheng6c249332008-03-24 21:52:23 +00004480 return Res;
4481 }
Nate Begemand77e59e2008-02-11 04:19:36 +00004482
Duncan Sands92c43912008-06-06 12:08:01 +00004483 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004484 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004485 // TODO: handle v16i8.
Duncan Sands92c43912008-06-06 12:08:01 +00004486 if (VT.getSizeInBits() == 16) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004487 SDValue Vec = Op.getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004488 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00004489 if (Idx == 0)
Dale Johannesence0805b2009-02-03 19:33:06 +00004490 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4491 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michel91099d62009-02-17 22:15:04 +00004492 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00004493 MVT::v4i32, Vec),
Evan Cheng75184a92007-12-11 01:46:18 +00004494 Op.getOperand(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004495 // Transform it so it match pextrw which produces a 32-bit result.
Duncan Sands92c43912008-06-06 12:08:01 +00004496 MVT EVT = (MVT::SimpleValueType)(VT.getSimpleVT()+1);
Dale Johannesence0805b2009-02-03 19:33:06 +00004497 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004498 Op.getOperand(0), Op.getOperand(1));
Dale Johannesence0805b2009-02-03 19:33:06 +00004499 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EVT, Extract,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004500 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004501 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands92c43912008-06-06 12:08:01 +00004502 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004503 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004504 if (Idx == 0)
4505 return Op;
4506 // SHUFPS the element to the lowest double word, then movss.
Duncan Sands92c43912008-06-06 12:08:01 +00004507 MVT MaskVT = MVT::getIntVectorWithNumElements(4);
Dan Gohman8181bd12008-07-27 21:46:04 +00004508 SmallVector<SDValue, 8> IdxVec;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004509 IdxVec.
Duncan Sands92c43912008-06-06 12:08:01 +00004510 push_back(DAG.getConstant(Idx, MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004511 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004512 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004513 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004514 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004515 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004516 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Evan Cheng907a2d22009-02-25 22:49:59 +00004517 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4518 &IdxVec[0], IdxVec.size());
Dan Gohman8181bd12008-07-27 21:46:04 +00004519 SDValue Vec = Op.getOperand(0);
Dale Johannesence0805b2009-02-03 19:33:06 +00004520 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Vec.getValueType(),
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004521 Vec, DAG.getUNDEF(Vec.getValueType()), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00004522 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00004523 DAG.getIntPtrConstant(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004524 } else if (VT.getSizeInBits() == 64) {
Nate Begemand77e59e2008-02-11 04:19:36 +00004525 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
4526 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
4527 // to match extract_elt for f64.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004528 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004529 if (Idx == 0)
4530 return Op;
4531
4532 // UNPCKHPD the element to the lowest double word, then movsd.
4533 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
4534 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Duncan Sandsd3ace282008-07-21 10:20:31 +00004535 MVT MaskVT = MVT::getIntVectorWithNumElements(2);
Dan Gohman8181bd12008-07-27 21:46:04 +00004536 SmallVector<SDValue, 8> IdxVec;
Duncan Sands92c43912008-06-06 12:08:01 +00004537 IdxVec.push_back(DAG.getConstant(1, MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004538 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004539 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Evan Cheng907a2d22009-02-25 22:49:59 +00004540 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4541 &IdxVec[0], IdxVec.size());
Dan Gohman8181bd12008-07-27 21:46:04 +00004542 SDValue Vec = Op.getOperand(0);
Dale Johannesence0805b2009-02-03 19:33:06 +00004543 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Vec.getValueType(),
Scott Michel91099d62009-02-17 22:15:04 +00004544 Vec, DAG.getUNDEF(Vec.getValueType()),
Dale Johannesence0805b2009-02-03 19:33:06 +00004545 Mask);
4546 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00004547 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004548 }
4549
Dan Gohman8181bd12008-07-27 21:46:04 +00004550 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004551}
4552
Dan Gohman8181bd12008-07-27 21:46:04 +00004553SDValue
4554X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG){
Duncan Sands92c43912008-06-06 12:08:01 +00004555 MVT VT = Op.getValueType();
4556 MVT EVT = VT.getVectorElementType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004557 DebugLoc dl = Op.getDebugLoc();
Nate Begemand77e59e2008-02-11 04:19:36 +00004558
Dan Gohman8181bd12008-07-27 21:46:04 +00004559 SDValue N0 = Op.getOperand(0);
4560 SDValue N1 = Op.getOperand(1);
4561 SDValue N2 = Op.getOperand(2);
Nate Begemand77e59e2008-02-11 04:19:36 +00004562
Dan Gohman5a7af042008-08-14 22:53:18 +00004563 if ((EVT.getSizeInBits() == 8 || EVT.getSizeInBits() == 16) &&
4564 isa<ConstantSDNode>(N2)) {
Duncan Sands92c43912008-06-06 12:08:01 +00004565 unsigned Opc = (EVT.getSizeInBits() == 8) ? X86ISD::PINSRB
Nate Begeman2c87c422009-02-23 08:49:38 +00004566 : X86ISD::PINSRW;
Nate Begemand77e59e2008-02-11 04:19:36 +00004567 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
4568 // argument.
4569 if (N1.getValueType() != MVT::i32)
Dale Johannesence0805b2009-02-03 19:33:06 +00004570 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Nate Begemand77e59e2008-02-11 04:19:36 +00004571 if (N2.getValueType() != MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004572 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesence0805b2009-02-03 19:33:06 +00004573 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohmanfd7369a2008-08-14 22:43:26 +00004574 } else if (EVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begemand77e59e2008-02-11 04:19:36 +00004575 // Bits [7:6] of the constant are the source select. This will always be
4576 // zero here. The DAG Combiner may combine an extract_elt index into these
4577 // bits. For example (insert (extract, 3), 2) could be matched by putting
4578 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michel91099d62009-02-17 22:15:04 +00004579 // Bits [5:4] of the constant are the destination select. This is the
Nate Begemand77e59e2008-02-11 04:19:36 +00004580 // value of the incoming immediate.
Scott Michel91099d62009-02-17 22:15:04 +00004581 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begemand77e59e2008-02-11 04:19:36 +00004582 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004583 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00004584 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Mon P Wangac2a3c52009-01-15 21:10:20 +00004585 } else if (EVT == MVT::i32) {
4586 // InsertPS works with constant index.
4587 if (isa<ConstantSDNode>(N2))
4588 return Op;
Nate Begemand77e59e2008-02-11 04:19:36 +00004589 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004590 return SDValue();
Nate Begemand77e59e2008-02-11 04:19:36 +00004591}
4592
Dan Gohman8181bd12008-07-27 21:46:04 +00004593SDValue
4594X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004595 MVT VT = Op.getValueType();
4596 MVT EVT = VT.getVectorElementType();
Nate Begemand77e59e2008-02-11 04:19:36 +00004597
4598 if (Subtarget->hasSSE41())
4599 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
4600
Evan Chenge12a7eb2007-12-12 07:55:34 +00004601 if (EVT == MVT::i8)
Dan Gohman8181bd12008-07-27 21:46:04 +00004602 return SDValue();
Evan Chenge12a7eb2007-12-12 07:55:34 +00004603
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004604 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00004605 SDValue N0 = Op.getOperand(0);
4606 SDValue N1 = Op.getOperand(1);
4607 SDValue N2 = Op.getOperand(2);
Evan Chenge12a7eb2007-12-12 07:55:34 +00004608
Duncan Sands92c43912008-06-06 12:08:01 +00004609 if (EVT.getSizeInBits() == 16) {
Evan Chenge12a7eb2007-12-12 07:55:34 +00004610 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
4611 // as its second argument.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004612 if (N1.getValueType() != MVT::i32)
Dale Johannesence0805b2009-02-03 19:33:06 +00004613 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004614 if (N2.getValueType() != MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004615 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesence0805b2009-02-03 19:33:06 +00004616 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004617 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004618 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004619}
4620
Dan Gohman8181bd12008-07-27 21:46:04 +00004621SDValue
4622X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004623 DebugLoc dl = Op.getDebugLoc();
Evan Cheng759fe022008-07-22 18:39:19 +00004624 if (Op.getValueType() == MVT::v2f32)
Dale Johannesence0805b2009-02-03 19:33:06 +00004625 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f32,
4626 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i32,
4627 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32,
Evan Cheng759fe022008-07-22 18:39:19 +00004628 Op.getOperand(0))));
4629
Dale Johannesence0805b2009-02-03 19:33:06 +00004630 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004631 MVT VT = MVT::v2i32;
4632 switch (Op.getValueType().getSimpleVT()) {
Evan Chengd1045a62008-02-18 23:04:32 +00004633 default: break;
4634 case MVT::v16i8:
4635 case MVT::v8i16:
4636 VT = MVT::v4i32;
4637 break;
4638 }
Dale Johannesence0805b2009-02-03 19:33:06 +00004639 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(),
4640 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, AnyExt));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004641}
4642
Bill Wendlingfef06052008-09-16 21:48:12 +00004643// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
4644// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
4645// one of the above mentioned nodes. It has to be wrapped because otherwise
4646// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
4647// be used to form addressing mode. These wrapped nodes will be selected
4648// into MOV32ri.
Dan Gohman8181bd12008-07-27 21:46:04 +00004649SDValue
4650X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004651 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dale Johannesen175fdef2009-02-06 21:50:26 +00004652 // FIXME there isn't really any debug info here, should come from the parent
4653 DebugLoc dl = CP->getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00004654 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004655 getPointerTy(),
4656 CP->getAlignment());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004657 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004658 // With PIC, the address is actually $g + Offset.
4659 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4660 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004661 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004662 DAG.getNode(X86ISD::GlobalBaseReg,
4663 DebugLoc::getUnknownLoc(),
4664 getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004665 Result);
4666 }
4667
4668 return Result;
4669}
4670
Dan Gohman8181bd12008-07-27 21:46:04 +00004671SDValue
Dale Johannesenea996922009-02-04 20:06:27 +00004672X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman36322c72008-10-18 02:06:02 +00004673 int64_t Offset,
Evan Cheng7f250d62008-09-24 00:05:32 +00004674 SelectionDAG &DAG) const {
Dan Gohman36322c72008-10-18 02:06:02 +00004675 bool IsPic = getTargetMachine().getRelocationModel() == Reloc::PIC_;
4676 bool ExtraLoadRequired =
4677 Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false);
4678
4679 // Create the TargetGlobalAddress node, folding in the constant
4680 // offset if it is legal.
4681 SDValue Result;
Dan Gohman3d5257c2008-10-21 03:38:42 +00004682 if (!IsPic && !ExtraLoadRequired && isInt32(Offset)) {
Dan Gohman36322c72008-10-18 02:06:02 +00004683 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
4684 Offset = 0;
4685 } else
4686 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), 0);
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004687 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman36322c72008-10-18 02:06:02 +00004688
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004689 // With PIC, the address is actually $g + Offset.
Dan Gohman36322c72008-10-18 02:06:02 +00004690 if (IsPic && !Subtarget->isPICStyleRIPRel()) {
Dale Johannesenea996922009-02-04 20:06:27 +00004691 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
4692 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004693 Result);
4694 }
Scott Michel91099d62009-02-17 22:15:04 +00004695
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004696 // For Darwin & Mingw32, external and weak symbols are indirect, so we want to
4697 // load the value at address GV, not the value of GV itself. This means that
4698 // the GlobalAddress must be in the base or index register of the address, not
4699 // the GV offset field. Platform check is inside GVRequiresExtraLoad() call
4700 // The same applies for external symbols during PIC codegen
Dan Gohman36322c72008-10-18 02:06:02 +00004701 if (ExtraLoadRequired)
Dale Johannesenea996922009-02-04 20:06:27 +00004702 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004703 PseudoSourceValue::getGOT(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004704
Dan Gohman36322c72008-10-18 02:06:02 +00004705 // If there was a non-zero offset that we didn't fold, create an explicit
4706 // addition for it.
4707 if (Offset != 0)
Dale Johannesenea996922009-02-04 20:06:27 +00004708 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman36322c72008-10-18 02:06:02 +00004709 DAG.getConstant(Offset, getPointerTy()));
4710
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004711 return Result;
4712}
4713
Evan Cheng7f250d62008-09-24 00:05:32 +00004714SDValue
4715X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) {
4716 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman36322c72008-10-18 02:06:02 +00004717 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004718 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Cheng7f250d62008-09-24 00:05:32 +00004719}
4720
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004721// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman8181bd12008-07-27 21:46:04 +00004722static SDValue
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004723LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00004724 const MVT PtrVT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004725 SDValue InFlag;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004726 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
4727 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004728 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004729 DebugLoc::getUnknownLoc(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004730 PtrVT), InFlag);
4731 InFlag = Chain.getValue(1);
4732
4733 // emit leal symbol@TLSGD(,%ebx,1), %eax
4734 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004735 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004736 GA->getValueType(0),
4737 GA->getOffset());
Dan Gohman8181bd12008-07-27 21:46:04 +00004738 SDValue Ops[] = { Chain, TGA, InFlag };
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004739 SDValue Result = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004740 InFlag = Result.getValue(2);
4741 Chain = Result.getValue(1);
4742
4743 // call ___tls_get_addr. This function receives its argument in
4744 // the register EAX.
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004745 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Result, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004746 InFlag = Chain.getValue(1);
4747
4748 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004749 SDValue Ops1[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00004750 DAG.getTargetExternalSymbol("___tls_get_addr",
4751 PtrVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004752 DAG.getRegister(X86::EAX, PtrVT),
4753 DAG.getRegister(X86::EBX, PtrVT),
4754 InFlag };
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004755 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops1, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004756 InFlag = Chain.getValue(1);
4757
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004758 return DAG.getCopyFromReg(Chain, dl, X86::EAX, PtrVT, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004759}
4760
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004761// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman8181bd12008-07-27 21:46:04 +00004762static SDValue
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004763LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00004764 const MVT PtrVT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004765 SDValue InFlag, Chain;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004766 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004767
4768 // emit leaq symbol@TLSGD(%rip), %rdi
4769 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004770 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004771 GA->getValueType(0),
4772 GA->getOffset());
Dan Gohman8181bd12008-07-27 21:46:04 +00004773 SDValue Ops[] = { DAG.getEntryNode(), TGA};
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004774 SDValue Result = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004775 Chain = Result.getValue(1);
4776 InFlag = Result.getValue(2);
4777
aslb204cd52008-08-16 12:58:29 +00004778 // call __tls_get_addr. This function receives its argument in
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004779 // the register RDI.
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004780 Chain = DAG.getCopyToReg(Chain, dl, X86::RDI, Result, InFlag);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004781 InFlag = Chain.getValue(1);
4782
4783 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004784 SDValue Ops1[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00004785 DAG.getTargetExternalSymbol("__tls_get_addr",
4786 PtrVT),
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004787 DAG.getRegister(X86::RDI, PtrVT),
4788 InFlag };
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004789 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops1, 4);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004790 InFlag = Chain.getValue(1);
4791
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004792 return DAG.getCopyFromReg(Chain, dl, X86::RAX, PtrVT, InFlag);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004793}
4794
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004795// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
4796// "local exec" model.
Dan Gohman8181bd12008-07-27 21:46:04 +00004797static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Rafael Espindola7b620af2009-02-27 13:37:18 +00004798 const MVT PtrVT, TLSModel::Model model) {
Dale Johannesenea996922009-02-04 20:06:27 +00004799 DebugLoc dl = GA->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004800 // Get the Thread Pointer
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004801 SDValue ThreadPointer = DAG.getNode(X86ISD::THREAD_POINTER,
4802 DebugLoc::getUnknownLoc(), PtrVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004803 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
4804 // exec)
Dan Gohman8181bd12008-07-27 21:46:04 +00004805 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004806 GA->getValueType(0),
4807 GA->getOffset());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004808 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, TGA);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004809
Rafael Espindola7b620af2009-02-27 13:37:18 +00004810 if (model == TLSModel::InitialExec)
Dale Johannesenea996922009-02-04 20:06:27 +00004811 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004812 PseudoSourceValue::getGOT(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004813
4814 // The address of the thread local variable is the add of the thread
4815 // pointer with the offset of the variable.
Dale Johannesenea996922009-02-04 20:06:27 +00004816 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004817}
4818
Dan Gohman8181bd12008-07-27 21:46:04 +00004819SDValue
4820X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004821 // TODO: implement the "local dynamic" model
4822 // TODO: implement the "initial exec"model for pic executables
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004823 assert(Subtarget->isTargetELF() &&
4824 "TLS not implemented for non-ELF targets");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004825 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Rafael Espindola7b620af2009-02-27 13:37:18 +00004826 GlobalValue *GV = GA->getGlobal();
4827 TLSModel::Model model =
4828 getTLSModel (GV, getTargetMachine().getRelocationModel());
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004829 if (Subtarget->is64Bit()) {
Rafael Espindola7b620af2009-02-27 13:37:18 +00004830 switch (model) {
4831 case TLSModel::GeneralDynamic:
4832 case TLSModel::LocalDynamic: // not implemented
4833 case TLSModel::InitialExec: // not implemented
4834 case TLSModel::LocalExec: // not implemented
4835 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
4836 default:
4837 assert (0 && "Unknown TLS model");
4838 }
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004839 } else {
Rafael Espindola7b620af2009-02-27 13:37:18 +00004840 switch (model) {
4841 case TLSModel::GeneralDynamic:
4842 case TLSModel::LocalDynamic: // not implemented
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004843 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Rafael Espindola7b620af2009-02-27 13:37:18 +00004844
4845 case TLSModel::InitialExec:
4846 case TLSModel::LocalExec:
4847 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model);
4848 default:
4849 assert (0 && "Unknown TLS model");
4850 }
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004851 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004852}
4853
Dan Gohman8181bd12008-07-27 21:46:04 +00004854SDValue
4855X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004856 // FIXME there isn't really any debug info here
4857 DebugLoc dl = Op.getDebugLoc();
Bill Wendlingfef06052008-09-16 21:48:12 +00004858 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
4859 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004860 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004861 // With PIC, the address is actually $g + Offset.
4862 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4863 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004864 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Scott Michel91099d62009-02-17 22:15:04 +00004865 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004866 DebugLoc::getUnknownLoc(),
4867 getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004868 Result);
4869 }
4870
4871 return Result;
4872}
4873
Dan Gohman8181bd12008-07-27 21:46:04 +00004874SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004875 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dale Johannesen175fdef2009-02-06 21:50:26 +00004876 // FIXME there isn't really any debug into here
4877 DebugLoc dl = JT->getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00004878 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004879 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004880 // With PIC, the address is actually $g + Offset.
4881 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4882 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004883 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004884 DAG.getNode(X86ISD::GlobalBaseReg,
4885 DebugLoc::getUnknownLoc(),
4886 getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004887 Result);
4888 }
4889
4890 return Result;
4891}
4892
Chris Lattner62814a32007-10-17 06:02:13 +00004893/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michel91099d62009-02-17 22:15:04 +00004894/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohman8181bd12008-07-27 21:46:04 +00004895SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) {
Dan Gohman092014e2008-03-03 22:22:09 +00004896 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Duncan Sands92c43912008-06-06 12:08:01 +00004897 MVT VT = Op.getValueType();
4898 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004899 DebugLoc dl = Op.getDebugLoc();
Chris Lattner62814a32007-10-17 06:02:13 +00004900 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman8181bd12008-07-27 21:46:04 +00004901 SDValue ShOpLo = Op.getOperand(0);
4902 SDValue ShOpHi = Op.getOperand(1);
4903 SDValue ShAmt = Op.getOperand(2);
4904 SDValue Tmp1 = isSRA ?
Scott Michel91099d62009-02-17 22:15:04 +00004905 DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Dale Johannesence0805b2009-02-03 19:33:06 +00004906 DAG.getConstant(VTBits - 1, MVT::i8)) :
Dan Gohman092014e2008-03-03 22:22:09 +00004907 DAG.getConstant(0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004908
Dan Gohman8181bd12008-07-27 21:46:04 +00004909 SDValue Tmp2, Tmp3;
Chris Lattner62814a32007-10-17 06:02:13 +00004910 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004911 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
4912 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00004913 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00004914 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
4915 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00004916 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004917
Dale Johannesence0805b2009-02-03 19:33:06 +00004918 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
Dan Gohman092014e2008-03-03 22:22:09 +00004919 DAG.getConstant(VTBits, MVT::i8));
Dale Johannesence0805b2009-02-03 19:33:06 +00004920 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, VT,
Chris Lattner62814a32007-10-17 06:02:13 +00004921 AndNode, DAG.getConstant(0, MVT::i8));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004922
Dan Gohman8181bd12008-07-27 21:46:04 +00004923 SDValue Hi, Lo;
4924 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
4925 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
4926 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf19591c2008-06-30 10:19:09 +00004927
Chris Lattner62814a32007-10-17 06:02:13 +00004928 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004929 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4930 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner62814a32007-10-17 06:02:13 +00004931 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00004932 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4933 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner62814a32007-10-17 06:02:13 +00004934 }
4935
Dan Gohman8181bd12008-07-27 21:46:04 +00004936 SDValue Ops[2] = { Lo, Hi };
Dale Johannesence0805b2009-02-03 19:33:06 +00004937 return DAG.getMergeValues(Ops, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004938}
4939
Dan Gohman8181bd12008-07-27 21:46:04 +00004940SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004941 MVT SrcVT = Op.getOperand(0).getValueType();
Duncan Sandsec142ee2008-06-08 20:54:56 +00004942 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004943 "Unknown SINT_TO_FP to lower!");
Scott Michel91099d62009-02-17 22:15:04 +00004944
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004945 // These are really Legal; caller falls through into that case.
4946 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Dan Gohman8181bd12008-07-27 21:46:04 +00004947 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00004948 if (SrcVT == MVT::i64 && Op.getValueType() != MVT::f80 &&
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004949 Subtarget->is64Bit())
Dan Gohman8181bd12008-07-27 21:46:04 +00004950 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00004951
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004952 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00004953 unsigned Size = SrcVT.getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004954 MachineFunction &MF = DAG.getMachineFunction();
4955 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
Dan Gohman8181bd12008-07-27 21:46:04 +00004956 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00004957 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Dan Gohman12a9c082008-02-06 22:27:42 +00004958 StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004959 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004960
4961 // Build the FILD
4962 SDVTList Tys;
Chris Lattnercf515b52008-01-16 06:24:21 +00004963 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen2fc20782007-09-14 22:26:36 +00004964 if (useSSE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004965 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
4966 else
4967 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00004968 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004969 Ops.push_back(Chain);
4970 Ops.push_back(StackSlot);
4971 Ops.push_back(DAG.getValueType(SrcVT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004972 SDValue Result = DAG.getNode(useSSE ? X86ISD::FILD_FLAG : X86ISD::FILD, dl,
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004973 Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004974
Dale Johannesen2fc20782007-09-14 22:26:36 +00004975 if (useSSE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004976 Chain = Result.getValue(1);
Dan Gohman8181bd12008-07-27 21:46:04 +00004977 SDValue InFlag = Result.getValue(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004978
4979 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
4980 // shouldn't be necessary except that RFP cannot be live across
4981 // multiple blocks. When stackifier is fixed, they can be uncoupled.
4982 MachineFunction &MF = DAG.getMachineFunction();
4983 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
Dan Gohman8181bd12008-07-27 21:46:04 +00004984 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004985 Tys = DAG.getVTList(MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00004986 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004987 Ops.push_back(Chain);
4988 Ops.push_back(Result);
4989 Ops.push_back(StackSlot);
4990 Ops.push_back(DAG.getValueType(Op.getValueType()));
4991 Ops.push_back(InFlag);
Dale Johannesence0805b2009-02-03 19:33:06 +00004992 Chain = DAG.getNode(X86ISD::FST, dl, Tys, &Ops[0], Ops.size());
4993 Result = DAG.getLoad(Op.getValueType(), dl, Chain, StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004994 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004995 }
4996
4997 return Result;
4998}
4999
Bill Wendling14a30ef2009-01-17 03:56:04 +00005000// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
5001SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op, SelectionDAG &DAG) {
5002 // This algorithm is not obvious. Here it is in C code, more or less:
5003 /*
5004 double uint64_to_double( uint32_t hi, uint32_t lo ) {
5005 static const __m128i exp = { 0x4330000045300000ULL, 0 };
5006 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesenfb019af2008-10-21 23:07:49 +00005007
Bill Wendling14a30ef2009-01-17 03:56:04 +00005008 // Copy ints to xmm registers.
5009 __m128i xh = _mm_cvtsi32_si128( hi );
5010 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesenfb019af2008-10-21 23:07:49 +00005011
Bill Wendling14a30ef2009-01-17 03:56:04 +00005012 // Combine into low half of a single xmm register.
5013 __m128i x = _mm_unpacklo_epi32( xh, xl );
5014 __m128d d;
5015 double sd;
Dale Johannesenfb019af2008-10-21 23:07:49 +00005016
Bill Wendling14a30ef2009-01-17 03:56:04 +00005017 // Merge in appropriate exponents to give the integer bits the right
5018 // magnitude.
5019 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesenfb019af2008-10-21 23:07:49 +00005020
Bill Wendling14a30ef2009-01-17 03:56:04 +00005021 // Subtract away the biases to deal with the IEEE-754 double precision
5022 // implicit 1.
5023 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesenfb019af2008-10-21 23:07:49 +00005024
Bill Wendling14a30ef2009-01-17 03:56:04 +00005025 // All conversions up to here are exact. The correctly rounded result is
5026 // calculated using the current rounding mode using the following
5027 // horizontal add.
5028 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
5029 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
5030 // store doesn't really need to be here (except
5031 // maybe to zero the other double)
5032 return sd;
5033 }
5034 */
Dale Johannesenfb019af2008-10-21 23:07:49 +00005035
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005036 DebugLoc dl = Op.getDebugLoc();
Dale Johannesence0805b2009-02-03 19:33:06 +00005037
Dale Johannesena359b8b2008-10-21 20:50:01 +00005038 // Build some magic constants.
Bill Wendling14a30ef2009-01-17 03:56:04 +00005039 std::vector<Constant*> CV0;
Dale Johannesena359b8b2008-10-21 20:50:01 +00005040 CV0.push_back(ConstantInt::get(APInt(32, 0x45300000)));
5041 CV0.push_back(ConstantInt::get(APInt(32, 0x43300000)));
5042 CV0.push_back(ConstantInt::get(APInt(32, 0)));
5043 CV0.push_back(ConstantInt::get(APInt(32, 0)));
5044 Constant *C0 = ConstantVector::get(CV0);
5045 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 4);
5046
Bill Wendling14a30ef2009-01-17 03:56:04 +00005047 std::vector<Constant*> CV1;
Dale Johannesena359b8b2008-10-21 20:50:01 +00005048 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4530000000000000ULL))));
5049 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4330000000000000ULL))));
5050 Constant *C1 = ConstantVector::get(CV1);
5051 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 4);
5052
5053 SmallVector<SDValue, 4> MaskVec;
5054 MaskVec.push_back(DAG.getConstant(0, MVT::i32));
5055 MaskVec.push_back(DAG.getConstant(4, MVT::i32));
5056 MaskVec.push_back(DAG.getConstant(1, MVT::i32));
5057 MaskVec.push_back(DAG.getConstant(5, MVT::i32));
Evan Cheng907a2d22009-02-25 22:49:59 +00005058 SDValue UnpcklMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
5059 &MaskVec[0], MaskVec.size());
Dale Johannesena359b8b2008-10-21 20:50:01 +00005060 SmallVector<SDValue, 4> MaskVec2;
Duncan Sandsca872ca2008-10-22 11:24:12 +00005061 MaskVec2.push_back(DAG.getConstant(1, MVT::i32));
5062 MaskVec2.push_back(DAG.getConstant(0, MVT::i32));
Evan Cheng907a2d22009-02-25 22:49:59 +00005063 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32,
5064 &MaskVec2[0], MaskVec2.size());
Dale Johannesena359b8b2008-10-21 20:50:01 +00005065
Dale Johannesence0805b2009-02-03 19:33:06 +00005066 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5067 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sandsca872ca2008-10-22 11:24:12 +00005068 Op.getOperand(0),
5069 DAG.getIntPtrConstant(1)));
Dale Johannesence0805b2009-02-03 19:33:06 +00005070 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5071 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sandsca872ca2008-10-22 11:24:12 +00005072 Op.getOperand(0),
5073 DAG.getIntPtrConstant(0)));
Dale Johannesence0805b2009-02-03 19:33:06 +00005074 SDValue Unpck1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v4i32,
Dale Johannesena359b8b2008-10-21 20:50:01 +00005075 XR1, XR2, UnpcklMask);
Dale Johannesence0805b2009-02-03 19:33:06 +00005076 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005077 PseudoSourceValue::getConstantPool(), 0,
5078 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005079 SDValue Unpck2 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v4i32,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005080 Unpck1, CLod0, UnpcklMask);
Dale Johannesence0805b2009-02-03 19:33:06 +00005081 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2);
5082 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005083 PseudoSourceValue::getConstantPool(), 0,
5084 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005085 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling14a30ef2009-01-17 03:56:04 +00005086
Dale Johannesena359b8b2008-10-21 20:50:01 +00005087 // Add the halves; easiest way is to swap them into another reg first.
Dale Johannesence0805b2009-02-03 19:33:06 +00005088 SDValue Shuf = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2f64,
Dale Johannesena359b8b2008-10-21 20:50:01 +00005089 Sub, Sub, ShufMask);
Dale Johannesence0805b2009-02-03 19:33:06 +00005090 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
5091 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesena359b8b2008-10-21 20:50:01 +00005092 DAG.getIntPtrConstant(0));
5093}
5094
Bill Wendling14a30ef2009-01-17 03:56:04 +00005095// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
5096SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005097 DebugLoc dl = Op.getDebugLoc();
Bill Wendling14a30ef2009-01-17 03:56:04 +00005098 // FP constant to bias correct the final result.
5099 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
5100 MVT::f64);
5101
5102 // Load the 32-bit value into an XMM register.
Dale Johannesence0805b2009-02-03 19:33:06 +00005103 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5104 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005105 Op.getOperand(0),
5106 DAG.getIntPtrConstant(0)));
5107
Dale Johannesence0805b2009-02-03 19:33:06 +00005108 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
5109 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load),
Bill Wendling14a30ef2009-01-17 03:56:04 +00005110 DAG.getIntPtrConstant(0));
5111
5112 // Or the load with the bias.
Dale Johannesence0805b2009-02-03 19:33:06 +00005113 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
5114 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
5115 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Chengc0ab5e52009-01-19 08:19:57 +00005116 MVT::v2f64, Load)),
Dale Johannesence0805b2009-02-03 19:33:06 +00005117 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
5118 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Chengc0ab5e52009-01-19 08:19:57 +00005119 MVT::v2f64, Bias)));
Dale Johannesence0805b2009-02-03 19:33:06 +00005120 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
5121 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or),
Bill Wendling14a30ef2009-01-17 03:56:04 +00005122 DAG.getIntPtrConstant(0));
5123
5124 // Subtract the bias.
Dale Johannesence0805b2009-02-03 19:33:06 +00005125 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling14a30ef2009-01-17 03:56:04 +00005126
5127 // Handle final rounding.
Bill Wendlingdb547de2009-01-17 07:40:19 +00005128 MVT DestVT = Op.getValueType();
5129
5130 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005131 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendlingdb547de2009-01-17 07:40:19 +00005132 DAG.getIntPtrConstant(0));
5133 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005134 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendlingdb547de2009-01-17 07:40:19 +00005135 }
5136
5137 // Handle final rounding.
5138 return Sub;
Bill Wendling14a30ef2009-01-17 03:56:04 +00005139}
5140
5141SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Evan Cheng44fd2392009-01-19 08:08:22 +00005142 SDValue N0 = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005143 DebugLoc dl = Op.getDebugLoc();
Bill Wendling14a30ef2009-01-17 03:56:04 +00005144
Evan Cheng44fd2392009-01-19 08:08:22 +00005145 // Now not UINT_TO_FP is legal (it's marked custom), dag combiner won't
5146 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
5147 // the optimization here.
5148 if (DAG.SignBitIsZero(N0))
Dale Johannesence0805b2009-02-03 19:33:06 +00005149 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Cheng44fd2392009-01-19 08:08:22 +00005150
5151 MVT SrcVT = N0.getValueType();
Bill Wendling14a30ef2009-01-17 03:56:04 +00005152 if (SrcVT == MVT::i64) {
5153 // We only handle SSE2 f64 target here; caller can handle the rest.
5154 if (Op.getValueType() != MVT::f64 || !X86ScalarSSEf64)
5155 return SDValue();
Bill Wendlingdb547de2009-01-17 07:40:19 +00005156
Bill Wendling14a30ef2009-01-17 03:56:04 +00005157 return LowerUINT_TO_FP_i64(Op, DAG);
5158 } else if (SrcVT == MVT::i32) {
Bill Wendling14a30ef2009-01-17 03:56:04 +00005159 return LowerUINT_TO_FP_i32(Op, DAG);
5160 }
5161
5162 assert(0 && "Unknown UINT_TO_FP to lower!");
5163 return SDValue();
5164}
5165
Dan Gohman8181bd12008-07-27 21:46:04 +00005166std::pair<SDValue,SDValue> X86TargetLowering::
5167FP_TO_SINTHelper(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005168 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsec142ee2008-06-08 20:54:56 +00005169 assert(Op.getValueType().getSimpleVT() <= MVT::i64 &&
5170 Op.getValueType().getSimpleVT() >= MVT::i16 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005171 "Unknown FP_TO_SINT to lower!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005172
Dale Johannesen2fc20782007-09-14 22:26:36 +00005173 // These are really Legal.
Scott Michel91099d62009-02-17 22:15:04 +00005174 if (Op.getValueType() == MVT::i32 &&
Chris Lattnercf515b52008-01-16 06:24:21 +00005175 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman8181bd12008-07-27 21:46:04 +00005176 return std::make_pair(SDValue(), SDValue());
Dale Johannesen958b08b2007-09-19 23:55:34 +00005177 if (Subtarget->is64Bit() &&
5178 Op.getValueType() == MVT::i64 &&
5179 Op.getOperand(0).getValueType() != MVT::f80)
Dan Gohman8181bd12008-07-27 21:46:04 +00005180 return std::make_pair(SDValue(), SDValue());
Dale Johannesen2fc20782007-09-14 22:26:36 +00005181
Evan Cheng05441e62007-10-15 20:11:21 +00005182 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
5183 // stack slot.
5184 MachineFunction &MF = DAG.getMachineFunction();
Duncan Sands92c43912008-06-06 12:08:01 +00005185 unsigned MemSize = Op.getValueType().getSizeInBits()/8;
Evan Cheng05441e62007-10-15 20:11:21 +00005186 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
Dan Gohman8181bd12008-07-27 21:46:04 +00005187 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005188 unsigned Opc;
Duncan Sands92c43912008-06-06 12:08:01 +00005189 switch (Op.getValueType().getSimpleVT()) {
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005190 default: assert(0 && "Invalid FP_TO_SINT to lower!");
5191 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
5192 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
5193 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005194 }
5195
Dan Gohman8181bd12008-07-27 21:46:04 +00005196 SDValue Chain = DAG.getEntryNode();
5197 SDValue Value = Op.getOperand(0);
Chris Lattnercf515b52008-01-16 06:24:21 +00005198 if (isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005199 assert(Op.getValueType() == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Dale Johannesence0805b2009-02-03 19:33:06 +00005200 Chain = DAG.getStore(Chain, dl, Value, StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005201 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005202 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00005203 SDValue Ops[] = {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005204 Chain, StackSlot, DAG.getValueType(Op.getOperand(0).getValueType())
5205 };
Dale Johannesence0805b2009-02-03 19:33:06 +00005206 Value = DAG.getNode(X86ISD::FLD, dl, Tys, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005207 Chain = Value.getValue(1);
5208 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
5209 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
5210 }
5211
5212 // Build the FP_TO_INT*_IN_MEM
Dan Gohman8181bd12008-07-27 21:46:04 +00005213 SDValue Ops[] = { Chain, Value, StackSlot };
Dale Johannesence0805b2009-02-03 19:33:06 +00005214 SDValue FIST = DAG.getNode(Opc, dl, MVT::Other, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005215
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005216 return std::make_pair(FIST, StackSlot);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005217}
5218
Dan Gohman8181bd12008-07-27 21:46:04 +00005219SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) {
5220 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(Op, DAG);
5221 SDValue FIST = Vals.first, StackSlot = Vals.second;
Gabor Greif1c80d112008-08-28 21:40:38 +00005222 if (FIST.getNode() == 0) return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00005223
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005224 // Load the result.
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005225 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Dale Johannesence0805b2009-02-03 19:33:06 +00005226 FIST, StackSlot, NULL, 0);
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005227}
5228
Dan Gohman8181bd12008-07-27 21:46:04 +00005229SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005230 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00005231 MVT VT = Op.getValueType();
5232 MVT EltVT = VT;
5233 if (VT.isVector())
5234 EltVT = VT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005235 std::vector<Constant*> CV;
5236 if (EltVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005237 Constant *C = ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005238 CV.push_back(C);
5239 CV.push_back(C);
5240 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005241 Constant *C = ConstantFP::get(APFloat(APInt(32, ~(1U << 31))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005242 CV.push_back(C);
5243 CV.push_back(C);
5244 CV.push_back(C);
5245 CV.push_back(C);
5246 }
Dan Gohman11821702007-07-27 17:16:43 +00005247 Constant *C = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005248 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00005249 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005250 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005251 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005252 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005253}
5254
Dan Gohman8181bd12008-07-27 21:46:04 +00005255SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005256 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00005257 MVT VT = Op.getValueType();
5258 MVT EltVT = VT;
Evan Cheng92b8f782007-07-19 23:36:01 +00005259 unsigned EltNum = 1;
Duncan Sands92c43912008-06-06 12:08:01 +00005260 if (VT.isVector()) {
5261 EltVT = VT.getVectorElementType();
5262 EltNum = VT.getVectorNumElements();
Evan Cheng92b8f782007-07-19 23:36:01 +00005263 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005264 std::vector<Constant*> CV;
5265 if (EltVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005266 Constant *C = ConstantFP::get(APFloat(APInt(64, 1ULL << 63)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005267 CV.push_back(C);
5268 CV.push_back(C);
5269 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005270 Constant *C = ConstantFP::get(APFloat(APInt(32, 1U << 31)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005271 CV.push_back(C);
5272 CV.push_back(C);
5273 CV.push_back(C);
5274 CV.push_back(C);
5275 }
Dan Gohman11821702007-07-27 17:16:43 +00005276 Constant *C = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005277 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00005278 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005279 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005280 false, 16);
Duncan Sands92c43912008-06-06 12:08:01 +00005281 if (VT.isVector()) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005282 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
5283 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Scott Michel91099d62009-02-17 22:15:04 +00005284 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesence0805b2009-02-03 19:33:06 +00005285 Op.getOperand(0)),
5286 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask)));
Evan Cheng92b8f782007-07-19 23:36:01 +00005287 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00005288 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng92b8f782007-07-19 23:36:01 +00005289 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005290}
5291
Dan Gohman8181bd12008-07-27 21:46:04 +00005292SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
5293 SDValue Op0 = Op.getOperand(0);
5294 SDValue Op1 = Op.getOperand(1);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005295 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00005296 MVT VT = Op.getValueType();
5297 MVT SrcVT = Op1.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005298
5299 // If second operand is smaller, extend it first.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005300 if (SrcVT.bitsLT(VT)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005301 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005302 SrcVT = VT;
5303 }
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005304 // And if it is bigger, shrink it first.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005305 if (SrcVT.bitsGT(VT)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005306 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005307 SrcVT = VT;
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005308 }
5309
5310 // At this point the operands and the result should have the same
5311 // type, and that won't be f80 since that is not custom lowered.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005312
5313 // First get the sign bit of second operand.
5314 std::vector<Constant*> CV;
5315 if (SrcVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005316 CV.push_back(ConstantFP::get(APFloat(APInt(64, 1ULL << 63))));
5317 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005318 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005319 CV.push_back(ConstantFP::get(APFloat(APInt(32, 1U << 31))));
5320 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5321 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5322 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005323 }
Dan Gohman11821702007-07-27 17:16:43 +00005324 Constant *C = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005325 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00005326 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005327 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005328 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005329 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005330
5331 // Shift sign bit right or left if the two operands have different types.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005332 if (SrcVT.bitsGT(VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005333 // Op0 is MVT::f32, Op1 is MVT::f64.
Dale Johannesence0805b2009-02-03 19:33:06 +00005334 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
5335 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005336 DAG.getConstant(32, MVT::i32));
Dale Johannesence0805b2009-02-03 19:33:06 +00005337 SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit);
5338 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner5872a362008-01-17 07:00:52 +00005339 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005340 }
5341
5342 // Clear first operand sign bit.
5343 CV.clear();
5344 if (VT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005345 CV.push_back(ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63)))));
5346 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005347 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005348 CV.push_back(ConstantFP::get(APFloat(APInt(32, ~(1U << 31)))));
5349 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5350 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5351 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005352 }
Dan Gohman11821702007-07-27 17:16:43 +00005353 C = ConstantVector::get(CV);
5354 CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00005355 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005356 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005357 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005358 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005359
5360 // Or the value with the sign bit.
Dale Johannesence0805b2009-02-03 19:33:06 +00005361 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005362}
5363
Dan Gohman99a12192009-03-04 19:44:21 +00005364/// Emit nodes that will be selected as "test Op0,Op0", or something
5365/// equivalent.
5366SDValue X86TargetLowering::EmitTest(SDValue Op, SelectionDAG &DAG) {
5367 DebugLoc dl = Op.getDebugLoc();
5368
5369 // See if we can use the EFLAGS value from the operand instead of
5370 // doing a separate TEST.
5371 if (Op.getResNo() == 0) {
5372 unsigned Opcode = 0;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005373 unsigned NumOperands = 0;
Dan Gohman99a12192009-03-04 19:44:21 +00005374 switch (Op.getNode()->getOpcode()) {
5375 case ISD::ADD:
5376 // Due to an isel shortcoming, be conservative if this add is likely to
5377 // be selected as part of a load-modify-store instruction. When the root
5378 // node in a match is a store, isel doesn't know how to remap non-chain
5379 // non-flag uses of other nodes in the match, such as the ADD in this
5380 // case. This leads to the ADD being left around and reselected, with
5381 // the result being two adds in the output.
5382 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
5383 UE = Op.getNode()->use_end(); UI != UE; ++UI)
5384 if (UI->getOpcode() == ISD::STORE)
5385 goto default_case;
Dan Gohman99a12192009-03-04 19:44:21 +00005386 if (ConstantSDNode *C =
Dan Gohmand90a8fd2009-03-05 19:32:48 +00005387 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
5388 // An add of one will be selected as an INC.
Dan Gohman99a12192009-03-04 19:44:21 +00005389 if (C->getAPIntValue() == 1) {
5390 Opcode = X86ISD::INC;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005391 NumOperands = 1;
Dan Gohman99a12192009-03-04 19:44:21 +00005392 break;
5393 }
Dan Gohmand90a8fd2009-03-05 19:32:48 +00005394 // An add of negative one (subtract of one) will be selected as a DEC.
5395 if (C->getAPIntValue().isAllOnesValue()) {
5396 Opcode = X86ISD::DEC;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005397 NumOperands = 1;
Dan Gohmand90a8fd2009-03-05 19:32:48 +00005398 break;
5399 }
5400 }
Dan Gohman99a12192009-03-04 19:44:21 +00005401 // Otherwise use a regular EFLAGS-setting add.
5402 Opcode = X86ISD::ADD;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005403 NumOperands = 2;
Dan Gohman99a12192009-03-04 19:44:21 +00005404 break;
5405 case ISD::SUB:
5406 // Due to the ISEL shortcoming noted above, be conservative if this sub is
5407 // likely to be selected as part of a load-modify-store instruction.
5408 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
5409 UE = Op.getNode()->use_end(); UI != UE; ++UI)
5410 if (UI->getOpcode() == ISD::STORE)
5411 goto default_case;
Dan Gohman99a12192009-03-04 19:44:21 +00005412 // Otherwise use a regular EFLAGS-setting sub.
5413 Opcode = X86ISD::SUB;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005414 NumOperands = 2;
Dan Gohman99a12192009-03-04 19:44:21 +00005415 break;
5416 case X86ISD::ADD:
5417 case X86ISD::SUB:
5418 case X86ISD::INC:
5419 case X86ISD::DEC:
5420 return SDValue(Op.getNode(), 1);
5421 default:
5422 default_case:
5423 break;
5424 }
5425 if (Opcode != 0) {
5426 const MVT *VTs = DAG.getNodeValueTypes(Op.getValueType(), MVT::i32);
5427 SmallVector<SDValue, 4> Ops;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005428 for (unsigned i = 0, e = NumOperands; i != e; ++i)
Dan Gohman99a12192009-03-04 19:44:21 +00005429 Ops.push_back(Op.getOperand(i));
5430 SDValue New = DAG.getNode(Opcode, dl, VTs, 2, &Ops[0], Ops.size());
5431 DAG.ReplaceAllUsesWith(Op, New);
5432 return SDValue(New.getNode(), 1);
5433 }
5434 }
5435
5436 // Otherwise just emit a CMP with 0, which is the TEST pattern.
5437 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
5438 DAG.getConstant(0, Op.getValueType()));
5439}
5440
5441/// Emit nodes that will be selected as "cmp Op0,Op1", or something
5442/// equivalent.
5443SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, SelectionDAG &DAG) {
5444 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
5445 if (C->getAPIntValue() == 0)
5446 return EmitTest(Op0, DAG);
5447
5448 DebugLoc dl = Op0.getDebugLoc();
5449 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
5450}
5451
Dan Gohman8181bd12008-07-27 21:46:04 +00005452SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
Evan Cheng950aac02007-09-25 01:57:46 +00005453 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
Dan Gohman8181bd12008-07-27 21:46:04 +00005454 SDValue Op0 = Op.getOperand(0);
5455 SDValue Op1 = Op.getOperand(1);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005456 DebugLoc dl = Op.getDebugLoc();
Chris Lattner77a62312008-12-25 05:34:37 +00005457 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Scott Michel91099d62009-02-17 22:15:04 +00005458
Dan Gohman22cefb02009-01-29 01:59:02 +00005459 // Lower (X & (1 << N)) == 0 to BT(X, N).
5460 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
5461 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Dan Gohman13dd9522009-01-13 23:25:30 +00005462 if (Op0.getOpcode() == ISD::AND &&
5463 Op0.hasOneUse() &&
5464 Op1.getOpcode() == ISD::Constant &&
Dan Gohman22cefb02009-01-29 01:59:02 +00005465 cast<ConstantSDNode>(Op1)->getZExtValue() == 0 &&
Chris Lattner77a62312008-12-25 05:34:37 +00005466 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Dan Gohman22cefb02009-01-29 01:59:02 +00005467 SDValue LHS, RHS;
5468 if (Op0.getOperand(1).getOpcode() == ISD::SHL) {
5469 if (ConstantSDNode *Op010C =
5470 dyn_cast<ConstantSDNode>(Op0.getOperand(1).getOperand(0)))
5471 if (Op010C->getZExtValue() == 1) {
5472 LHS = Op0.getOperand(0);
5473 RHS = Op0.getOperand(1).getOperand(1);
5474 }
5475 } else if (Op0.getOperand(0).getOpcode() == ISD::SHL) {
5476 if (ConstantSDNode *Op000C =
5477 dyn_cast<ConstantSDNode>(Op0.getOperand(0).getOperand(0)))
5478 if (Op000C->getZExtValue() == 1) {
5479 LHS = Op0.getOperand(1);
5480 RHS = Op0.getOperand(0).getOperand(1);
5481 }
5482 } else if (Op0.getOperand(1).getOpcode() == ISD::Constant) {
5483 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op0.getOperand(1));
5484 SDValue AndLHS = Op0.getOperand(0);
5485 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
5486 LHS = AndLHS.getOperand(0);
5487 RHS = AndLHS.getOperand(1);
5488 }
5489 }
Evan Cheng950aac02007-09-25 01:57:46 +00005490
Dan Gohman22cefb02009-01-29 01:59:02 +00005491 if (LHS.getNode()) {
Chris Lattner77a62312008-12-25 05:34:37 +00005492 // If LHS is i8, promote it to i16 with any_extend. There is no i8 BT
5493 // instruction. Since the shift amount is in-range-or-undefined, we know
5494 // that doing a bittest on the i16 value is ok. We extend to i32 because
5495 // the encoding for the i16 version is larger than the i32 version.
5496 if (LHS.getValueType() == MVT::i8)
Dale Johannesence0805b2009-02-03 19:33:06 +00005497 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattner77a62312008-12-25 05:34:37 +00005498
5499 // If the operand types disagree, extend the shift amount to match. Since
5500 // BT ignores high bits (like shifts) we can use anyextend.
5501 if (LHS.getValueType() != RHS.getValueType())
Dale Johannesence0805b2009-02-03 19:33:06 +00005502 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohman22cefb02009-01-29 01:59:02 +00005503
Dale Johannesence0805b2009-02-03 19:33:06 +00005504 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Dan Gohman0fc9ed62009-01-07 00:15:08 +00005505 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Dale Johannesence0805b2009-02-03 19:33:06 +00005506 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattner77a62312008-12-25 05:34:37 +00005507 DAG.getConstant(Cond, MVT::i8), BT);
5508 }
5509 }
5510
5511 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
5512 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Scott Michel91099d62009-02-17 22:15:04 +00005513
Dan Gohman99a12192009-03-04 19:44:21 +00005514 SDValue Cond = EmitCmp(Op0, Op1, DAG);
Dale Johannesence0805b2009-02-03 19:33:06 +00005515 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattner60435922008-12-24 00:11:37 +00005516 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng950aac02007-09-25 01:57:46 +00005517}
5518
Dan Gohman8181bd12008-07-27 21:46:04 +00005519SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
5520 SDValue Cond;
5521 SDValue Op0 = Op.getOperand(0);
5522 SDValue Op1 = Op.getOperand(1);
5523 SDValue CC = Op.getOperand(2);
Nate Begeman03605a02008-07-17 16:51:19 +00005524 MVT VT = Op.getValueType();
5525 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
5526 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005527 DebugLoc dl = Op.getDebugLoc();
Nate Begeman03605a02008-07-17 16:51:19 +00005528
5529 if (isFP) {
5530 unsigned SSECC = 8;
Evan Cheng33754092008-08-05 22:19:15 +00005531 MVT VT0 = Op0.getValueType();
5532 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
5533 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman03605a02008-07-17 16:51:19 +00005534 bool Swap = false;
5535
5536 switch (SetCCOpcode) {
5537 default: break;
Nate Begeman6357f9d2008-07-25 19:05:58 +00005538 case ISD::SETOEQ:
Nate Begeman03605a02008-07-17 16:51:19 +00005539 case ISD::SETEQ: SSECC = 0; break;
Scott Michel91099d62009-02-17 22:15:04 +00005540 case ISD::SETOGT:
Nate Begeman03605a02008-07-17 16:51:19 +00005541 case ISD::SETGT: Swap = true; // Fallthrough
5542 case ISD::SETLT:
5543 case ISD::SETOLT: SSECC = 1; break;
5544 case ISD::SETOGE:
5545 case ISD::SETGE: Swap = true; // Fallthrough
5546 case ISD::SETLE:
5547 case ISD::SETOLE: SSECC = 2; break;
5548 case ISD::SETUO: SSECC = 3; break;
Nate Begeman6357f9d2008-07-25 19:05:58 +00005549 case ISD::SETUNE:
Nate Begeman03605a02008-07-17 16:51:19 +00005550 case ISD::SETNE: SSECC = 4; break;
5551 case ISD::SETULE: Swap = true;
5552 case ISD::SETUGE: SSECC = 5; break;
5553 case ISD::SETULT: Swap = true;
5554 case ISD::SETUGT: SSECC = 6; break;
5555 case ISD::SETO: SSECC = 7; break;
5556 }
5557 if (Swap)
5558 std::swap(Op0, Op1);
5559
Nate Begeman6357f9d2008-07-25 19:05:58 +00005560 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman03605a02008-07-17 16:51:19 +00005561 if (SSECC == 8) {
Nate Begeman6357f9d2008-07-25 19:05:58 +00005562 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005563 SDValue UNORD, EQ;
Dale Johannesence0805b2009-02-03 19:33:06 +00005564 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
5565 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
5566 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begeman6357f9d2008-07-25 19:05:58 +00005567 }
5568 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005569 SDValue ORD, NEQ;
Dale Johannesence0805b2009-02-03 19:33:06 +00005570 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
5571 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
5572 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begeman6357f9d2008-07-25 19:05:58 +00005573 }
5574 assert(0 && "Illegal FP comparison");
Nate Begeman03605a02008-07-17 16:51:19 +00005575 }
5576 // Handle all other FP comparisons here.
Dale Johannesence0805b2009-02-03 19:33:06 +00005577 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman03605a02008-07-17 16:51:19 +00005578 }
Scott Michel91099d62009-02-17 22:15:04 +00005579
Nate Begeman03605a02008-07-17 16:51:19 +00005580 // We are handling one of the integer comparisons here. Since SSE only has
5581 // GT and EQ comparisons for integer, swapping operands and multiple
5582 // operations may be required for some comparisons.
5583 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
5584 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michel91099d62009-02-17 22:15:04 +00005585
Nate Begeman03605a02008-07-17 16:51:19 +00005586 switch (VT.getSimpleVT()) {
5587 default: break;
5588 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
5589 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
5590 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
5591 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
5592 }
Scott Michel91099d62009-02-17 22:15:04 +00005593
Nate Begeman03605a02008-07-17 16:51:19 +00005594 switch (SetCCOpcode) {
5595 default: break;
5596 case ISD::SETNE: Invert = true;
5597 case ISD::SETEQ: Opc = EQOpc; break;
5598 case ISD::SETLT: Swap = true;
5599 case ISD::SETGT: Opc = GTOpc; break;
5600 case ISD::SETGE: Swap = true;
5601 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
5602 case ISD::SETULT: Swap = true;
5603 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
5604 case ISD::SETUGE: Swap = true;
5605 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
5606 }
5607 if (Swap)
5608 std::swap(Op0, Op1);
Scott Michel91099d62009-02-17 22:15:04 +00005609
Nate Begeman03605a02008-07-17 16:51:19 +00005610 // Since SSE has no unsigned integer comparisons, we need to flip the sign
5611 // bits of the inputs before performing those operations.
5612 if (FlipSigns) {
5613 MVT EltVT = VT.getVectorElementType();
Duncan Sands505ba942009-02-01 18:06:53 +00005614 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
5615 EltVT);
Dan Gohman8181bd12008-07-27 21:46:04 +00005616 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Cheng907a2d22009-02-25 22:49:59 +00005617 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
5618 SignBits.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00005619 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
5620 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman03605a02008-07-17 16:51:19 +00005621 }
Scott Michel91099d62009-02-17 22:15:04 +00005622
Dale Johannesence0805b2009-02-03 19:33:06 +00005623 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman03605a02008-07-17 16:51:19 +00005624
5625 // If the logical-not of the result is required, perform that now.
Bob Wilson81a42cf2009-01-22 17:39:32 +00005626 if (Invert)
Dale Johannesence0805b2009-02-03 19:33:06 +00005627 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson81a42cf2009-01-22 17:39:32 +00005628
Nate Begeman03605a02008-07-17 16:51:19 +00005629 return Result;
5630}
Evan Cheng950aac02007-09-25 01:57:46 +00005631
Evan Chengd580f022008-12-03 08:38:43 +00005632// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman99a12192009-03-04 19:44:21 +00005633static bool isX86LogicalCmp(SDValue Op) {
5634 unsigned Opc = Op.getNode()->getOpcode();
5635 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
5636 return true;
5637 if (Op.getResNo() == 1 &&
5638 (Opc == X86ISD::ADD ||
5639 Opc == X86ISD::SUB ||
5640 Opc == X86ISD::SMUL ||
5641 Opc == X86ISD::UMUL ||
5642 Opc == X86ISD::INC ||
5643 Opc == X86ISD::DEC))
5644 return true;
5645
5646 return false;
Evan Chengd580f022008-12-03 08:38:43 +00005647}
5648
Dan Gohman8181bd12008-07-27 21:46:04 +00005649SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005650 bool addTest = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00005651 SDValue Cond = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005652 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00005653 SDValue CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005654
5655 if (Cond.getOpcode() == ISD::SETCC)
Evan Cheng621216e2007-09-29 00:00:36 +00005656 Cond = LowerSETCC(Cond, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005657
Evan Cheng50d37ab2007-10-08 22:16:29 +00005658 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5659 // setting operand in place of the X86ISD::SETCC.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005660 if (Cond.getOpcode() == X86ISD::SETCC) {
5661 CC = Cond.getOperand(0);
5662
Dan Gohman8181bd12008-07-27 21:46:04 +00005663 SDValue Cmp = Cond.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005664 unsigned Opc = Cmp.getOpcode();
Duncan Sands92c43912008-06-06 12:08:01 +00005665 MVT VT = Op.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00005666
Evan Cheng50d37ab2007-10-08 22:16:29 +00005667 bool IllegalFPCMov = false;
Duncan Sands92c43912008-06-06 12:08:01 +00005668 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattnercf515b52008-01-16 06:24:21 +00005669 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman40686732008-09-26 21:54:37 +00005670 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michel91099d62009-02-17 22:15:04 +00005671
Dan Gohman99a12192009-03-04 19:44:21 +00005672 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) || Opc == X86ISD::BT) { // FIXME
Evan Cheng50d37ab2007-10-08 22:16:29 +00005673 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00005674 addTest = false;
5675 }
5676 }
5677
5678 if (addTest) {
5679 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman99a12192009-03-04 19:44:21 +00005680 Cond = EmitTest(Cond, DAG);
Evan Cheng950aac02007-09-25 01:57:46 +00005681 }
5682
Duncan Sands92c43912008-06-06 12:08:01 +00005683 const MVT *VTs = DAG.getNodeValueTypes(Op.getValueType(),
Evan Cheng950aac02007-09-25 01:57:46 +00005684 MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005685 SmallVector<SDValue, 4> Ops;
Evan Cheng950aac02007-09-25 01:57:46 +00005686 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
5687 // condition is true.
5688 Ops.push_back(Op.getOperand(2));
5689 Ops.push_back(Op.getOperand(1));
5690 Ops.push_back(CC);
5691 Ops.push_back(Cond);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005692 return DAG.getNode(X86ISD::CMOV, dl, VTs, 2, &Ops[0], Ops.size());
Evan Cheng950aac02007-09-25 01:57:46 +00005693}
5694
Evan Chengd580f022008-12-03 08:38:43 +00005695// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
5696// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
5697// from the AND / OR.
5698static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
5699 Opc = Op.getOpcode();
5700 if (Opc != ISD::OR && Opc != ISD::AND)
5701 return false;
5702 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5703 Op.getOperand(0).hasOneUse() &&
5704 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
5705 Op.getOperand(1).hasOneUse());
5706}
5707
Evan Cheng67f98b12009-02-02 08:19:07 +00005708// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
5709// 1 and that the SETCC node has a single use.
Evan Cheng8c3af2c2009-02-02 08:07:36 +00005710static bool isXor1OfSetCC(SDValue Op) {
5711 if (Op.getOpcode() != ISD::XOR)
5712 return false;
5713 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
5714 if (N1C && N1C->getAPIntValue() == 1) {
5715 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5716 Op.getOperand(0).hasOneUse();
5717 }
5718 return false;
5719}
5720
Dan Gohman8181bd12008-07-27 21:46:04 +00005721SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005722 bool addTest = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00005723 SDValue Chain = Op.getOperand(0);
5724 SDValue Cond = Op.getOperand(1);
5725 SDValue Dest = Op.getOperand(2);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005726 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00005727 SDValue CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005728
5729 if (Cond.getOpcode() == ISD::SETCC)
Evan Cheng621216e2007-09-29 00:00:36 +00005730 Cond = LowerSETCC(Cond, DAG);
Chris Lattner77a62312008-12-25 05:34:37 +00005731#if 0
5732 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingf5399032008-12-12 21:15:41 +00005733 else if (Cond.getOpcode() == X86ISD::ADD ||
5734 Cond.getOpcode() == X86ISD::SUB ||
5735 Cond.getOpcode() == X86ISD::SMUL ||
5736 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling7e04be62008-12-09 22:08:41 +00005737 Cond = LowerXALUO(Cond, DAG);
Chris Lattner77a62312008-12-25 05:34:37 +00005738#endif
Scott Michel91099d62009-02-17 22:15:04 +00005739
Evan Cheng50d37ab2007-10-08 22:16:29 +00005740 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5741 // setting operand in place of the X86ISD::SETCC.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005742 if (Cond.getOpcode() == X86ISD::SETCC) {
5743 CC = Cond.getOperand(0);
5744
Dan Gohman8181bd12008-07-27 21:46:04 +00005745 SDValue Cmp = Cond.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005746 unsigned Opc = Cmp.getOpcode();
Chris Lattner77a62312008-12-25 05:34:37 +00005747 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman99a12192009-03-04 19:44:21 +00005748 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng50d37ab2007-10-08 22:16:29 +00005749 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00005750 addTest = false;
Bill Wendlingd3511522008-12-02 01:06:39 +00005751 } else {
Evan Chengd580f022008-12-03 08:38:43 +00005752 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling809e7bd2008-12-03 08:32:02 +00005753 default: break;
5754 case X86::COND_O:
Dan Gohman0fc9ed62009-01-07 00:15:08 +00005755 case X86::COND_B:
Chris Lattner77a62312008-12-25 05:34:37 +00005756 // These can only come from an arithmetic instruction with overflow,
5757 // e.g. SADDO, UADDO.
Bill Wendling809e7bd2008-12-03 08:32:02 +00005758 Cond = Cond.getNode()->getOperand(1);
5759 addTest = false;
5760 break;
Bill Wendlingd3511522008-12-02 01:06:39 +00005761 }
Evan Cheng950aac02007-09-25 01:57:46 +00005762 }
Evan Chengd580f022008-12-03 08:38:43 +00005763 } else {
5764 unsigned CondOpc;
5765 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
5766 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Chengd580f022008-12-03 08:38:43 +00005767 if (CondOpc == ISD::OR) {
5768 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
5769 // two branches instead of an explicit OR instruction with a
5770 // separate test.
5771 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman99a12192009-03-04 19:44:21 +00005772 isX86LogicalCmp(Cmp)) {
Evan Chengd580f022008-12-03 08:38:43 +00005773 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005774 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Chengd580f022008-12-03 08:38:43 +00005775 Chain, Dest, CC, Cmp);
5776 CC = Cond.getOperand(1).getOperand(0);
5777 Cond = Cmp;
5778 addTest = false;
5779 }
5780 } else { // ISD::AND
5781 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
5782 // two branches instead of an explicit AND instruction with a
5783 // separate test. However, we only do this if this block doesn't
5784 // have a fall-through edge, because this requires an explicit
5785 // jmp when the condition is false.
5786 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman99a12192009-03-04 19:44:21 +00005787 isX86LogicalCmp(Cmp) &&
Evan Chengd580f022008-12-03 08:38:43 +00005788 Op.getNode()->hasOneUse()) {
5789 X86::CondCode CCode =
5790 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5791 CCode = X86::GetOppositeBranchCondition(CCode);
5792 CC = DAG.getConstant(CCode, MVT::i8);
5793 SDValue User = SDValue(*Op.getNode()->use_begin(), 0);
5794 // Look for an unconditional branch following this conditional branch.
5795 // We need this because we need to reverse the successors in order
5796 // to implement FCMP_OEQ.
5797 if (User.getOpcode() == ISD::BR) {
5798 SDValue FalseBB = User.getOperand(1);
5799 SDValue NewBR =
5800 DAG.UpdateNodeOperands(User, User.getOperand(0), Dest);
5801 assert(NewBR == User);
5802 Dest = FalseBB;
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005803
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005804 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Chengd580f022008-12-03 08:38:43 +00005805 Chain, Dest, CC, Cmp);
5806 X86::CondCode CCode =
5807 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
5808 CCode = X86::GetOppositeBranchCondition(CCode);
5809 CC = DAG.getConstant(CCode, MVT::i8);
5810 Cond = Cmp;
5811 addTest = false;
5812 }
5813 }
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005814 }
Evan Cheng8c3af2c2009-02-02 08:07:36 +00005815 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
5816 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
5817 // It should be transformed during dag combiner except when the condition
5818 // is set by a arithmetics with overflow node.
5819 X86::CondCode CCode =
5820 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5821 CCode = X86::GetOppositeBranchCondition(CCode);
5822 CC = DAG.getConstant(CCode, MVT::i8);
5823 Cond = Cond.getOperand(0).getOperand(1);
5824 addTest = false;
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005825 }
Evan Cheng950aac02007-09-25 01:57:46 +00005826 }
5827
5828 if (addTest) {
5829 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman99a12192009-03-04 19:44:21 +00005830 Cond = EmitTest(Cond, DAG);
Evan Cheng950aac02007-09-25 01:57:46 +00005831 }
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005832 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005833 Chain, Dest, CC, Cond);
Evan Cheng950aac02007-09-25 01:57:46 +00005834}
5835
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005836
5837// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
5838// Calls to _alloca is needed to probe the stack when allocating more than 4k
5839// bytes in one go. Touching the stack at 4K increments is necessary to ensure
5840// that the guard pages used by the OS virtual memory manager are allocated in
5841// correct sequence.
Dan Gohman8181bd12008-07-27 21:46:04 +00005842SDValue
5843X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005844 SelectionDAG &DAG) {
5845 assert(Subtarget->isTargetCygMing() &&
5846 "This should be used only on Cygwin/Mingw targets");
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005847 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005848
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005849 // Get the inputs.
Dan Gohman8181bd12008-07-27 21:46:04 +00005850 SDValue Chain = Op.getOperand(0);
5851 SDValue Size = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005852 // FIXME: Ensure alignment here
5853
Dan Gohman8181bd12008-07-27 21:46:04 +00005854 SDValue Flag;
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005855
Duncan Sands92c43912008-06-06 12:08:01 +00005856 MVT IntPtr = getPointerTy();
5857 MVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005858
Chris Lattnerfe5d4022008-10-11 22:08:30 +00005859 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005860
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00005861 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005862 Flag = Chain.getValue(1);
5863
5864 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005865 SDValue Ops[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00005866 DAG.getTargetExternalSymbol("_alloca", IntPtr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005867 DAG.getRegister(X86::EAX, IntPtr),
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005868 DAG.getRegister(X86StackPtr, SPTy),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005869 Flag };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005870 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005871 Flag = Chain.getValue(1);
5872
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005873 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnerfe5d4022008-10-11 22:08:30 +00005874 DAG.getIntPtrConstant(0, true),
5875 DAG.getIntPtrConstant(0, true),
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005876 Flag);
5877
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00005878 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005879
Dan Gohman8181bd12008-07-27 21:46:04 +00005880 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005881 return DAG.getMergeValues(Ops1, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005882}
5883
Dan Gohman8181bd12008-07-27 21:46:04 +00005884SDValue
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005885X86TargetLowering::EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl,
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005886 SDValue Chain,
5887 SDValue Dst, SDValue Src,
5888 SDValue Size, unsigned Align,
5889 const Value *DstSV,
Bill Wendling4b2e3782008-10-01 00:59:58 +00005890 uint64_t DstSVOff) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00005891 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005892
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005893 // If not DWORD aligned or size is more than the threshold, call the library.
5894 // The libc version is likely to be faster for these cases. It can use the
5895 // address value and run time information about the CPU.
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005896 if ((Align & 3) != 0 ||
Dan Gohmane8b391e2008-04-12 04:36:06 +00005897 !ConstantSize ||
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005898 ConstantSize->getZExtValue() >
5899 getSubtarget()->getMaxInlineSizeThreshold()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005900 SDValue InFlag(0, 0);
Dan Gohmanf95c2bf2008-04-01 20:38:36 +00005901
5902 // Check to see if there is a specialized entry-point for memory zeroing.
Dan Gohmane8b391e2008-04-12 04:36:06 +00005903 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005904
Bill Wendling4b2e3782008-10-01 00:59:58 +00005905 if (const char *bzeroEntry = V &&
5906 V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
5907 MVT IntPtr = getPointerTy();
5908 const Type *IntPtrTy = TD->getIntPtrType();
Scott Michel91099d62009-02-17 22:15:04 +00005909 TargetLowering::ArgListTy Args;
Bill Wendling4b2e3782008-10-01 00:59:58 +00005910 TargetLowering::ArgListEntry Entry;
5911 Entry.Node = Dst;
5912 Entry.Ty = IntPtrTy;
5913 Args.push_back(Entry);
5914 Entry.Node = Size;
5915 Args.push_back(Entry);
5916 std::pair<SDValue,SDValue> CallResult =
Scott Michel91099d62009-02-17 22:15:04 +00005917 LowerCallTo(Chain, Type::VoidTy, false, false, false, false,
5918 CallingConv::C, false,
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005919 DAG.getExternalSymbol(bzeroEntry, IntPtr), Args, DAG, dl);
Bill Wendling4b2e3782008-10-01 00:59:58 +00005920 return CallResult.second;
Dan Gohmanf95c2bf2008-04-01 20:38:36 +00005921 }
5922
Dan Gohmane8b391e2008-04-12 04:36:06 +00005923 // Otherwise have the target-independent code call memset.
Dan Gohman8181bd12008-07-27 21:46:04 +00005924 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005925 }
5926
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005927 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00005928 SDValue InFlag(0, 0);
Duncan Sands92c43912008-06-06 12:08:01 +00005929 MVT AVT;
Dan Gohman8181bd12008-07-27 21:46:04 +00005930 SDValue Count;
Dan Gohmane8b391e2008-04-12 04:36:06 +00005931 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005932 unsigned BytesLeft = 0;
5933 bool TwoRepStos = false;
5934 if (ValC) {
5935 unsigned ValReg;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005936 uint64_t Val = ValC->getZExtValue() & 255;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005937
5938 // If the value is a constant, then we can potentially use larger sets.
5939 switch (Align & 3) {
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005940 case 2: // WORD aligned
5941 AVT = MVT::i16;
5942 ValReg = X86::AX;
5943 Val = (Val << 8) | Val;
5944 break;
5945 case 0: // DWORD aligned
5946 AVT = MVT::i32;
5947 ValReg = X86::EAX;
5948 Val = (Val << 8) | Val;
5949 Val = (Val << 16) | Val;
5950 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
5951 AVT = MVT::i64;
5952 ValReg = X86::RAX;
5953 Val = (Val << 32) | Val;
5954 }
5955 break;
5956 default: // Byte aligned
5957 AVT = MVT::i8;
5958 ValReg = X86::AL;
5959 Count = DAG.getIntPtrConstant(SizeVal);
5960 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005961 }
5962
Duncan Sandsec142ee2008-06-08 20:54:56 +00005963 if (AVT.bitsGT(MVT::i8)) {
Duncan Sands92c43912008-06-06 12:08:01 +00005964 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohmane8b391e2008-04-12 04:36:06 +00005965 Count = DAG.getIntPtrConstant(SizeVal / UBytes);
5966 BytesLeft = SizeVal % UBytes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005967 }
5968
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005969 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, AVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005970 InFlag);
5971 InFlag = Chain.getValue(1);
5972 } else {
5973 AVT = MVT::i8;
Dan Gohman271d1c22008-04-16 01:32:32 +00005974 Count = DAG.getIntPtrConstant(SizeVal);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005975 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005976 InFlag = Chain.getValue(1);
5977 }
5978
Scott Michel91099d62009-02-17 22:15:04 +00005979 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005980 X86::ECX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005981 Count, InFlag);
5982 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00005983 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005984 X86::EDI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00005985 Dst, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005986 InFlag = Chain.getValue(1);
5987
5988 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005989 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005990 Ops.push_back(Chain);
5991 Ops.push_back(DAG.getValueType(AVT));
5992 Ops.push_back(InFlag);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005993 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005994
5995 if (TwoRepStos) {
5996 InFlag = Chain.getValue(1);
Dan Gohmane8b391e2008-04-12 04:36:06 +00005997 Count = Size;
Duncan Sands92c43912008-06-06 12:08:01 +00005998 MVT CVT = Count.getValueType();
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005999 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006000 DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
Scott Michel91099d62009-02-17 22:15:04 +00006001 Chain = DAG.getCopyToReg(Chain, dl, (CVT == MVT::i64) ? X86::RCX :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006002 X86::ECX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006003 Left, InFlag);
6004 InFlag = Chain.getValue(1);
6005 Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6006 Ops.clear();
6007 Ops.push_back(Chain);
6008 Ops.push_back(DAG.getValueType(MVT::i8));
6009 Ops.push_back(InFlag);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006010 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006011 } else if (BytesLeft) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00006012 // Handle the last 1 - 7 bytes.
6013 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands92c43912008-06-06 12:08:01 +00006014 MVT AddrVT = Dst.getValueType();
6015 MVT SizeVT = Size.getValueType();
Dan Gohmane8b391e2008-04-12 04:36:06 +00006016
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006017 Chain = DAG.getMemset(Chain, dl,
6018 DAG.getNode(ISD::ADD, dl, AddrVT, Dst,
Dan Gohmane8b391e2008-04-12 04:36:06 +00006019 DAG.getConstant(Offset, AddrVT)),
6020 Src,
6021 DAG.getConstant(BytesLeft, SizeVT),
Dan Gohman65118f42008-04-28 17:15:20 +00006022 Align, DstSV, DstSVOff + Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006023 }
6024
Dan Gohmane8b391e2008-04-12 04:36:06 +00006025 // TODO: Use a Tokenfactor, as in memcpy, instead of a single chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006026 return Chain;
6027}
6028
Dan Gohman8181bd12008-07-27 21:46:04 +00006029SDValue
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006030X86TargetLowering::EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00006031 SDValue Chain, SDValue Dst, SDValue Src,
6032 SDValue Size, unsigned Align,
6033 bool AlwaysInline,
6034 const Value *DstSV, uint64_t DstSVOff,
Scott Michel91099d62009-02-17 22:15:04 +00006035 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00006036 // This requires the copy size to be a constant, preferrably
6037 // within a subtarget-specific limit.
6038 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
6039 if (!ConstantSize)
Dan Gohman8181bd12008-07-27 21:46:04 +00006040 return SDValue();
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006041 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohmane8b391e2008-04-12 04:36:06 +00006042 if (!AlwaysInline && SizeVal > getSubtarget()->getMaxInlineSizeThreshold())
Dan Gohman8181bd12008-07-27 21:46:04 +00006043 return SDValue();
Dan Gohmane8b391e2008-04-12 04:36:06 +00006044
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00006045 /// If not DWORD aligned, call the library.
6046 if ((Align & 3) != 0)
6047 return SDValue();
6048
6049 // DWORD aligned
6050 MVT AVT = MVT::i32;
6051 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) // QWORD aligned
Dan Gohmane8b391e2008-04-12 04:36:06 +00006052 AVT = MVT::i64;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006053
Duncan Sands92c43912008-06-06 12:08:01 +00006054 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohmane8b391e2008-04-12 04:36:06 +00006055 unsigned CountVal = SizeVal / UBytes;
Dan Gohman8181bd12008-07-27 21:46:04 +00006056 SDValue Count = DAG.getIntPtrConstant(CountVal);
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00006057 unsigned BytesLeft = SizeVal % UBytes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006058
Dan Gohman8181bd12008-07-27 21:46:04 +00006059 SDValue InFlag(0, 0);
Scott Michel91099d62009-02-17 22:15:04 +00006060 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006061 X86::ECX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006062 Count, InFlag);
6063 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00006064 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006065 X86::EDI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00006066 Dst, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006067 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00006068 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RSI :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006069 X86::ESI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00006070 Src, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006071 InFlag = Chain.getValue(1);
6072
6073 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006074 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006075 Ops.push_back(Chain);
6076 Ops.push_back(DAG.getValueType(AVT));
6077 Ops.push_back(InFlag);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006078 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, dl, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006079
Dan Gohman8181bd12008-07-27 21:46:04 +00006080 SmallVector<SDValue, 4> Results;
Evan Cheng38d3c522008-04-25 00:26:43 +00006081 Results.push_back(RepMovs);
Rafael Espindolaf12f3a92007-09-28 12:53:01 +00006082 if (BytesLeft) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00006083 // Handle the last 1 - 7 bytes.
6084 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands92c43912008-06-06 12:08:01 +00006085 MVT DstVT = Dst.getValueType();
6086 MVT SrcVT = Src.getValueType();
6087 MVT SizeVT = Size.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00006088 Results.push_back(DAG.getMemcpy(Chain, dl,
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006089 DAG.getNode(ISD::ADD, dl, DstVT, Dst,
Evan Cheng38d3c522008-04-25 00:26:43 +00006090 DAG.getConstant(Offset, DstVT)),
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006091 DAG.getNode(ISD::ADD, dl, SrcVT, Src,
Evan Cheng38d3c522008-04-25 00:26:43 +00006092 DAG.getConstant(Offset, SrcVT)),
Dan Gohmane8b391e2008-04-12 04:36:06 +00006093 DAG.getConstant(BytesLeft, SizeVT),
6094 Align, AlwaysInline,
Dan Gohman65118f42008-04-28 17:15:20 +00006095 DstSV, DstSVOff + Offset,
6096 SrcSV, SrcSVOff + Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006097 }
6098
Scott Michel91099d62009-02-17 22:15:04 +00006099 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006100 &Results[0], Results.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006101}
6102
Dan Gohman8181bd12008-07-27 21:46:04 +00006103SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) {
Dan Gohman12a9c082008-02-06 22:27:42 +00006104 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006105 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006106
6107 if (!Subtarget->is64Bit()) {
6108 // vastart just stores the address of the VarArgsFrameIndex slot into the
6109 // memory location argument.
Dan Gohman8181bd12008-07-27 21:46:04 +00006110 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006111 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006112 }
6113
6114 // __va_list_tag:
6115 // gp_offset (0 - 6 * 8)
6116 // fp_offset (48 - 48 + 8 * 16)
6117 // overflow_arg_area (point to parameters coming in memory).
6118 // reg_save_area
Dan Gohman8181bd12008-07-27 21:46:04 +00006119 SmallVector<SDValue, 8> MemOps;
6120 SDValue FIN = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006121 // Store gp_offset
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006122 SDValue Store = DAG.getStore(Op.getOperand(0), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006123 DAG.getConstant(VarArgsGPOffset, MVT::i32),
Dan Gohman12a9c082008-02-06 22:27:42 +00006124 FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006125 MemOps.push_back(Store);
6126
6127 // Store fp_offset
Scott Michel91099d62009-02-17 22:15:04 +00006128 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006129 FIN, DAG.getIntPtrConstant(4));
6130 Store = DAG.getStore(Op.getOperand(0), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006131 DAG.getConstant(VarArgsFPOffset, MVT::i32),
Dan Gohman12a9c082008-02-06 22:27:42 +00006132 FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006133 MemOps.push_back(Store);
6134
6135 // Store ptr to overflow_arg_area
Scott Michel91099d62009-02-17 22:15:04 +00006136 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006137 FIN, DAG.getIntPtrConstant(4));
Dan Gohman8181bd12008-07-27 21:46:04 +00006138 SDValue OVFIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006139 Store = DAG.getStore(Op.getOperand(0), dl, OVFIN, FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006140 MemOps.push_back(Store);
6141
6142 // Store ptr to reg_save_area.
Scott Michel91099d62009-02-17 22:15:04 +00006143 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006144 FIN, DAG.getIntPtrConstant(8));
Dan Gohman8181bd12008-07-27 21:46:04 +00006145 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006146 Store = DAG.getStore(Op.getOperand(0), dl, RSFIN, FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006147 MemOps.push_back(Store);
Scott Michel91099d62009-02-17 22:15:04 +00006148 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006149 &MemOps[0], MemOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006150}
6151
Dan Gohman8181bd12008-07-27 21:46:04 +00006152SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) {
Dan Gohman827cb1f2008-05-10 01:26:14 +00006153 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
6154 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_arg!");
Dan Gohman8181bd12008-07-27 21:46:04 +00006155 SDValue Chain = Op.getOperand(0);
6156 SDValue SrcPtr = Op.getOperand(1);
6157 SDValue SrcSV = Op.getOperand(2);
Dan Gohman827cb1f2008-05-10 01:26:14 +00006158
6159 assert(0 && "VAArgInst is not yet implemented for x86-64!");
6160 abort();
Dan Gohman8181bd12008-07-27 21:46:04 +00006161 return SDValue();
Dan Gohman827cb1f2008-05-10 01:26:14 +00006162}
6163
Dan Gohman8181bd12008-07-27 21:46:04 +00006164SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006165 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman840ff5c2008-04-18 20:55:41 +00006166 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman8181bd12008-07-27 21:46:04 +00006167 SDValue Chain = Op.getOperand(0);
6168 SDValue DstPtr = Op.getOperand(1);
6169 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman12a9c082008-02-06 22:27:42 +00006170 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
6171 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006172 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006173
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006174 return DAG.getMemcpy(Chain, dl, DstPtr, SrcPtr,
Dan Gohman840ff5c2008-04-18 20:55:41 +00006175 DAG.getIntPtrConstant(24), 8, false,
6176 DstSV, 0, SrcSV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006177}
6178
Dan Gohman8181bd12008-07-27 21:46:04 +00006179SDValue
6180X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006181 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006182 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006183 switch (IntNo) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006184 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006185 // Comparison intrinsics.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006186 case Intrinsic::x86_sse_comieq_ss:
6187 case Intrinsic::x86_sse_comilt_ss:
6188 case Intrinsic::x86_sse_comile_ss:
6189 case Intrinsic::x86_sse_comigt_ss:
6190 case Intrinsic::x86_sse_comige_ss:
6191 case Intrinsic::x86_sse_comineq_ss:
6192 case Intrinsic::x86_sse_ucomieq_ss:
6193 case Intrinsic::x86_sse_ucomilt_ss:
6194 case Intrinsic::x86_sse_ucomile_ss:
6195 case Intrinsic::x86_sse_ucomigt_ss:
6196 case Intrinsic::x86_sse_ucomige_ss:
6197 case Intrinsic::x86_sse_ucomineq_ss:
6198 case Intrinsic::x86_sse2_comieq_sd:
6199 case Intrinsic::x86_sse2_comilt_sd:
6200 case Intrinsic::x86_sse2_comile_sd:
6201 case Intrinsic::x86_sse2_comigt_sd:
6202 case Intrinsic::x86_sse2_comige_sd:
6203 case Intrinsic::x86_sse2_comineq_sd:
6204 case Intrinsic::x86_sse2_ucomieq_sd:
6205 case Intrinsic::x86_sse2_ucomilt_sd:
6206 case Intrinsic::x86_sse2_ucomile_sd:
6207 case Intrinsic::x86_sse2_ucomigt_sd:
6208 case Intrinsic::x86_sse2_ucomige_sd:
6209 case Intrinsic::x86_sse2_ucomineq_sd: {
6210 unsigned Opc = 0;
6211 ISD::CondCode CC = ISD::SETCC_INVALID;
6212 switch (IntNo) {
6213 default: break;
6214 case Intrinsic::x86_sse_comieq_ss:
6215 case Intrinsic::x86_sse2_comieq_sd:
6216 Opc = X86ISD::COMI;
6217 CC = ISD::SETEQ;
6218 break;
6219 case Intrinsic::x86_sse_comilt_ss:
6220 case Intrinsic::x86_sse2_comilt_sd:
6221 Opc = X86ISD::COMI;
6222 CC = ISD::SETLT;
6223 break;
6224 case Intrinsic::x86_sse_comile_ss:
6225 case Intrinsic::x86_sse2_comile_sd:
6226 Opc = X86ISD::COMI;
6227 CC = ISD::SETLE;
6228 break;
6229 case Intrinsic::x86_sse_comigt_ss:
6230 case Intrinsic::x86_sse2_comigt_sd:
6231 Opc = X86ISD::COMI;
6232 CC = ISD::SETGT;
6233 break;
6234 case Intrinsic::x86_sse_comige_ss:
6235 case Intrinsic::x86_sse2_comige_sd:
6236 Opc = X86ISD::COMI;
6237 CC = ISD::SETGE;
6238 break;
6239 case Intrinsic::x86_sse_comineq_ss:
6240 case Intrinsic::x86_sse2_comineq_sd:
6241 Opc = X86ISD::COMI;
6242 CC = ISD::SETNE;
6243 break;
6244 case Intrinsic::x86_sse_ucomieq_ss:
6245 case Intrinsic::x86_sse2_ucomieq_sd:
6246 Opc = X86ISD::UCOMI;
6247 CC = ISD::SETEQ;
6248 break;
6249 case Intrinsic::x86_sse_ucomilt_ss:
6250 case Intrinsic::x86_sse2_ucomilt_sd:
6251 Opc = X86ISD::UCOMI;
6252 CC = ISD::SETLT;
6253 break;
6254 case Intrinsic::x86_sse_ucomile_ss:
6255 case Intrinsic::x86_sse2_ucomile_sd:
6256 Opc = X86ISD::UCOMI;
6257 CC = ISD::SETLE;
6258 break;
6259 case Intrinsic::x86_sse_ucomigt_ss:
6260 case Intrinsic::x86_sse2_ucomigt_sd:
6261 Opc = X86ISD::UCOMI;
6262 CC = ISD::SETGT;
6263 break;
6264 case Intrinsic::x86_sse_ucomige_ss:
6265 case Intrinsic::x86_sse2_ucomige_sd:
6266 Opc = X86ISD::UCOMI;
6267 CC = ISD::SETGE;
6268 break;
6269 case Intrinsic::x86_sse_ucomineq_ss:
6270 case Intrinsic::x86_sse2_ucomineq_sd:
6271 Opc = X86ISD::UCOMI;
6272 CC = ISD::SETNE;
6273 break;
6274 }
6275
Dan Gohman8181bd12008-07-27 21:46:04 +00006276 SDValue LHS = Op.getOperand(1);
6277 SDValue RHS = Op.getOperand(2);
Chris Lattnerebb91142008-12-24 23:53:05 +00006278 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006279 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
6280 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Evan Cheng89c17632008-08-17 19:22:34 +00006281 DAG.getConstant(X86CC, MVT::i8), Cond);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006282 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006283 }
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006284
6285 // Fix vector shift instructions where the last operand is a non-immediate
6286 // i32 value.
6287 case Intrinsic::x86_sse2_pslli_w:
6288 case Intrinsic::x86_sse2_pslli_d:
6289 case Intrinsic::x86_sse2_pslli_q:
6290 case Intrinsic::x86_sse2_psrli_w:
6291 case Intrinsic::x86_sse2_psrli_d:
6292 case Intrinsic::x86_sse2_psrli_q:
6293 case Intrinsic::x86_sse2_psrai_w:
6294 case Intrinsic::x86_sse2_psrai_d:
6295 case Intrinsic::x86_mmx_pslli_w:
6296 case Intrinsic::x86_mmx_pslli_d:
6297 case Intrinsic::x86_mmx_pslli_q:
6298 case Intrinsic::x86_mmx_psrli_w:
6299 case Intrinsic::x86_mmx_psrli_d:
6300 case Intrinsic::x86_mmx_psrli_q:
6301 case Intrinsic::x86_mmx_psrai_w:
6302 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006303 SDValue ShAmt = Op.getOperand(2);
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006304 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman8181bd12008-07-27 21:46:04 +00006305 return SDValue();
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006306
6307 unsigned NewIntNo = 0;
Duncan Sands92c43912008-06-06 12:08:01 +00006308 MVT ShAmtVT = MVT::v4i32;
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006309 switch (IntNo) {
6310 case Intrinsic::x86_sse2_pslli_w:
6311 NewIntNo = Intrinsic::x86_sse2_psll_w;
6312 break;
6313 case Intrinsic::x86_sse2_pslli_d:
6314 NewIntNo = Intrinsic::x86_sse2_psll_d;
6315 break;
6316 case Intrinsic::x86_sse2_pslli_q:
6317 NewIntNo = Intrinsic::x86_sse2_psll_q;
6318 break;
6319 case Intrinsic::x86_sse2_psrli_w:
6320 NewIntNo = Intrinsic::x86_sse2_psrl_w;
6321 break;
6322 case Intrinsic::x86_sse2_psrli_d:
6323 NewIntNo = Intrinsic::x86_sse2_psrl_d;
6324 break;
6325 case Intrinsic::x86_sse2_psrli_q:
6326 NewIntNo = Intrinsic::x86_sse2_psrl_q;
6327 break;
6328 case Intrinsic::x86_sse2_psrai_w:
6329 NewIntNo = Intrinsic::x86_sse2_psra_w;
6330 break;
6331 case Intrinsic::x86_sse2_psrai_d:
6332 NewIntNo = Intrinsic::x86_sse2_psra_d;
6333 break;
6334 default: {
6335 ShAmtVT = MVT::v2i32;
6336 switch (IntNo) {
6337 case Intrinsic::x86_mmx_pslli_w:
6338 NewIntNo = Intrinsic::x86_mmx_psll_w;
6339 break;
6340 case Intrinsic::x86_mmx_pslli_d:
6341 NewIntNo = Intrinsic::x86_mmx_psll_d;
6342 break;
6343 case Intrinsic::x86_mmx_pslli_q:
6344 NewIntNo = Intrinsic::x86_mmx_psll_q;
6345 break;
6346 case Intrinsic::x86_mmx_psrli_w:
6347 NewIntNo = Intrinsic::x86_mmx_psrl_w;
6348 break;
6349 case Intrinsic::x86_mmx_psrli_d:
6350 NewIntNo = Intrinsic::x86_mmx_psrl_d;
6351 break;
6352 case Intrinsic::x86_mmx_psrli_q:
6353 NewIntNo = Intrinsic::x86_mmx_psrl_q;
6354 break;
6355 case Intrinsic::x86_mmx_psrai_w:
6356 NewIntNo = Intrinsic::x86_mmx_psra_w;
6357 break;
6358 case Intrinsic::x86_mmx_psrai_d:
6359 NewIntNo = Intrinsic::x86_mmx_psra_d;
6360 break;
6361 default: abort(); // Can't reach here.
6362 }
6363 break;
6364 }
6365 }
Duncan Sands92c43912008-06-06 12:08:01 +00006366 MVT VT = Op.getValueType();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006367 ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT,
6368 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, ShAmtVT, ShAmt));
6369 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006370 DAG.getConstant(NewIntNo, MVT::i32),
6371 Op.getOperand(1), ShAmt);
6372 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006373 }
6374}
6375
Dan Gohman8181bd12008-07-27 21:46:04 +00006376SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
Bill Wendling6ddc87b2009-01-16 19:25:27 +00006377 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006378 DebugLoc dl = Op.getDebugLoc();
Bill Wendling6ddc87b2009-01-16 19:25:27 +00006379
6380 if (Depth > 0) {
6381 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
6382 SDValue Offset =
6383 DAG.getConstant(TD->getPointerSize(),
6384 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006385 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michel91099d62009-02-17 22:15:04 +00006386 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006387 FrameAddr, Offset),
Bill Wendling6ddc87b2009-01-16 19:25:27 +00006388 NULL, 0);
6389 }
6390
6391 // Just load the return address.
Dan Gohman8181bd12008-07-27 21:46:04 +00006392 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michel91099d62009-02-17 22:15:04 +00006393 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006394 RetAddrFI, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006395}
6396
Dan Gohman8181bd12008-07-27 21:46:04 +00006397SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
Evan Cheng33633672008-09-27 01:56:22 +00006398 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6399 MFI->setFrameAddressIsTaken(true);
6400 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006401 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng33633672008-09-27 01:56:22 +00006402 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
6403 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006404 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng33633672008-09-27 01:56:22 +00006405 while (Depth--)
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006406 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, NULL, 0);
Evan Cheng33633672008-09-27 01:56:22 +00006407 return FrameAddr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006408}
6409
Dan Gohman8181bd12008-07-27 21:46:04 +00006410SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Anton Korobeynikov566f9d92008-09-08 21:12:11 +00006411 SelectionDAG &DAG) {
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006412 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006413}
6414
Dan Gohman8181bd12008-07-27 21:46:04 +00006415SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006416{
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006417 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman8181bd12008-07-27 21:46:04 +00006418 SDValue Chain = Op.getOperand(0);
6419 SDValue Offset = Op.getOperand(1);
6420 SDValue Handler = Op.getOperand(2);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006421 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006422
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006423 SDValue Frame = DAG.getRegister(Subtarget->is64Bit() ? X86::RBP : X86::EBP,
6424 getPointerTy());
6425 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006426
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006427 SDValue StoreAddr = DAG.getNode(ISD::SUB, dl, getPointerTy(), Frame,
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006428 DAG.getIntPtrConstant(-TD->getPointerSize()));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006429 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
6430 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, NULL, 0);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006431 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006432 MF.getRegInfo().addLiveOut(StoreAddrReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006433
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006434 return DAG.getNode(X86ISD::EH_RETURN, dl,
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006435 MVT::Other,
6436 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006437}
6438
Dan Gohman8181bd12008-07-27 21:46:04 +00006439SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006440 SelectionDAG &DAG) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006441 SDValue Root = Op.getOperand(0);
6442 SDValue Trmp = Op.getOperand(1); // trampoline
6443 SDValue FPtr = Op.getOperand(2); // nested function
6444 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006445 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006446
Dan Gohman12a9c082008-02-06 22:27:42 +00006447 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006448
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006449 const X86InstrInfo *TII =
6450 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
6451
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006452 if (Subtarget->is64Bit()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006453 SDValue OutChains[6];
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006454
6455 // Large code-model.
6456
6457 const unsigned char JMP64r = TII->getBaseOpcodeFor(X86::JMP64r);
6458 const unsigned char MOV64ri = TII->getBaseOpcodeFor(X86::MOV64ri);
6459
Dan Gohmanb41dfba2008-05-14 01:58:56 +00006460 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
6461 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006462
6463 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
6464
6465 // Load the pointer to the nested function into R11.
6466 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman8181bd12008-07-27 21:46:04 +00006467 SDValue Addr = Trmp;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006468 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6469 Addr, TrmpAddr, 0);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006470
Scott Michel91099d62009-02-17 22:15:04 +00006471 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006472 DAG.getConstant(2, MVT::i64));
6473 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr, TrmpAddr, 2, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006474
6475 // Load the 'nest' parameter value into R10.
6476 // R10 is specified in X86CallingConv.td
6477 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Scott Michel91099d62009-02-17 22:15:04 +00006478 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006479 DAG.getConstant(10, MVT::i64));
6480 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6481 Addr, TrmpAddr, 10);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006482
Scott Michel91099d62009-02-17 22:15:04 +00006483 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006484 DAG.getConstant(12, MVT::i64));
6485 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 12, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006486
6487 // Jump to the nested function.
6488 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Scott Michel91099d62009-02-17 22:15:04 +00006489 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006490 DAG.getConstant(20, MVT::i64));
6491 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6492 Addr, TrmpAddr, 20);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006493
6494 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Scott Michel91099d62009-02-17 22:15:04 +00006495 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006496 DAG.getConstant(22, MVT::i64));
6497 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00006498 TrmpAddr, 22);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006499
Dan Gohman8181bd12008-07-27 21:46:04 +00006500 SDValue Ops[] =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006501 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
6502 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006503 } else {
Dan Gohman0bd70702008-01-31 01:01:48 +00006504 const Function *Func =
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006505 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
6506 unsigned CC = Func->getCallingConv();
Duncan Sands466eadd2007-08-29 19:01:20 +00006507 unsigned NestReg;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006508
6509 switch (CC) {
6510 default:
6511 assert(0 && "Unsupported calling convention");
6512 case CallingConv::C:
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006513 case CallingConv::X86_StdCall: {
6514 // Pass 'nest' parameter in ECX.
6515 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00006516 NestReg = X86::ECX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006517
6518 // Check that ECX wasn't needed by an 'inreg' parameter.
6519 const FunctionType *FTy = Func->getFunctionType();
Devang Pateld222f862008-09-25 21:00:45 +00006520 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006521
Chris Lattner1c8733e2008-03-12 17:45:29 +00006522 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006523 unsigned InRegCount = 0;
6524 unsigned Idx = 1;
6525
6526 for (FunctionType::param_iterator I = FTy->param_begin(),
6527 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Pateld222f862008-09-25 21:00:45 +00006528 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006529 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006530 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006531
6532 if (InRegCount > 2) {
6533 cerr << "Nest register in use - reduce number of inreg parameters!\n";
6534 abort();
6535 }
6536 }
6537 break;
6538 }
6539 case CallingConv::X86_FastCall:
Duncan Sands162c1d52008-09-10 13:22:10 +00006540 case CallingConv::Fast:
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006541 // Pass 'nest' parameter in EAX.
6542 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00006543 NestReg = X86::EAX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006544 break;
6545 }
6546
Dan Gohman8181bd12008-07-27 21:46:04 +00006547 SDValue OutChains[4];
6548 SDValue Addr, Disp;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006549
Scott Michel91099d62009-02-17 22:15:04 +00006550 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006551 DAG.getConstant(10, MVT::i32));
6552 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006553
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006554 const unsigned char MOV32ri = TII->getBaseOpcodeFor(X86::MOV32ri);
Dan Gohmanb41dfba2008-05-14 01:58:56 +00006555 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michel91099d62009-02-17 22:15:04 +00006556 OutChains[0] = DAG.getStore(Root, dl,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006557 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Dan Gohman12a9c082008-02-06 22:27:42 +00006558 Trmp, TrmpAddr, 0);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006559
Scott Michel91099d62009-02-17 22:15:04 +00006560 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006561 DAG.getConstant(1, MVT::i32));
6562 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 1, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006563
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006564 const unsigned char JMP = TII->getBaseOpcodeFor(X86::JMP);
Scott Michel91099d62009-02-17 22:15:04 +00006565 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006566 DAG.getConstant(5, MVT::i32));
6567 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00006568 TrmpAddr, 5, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006569
Scott Michel91099d62009-02-17 22:15:04 +00006570 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006571 DAG.getConstant(6, MVT::i32));
6572 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr, TrmpAddr, 6, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006573
Dan Gohman8181bd12008-07-27 21:46:04 +00006574 SDValue Ops[] =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006575 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
6576 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006577 }
6578}
6579
Dan Gohman8181bd12008-07-27 21:46:04 +00006580SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006581 /*
6582 The rounding mode is in bits 11:10 of FPSR, and has the following
6583 settings:
6584 00 Round to nearest
6585 01 Round to -inf
6586 10 Round to +inf
6587 11 Round to 0
6588
6589 FLT_ROUNDS, on the other hand, expects the following:
6590 -1 Undefined
6591 0 Round to 0
6592 1 Round to nearest
6593 2 Round to +inf
6594 3 Round to -inf
6595
6596 To perform the conversion, we do:
6597 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
6598 */
6599
6600 MachineFunction &MF = DAG.getMachineFunction();
6601 const TargetMachine &TM = MF.getTarget();
6602 const TargetFrameInfo &TFI = *TM.getFrameInfo();
6603 unsigned StackAlignment = TFI.getStackAlignment();
Duncan Sands92c43912008-06-06 12:08:01 +00006604 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006605 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006606
6607 // Save FP Control Word to stack slot
6608 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment);
Dan Gohman8181bd12008-07-27 21:46:04 +00006609 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006610
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006611 SDValue Chain = DAG.getNode(X86ISD::FNSTCW16m, dl, MVT::Other,
Evan Cheng6617eed2008-09-24 23:26:36 +00006612 DAG.getEntryNode(), StackSlot);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006613
6614 // Load FP Control Word from stack slot
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006615 SDValue CWD = DAG.getLoad(MVT::i16, dl, Chain, StackSlot, NULL, 0);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006616
6617 // Transform as necessary
Dan Gohman8181bd12008-07-27 21:46:04 +00006618 SDValue CWD1 =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006619 DAG.getNode(ISD::SRL, dl, MVT::i16,
6620 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006621 CWD, DAG.getConstant(0x800, MVT::i16)),
6622 DAG.getConstant(11, MVT::i8));
Dan Gohman8181bd12008-07-27 21:46:04 +00006623 SDValue CWD2 =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006624 DAG.getNode(ISD::SRL, dl, MVT::i16,
6625 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006626 CWD, DAG.getConstant(0x400, MVT::i16)),
6627 DAG.getConstant(9, MVT::i8));
6628
Dan Gohman8181bd12008-07-27 21:46:04 +00006629 SDValue RetVal =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006630 DAG.getNode(ISD::AND, dl, MVT::i16,
6631 DAG.getNode(ISD::ADD, dl, MVT::i16,
6632 DAG.getNode(ISD::OR, dl, MVT::i16, CWD1, CWD2),
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006633 DAG.getConstant(1, MVT::i16)),
6634 DAG.getConstant(3, MVT::i16));
6635
6636
Duncan Sands92c43912008-06-06 12:08:01 +00006637 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen24dd9a52009-02-07 00:55:49 +00006638 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006639}
6640
Dan Gohman8181bd12008-07-27 21:46:04 +00006641SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00006642 MVT VT = Op.getValueType();
6643 MVT OpVT = VT;
6644 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006645 DebugLoc dl = Op.getDebugLoc();
Evan Cheng48679f42007-12-14 02:13:44 +00006646
6647 Op = Op.getOperand(0);
6648 if (VT == MVT::i8) {
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006649 // Zero extend to i32 since there is not an i8 bsr.
Evan Cheng48679f42007-12-14 02:13:44 +00006650 OpVT = MVT::i32;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006651 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006652 }
Evan Cheng48679f42007-12-14 02:13:44 +00006653
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006654 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
6655 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006656 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006657
6658 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Dan Gohman8181bd12008-07-27 21:46:04 +00006659 SmallVector<SDValue, 4> Ops;
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006660 Ops.push_back(Op);
6661 Ops.push_back(DAG.getConstant(NumBits+NumBits-1, OpVT));
6662 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6663 Ops.push_back(Op.getValue(1));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006664 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006665
6666 // Finally xor with NumBits-1.
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006667 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006668
Evan Cheng48679f42007-12-14 02:13:44 +00006669 if (VT == MVT::i8)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006670 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006671 return Op;
6672}
6673
Dan Gohman8181bd12008-07-27 21:46:04 +00006674SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00006675 MVT VT = Op.getValueType();
6676 MVT OpVT = VT;
6677 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006678 DebugLoc dl = Op.getDebugLoc();
Evan Cheng48679f42007-12-14 02:13:44 +00006679
6680 Op = Op.getOperand(0);
6681 if (VT == MVT::i8) {
6682 OpVT = MVT::i32;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006683 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006684 }
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006685
6686 // Issue a bsf (scan bits forward) which also sets EFLAGS.
6687 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006688 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006689
6690 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Dan Gohman8181bd12008-07-27 21:46:04 +00006691 SmallVector<SDValue, 4> Ops;
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006692 Ops.push_back(Op);
6693 Ops.push_back(DAG.getConstant(NumBits, OpVT));
6694 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6695 Ops.push_back(Op.getValue(1));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006696 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006697
Evan Cheng48679f42007-12-14 02:13:44 +00006698 if (VT == MVT::i8)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006699 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006700 return Op;
6701}
6702
Mon P Wang14edb092008-12-18 21:42:19 +00006703SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) {
6704 MVT VT = Op.getValueType();
6705 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006706 DebugLoc dl = Op.getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00006707
Mon P Wang14edb092008-12-18 21:42:19 +00006708 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
6709 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
6710 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
6711 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
6712 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
6713 //
6714 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
6715 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
6716 // return AloBlo + AloBhi + AhiBlo;
6717
6718 SDValue A = Op.getOperand(0);
6719 SDValue B = Op.getOperand(1);
Scott Michel91099d62009-02-17 22:15:04 +00006720
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006721 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006722 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6723 A, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006724 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006725 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6726 B, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006727 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006728 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6729 A, B);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006730 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006731 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6732 A, Bhi);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006733 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006734 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6735 Ahi, B);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006736 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006737 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6738 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006739 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006740 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6741 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006742 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
6743 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wang14edb092008-12-18 21:42:19 +00006744 return Res;
6745}
6746
6747
Bill Wendling7e04be62008-12-09 22:08:41 +00006748SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) {
6749 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
6750 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendlingd3511522008-12-02 01:06:39 +00006751 // looks for this combo and may remove the "setcc" instruction if the "setcc"
6752 // has only one use.
Bill Wendlingd06b4202008-11-26 22:37:40 +00006753 SDNode *N = Op.getNode();
Bill Wendlingd3511522008-12-02 01:06:39 +00006754 SDValue LHS = N->getOperand(0);
6755 SDValue RHS = N->getOperand(1);
Bill Wendling7e04be62008-12-09 22:08:41 +00006756 unsigned BaseOp = 0;
6757 unsigned Cond = 0;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006758 DebugLoc dl = Op.getDebugLoc();
Bill Wendling7e04be62008-12-09 22:08:41 +00006759
6760 switch (Op.getOpcode()) {
6761 default: assert(0 && "Unknown ovf instruction!");
6762 case ISD::SADDO:
Dan Gohman99a12192009-03-04 19:44:21 +00006763 // A subtract of one will be selected as a INC. Note that INC doesn't
6764 // set CF, so we can't do this for UADDO.
6765 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
6766 if (C->getAPIntValue() == 1) {
6767 BaseOp = X86ISD::INC;
6768 Cond = X86::COND_O;
6769 break;
6770 }
Bill Wendlingae034ed2008-12-12 00:56:36 +00006771 BaseOp = X86ISD::ADD;
Bill Wendling7e04be62008-12-09 22:08:41 +00006772 Cond = X86::COND_O;
6773 break;
6774 case ISD::UADDO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006775 BaseOp = X86ISD::ADD;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006776 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006777 break;
6778 case ISD::SSUBO:
Dan Gohman99a12192009-03-04 19:44:21 +00006779 // A subtract of one will be selected as a DEC. Note that DEC doesn't
6780 // set CF, so we can't do this for USUBO.
6781 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
6782 if (C->getAPIntValue() == 1) {
6783 BaseOp = X86ISD::DEC;
6784 Cond = X86::COND_O;
6785 break;
6786 }
Bill Wendlingae034ed2008-12-12 00:56:36 +00006787 BaseOp = X86ISD::SUB;
Bill Wendling7e04be62008-12-09 22:08:41 +00006788 Cond = X86::COND_O;
6789 break;
6790 case ISD::USUBO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006791 BaseOp = X86ISD::SUB;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006792 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006793 break;
6794 case ISD::SMULO:
Bill Wendlingf5399032008-12-12 21:15:41 +00006795 BaseOp = X86ISD::SMUL;
Bill Wendling7e04be62008-12-09 22:08:41 +00006796 Cond = X86::COND_O;
6797 break;
6798 case ISD::UMULO:
Bill Wendlingf5399032008-12-12 21:15:41 +00006799 BaseOp = X86ISD::UMUL;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006800 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006801 break;
6802 }
Bill Wendlingd06b4202008-11-26 22:37:40 +00006803
Bill Wendlingd3511522008-12-02 01:06:39 +00006804 // Also sets EFLAGS.
6805 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006806 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendlingd06b4202008-11-26 22:37:40 +00006807
Bill Wendlingd3511522008-12-02 01:06:39 +00006808 SDValue SetCC =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006809 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Bill Wendling35f1a9d2008-12-10 02:01:32 +00006810 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendlingd06b4202008-11-26 22:37:40 +00006811
Bill Wendlingd3511522008-12-02 01:06:39 +00006812 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
6813 return Sum;
Bill Wendling4c134df2008-11-24 19:21:46 +00006814}
6815
Dan Gohman8181bd12008-07-27 21:46:04 +00006816SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanc70fa752008-06-25 16:07:49 +00006817 MVT T = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006818 DebugLoc dl = Op.getDebugLoc();
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00006819 unsigned Reg = 0;
6820 unsigned size = 0;
Duncan Sands92c43912008-06-06 12:08:01 +00006821 switch(T.getSimpleVT()) {
6822 default:
6823 assert(false && "Invalid value type!");
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006824 case MVT::i8: Reg = X86::AL; size = 1; break;
6825 case MVT::i16: Reg = X86::AX; size = 2; break;
6826 case MVT::i32: Reg = X86::EAX; size = 4; break;
Scott Michel91099d62009-02-17 22:15:04 +00006827 case MVT::i64:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006828 assert(Subtarget->is64Bit() && "Node not type legal!");
6829 Reg = X86::RAX; size = 8;
Andrew Lenharth81580822008-03-05 01:15:49 +00006830 break;
Bill Wendlingd3511522008-12-02 01:06:39 +00006831 }
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006832 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), dl, Reg,
Dale Johannesenddb761b2008-09-11 03:12:59 +00006833 Op.getOperand(2), SDValue());
Dan Gohman8181bd12008-07-27 21:46:04 +00006834 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng6617eed2008-09-24 23:26:36 +00006835 Op.getOperand(1),
6836 Op.getOperand(3),
6837 DAG.getTargetConstant(size, MVT::i8),
6838 cpIn.getValue(1) };
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006839 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006840 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG_DAG, dl, Tys, Ops, 5);
Scott Michel91099d62009-02-17 22:15:04 +00006841 SDValue cpOut =
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006842 DAG.getCopyFromReg(Result.getValue(0), dl, Reg, T, Result.getValue(1));
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006843 return cpOut;
6844}
6845
Duncan Sands7d9834b2008-12-01 11:39:25 +00006846SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Gabor Greif825aa892008-08-28 23:19:51 +00006847 SelectionDAG &DAG) {
Duncan Sands7d9834b2008-12-01 11:39:25 +00006848 assert(Subtarget->is64Bit() && "Result not type legalized?");
Andrew Lenharth81580822008-03-05 01:15:49 +00006849 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands7d9834b2008-12-01 11:39:25 +00006850 SDValue TheChain = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006851 DebugLoc dl = Op.getDebugLoc();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006852 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006853 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
6854 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006855 rax.getValue(2));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006856 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006857 DAG.getConstant(32, MVT::i8));
6858 SDValue Ops[] = {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006859 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands7d9834b2008-12-01 11:39:25 +00006860 rdx.getValue(1)
6861 };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006862 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesenf160d802008-10-02 18:53:47 +00006863}
6864
Dale Johannesen9011d872008-09-29 22:25:26 +00006865SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
6866 SDNode *Node = Op.getNode();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006867 DebugLoc dl = Node->getDebugLoc();
Dale Johannesen9011d872008-09-29 22:25:26 +00006868 MVT T = Node->getValueType(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006869 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Chengef356282009-02-23 09:03:22 +00006870 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006871 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006872 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen9011d872008-09-29 22:25:26 +00006873 Node->getOperand(0),
6874 Node->getOperand(1), negOp,
6875 cast<AtomicSDNode>(Node)->getSrcValue(),
6876 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang078a62d2008-05-05 19:05:59 +00006877}
6878
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006879/// LowerOperation - Provide custom lowering hooks for some operations.
6880///
Dan Gohman8181bd12008-07-27 21:46:04 +00006881SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006882 switch (Op.getOpcode()) {
6883 default: assert(0 && "Should not custom lower this!");
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006884 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
6885 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006886 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
6887 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6888 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6889 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
6890 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
6891 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
6892 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
6893 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendlingfef06052008-09-16 21:48:12 +00006894 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006895 case ISD::SHL_PARTS:
6896 case ISD::SRA_PARTS:
6897 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
6898 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesena359b8b2008-10-21 20:50:01 +00006899 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006900 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
6901 case ISD::FABS: return LowerFABS(Op, DAG);
6902 case ISD::FNEG: return LowerFNEG(Op, DAG);
6903 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Cheng621216e2007-09-29 00:00:36 +00006904 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman03605a02008-07-17 16:51:19 +00006905 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Cheng621216e2007-09-29 00:00:36 +00006906 case ISD::SELECT: return LowerSELECT(Op, DAG);
6907 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006908 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
6909 case ISD::CALL: return LowerCALL(Op, DAG);
6910 case ISD::RET: return LowerRET(Op, DAG);
6911 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006912 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman827cb1f2008-05-10 01:26:14 +00006913 case ISD::VAARG: return LowerVAARG(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006914 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
6915 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
6916 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
6917 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
6918 case ISD::FRAME_TO_ARGS_OFFSET:
6919 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
6920 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
6921 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006922 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman819574c2008-01-31 00:41:03 +00006923 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng48679f42007-12-14 02:13:44 +00006924 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
6925 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wang14edb092008-12-18 21:42:19 +00006926 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Bill Wendling7e04be62008-12-09 22:08:41 +00006927 case ISD::SADDO:
6928 case ISD::UADDO:
6929 case ISD::SSUBO:
6930 case ISD::USUBO:
6931 case ISD::SMULO:
6932 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands7d9834b2008-12-01 11:39:25 +00006933 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006934 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006935}
6936
Duncan Sands7d9834b2008-12-01 11:39:25 +00006937void X86TargetLowering::
6938ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
6939 SelectionDAG &DAG, unsigned NewOp) {
6940 MVT T = Node->getValueType(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006941 DebugLoc dl = Node->getDebugLoc();
Duncan Sands7d9834b2008-12-01 11:39:25 +00006942 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
6943
6944 SDValue Chain = Node->getOperand(0);
6945 SDValue In1 = Node->getOperand(1);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006946 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006947 Node->getOperand(2), DAG.getIntPtrConstant(0));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006948 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006949 Node->getOperand(2), DAG.getIntPtrConstant(1));
6950 // This is a generalized SDNode, not an AtomicSDNode, so it doesn't
6951 // have a MemOperand. Pass the info through as a normal operand.
6952 SDValue LSI = DAG.getMemOperand(cast<MemSDNode>(Node)->getMemOperand());
6953 SDValue Ops[] = { Chain, In1, In2L, In2H, LSI };
6954 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006955 SDValue Result = DAG.getNode(NewOp, dl, Tys, Ops, 5);
Duncan Sands7d9834b2008-12-01 11:39:25 +00006956 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006957 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00006958 Results.push_back(Result.getValue(2));
6959}
6960
Duncan Sandsac496a12008-07-04 11:47:58 +00006961/// ReplaceNodeResults - Replace a node with an illegal result type
6962/// with a new node built out of custom code.
Duncan Sands7d9834b2008-12-01 11:39:25 +00006963void X86TargetLowering::ReplaceNodeResults(SDNode *N,
6964 SmallVectorImpl<SDValue>&Results,
6965 SelectionDAG &DAG) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006966 DebugLoc dl = N->getDebugLoc();
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006967 switch (N->getOpcode()) {
Duncan Sands8ec7aa72008-10-20 15:56:33 +00006968 default:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006969 assert(false && "Do not know how to custom type legalize this operation!");
6970 return;
6971 case ISD::FP_TO_SINT: {
6972 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(SDValue(N, 0), DAG);
6973 SDValue FIST = Vals.first, StackSlot = Vals.second;
6974 if (FIST.getNode() != 0) {
6975 MVT VT = N->getValueType(0);
6976 // Return a load from the stack slot.
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006977 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot, NULL, 0));
Duncan Sands7d9834b2008-12-01 11:39:25 +00006978 }
6979 return;
6980 }
6981 case ISD::READCYCLECOUNTER: {
6982 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6983 SDValue TheChain = N->getOperand(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006984 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Scott Michel91099d62009-02-17 22:15:04 +00006985 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006986 rd.getValue(1));
6987 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006988 eax.getValue(2));
6989 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
6990 SDValue Ops[] = { eax, edx };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006991 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00006992 Results.push_back(edx.getValue(1));
6993 return;
6994 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006995 case ISD::ATOMIC_CMP_SWAP: {
Duncan Sands7d9834b2008-12-01 11:39:25 +00006996 MVT T = N->getValueType(0);
6997 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
6998 SDValue cpInL, cpInH;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006999 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands7d9834b2008-12-01 11:39:25 +00007000 DAG.getConstant(0, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007001 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands7d9834b2008-12-01 11:39:25 +00007002 DAG.getConstant(1, MVT::i32));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007003 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
7004 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007005 cpInL.getValue(1));
7006 SDValue swapInL, swapInH;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007007 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands7d9834b2008-12-01 11:39:25 +00007008 DAG.getConstant(0, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007009 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands7d9834b2008-12-01 11:39:25 +00007010 DAG.getConstant(1, MVT::i32));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007011 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007012 cpInH.getValue(1));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007013 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007014 swapInL.getValue(1));
7015 SDValue Ops[] = { swapInH.getValue(0),
7016 N->getOperand(1),
7017 swapInH.getValue(1) };
7018 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007019 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG8_DAG, dl, Tys, Ops, 3);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007020 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
7021 MVT::i32, Result.getValue(1));
7022 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
7023 MVT::i32, cpOutL.getValue(2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007024 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007025 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007026 Results.push_back(cpOutH.getValue(1));
7027 return;
7028 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007029 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007030 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
7031 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007032 case ISD::ATOMIC_LOAD_AND:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007033 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
7034 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007035 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007036 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
7037 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007038 case ISD::ATOMIC_LOAD_OR:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007039 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
7040 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007041 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007042 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
7043 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007044 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007045 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
7046 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007047 case ISD::ATOMIC_SWAP:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007048 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
7049 return;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00007050 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007051}
7052
7053const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
7054 switch (Opcode) {
7055 default: return NULL;
Evan Cheng48679f42007-12-14 02:13:44 +00007056 case X86ISD::BSF: return "X86ISD::BSF";
7057 case X86ISD::BSR: return "X86ISD::BSR";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007058 case X86ISD::SHLD: return "X86ISD::SHLD";
7059 case X86ISD::SHRD: return "X86ISD::SHRD";
7060 case X86ISD::FAND: return "X86ISD::FAND";
7061 case X86ISD::FOR: return "X86ISD::FOR";
7062 case X86ISD::FXOR: return "X86ISD::FXOR";
7063 case X86ISD::FSRL: return "X86ISD::FSRL";
7064 case X86ISD::FILD: return "X86ISD::FILD";
7065 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
7066 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
7067 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
7068 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
7069 case X86ISD::FLD: return "X86ISD::FLD";
7070 case X86ISD::FST: return "X86ISD::FST";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007071 case X86ISD::CALL: return "X86ISD::CALL";
7072 case X86ISD::TAILCALL: return "X86ISD::TAILCALL";
7073 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohman7fe9b7f2008-12-23 22:45:23 +00007074 case X86ISD::BT: return "X86ISD::BT";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007075 case X86ISD::CMP: return "X86ISD::CMP";
7076 case X86ISD::COMI: return "X86ISD::COMI";
7077 case X86ISD::UCOMI: return "X86ISD::UCOMI";
7078 case X86ISD::SETCC: return "X86ISD::SETCC";
7079 case X86ISD::CMOV: return "X86ISD::CMOV";
7080 case X86ISD::BRCOND: return "X86ISD::BRCOND";
7081 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
7082 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
7083 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007084 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
7085 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Nate Begemand77e59e2008-02-11 04:19:36 +00007086 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007087 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begemand77e59e2008-02-11 04:19:36 +00007088 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
7089 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007090 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begeman2c87c422009-02-23 08:49:38 +00007091 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007092 case X86ISD::FMAX: return "X86ISD::FMAX";
7093 case X86ISD::FMIN: return "X86ISD::FMIN";
7094 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
7095 case X86ISD::FRCP: return "X86ISD::FRCP";
7096 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
7097 case X86ISD::THREAD_POINTER: return "X86ISD::THREAD_POINTER";
7098 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00007099 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00007100 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng40ee6e52008-05-08 00:57:18 +00007101 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
7102 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesenf160d802008-10-02 18:53:47 +00007103 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
7104 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
7105 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
7106 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
7107 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
7108 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chenge9b9c672008-05-09 21:53:03 +00007109 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
7110 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengdea99362008-05-29 08:22:04 +00007111 case X86ISD::VSHL: return "X86ISD::VSHL";
7112 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman03605a02008-07-17 16:51:19 +00007113 case X86ISD::CMPPD: return "X86ISD::CMPPD";
7114 case X86ISD::CMPPS: return "X86ISD::CMPPS";
7115 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
7116 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
7117 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
7118 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
7119 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
7120 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
7121 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
7122 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingae034ed2008-12-12 00:56:36 +00007123 case X86ISD::ADD: return "X86ISD::ADD";
7124 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingf5399032008-12-12 21:15:41 +00007125 case X86ISD::SMUL: return "X86ISD::SMUL";
7126 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman99a12192009-03-04 19:44:21 +00007127 case X86ISD::INC: return "X86ISD::INC";
7128 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007129 }
7130}
7131
7132// isLegalAddressingMode - Return true if the addressing mode represented
7133// by AM is legal for this target, for a load/store of the specified type.
Scott Michel91099d62009-02-17 22:15:04 +00007134bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007135 const Type *Ty) const {
7136 // X86 supports extremely general addressing modes.
Scott Michel91099d62009-02-17 22:15:04 +00007137
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007138 // X86 allows a sign-extended 32-bit immediate field as a displacement.
7139 if (AM.BaseOffs <= -(1LL << 32) || AM.BaseOffs >= (1LL << 32)-1)
7140 return false;
Scott Michel91099d62009-02-17 22:15:04 +00007141
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007142 if (AM.BaseGV) {
Evan Cheng6a1f3f12007-08-01 23:46:47 +00007143 // We can only fold this if we don't need an extra load.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007144 if (Subtarget->GVRequiresExtraLoad(AM.BaseGV, getTargetMachine(), false))
7145 return false;
Dale Johannesen64660e92008-12-05 21:47:27 +00007146 // If BaseGV requires a register, we cannot also have a BaseReg.
7147 if (Subtarget->GVRequiresRegister(AM.BaseGV, getTargetMachine(), false) &&
7148 AM.HasBaseReg)
7149 return false;
Evan Cheng6a1f3f12007-08-01 23:46:47 +00007150
7151 // X86-64 only supports addr of globals in small code model.
7152 if (Subtarget->is64Bit()) {
7153 if (getTargetMachine().getCodeModel() != CodeModel::Small)
7154 return false;
7155 // If lower 4G is not available, then we must use rip-relative addressing.
7156 if (AM.BaseOffs || AM.Scale > 1)
7157 return false;
7158 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007159 }
Scott Michel91099d62009-02-17 22:15:04 +00007160
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007161 switch (AM.Scale) {
7162 case 0:
7163 case 1:
7164 case 2:
7165 case 4:
7166 case 8:
7167 // These scales always work.
7168 break;
7169 case 3:
7170 case 5:
7171 case 9:
7172 // These scales are formed with basereg+scalereg. Only accept if there is
7173 // no basereg yet.
7174 if (AM.HasBaseReg)
7175 return false;
7176 break;
7177 default: // Other stuff never works.
7178 return false;
7179 }
Scott Michel91099d62009-02-17 22:15:04 +00007180
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007181 return true;
7182}
7183
7184
Evan Cheng27a820a2007-10-26 01:56:11 +00007185bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
7186 if (!Ty1->isInteger() || !Ty2->isInteger())
7187 return false;
Evan Cheng7f152602007-10-29 07:57:50 +00007188 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
7189 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Chengca0e80f2008-03-20 02:18:41 +00007190 if (NumBits1 <= NumBits2)
Evan Cheng7f152602007-10-29 07:57:50 +00007191 return false;
7192 return Subtarget->is64Bit() || NumBits1 < 64;
Evan Cheng27a820a2007-10-26 01:56:11 +00007193}
7194
Duncan Sands92c43912008-06-06 12:08:01 +00007195bool X86TargetLowering::isTruncateFree(MVT VT1, MVT VT2) const {
7196 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng9decb332007-10-29 19:58:20 +00007197 return false;
Duncan Sands92c43912008-06-06 12:08:01 +00007198 unsigned NumBits1 = VT1.getSizeInBits();
7199 unsigned NumBits2 = VT2.getSizeInBits();
Evan Chengca0e80f2008-03-20 02:18:41 +00007200 if (NumBits1 <= NumBits2)
Evan Cheng9decb332007-10-29 19:58:20 +00007201 return false;
7202 return Subtarget->is64Bit() || NumBits1 < 64;
7203}
Evan Cheng27a820a2007-10-26 01:56:11 +00007204
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007205/// isShuffleMaskLegal - Targets can use this to indicate that they only
7206/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
7207/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
7208/// are assumed to be legal.
7209bool
Dan Gohman8181bd12008-07-27 21:46:04 +00007210X86TargetLowering::isShuffleMaskLegal(SDValue Mask, MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007211 // Only do shuffles on 128-bit vector types for now.
Nate Begeman2c87c422009-02-23 08:49:38 +00007212 // FIXME: pshufb, blends
Duncan Sands92c43912008-06-06 12:08:01 +00007213 if (VT.getSizeInBits() == 64) return false;
Gabor Greif1c80d112008-08-28 21:40:38 +00007214 return (Mask.getNode()->getNumOperands() <= 4 ||
7215 isIdentityMask(Mask.getNode()) ||
7216 isIdentityMask(Mask.getNode(), true) ||
7217 isSplatMask(Mask.getNode()) ||
Nate Begeman2c87c422009-02-23 08:49:38 +00007218 X86::isPSHUFHWMask(Mask.getNode()) ||
7219 X86::isPSHUFLWMask(Mask.getNode()) ||
Gabor Greif1c80d112008-08-28 21:40:38 +00007220 X86::isUNPCKLMask(Mask.getNode()) ||
7221 X86::isUNPCKHMask(Mask.getNode()) ||
7222 X86::isUNPCKL_v_undef_Mask(Mask.getNode()) ||
7223 X86::isUNPCKH_v_undef_Mask(Mask.getNode()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007224}
7225
Dan Gohman48d5f062008-04-09 20:09:42 +00007226bool
Dan Gohman8181bd12008-07-27 21:46:04 +00007227X86TargetLowering::isVectorClearMaskLegal(const std::vector<SDValue> &BVOps,
Duncan Sands92c43912008-06-06 12:08:01 +00007228 MVT EVT, SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007229 unsigned NumElts = BVOps.size();
7230 // Only do shuffles on 128-bit vector types for now.
Duncan Sands92c43912008-06-06 12:08:01 +00007231 if (EVT.getSizeInBits() * NumElts == 64) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007232 if (NumElts == 2) return true;
7233 if (NumElts == 4) {
7234 return (isMOVLMask(&BVOps[0], 4) ||
7235 isCommutedMOVL(&BVOps[0], 4, true) ||
Scott Michel91099d62009-02-17 22:15:04 +00007236 isSHUFPMask(&BVOps[0], 4) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007237 isCommutedSHUFP(&BVOps[0], 4));
7238 }
7239 return false;
7240}
7241
7242//===----------------------------------------------------------------------===//
7243// X86 Scheduler Hooks
7244//===----------------------------------------------------------------------===//
7245
Mon P Wang078a62d2008-05-05 19:05:59 +00007246// private utility function
7247MachineBasicBlock *
7248X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
7249 MachineBasicBlock *MBB,
7250 unsigned regOpc,
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007251 unsigned immOpc,
Dale Johannesend20e4452008-08-19 18:47:28 +00007252 unsigned LoadOpc,
7253 unsigned CXchgOpc,
7254 unsigned copyOpc,
7255 unsigned notOpc,
7256 unsigned EAXreg,
7257 TargetRegisterClass *RC,
Dan Gohman96d60922009-02-07 16:15:20 +00007258 bool invSrc) const {
Mon P Wang078a62d2008-05-05 19:05:59 +00007259 // For the atomic bitwise operator, we generate
7260 // thisMBB:
7261 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00007262 // ld t1 = [bitinstr.addr]
7263 // op t2 = t1, [bitinstr.val]
7264 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00007265 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7266 // bz newMBB
7267 // fallthrough -->nextMBB
7268 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7269 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007270 MachineFunction::iterator MBBIter = MBB;
Mon P Wang078a62d2008-05-05 19:05:59 +00007271 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00007272
Mon P Wang078a62d2008-05-05 19:05:59 +00007273 /// First build the CFG
7274 MachineFunction *F = MBB->getParent();
7275 MachineBasicBlock *thisMBB = MBB;
Dan Gohman221a4372008-07-07 23:14:23 +00007276 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7277 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7278 F->insert(MBBIter, newMBB);
7279 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007280
Mon P Wang078a62d2008-05-05 19:05:59 +00007281 // Move all successors to thisMBB to nextMBB
7282 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007283
Mon P Wang078a62d2008-05-05 19:05:59 +00007284 // Update thisMBB to fall through to newMBB
7285 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007286
Mon P Wang078a62d2008-05-05 19:05:59 +00007287 // newMBB jumps to itself and fall through to nextMBB
7288 newMBB->addSuccessor(nextMBB);
7289 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007290
Mon P Wang078a62d2008-05-05 19:05:59 +00007291 // Insert instructions into newMBB based on incoming instruction
7292 assert(bInstr->getNumOperands() < 8 && "unexpected number of operands");
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007293 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang078a62d2008-05-05 19:05:59 +00007294 MachineOperand& destOper = bInstr->getOperand(0);
7295 MachineOperand* argOpers[6];
7296 int numArgs = bInstr->getNumOperands() - 1;
7297 for (int i=0; i < numArgs; ++i)
7298 argOpers[i] = &bInstr->getOperand(i+1);
7299
7300 // x86 address has 4 operands: base, index, scale, and displacement
7301 int lastAddrIndx = 3; // [0,3]
7302 int valArgIndx = 4;
Scott Michel91099d62009-02-17 22:15:04 +00007303
Dale Johannesend20e4452008-08-19 18:47:28 +00007304 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007305 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00007306 for (int i=0; i <= lastAddrIndx; ++i)
7307 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007308
Dale Johannesend20e4452008-08-19 18:47:28 +00007309 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007310 if (invSrc) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007311 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007312 }
Scott Michel91099d62009-02-17 22:15:04 +00007313 else
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007314 tt = t1;
7315
Dale Johannesend20e4452008-08-19 18:47:28 +00007316 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007317 assert((argOpers[valArgIndx]->isReg() ||
7318 argOpers[valArgIndx]->isImm()) &&
Dan Gohman7f7f3652008-09-13 17:58:21 +00007319 "invalid operand");
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007320 if (argOpers[valArgIndx]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007321 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang078a62d2008-05-05 19:05:59 +00007322 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007323 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007324 MIB.addReg(tt);
Mon P Wang078a62d2008-05-05 19:05:59 +00007325 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007326
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007327 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), EAXreg);
Mon P Wang318b0372008-05-05 22:56:23 +00007328 MIB.addReg(t1);
Scott Michel91099d62009-02-17 22:15:04 +00007329
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007330 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang078a62d2008-05-05 19:05:59 +00007331 for (int i=0; i <= lastAddrIndx; ++i)
7332 (*MIB).addOperand(*argOpers[i]);
7333 MIB.addReg(t2);
Mon P Wang50584a62008-07-17 04:54:06 +00007334 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7335 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7336
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007337 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), destOper.getReg());
Dale Johannesend20e4452008-08-19 18:47:28 +00007338 MIB.addReg(EAXreg);
Scott Michel91099d62009-02-17 22:15:04 +00007339
Mon P Wang078a62d2008-05-05 19:05:59 +00007340 // insert branch
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007341 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007342
Dan Gohman221a4372008-07-07 23:14:23 +00007343 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
Mon P Wang078a62d2008-05-05 19:05:59 +00007344 return nextMBB;
7345}
7346
Dale Johannesen44eb5372008-10-03 19:41:08 +00007347// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang078a62d2008-05-05 19:05:59 +00007348MachineBasicBlock *
Dale Johannesenf160d802008-10-02 18:53:47 +00007349X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
7350 MachineBasicBlock *MBB,
7351 unsigned regOpcL,
7352 unsigned regOpcH,
7353 unsigned immOpcL,
7354 unsigned immOpcH,
Dan Gohman96d60922009-02-07 16:15:20 +00007355 bool invSrc) const {
Dale Johannesenf160d802008-10-02 18:53:47 +00007356 // For the atomic bitwise operator, we generate
7357 // thisMBB (instructions are in pairs, except cmpxchg8b)
7358 // ld t1,t2 = [bitinstr.addr]
7359 // newMBB:
7360 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
7361 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007362 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesenf160d802008-10-02 18:53:47 +00007363 // mov ECX, EBX <- t5, t6
7364 // mov EAX, EDX <- t1, t2
7365 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
7366 // mov t3, t4 <- EAX, EDX
7367 // bz newMBB
7368 // result in out1, out2
7369 // fallthrough -->nextMBB
7370
7371 const TargetRegisterClass *RC = X86::GR32RegisterClass;
7372 const unsigned LoadOpc = X86::MOV32rm;
7373 const unsigned copyOpc = X86::MOV32rr;
7374 const unsigned NotOpc = X86::NOT32r;
7375 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7376 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
7377 MachineFunction::iterator MBBIter = MBB;
7378 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00007379
Dale Johannesenf160d802008-10-02 18:53:47 +00007380 /// First build the CFG
7381 MachineFunction *F = MBB->getParent();
7382 MachineBasicBlock *thisMBB = MBB;
7383 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7384 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7385 F->insert(MBBIter, newMBB);
7386 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007387
Dale Johannesenf160d802008-10-02 18:53:47 +00007388 // Move all successors to thisMBB to nextMBB
7389 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007390
Dale Johannesenf160d802008-10-02 18:53:47 +00007391 // Update thisMBB to fall through to newMBB
7392 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007393
Dale Johannesenf160d802008-10-02 18:53:47 +00007394 // newMBB jumps to itself and fall through to nextMBB
7395 newMBB->addSuccessor(nextMBB);
7396 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007397
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007398 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesenf160d802008-10-02 18:53:47 +00007399 // Insert instructions into newMBB based on incoming instruction
7400 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
7401 assert(bInstr->getNumOperands() < 18 && "unexpected number of operands");
7402 MachineOperand& dest1Oper = bInstr->getOperand(0);
7403 MachineOperand& dest2Oper = bInstr->getOperand(1);
7404 MachineOperand* argOpers[6];
7405 for (int i=0; i < 6; ++i)
7406 argOpers[i] = &bInstr->getOperand(i+2);
7407
7408 // x86 address has 4 operands: base, index, scale, and displacement
7409 int lastAddrIndx = 3; // [0,3]
Scott Michel91099d62009-02-17 22:15:04 +00007410
Dale Johannesenf160d802008-10-02 18:53:47 +00007411 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007412 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesenf160d802008-10-02 18:53:47 +00007413 for (int i=0; i <= lastAddrIndx; ++i)
7414 (*MIB).addOperand(*argOpers[i]);
7415 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007416 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007417 // add 4 to displacement.
Dale Johannesenf160d802008-10-02 18:53:47 +00007418 for (int i=0; i <= lastAddrIndx-1; ++i)
7419 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007420 MachineOperand newOp3 = *(argOpers[3]);
7421 if (newOp3.isImm())
7422 newOp3.setImm(newOp3.getImm()+4);
7423 else
7424 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesenf160d802008-10-02 18:53:47 +00007425 (*MIB).addOperand(newOp3);
7426
7427 // t3/4 are defined later, at the bottom of the loop
7428 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
7429 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007430 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesenf160d802008-10-02 18:53:47 +00007431 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007432 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesenf160d802008-10-02 18:53:47 +00007433 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
7434
7435 unsigned tt1 = F->getRegInfo().createVirtualRegister(RC);
7436 unsigned tt2 = F->getRegInfo().createVirtualRegister(RC);
Scott Michel91099d62009-02-17 22:15:04 +00007437 if (invSrc) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007438 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt1).addReg(t1);
7439 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt2).addReg(t2);
Dale Johannesenf160d802008-10-02 18:53:47 +00007440 } else {
7441 tt1 = t1;
7442 tt2 = t2;
7443 }
7444
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007445 assert((argOpers[4]->isReg() || argOpers[4]->isImm()) &&
Dale Johannesenf160d802008-10-02 18:53:47 +00007446 "invalid operand");
7447 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
7448 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007449 if (argOpers[4]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007450 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesenf160d802008-10-02 18:53:47 +00007451 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007452 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007453 if (regOpcL != X86::MOV32rr)
7454 MIB.addReg(tt1);
Dale Johannesenf160d802008-10-02 18:53:47 +00007455 (*MIB).addOperand(*argOpers[4]);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007456 assert(argOpers[5]->isReg() == argOpers[4]->isReg());
7457 assert(argOpers[5]->isImm() == argOpers[4]->isImm());
7458 if (argOpers[5]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007459 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesenf160d802008-10-02 18:53:47 +00007460 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007461 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007462 if (regOpcH != X86::MOV32rr)
7463 MIB.addReg(tt2);
Dale Johannesenf160d802008-10-02 18:53:47 +00007464 (*MIB).addOperand(*argOpers[5]);
7465
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007466 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EAX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007467 MIB.addReg(t1);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007468 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EDX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007469 MIB.addReg(t2);
7470
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007471 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EBX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007472 MIB.addReg(t5);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007473 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::ECX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007474 MIB.addReg(t6);
Scott Michel91099d62009-02-17 22:15:04 +00007475
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007476 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesenf160d802008-10-02 18:53:47 +00007477 for (int i=0; i <= lastAddrIndx; ++i)
7478 (*MIB).addOperand(*argOpers[i]);
7479
7480 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7481 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7482
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007483 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t3);
Dale Johannesenf160d802008-10-02 18:53:47 +00007484 MIB.addReg(X86::EAX);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007485 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t4);
Dale Johannesenf160d802008-10-02 18:53:47 +00007486 MIB.addReg(X86::EDX);
Scott Michel91099d62009-02-17 22:15:04 +00007487
Dale Johannesenf160d802008-10-02 18:53:47 +00007488 // insert branch
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007489 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Dale Johannesenf160d802008-10-02 18:53:47 +00007490
7491 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
7492 return nextMBB;
7493}
7494
7495// private utility function
7496MachineBasicBlock *
Mon P Wang078a62d2008-05-05 19:05:59 +00007497X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
7498 MachineBasicBlock *MBB,
Dan Gohman96d60922009-02-07 16:15:20 +00007499 unsigned cmovOpc) const {
Mon P Wang078a62d2008-05-05 19:05:59 +00007500 // For the atomic min/max operator, we generate
7501 // thisMBB:
7502 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00007503 // ld t1 = [min/max.addr]
Scott Michel91099d62009-02-17 22:15:04 +00007504 // mov t2 = [min/max.val]
Mon P Wang078a62d2008-05-05 19:05:59 +00007505 // cmp t1, t2
7506 // cmov[cond] t2 = t1
Mon P Wang318b0372008-05-05 22:56:23 +00007507 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00007508 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7509 // bz newMBB
7510 // fallthrough -->nextMBB
7511 //
7512 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7513 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007514 MachineFunction::iterator MBBIter = MBB;
Mon P Wang078a62d2008-05-05 19:05:59 +00007515 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00007516
Mon P Wang078a62d2008-05-05 19:05:59 +00007517 /// First build the CFG
7518 MachineFunction *F = MBB->getParent();
7519 MachineBasicBlock *thisMBB = MBB;
Dan Gohman221a4372008-07-07 23:14:23 +00007520 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7521 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7522 F->insert(MBBIter, newMBB);
7523 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007524
Mon P Wang078a62d2008-05-05 19:05:59 +00007525 // Move all successors to thisMBB to nextMBB
7526 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007527
Mon P Wang078a62d2008-05-05 19:05:59 +00007528 // Update thisMBB to fall through to newMBB
7529 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007530
Mon P Wang078a62d2008-05-05 19:05:59 +00007531 // newMBB jumps to newMBB and fall through to nextMBB
7532 newMBB->addSuccessor(nextMBB);
7533 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007534
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007535 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang078a62d2008-05-05 19:05:59 +00007536 // Insert instructions into newMBB based on incoming instruction
7537 assert(mInstr->getNumOperands() < 8 && "unexpected number of operands");
7538 MachineOperand& destOper = mInstr->getOperand(0);
7539 MachineOperand* argOpers[6];
7540 int numArgs = mInstr->getNumOperands() - 1;
7541 for (int i=0; i < numArgs; ++i)
7542 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michel91099d62009-02-17 22:15:04 +00007543
Mon P Wang078a62d2008-05-05 19:05:59 +00007544 // x86 address has 4 operands: base, index, scale, and displacement
7545 int lastAddrIndx = 3; // [0,3]
7546 int valArgIndx = 4;
Scott Michel91099d62009-02-17 22:15:04 +00007547
Mon P Wang318b0372008-05-05 22:56:23 +00007548 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007549 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00007550 for (int i=0; i <= lastAddrIndx; ++i)
7551 (*MIB).addOperand(*argOpers[i]);
Mon P Wang318b0372008-05-05 22:56:23 +00007552
Mon P Wang078a62d2008-05-05 19:05:59 +00007553 // We only support register and immediate values
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007554 assert((argOpers[valArgIndx]->isReg() ||
7555 argOpers[valArgIndx]->isImm()) &&
Dan Gohman7f7f3652008-09-13 17:58:21 +00007556 "invalid operand");
Scott Michel91099d62009-02-17 22:15:04 +00007557
7558 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007559 if (argOpers[valArgIndx]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007560 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Scott Michel91099d62009-02-17 22:15:04 +00007561 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007562 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang078a62d2008-05-05 19:05:59 +00007563 (*MIB).addOperand(*argOpers[valArgIndx]);
7564
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007565 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), X86::EAX);
Mon P Wang318b0372008-05-05 22:56:23 +00007566 MIB.addReg(t1);
7567
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007568 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang078a62d2008-05-05 19:05:59 +00007569 MIB.addReg(t1);
7570 MIB.addReg(t2);
7571
7572 // Generate movc
7573 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007574 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang078a62d2008-05-05 19:05:59 +00007575 MIB.addReg(t2);
7576 MIB.addReg(t1);
7577
7578 // Cmp and exchange if none has modified the memory location
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007579 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang078a62d2008-05-05 19:05:59 +00007580 for (int i=0; i <= lastAddrIndx; ++i)
7581 (*MIB).addOperand(*argOpers[i]);
7582 MIB.addReg(t3);
Mon P Wang50584a62008-07-17 04:54:06 +00007583 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7584 (*MIB).addMemOperand(*F, *mInstr->memoperands_begin());
Scott Michel91099d62009-02-17 22:15:04 +00007585
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007586 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), destOper.getReg());
Mon P Wang078a62d2008-05-05 19:05:59 +00007587 MIB.addReg(X86::EAX);
Scott Michel91099d62009-02-17 22:15:04 +00007588
Mon P Wang078a62d2008-05-05 19:05:59 +00007589 // insert branch
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007590 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007591
Dan Gohman221a4372008-07-07 23:14:23 +00007592 F->DeleteMachineInstr(mInstr); // The pseudo instruction is gone now.
Mon P Wang078a62d2008-05-05 19:05:59 +00007593 return nextMBB;
7594}
7595
7596
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007597MachineBasicBlock *
Evan Chenge637db12008-01-30 18:18:23 +00007598X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman96d60922009-02-07 16:15:20 +00007599 MachineBasicBlock *BB) const {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007600 DebugLoc dl = MI->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007601 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7602 switch (MI->getOpcode()) {
7603 default: assert(false && "Unexpected instr type to insert");
Mon P Wang83edba52008-12-12 01:25:51 +00007604 case X86::CMOV_V1I64:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007605 case X86::CMOV_FR32:
7606 case X86::CMOV_FR64:
7607 case X86::CMOV_V4F32:
7608 case X86::CMOV_V2F64:
Evan Cheng621216e2007-09-29 00:00:36 +00007609 case X86::CMOV_V2I64: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007610 // To "insert" a SELECT_CC instruction, we actually have to insert the
7611 // diamond control-flow pattern. The incoming instruction knows the
7612 // destination vreg to set, the condition code register to branch on, the
7613 // true/false values to select between, and a branch opcode to use.
7614 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007615 MachineFunction::iterator It = BB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007616 ++It;
7617
7618 // thisMBB:
7619 // ...
7620 // TrueVal = ...
7621 // cmpTY ccX, r1, r2
7622 // bCC copy1MBB
7623 // fallthrough --> copy0MBB
7624 MachineBasicBlock *thisMBB = BB;
Dan Gohman221a4372008-07-07 23:14:23 +00007625 MachineFunction *F = BB->getParent();
7626 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7627 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007628 unsigned Opc =
7629 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007630 BuildMI(BB, dl, TII->get(Opc)).addMBB(sinkMBB);
Dan Gohman221a4372008-07-07 23:14:23 +00007631 F->insert(It, copy0MBB);
7632 F->insert(It, sinkMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007633 // Update machine-CFG edges by transferring all successors of the current
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007634 // block to the new block which will contain the Phi node for the select.
Mon P Wang078a62d2008-05-05 19:05:59 +00007635 sinkMBB->transferSuccessors(BB);
7636
7637 // Add the true and fallthrough blocks as its successors.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007638 BB->addSuccessor(copy0MBB);
7639 BB->addSuccessor(sinkMBB);
7640
7641 // copy0MBB:
7642 // %FalseValue = ...
7643 // # fallthrough to sinkMBB
7644 BB = copy0MBB;
7645
7646 // Update machine-CFG edges
7647 BB->addSuccessor(sinkMBB);
7648
7649 // sinkMBB:
7650 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7651 // ...
7652 BB = sinkMBB;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007653 BuildMI(BB, dl, TII->get(X86::PHI), MI->getOperand(0).getReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007654 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7655 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7656
Dan Gohman221a4372008-07-07 23:14:23 +00007657 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007658 return BB;
7659 }
7660
7661 case X86::FP32_TO_INT16_IN_MEM:
7662 case X86::FP32_TO_INT32_IN_MEM:
7663 case X86::FP32_TO_INT64_IN_MEM:
7664 case X86::FP64_TO_INT16_IN_MEM:
7665 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00007666 case X86::FP64_TO_INT64_IN_MEM:
7667 case X86::FP80_TO_INT16_IN_MEM:
7668 case X86::FP80_TO_INT32_IN_MEM:
7669 case X86::FP80_TO_INT64_IN_MEM: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007670 // Change the floating point control register to use "round towards zero"
7671 // mode when truncating to an integer value.
7672 MachineFunction *F = BB->getParent();
7673 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007674 addFrameReference(BuildMI(BB, dl, TII->get(X86::FNSTCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007675
7676 // Load the old value of the high byte of the control word...
7677 unsigned OldCW =
Chris Lattner1b989192007-12-31 04:13:23 +00007678 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Scott Michel91099d62009-02-17 22:15:04 +00007679 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16rm), OldCW),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007680 CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007681
7682 // Set the high part to be round to zero...
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007683 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mi)), CWFrameIdx)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007684 .addImm(0xC7F);
7685
7686 // Reload the modified control word now...
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007687 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007688
7689 // Restore the memory image of control word to original value
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007690 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mr)), CWFrameIdx)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007691 .addReg(OldCW);
7692
7693 // Get the X86 opcode to use.
7694 unsigned Opc;
7695 switch (MI->getOpcode()) {
7696 default: assert(0 && "illegal opcode!");
7697 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
7698 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
7699 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
7700 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
7701 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
7702 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00007703 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
7704 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
7705 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007706 }
7707
7708 X86AddressMode AM;
7709 MachineOperand &Op = MI->getOperand(0);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007710 if (Op.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007711 AM.BaseType = X86AddressMode::RegBase;
7712 AM.Base.Reg = Op.getReg();
7713 } else {
7714 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner6017d482007-12-30 23:10:15 +00007715 AM.Base.FrameIndex = Op.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007716 }
7717 Op = MI->getOperand(1);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007718 if (Op.isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007719 AM.Scale = Op.getImm();
7720 Op = MI->getOperand(2);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007721 if (Op.isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007722 AM.IndexReg = Op.getImm();
7723 Op = MI->getOperand(3);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007724 if (Op.isGlobal()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007725 AM.GV = Op.getGlobal();
7726 } else {
7727 AM.Disp = Op.getImm();
7728 }
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007729 addFullAddress(BuildMI(BB, dl, TII->get(Opc)), AM)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007730 .addReg(MI->getOperand(4).getReg());
7731
7732 // Reload the original control word now.
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007733 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007734
Dan Gohman221a4372008-07-07 23:14:23 +00007735 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007736 return BB;
7737 }
Mon P Wang078a62d2008-05-05 19:05:59 +00007738 case X86::ATOMAND32:
7739 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michel91099d62009-02-17 22:15:04 +00007740 X86::AND32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00007741 X86::LCMPXCHG32, X86::MOV32rr,
7742 X86::NOT32r, X86::EAX,
7743 X86::GR32RegisterClass);
Mon P Wang078a62d2008-05-05 19:05:59 +00007744 case X86::ATOMOR32:
Scott Michel91099d62009-02-17 22:15:04 +00007745 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
7746 X86::OR32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00007747 X86::LCMPXCHG32, X86::MOV32rr,
7748 X86::NOT32r, X86::EAX,
7749 X86::GR32RegisterClass);
Mon P Wang078a62d2008-05-05 19:05:59 +00007750 case X86::ATOMXOR32:
7751 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michel91099d62009-02-17 22:15:04 +00007752 X86::XOR32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00007753 X86::LCMPXCHG32, X86::MOV32rr,
7754 X86::NOT32r, X86::EAX,
7755 X86::GR32RegisterClass);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007756 case X86::ATOMNAND32:
7757 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007758 X86::AND32ri, X86::MOV32rm,
7759 X86::LCMPXCHG32, X86::MOV32rr,
7760 X86::NOT32r, X86::EAX,
7761 X86::GR32RegisterClass, true);
Mon P Wang078a62d2008-05-05 19:05:59 +00007762 case X86::ATOMMIN32:
7763 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
7764 case X86::ATOMMAX32:
7765 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
7766 case X86::ATOMUMIN32:
7767 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
7768 case X86::ATOMUMAX32:
7769 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesend20e4452008-08-19 18:47:28 +00007770
7771 case X86::ATOMAND16:
7772 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7773 X86::AND16ri, X86::MOV16rm,
7774 X86::LCMPXCHG16, X86::MOV16rr,
7775 X86::NOT16r, X86::AX,
7776 X86::GR16RegisterClass);
7777 case X86::ATOMOR16:
Scott Michel91099d62009-02-17 22:15:04 +00007778 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007779 X86::OR16ri, X86::MOV16rm,
7780 X86::LCMPXCHG16, X86::MOV16rr,
7781 X86::NOT16r, X86::AX,
7782 X86::GR16RegisterClass);
7783 case X86::ATOMXOR16:
7784 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
7785 X86::XOR16ri, X86::MOV16rm,
7786 X86::LCMPXCHG16, X86::MOV16rr,
7787 X86::NOT16r, X86::AX,
7788 X86::GR16RegisterClass);
7789 case X86::ATOMNAND16:
7790 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7791 X86::AND16ri, X86::MOV16rm,
7792 X86::LCMPXCHG16, X86::MOV16rr,
7793 X86::NOT16r, X86::AX,
7794 X86::GR16RegisterClass, true);
7795 case X86::ATOMMIN16:
7796 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
7797 case X86::ATOMMAX16:
7798 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
7799 case X86::ATOMUMIN16:
7800 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
7801 case X86::ATOMUMAX16:
7802 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
7803
7804 case X86::ATOMAND8:
7805 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7806 X86::AND8ri, X86::MOV8rm,
7807 X86::LCMPXCHG8, X86::MOV8rr,
7808 X86::NOT8r, X86::AL,
7809 X86::GR8RegisterClass);
7810 case X86::ATOMOR8:
Scott Michel91099d62009-02-17 22:15:04 +00007811 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007812 X86::OR8ri, X86::MOV8rm,
7813 X86::LCMPXCHG8, X86::MOV8rr,
7814 X86::NOT8r, X86::AL,
7815 X86::GR8RegisterClass);
7816 case X86::ATOMXOR8:
7817 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
7818 X86::XOR8ri, X86::MOV8rm,
7819 X86::LCMPXCHG8, X86::MOV8rr,
7820 X86::NOT8r, X86::AL,
7821 X86::GR8RegisterClass);
7822 case X86::ATOMNAND8:
7823 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7824 X86::AND8ri, X86::MOV8rm,
7825 X86::LCMPXCHG8, X86::MOV8rr,
7826 X86::NOT8r, X86::AL,
7827 X86::GR8RegisterClass, true);
7828 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesenf160d802008-10-02 18:53:47 +00007829 // This group is for 64-bit host.
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007830 case X86::ATOMAND64:
7831 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michel91099d62009-02-17 22:15:04 +00007832 X86::AND64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007833 X86::LCMPXCHG64, X86::MOV64rr,
7834 X86::NOT64r, X86::RAX,
7835 X86::GR64RegisterClass);
7836 case X86::ATOMOR64:
Scott Michel91099d62009-02-17 22:15:04 +00007837 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
7838 X86::OR64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007839 X86::LCMPXCHG64, X86::MOV64rr,
7840 X86::NOT64r, X86::RAX,
7841 X86::GR64RegisterClass);
7842 case X86::ATOMXOR64:
7843 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michel91099d62009-02-17 22:15:04 +00007844 X86::XOR64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007845 X86::LCMPXCHG64, X86::MOV64rr,
7846 X86::NOT64r, X86::RAX,
7847 X86::GR64RegisterClass);
7848 case X86::ATOMNAND64:
7849 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
7850 X86::AND64ri32, X86::MOV64rm,
7851 X86::LCMPXCHG64, X86::MOV64rr,
7852 X86::NOT64r, X86::RAX,
7853 X86::GR64RegisterClass, true);
7854 case X86::ATOMMIN64:
7855 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
7856 case X86::ATOMMAX64:
7857 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
7858 case X86::ATOMUMIN64:
7859 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
7860 case X86::ATOMUMAX64:
7861 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesenf160d802008-10-02 18:53:47 +00007862
7863 // This group does 64-bit operations on a 32-bit host.
7864 case X86::ATOMAND6432:
Scott Michel91099d62009-02-17 22:15:04 +00007865 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007866 X86::AND32rr, X86::AND32rr,
7867 X86::AND32ri, X86::AND32ri,
7868 false);
7869 case X86::ATOMOR6432:
Scott Michel91099d62009-02-17 22:15:04 +00007870 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007871 X86::OR32rr, X86::OR32rr,
7872 X86::OR32ri, X86::OR32ri,
7873 false);
7874 case X86::ATOMXOR6432:
Scott Michel91099d62009-02-17 22:15:04 +00007875 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007876 X86::XOR32rr, X86::XOR32rr,
7877 X86::XOR32ri, X86::XOR32ri,
7878 false);
7879 case X86::ATOMNAND6432:
Scott Michel91099d62009-02-17 22:15:04 +00007880 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007881 X86::AND32rr, X86::AND32rr,
7882 X86::AND32ri, X86::AND32ri,
7883 true);
Dale Johannesenf160d802008-10-02 18:53:47 +00007884 case X86::ATOMADD6432:
Scott Michel91099d62009-02-17 22:15:04 +00007885 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007886 X86::ADD32rr, X86::ADC32rr,
7887 X86::ADD32ri, X86::ADC32ri,
7888 false);
Dale Johannesenf160d802008-10-02 18:53:47 +00007889 case X86::ATOMSUB6432:
Scott Michel91099d62009-02-17 22:15:04 +00007890 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007891 X86::SUB32rr, X86::SBB32rr,
7892 X86::SUB32ri, X86::SBB32ri,
7893 false);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007894 case X86::ATOMSWAP6432:
Scott Michel91099d62009-02-17 22:15:04 +00007895 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007896 X86::MOV32rr, X86::MOV32rr,
7897 X86::MOV32ri, X86::MOV32ri,
7898 false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007899 }
7900}
7901
7902//===----------------------------------------------------------------------===//
7903// X86 Optimization Hooks
7904//===----------------------------------------------------------------------===//
7905
Dan Gohman8181bd12008-07-27 21:46:04 +00007906void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmand0dfc772008-02-13 22:28:48 +00007907 const APInt &Mask,
Dan Gohman229fa052008-02-13 00:35:47 +00007908 APInt &KnownZero,
7909 APInt &KnownOne,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007910 const SelectionDAG &DAG,
7911 unsigned Depth) const {
7912 unsigned Opc = Op.getOpcode();
7913 assert((Opc >= ISD::BUILTIN_OP_END ||
7914 Opc == ISD::INTRINSIC_WO_CHAIN ||
7915 Opc == ISD::INTRINSIC_W_CHAIN ||
7916 Opc == ISD::INTRINSIC_VOID) &&
7917 "Should use MaskedValueIsZero if you don't know whether Op"
7918 " is a target node!");
7919
Dan Gohman1d79e432008-02-13 23:07:24 +00007920 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007921 switch (Opc) {
7922 default: break;
Evan Cheng8e9b21c2009-02-02 09:15:04 +00007923 case X86ISD::ADD:
7924 case X86ISD::SUB:
7925 case X86ISD::SMUL:
7926 case X86ISD::UMUL:
Dan Gohman99a12192009-03-04 19:44:21 +00007927 case X86ISD::INC:
7928 case X86ISD::DEC:
Evan Cheng8e9b21c2009-02-02 09:15:04 +00007929 // These nodes' second result is a boolean.
7930 if (Op.getResNo() == 0)
7931 break;
7932 // Fallthrough
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007933 case X86ISD::SETCC:
Dan Gohman229fa052008-02-13 00:35:47 +00007934 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
7935 Mask.getBitWidth() - 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007936 break;
7937 }
7938}
7939
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007940/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengef7be082008-05-12 19:56:52 +00007941/// node is a GlobalAddress + offset.
7942bool X86TargetLowering::isGAPlusOffset(SDNode *N,
7943 GlobalValue* &GA, int64_t &Offset) const{
7944 if (N->getOpcode() == X86ISD::Wrapper) {
7945 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007946 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman36322c72008-10-18 02:06:02 +00007947 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007948 return true;
7949 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007950 }
Evan Chengef7be082008-05-12 19:56:52 +00007951 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007952}
7953
Evan Chengef7be082008-05-12 19:56:52 +00007954static bool isBaseAlignmentOfN(unsigned N, SDNode *Base,
7955 const TargetLowering &TLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007956 GlobalValue *GV;
Nick Lewycky4bd3fca2008-02-02 08:29:58 +00007957 int64_t Offset = 0;
Evan Chengef7be082008-05-12 19:56:52 +00007958 if (TLI.isGAPlusOffset(Base, GV, Offset))
Evan Cheng40ee6e52008-05-08 00:57:18 +00007959 return (GV->getAlignment() >= N && (Offset % N) == 0);
Chris Lattner3834cf32008-01-26 20:07:42 +00007960 // DAG combine handles the stack object case.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007961 return false;
7962}
7963
Dan Gohman8181bd12008-07-27 21:46:04 +00007964static bool EltsFromConsecutiveLoads(SDNode *N, SDValue PermMask,
Duncan Sands92c43912008-06-06 12:08:01 +00007965 unsigned NumElems, MVT EVT,
Evan Chengef7be082008-05-12 19:56:52 +00007966 SDNode *&Base,
7967 SelectionDAG &DAG, MachineFrameInfo *MFI,
7968 const TargetLowering &TLI) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00007969 Base = NULL;
7970 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007971 SDValue Idx = PermMask.getOperand(i);
Evan Cheng40ee6e52008-05-08 00:57:18 +00007972 if (Idx.getOpcode() == ISD::UNDEF) {
7973 if (!Base)
7974 return false;
7975 continue;
7976 }
7977
Dan Gohman8181bd12008-07-27 21:46:04 +00007978 SDValue Elt = DAG.getShuffleScalarElt(N, i);
Gabor Greif1c80d112008-08-28 21:40:38 +00007979 if (!Elt.getNode() ||
7980 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
Evan Cheng40ee6e52008-05-08 00:57:18 +00007981 return false;
7982 if (!Base) {
Gabor Greif1c80d112008-08-28 21:40:38 +00007983 Base = Elt.getNode();
Evan Cheng92ee6822008-05-10 06:46:49 +00007984 if (Base->getOpcode() == ISD::UNDEF)
7985 return false;
Evan Cheng40ee6e52008-05-08 00:57:18 +00007986 continue;
7987 }
7988 if (Elt.getOpcode() == ISD::UNDEF)
7989 continue;
7990
Gabor Greif1c80d112008-08-28 21:40:38 +00007991 if (!TLI.isConsecutiveLoad(Elt.getNode(), Base,
Duncan Sands92c43912008-06-06 12:08:01 +00007992 EVT.getSizeInBits()/8, i, MFI))
Evan Cheng40ee6e52008-05-08 00:57:18 +00007993 return false;
7994 }
7995 return true;
7996}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007997
7998/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
7999/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
8000/// if the load addresses are consecutive, non-overlapping, and in the right
8001/// order.
Dan Gohman8181bd12008-07-27 21:46:04 +00008002static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Evan Chengef7be082008-05-12 19:56:52 +00008003 const TargetLowering &TLI) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00008004 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008005 DebugLoc dl = N->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00008006 MVT VT = N->getValueType(0);
8007 MVT EVT = VT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00008008 SDValue PermMask = N->getOperand(2);
Evan Chengbad18452008-05-05 22:12:23 +00008009 unsigned NumElems = PermMask.getNumOperands();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008010 SDNode *Base = NULL;
Evan Chengef7be082008-05-12 19:56:52 +00008011 if (!EltsFromConsecutiveLoads(N, PermMask, NumElems, EVT, Base,
8012 DAG, MFI, TLI))
Dan Gohman8181bd12008-07-27 21:46:04 +00008013 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008014
Dan Gohman11821702007-07-27 17:16:43 +00008015 LoadSDNode *LD = cast<LoadSDNode>(Base);
Gabor Greif1c80d112008-08-28 21:40:38 +00008016 if (isBaseAlignmentOfN(16, Base->getOperand(1).getNode(), TLI))
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008017 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
Scott Michel91099d62009-02-17 22:15:04 +00008018 LD->getSrcValue(), LD->getSrcValueOffset(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008019 LD->isVolatile());
8020 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
8021 LD->getSrcValue(), LD->getSrcValueOffset(),
8022 LD->isVolatile(), LD->getAlignment());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008023}
8024
Evan Chengb6290462008-05-12 23:04:07 +00008025/// PerformBuildVectorCombine - build_vector 0,(load i64 / f64) -> movq / movsd.
Dan Gohman8181bd12008-07-27 21:46:04 +00008026static SDValue PerformBuildVectorCombine(SDNode *N, SelectionDAG &DAG,
Dan Gohman22cefb02009-01-29 01:59:02 +00008027 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng6617eed2008-09-24 23:26:36 +00008028 const X86Subtarget *Subtarget,
8029 const TargetLowering &TLI) {
Evan Chengdea99362008-05-29 08:22:04 +00008030 unsigned NumOps = N->getNumOperands();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008031 DebugLoc dl = N->getDebugLoc();
Evan Chengdea99362008-05-29 08:22:04 +00008032
Evan Chenge9b9c672008-05-09 21:53:03 +00008033 // Ignore single operand BUILD_VECTOR.
Evan Chengdea99362008-05-29 08:22:04 +00008034 if (NumOps == 1)
Dan Gohman8181bd12008-07-27 21:46:04 +00008035 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00008036
Duncan Sands92c43912008-06-06 12:08:01 +00008037 MVT VT = N->getValueType(0);
8038 MVT EVT = VT.getVectorElementType();
Evan Chenge9b9c672008-05-09 21:53:03 +00008039 if ((EVT != MVT::i64 && EVT != MVT::f64) || Subtarget->is64Bit())
8040 // We are looking for load i64 and zero extend. We want to transform
8041 // it before legalizer has a chance to expand it. Also look for i64
8042 // BUILD_PAIR bit casted to f64.
Dan Gohman8181bd12008-07-27 21:46:04 +00008043 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00008044 // This must be an insertion into a zero vector.
Dan Gohman8181bd12008-07-27 21:46:04 +00008045 SDValue HighElt = N->getOperand(1);
Evan Cheng5b0c30e2008-05-10 00:58:41 +00008046 if (!isZeroNode(HighElt))
Dan Gohman8181bd12008-07-27 21:46:04 +00008047 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00008048
8049 // Value must be a load.
Gabor Greif1c80d112008-08-28 21:40:38 +00008050 SDNode *Base = N->getOperand(0).getNode();
Evan Chenge9b9c672008-05-09 21:53:03 +00008051 if (!isa<LoadSDNode>(Base)) {
Evan Chengb6290462008-05-12 23:04:07 +00008052 if (Base->getOpcode() != ISD::BIT_CONVERT)
Dan Gohman8181bd12008-07-27 21:46:04 +00008053 return SDValue();
Gabor Greif1c80d112008-08-28 21:40:38 +00008054 Base = Base->getOperand(0).getNode();
Evan Chengb6290462008-05-12 23:04:07 +00008055 if (!isa<LoadSDNode>(Base))
Dan Gohman8181bd12008-07-27 21:46:04 +00008056 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00008057 }
Evan Chenge9b9c672008-05-09 21:53:03 +00008058
8059 // Transform it into VZEXT_LOAD addr.
Evan Chengb6290462008-05-12 23:04:07 +00008060 LoadSDNode *LD = cast<LoadSDNode>(Base);
Scott Michel91099d62009-02-17 22:15:04 +00008061
Nate Begeman211c4742008-05-28 00:24:25 +00008062 // Load must not be an extload.
8063 if (LD->getExtensionType() != ISD::NON_EXTLOAD)
Dan Gohman8181bd12008-07-27 21:46:04 +00008064 return SDValue();
Mon P Wang28b36412009-01-30 07:07:40 +00008065
8066 // Load type should legal type so we don't have to legalize it.
8067 if (!TLI.isTypeLegal(VT))
8068 return SDValue();
8069
Evan Cheng6617eed2008-09-24 23:26:36 +00008070 SDVTList Tys = DAG.getVTList(VT, MVT::Other);
8071 SDValue Ops[] = { LD->getChain(), LD->getBasePtr() };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008072 SDValue ResNode = DAG.getNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2);
Dan Gohman22cefb02009-01-29 01:59:02 +00008073 TargetLowering::TargetLoweringOpt TLO(DAG);
8074 TLO.CombineTo(SDValue(Base, 1), ResNode.getValue(1));
8075 DCI.CommitTargetLoweringOpt(TLO);
Evan Cheng6617eed2008-09-24 23:26:36 +00008076 return ResNode;
Scott Michel91099d62009-02-17 22:15:04 +00008077}
Evan Chenge9b9c672008-05-09 21:53:03 +00008078
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008079/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008080static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008081 const X86Subtarget *Subtarget) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008082 DebugLoc dl = N->getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00008083 SDValue Cond = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008084
8085 // If we have SSE[12] support, try to form min/max nodes.
8086 if (Subtarget->hasSSE2() &&
8087 (N->getValueType(0) == MVT::f32 || N->getValueType(0) == MVT::f64)) {
8088 if (Cond.getOpcode() == ISD::SETCC) {
8089 // Get the LHS/RHS of the select.
Dan Gohman8181bd12008-07-27 21:46:04 +00008090 SDValue LHS = N->getOperand(1);
8091 SDValue RHS = N->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008092 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
8093
8094 unsigned Opcode = 0;
8095 if (LHS == Cond.getOperand(0) && RHS == Cond.getOperand(1)) {
8096 switch (CC) {
8097 default: break;
8098 case ISD::SETOLE: // (X <= Y) ? X : Y -> min
8099 case ISD::SETULE:
8100 case ISD::SETLE:
8101 if (!UnsafeFPMath) break;
8102 // FALL THROUGH.
8103 case ISD::SETOLT: // (X olt/lt Y) ? X : Y -> min
8104 case ISD::SETLT:
8105 Opcode = X86ISD::FMIN;
8106 break;
8107
8108 case ISD::SETOGT: // (X > Y) ? X : Y -> max
8109 case ISD::SETUGT:
8110 case ISD::SETGT:
8111 if (!UnsafeFPMath) break;
8112 // FALL THROUGH.
8113 case ISD::SETUGE: // (X uge/ge Y) ? X : Y -> max
8114 case ISD::SETGE:
8115 Opcode = X86ISD::FMAX;
8116 break;
8117 }
8118 } else if (LHS == Cond.getOperand(1) && RHS == Cond.getOperand(0)) {
8119 switch (CC) {
8120 default: break;
8121 case ISD::SETOGT: // (X > Y) ? Y : X -> min
8122 case ISD::SETUGT:
8123 case ISD::SETGT:
8124 if (!UnsafeFPMath) break;
8125 // FALL THROUGH.
8126 case ISD::SETUGE: // (X uge/ge Y) ? Y : X -> min
8127 case ISD::SETGE:
8128 Opcode = X86ISD::FMIN;
8129 break;
8130
8131 case ISD::SETOLE: // (X <= Y) ? Y : X -> max
8132 case ISD::SETULE:
8133 case ISD::SETLE:
8134 if (!UnsafeFPMath) break;
8135 // FALL THROUGH.
8136 case ISD::SETOLT: // (X olt/lt Y) ? Y : X -> max
8137 case ISD::SETLT:
8138 Opcode = X86ISD::FMAX;
8139 break;
8140 }
8141 }
8142
8143 if (Opcode)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008144 return DAG.getNode(Opcode, dl, N->getValueType(0), LHS, RHS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008145 }
8146
8147 }
8148
Dan Gohman8181bd12008-07-27 21:46:04 +00008149 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008150}
8151
sampo025b75c2009-01-26 00:52:55 +00008152/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
8153/// when possible.
8154static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
8155 const X86Subtarget *Subtarget) {
8156 // On X86 with SSE2 support, we can transform this to a vector shift if
8157 // all elements are shifted by the same amount. We can't do this in legalize
8158 // because the a constant vector is typically transformed to a constant pool
8159 // so we have no knowledge of the shift amount.
sampo087d53c2009-01-26 03:15:31 +00008160 if (!Subtarget->hasSSE2())
8161 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00008162
sampo025b75c2009-01-26 00:52:55 +00008163 MVT VT = N->getValueType(0);
sampo087d53c2009-01-26 03:15:31 +00008164 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
8165 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00008166
Mon P Wanga91e9642009-01-28 08:12:05 +00008167 SDValue ShAmtOp = N->getOperand(1);
8168 MVT EltVT = VT.getVectorElementType();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008169 DebugLoc dl = N->getDebugLoc();
Mon P Wanga91e9642009-01-28 08:12:05 +00008170 SDValue BaseShAmt;
8171 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
8172 unsigned NumElts = VT.getVectorNumElements();
8173 unsigned i = 0;
8174 for (; i != NumElts; ++i) {
8175 SDValue Arg = ShAmtOp.getOperand(i);
8176 if (Arg.getOpcode() == ISD::UNDEF) continue;
8177 BaseShAmt = Arg;
8178 break;
8179 }
8180 for (; i != NumElts; ++i) {
8181 SDValue Arg = ShAmtOp.getOperand(i);
8182 if (Arg.getOpcode() == ISD::UNDEF) continue;
8183 if (Arg != BaseShAmt) {
8184 return SDValue();
8185 }
8186 }
8187 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
8188 isSplatMask(ShAmtOp.getOperand(2).getNode())) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008189 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, ShAmtOp,
Mon P Wanga91e9642009-01-28 08:12:05 +00008190 DAG.getIntPtrConstant(0));
8191 } else
sampo087d53c2009-01-26 03:15:31 +00008192 return SDValue();
sampo025b75c2009-01-26 00:52:55 +00008193
sampo087d53c2009-01-26 03:15:31 +00008194 if (EltVT.bitsGT(MVT::i32))
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008195 BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008196 else if (EltVT.bitsLT(MVT::i32))
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008197 BaseShAmt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BaseShAmt);
sampo025b75c2009-01-26 00:52:55 +00008198
sampo087d53c2009-01-26 03:15:31 +00008199 // The shift amount is identical so we can do a vector shift.
8200 SDValue ValOp = N->getOperand(0);
8201 switch (N->getOpcode()) {
8202 default:
8203 assert(0 && "Unknown shift opcode!");
8204 break;
8205 case ISD::SHL:
8206 if (VT == MVT::v2i64)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008207 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00008208 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8209 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008210 if (VT == MVT::v4i32)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008211 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00008212 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8213 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008214 if (VT == MVT::v8i16)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008215 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00008216 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8217 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008218 break;
8219 case ISD::SRA:
8220 if (VT == MVT::v4i32)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008221 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00008222 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
8223 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008224 if (VT == MVT::v8i16)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008225 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00008226 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
8227 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008228 break;
8229 case ISD::SRL:
8230 if (VT == MVT::v2i64)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008231 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00008232 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8233 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008234 if (VT == MVT::v4i32)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008235 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00008236 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
8237 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008238 if (VT == MVT::v8i16)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008239 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
sampo025b75c2009-01-26 00:52:55 +00008240 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
8241 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008242 break;
sampo025b75c2009-01-26 00:52:55 +00008243 }
8244 return SDValue();
8245}
8246
Chris Lattnerce84ae42008-02-22 02:09:43 +00008247/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008248static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Chris Lattnerce84ae42008-02-22 02:09:43 +00008249 const X86Subtarget *Subtarget) {
8250 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
8251 // the FP state in cases where an emms may be missing.
Dale Johannesend112b802008-02-25 19:20:14 +00008252 // A preferable solution to the general problem is to figure out the right
8253 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng40ee6e52008-05-08 00:57:18 +00008254 StoreSDNode *St = cast<StoreSDNode>(N);
Duncan Sands92c43912008-06-06 12:08:01 +00008255 if (St->getValue().getValueType().isVector() &&
8256 St->getValue().getValueType().getSizeInBits() == 64 &&
Dale Johannesend112b802008-02-25 19:20:14 +00008257 isa<LoadSDNode>(St->getValue()) &&
8258 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
8259 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greif1c80d112008-08-28 21:40:38 +00008260 SDNode* LdVal = St->getValue().getNode();
Dale Johannesend112b802008-02-25 19:20:14 +00008261 LoadSDNode *Ld = 0;
8262 int TokenFactorIndex = -1;
Dan Gohman8181bd12008-07-27 21:46:04 +00008263 SmallVector<SDValue, 8> Ops;
Gabor Greif1c80d112008-08-28 21:40:38 +00008264 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesend112b802008-02-25 19:20:14 +00008265 // Must be a store of a load. We currently handle two cases: the load
8266 // is a direct child, and it's under an intervening TokenFactor. It is
8267 // possible to dig deeper under nested TokenFactors.
Dale Johannesen49151bc2008-02-25 22:29:22 +00008268 if (ChainVal == LdVal)
Dale Johannesend112b802008-02-25 19:20:14 +00008269 Ld = cast<LoadSDNode>(St->getChain());
8270 else if (St->getValue().hasOneUse() &&
8271 ChainVal->getOpcode() == ISD::TokenFactor) {
8272 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greif1c80d112008-08-28 21:40:38 +00008273 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesend112b802008-02-25 19:20:14 +00008274 TokenFactorIndex = i;
8275 Ld = cast<LoadSDNode>(St->getValue());
8276 } else
8277 Ops.push_back(ChainVal->getOperand(i));
8278 }
8279 }
8280 if (Ld) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008281 DebugLoc dl = N->getDebugLoc();
Dale Johannesend112b802008-02-25 19:20:14 +00008282 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
8283 if (Subtarget->is64Bit()) {
Scott Michel91099d62009-02-17 22:15:04 +00008284 SDValue NewLd = DAG.getLoad(MVT::i64, dl, Ld->getChain(),
8285 Ld->getBasePtr(), Ld->getSrcValue(),
Dale Johannesend112b802008-02-25 19:20:14 +00008286 Ld->getSrcValueOffset(), Ld->isVolatile(),
8287 Ld->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +00008288 SDValue NewChain = NewLd.getValue(1);
Dale Johannesend112b802008-02-25 19:20:14 +00008289 if (TokenFactorIndex != -1) {
Dan Gohman72032662008-03-28 23:45:16 +00008290 Ops.push_back(NewChain);
Scott Michel91099d62009-02-17 22:15:04 +00008291 NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Ops[0],
Dale Johannesend112b802008-02-25 19:20:14 +00008292 Ops.size());
8293 }
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008294 return DAG.getStore(NewChain, dl, NewLd, St->getBasePtr(),
Dale Johannesend112b802008-02-25 19:20:14 +00008295 St->getSrcValue(), St->getSrcValueOffset(),
8296 St->isVolatile(), St->getAlignment());
8297 }
8298
8299 // Otherwise, lower to two 32-bit copies.
Dan Gohman8181bd12008-07-27 21:46:04 +00008300 SDValue LoAddr = Ld->getBasePtr();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008301 SDValue HiAddr = DAG.getNode(ISD::ADD, dl, MVT::i32, LoAddr,
Duncan Sands92c43912008-06-06 12:08:01 +00008302 DAG.getConstant(4, MVT::i32));
Dale Johannesend112b802008-02-25 19:20:14 +00008303
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008304 SDValue LoLd = DAG.getLoad(MVT::i32, dl, Ld->getChain(), LoAddr,
Dale Johannesend112b802008-02-25 19:20:14 +00008305 Ld->getSrcValue(), Ld->getSrcValueOffset(),
8306 Ld->isVolatile(), Ld->getAlignment());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008307 SDValue HiLd = DAG.getLoad(MVT::i32, dl, Ld->getChain(), HiAddr,
Dale Johannesend112b802008-02-25 19:20:14 +00008308 Ld->getSrcValue(), Ld->getSrcValueOffset()+4,
Scott Michel91099d62009-02-17 22:15:04 +00008309 Ld->isVolatile(),
Dale Johannesend112b802008-02-25 19:20:14 +00008310 MinAlign(Ld->getAlignment(), 4));
8311
Dan Gohman8181bd12008-07-27 21:46:04 +00008312 SDValue NewChain = LoLd.getValue(1);
Dale Johannesend112b802008-02-25 19:20:14 +00008313 if (TokenFactorIndex != -1) {
8314 Ops.push_back(LoLd);
8315 Ops.push_back(HiLd);
Scott Michel91099d62009-02-17 22:15:04 +00008316 NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Ops[0],
Dale Johannesend112b802008-02-25 19:20:14 +00008317 Ops.size());
8318 }
8319
8320 LoAddr = St->getBasePtr();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008321 HiAddr = DAG.getNode(ISD::ADD, dl, MVT::i32, LoAddr,
Duncan Sands92c43912008-06-06 12:08:01 +00008322 DAG.getConstant(4, MVT::i32));
Dale Johannesend112b802008-02-25 19:20:14 +00008323
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008324 SDValue LoSt = DAG.getStore(NewChain, dl, LoLd, LoAddr,
Chris Lattnerce84ae42008-02-22 02:09:43 +00008325 St->getSrcValue(), St->getSrcValueOffset(),
8326 St->isVolatile(), St->getAlignment());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008327 SDValue HiSt = DAG.getStore(NewChain, dl, HiLd, HiAddr,
Gabor Greif825aa892008-08-28 23:19:51 +00008328 St->getSrcValue(),
8329 St->getSrcValueOffset() + 4,
Scott Michel91099d62009-02-17 22:15:04 +00008330 St->isVolatile(),
Dale Johannesend112b802008-02-25 19:20:14 +00008331 MinAlign(St->getAlignment(), 4));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008332 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoSt, HiSt);
Chris Lattnerce84ae42008-02-22 02:09:43 +00008333 }
Chris Lattnerce84ae42008-02-22 02:09:43 +00008334 }
Dan Gohman8181bd12008-07-27 21:46:04 +00008335 return SDValue();
Chris Lattnerce84ae42008-02-22 02:09:43 +00008336}
8337
Chris Lattner470d5dc2008-01-25 06:14:17 +00008338/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
8339/// X86ISD::FXOR nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008340static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner470d5dc2008-01-25 06:14:17 +00008341 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
8342 // F[X]OR(0.0, x) -> x
8343 // F[X]OR(x, 0.0) -> x
Chris Lattnerf82998f2008-01-25 05:46:26 +00008344 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8345 if (C->getValueAPF().isPosZero())
8346 return N->getOperand(1);
8347 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8348 if (C->getValueAPF().isPosZero())
8349 return N->getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +00008350 return SDValue();
Chris Lattnerf82998f2008-01-25 05:46:26 +00008351}
8352
8353/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008354static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattnerf82998f2008-01-25 05:46:26 +00008355 // FAND(0.0, x) -> 0.0
8356 // FAND(x, 0.0) -> 0.0
8357 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8358 if (C->getValueAPF().isPosZero())
8359 return N->getOperand(0);
8360 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8361 if (C->getValueAPF().isPosZero())
8362 return N->getOperand(1);
Dan Gohman8181bd12008-07-27 21:46:04 +00008363 return SDValue();
Chris Lattnerf82998f2008-01-25 05:46:26 +00008364}
8365
Dan Gohman22cefb02009-01-29 01:59:02 +00008366static SDValue PerformBTCombine(SDNode *N,
8367 SelectionDAG &DAG,
8368 TargetLowering::DAGCombinerInfo &DCI) {
8369 // BT ignores high bits in the bit index operand.
8370 SDValue Op1 = N->getOperand(1);
8371 if (Op1.hasOneUse()) {
8372 unsigned BitWidth = Op1.getValueSizeInBits();
8373 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
8374 APInt KnownZero, KnownOne;
8375 TargetLowering::TargetLoweringOpt TLO(DAG);
8376 TargetLowering &TLI = DAG.getTargetLoweringInfo();
8377 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
8378 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
8379 DCI.CommitTargetLoweringOpt(TLO);
8380 }
8381 return SDValue();
8382}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008383
Dan Gohman8181bd12008-07-27 21:46:04 +00008384SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng62370f32008-11-05 06:03:38 +00008385 DAGCombinerInfo &DCI) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008386 SelectionDAG &DAG = DCI.DAG;
8387 switch (N->getOpcode()) {
8388 default: break;
Evan Chengef7be082008-05-12 19:56:52 +00008389 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
8390 case ISD::BUILD_VECTOR:
Dan Gohman22cefb02009-01-29 01:59:02 +00008391 return PerformBuildVectorCombine(N, DAG, DCI, Subtarget, *this);
Chris Lattnerf82998f2008-01-25 05:46:26 +00008392 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
sampo025b75c2009-01-26 00:52:55 +00008393 case ISD::SHL:
8394 case ISD::SRA:
8395 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng40ee6e52008-05-08 00:57:18 +00008396 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner470d5dc2008-01-25 06:14:17 +00008397 case X86ISD::FXOR:
Chris Lattnerf82998f2008-01-25 05:46:26 +00008398 case X86ISD::FOR: return PerformFORCombine(N, DAG);
8399 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohman22cefb02009-01-29 01:59:02 +00008400 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008401 }
8402
Dan Gohman8181bd12008-07-27 21:46:04 +00008403 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008404}
8405
8406//===----------------------------------------------------------------------===//
8407// X86 Inline Assembly Support
8408//===----------------------------------------------------------------------===//
8409
8410/// getConstraintType - Given a constraint letter, return the type of
8411/// constraint it is for this target.
8412X86TargetLowering::ConstraintType
8413X86TargetLowering::getConstraintType(const std::string &Constraint) const {
8414 if (Constraint.size() == 1) {
8415 switch (Constraint[0]) {
8416 case 'A':
Dale Johannesen73920c02008-11-13 21:52:36 +00008417 return C_Register;
Chris Lattner267805f2008-03-11 19:06:29 +00008418 case 'f':
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008419 case 'r':
8420 case 'R':
8421 case 'l':
8422 case 'q':
8423 case 'Q':
8424 case 'x':
Dale Johannesen9ab553f2008-04-01 00:57:48 +00008425 case 'y':
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008426 case 'Y':
8427 return C_RegisterClass;
Dale Johannesenf190a032009-02-12 20:58:09 +00008428 case 'e':
8429 case 'Z':
8430 return C_Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008431 default:
8432 break;
8433 }
8434 }
8435 return TargetLowering::getConstraintType(Constraint);
8436}
8437
Dale Johannesene99fc902008-01-29 02:21:21 +00008438/// LowerXConstraint - try to replace an X constraint, which matches anything,
8439/// with another that has more specific requirements based on the type of the
8440/// corresponding operand.
Chris Lattnereca405c2008-04-26 23:02:14 +00008441const char *X86TargetLowering::
Duncan Sands92c43912008-06-06 12:08:01 +00008442LowerXConstraint(MVT ConstraintVT) const {
Chris Lattnereca405c2008-04-26 23:02:14 +00008443 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
8444 // 'f' like normal targets.
Duncan Sands92c43912008-06-06 12:08:01 +00008445 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesene99fc902008-01-29 02:21:21 +00008446 if (Subtarget->hasSSE2())
Chris Lattnereca405c2008-04-26 23:02:14 +00008447 return "Y";
8448 if (Subtarget->hasSSE1())
8449 return "x";
8450 }
Scott Michel91099d62009-02-17 22:15:04 +00008451
Chris Lattnereca405c2008-04-26 23:02:14 +00008452 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesene99fc902008-01-29 02:21:21 +00008453}
8454
Chris Lattnera531abc2007-08-25 00:47:38 +00008455/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
8456/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman8181bd12008-07-27 21:46:04 +00008457void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattnera531abc2007-08-25 00:47:38 +00008458 char Constraint,
Evan Cheng7f250d62008-09-24 00:05:32 +00008459 bool hasMemory,
Dan Gohman8181bd12008-07-27 21:46:04 +00008460 std::vector<SDValue>&Ops,
Chris Lattnereca405c2008-04-26 23:02:14 +00008461 SelectionDAG &DAG) const {
Dan Gohman8181bd12008-07-27 21:46:04 +00008462 SDValue Result(0, 0);
Scott Michel91099d62009-02-17 22:15:04 +00008463
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008464 switch (Constraint) {
8465 default: break;
8466 case 'I':
8467 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008468 if (C->getZExtValue() <= 31) {
8469 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattnera531abc2007-08-25 00:47:38 +00008470 break;
8471 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008472 }
Chris Lattnera531abc2007-08-25 00:47:38 +00008473 return;
Evan Cheng4fb2c0f2008-09-22 23:57:37 +00008474 case 'J':
8475 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8476 if (C->getZExtValue() <= 63) {
8477 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8478 break;
8479 }
8480 }
8481 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008482 case 'N':
8483 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008484 if (C->getZExtValue() <= 255) {
8485 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattnera531abc2007-08-25 00:47:38 +00008486 break;
8487 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008488 }
Chris Lattnera531abc2007-08-25 00:47:38 +00008489 return;
Dale Johannesenf190a032009-02-12 20:58:09 +00008490 case 'e': {
8491 // 32-bit signed value
8492 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8493 const ConstantInt *CI = C->getConstantIntValue();
8494 if (CI->isValueValidForType(Type::Int32Ty, C->getSExtValue())) {
8495 // Widen to 64 bits here to get it sign extended.
8496 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
8497 break;
8498 }
8499 // FIXME gcc accepts some relocatable values here too, but only in certain
8500 // memory models; it's complicated.
8501 }
8502 return;
8503 }
8504 case 'Z': {
8505 // 32-bit unsigned value
8506 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8507 const ConstantInt *CI = C->getConstantIntValue();
8508 if (CI->isValueValidForType(Type::Int32Ty, C->getZExtValue())) {
8509 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8510 break;
8511 }
8512 }
8513 // FIXME gcc accepts some relocatable values here too, but only in certain
8514 // memory models; it's complicated.
8515 return;
8516 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008517 case 'i': {
8518 // Literal immediates are always ok.
Chris Lattnera531abc2007-08-25 00:47:38 +00008519 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesenf190a032009-02-12 20:58:09 +00008520 // Widen to 64 bits here to get it sign extended.
8521 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattnera531abc2007-08-25 00:47:38 +00008522 break;
8523 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008524
8525 // If we are in non-pic codegen mode, we allow the address of a global (with
8526 // an optional displacement) to be used with 'i'.
8527 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
8528 int64_t Offset = 0;
Scott Michel91099d62009-02-17 22:15:04 +00008529
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008530 // Match either (GA) or (GA+C)
8531 if (GA) {
8532 Offset = GA->getOffset();
8533 } else if (Op.getOpcode() == ISD::ADD) {
8534 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8535 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
8536 if (C && GA) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008537 Offset = GA->getOffset()+C->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008538 } else {
8539 C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8540 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
8541 if (C && GA)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008542 Offset = GA->getOffset()+C->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008543 else
8544 C = 0, GA = 0;
8545 }
8546 }
Scott Michel91099d62009-02-17 22:15:04 +00008547
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008548 if (GA) {
Scott Michel91099d62009-02-17 22:15:04 +00008549 if (hasMemory)
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00008550 Op = LowerGlobalAddress(GA->getGlobal(), Op.getDebugLoc(),
Dale Johannesenea996922009-02-04 20:06:27 +00008551 Offset, DAG);
Evan Cheng7f250d62008-09-24 00:05:32 +00008552 else
8553 Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
8554 Offset);
Chris Lattnera531abc2007-08-25 00:47:38 +00008555 Result = Op;
8556 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008557 }
8558
8559 // Otherwise, not valid for this mode.
Chris Lattnera531abc2007-08-25 00:47:38 +00008560 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008561 }
8562 }
Scott Michel91099d62009-02-17 22:15:04 +00008563
Gabor Greif1c80d112008-08-28 21:40:38 +00008564 if (Result.getNode()) {
Chris Lattnera531abc2007-08-25 00:47:38 +00008565 Ops.push_back(Result);
8566 return;
8567 }
Evan Cheng7f250d62008-09-24 00:05:32 +00008568 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, hasMemory,
8569 Ops, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008570}
8571
8572std::vector<unsigned> X86TargetLowering::
8573getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +00008574 MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008575 if (Constraint.size() == 1) {
8576 // FIXME: not handling fp-stack yet!
8577 switch (Constraint[0]) { // GCC X86 Constraint Letters
8578 default: break; // Unknown constraint letter
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008579 case 'q': // Q_REGS (GENERAL_REGS in 64-bit mode)
8580 case 'Q': // Q_REGS
8581 if (VT == MVT::i32)
8582 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
8583 else if (VT == MVT::i16)
8584 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
8585 else if (VT == MVT::i8)
Evan Chengf85c10f2007-08-13 23:27:11 +00008586 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Chris Lattner35032592007-11-04 06:51:12 +00008587 else if (VT == MVT::i64)
8588 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
8589 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008590 }
8591 }
8592
8593 return std::vector<unsigned>();
8594}
8595
8596std::pair<unsigned, const TargetRegisterClass*>
8597X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +00008598 MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008599 // First, see if this is a constraint that directly corresponds to an LLVM
8600 // register class.
8601 if (Constraint.size() == 1) {
8602 // GCC Constraint Letters
8603 switch (Constraint[0]) {
8604 default: break;
8605 case 'r': // GENERAL_REGS
8606 case 'R': // LEGACY_REGS
8607 case 'l': // INDEX_REGS
Chris Lattnerbbfea052008-10-17 18:15:05 +00008608 if (VT == MVT::i8)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008609 return std::make_pair(0U, X86::GR8RegisterClass);
Chris Lattnerbbfea052008-10-17 18:15:05 +00008610 if (VT == MVT::i16)
8611 return std::make_pair(0U, X86::GR16RegisterClass);
8612 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michel91099d62009-02-17 22:15:04 +00008613 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattnerbbfea052008-10-17 18:15:05 +00008614 return std::make_pair(0U, X86::GR64RegisterClass);
Chris Lattner267805f2008-03-11 19:06:29 +00008615 case 'f': // FP Stack registers.
8616 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
8617 // value to the correct fpstack register class.
8618 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
8619 return std::make_pair(0U, X86::RFP32RegisterClass);
8620 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
8621 return std::make_pair(0U, X86::RFP64RegisterClass);
8622 return std::make_pair(0U, X86::RFP80RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008623 case 'y': // MMX_REGS if MMX allowed.
8624 if (!Subtarget->hasMMX()) break;
8625 return std::make_pair(0U, X86::VR64RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008626 case 'Y': // SSE_REGS if SSE2 allowed
8627 if (!Subtarget->hasSSE2()) break;
8628 // FALL THROUGH.
8629 case 'x': // SSE_REGS if SSE1 allowed
8630 if (!Subtarget->hasSSE1()) break;
Duncan Sands92c43912008-06-06 12:08:01 +00008631
8632 switch (VT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008633 default: break;
8634 // Scalar SSE types.
8635 case MVT::f32:
8636 case MVT::i32:
8637 return std::make_pair(0U, X86::FR32RegisterClass);
8638 case MVT::f64:
8639 case MVT::i64:
8640 return std::make_pair(0U, X86::FR64RegisterClass);
8641 // Vector types.
8642 case MVT::v16i8:
8643 case MVT::v8i16:
8644 case MVT::v4i32:
8645 case MVT::v2i64:
8646 case MVT::v4f32:
8647 case MVT::v2f64:
8648 return std::make_pair(0U, X86::VR128RegisterClass);
8649 }
8650 break;
8651 }
8652 }
Scott Michel91099d62009-02-17 22:15:04 +00008653
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008654 // Use the default implementation in TargetLowering to convert the register
8655 // constraint into a member of a register class.
8656 std::pair<unsigned, const TargetRegisterClass*> Res;
8657 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
8658
8659 // Not found as a standard register?
8660 if (Res.second == 0) {
8661 // GCC calls "st(0)" just plain "st".
8662 if (StringsEqualNoCase("{st}", Constraint)) {
8663 Res.first = X86::ST0;
Chris Lattner3cfe51b2007-09-24 05:27:37 +00008664 Res.second = X86::RFP80RegisterClass;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008665 }
Dale Johannesen73920c02008-11-13 21:52:36 +00008666 // 'A' means EAX + EDX.
8667 if (Constraint == "A") {
8668 Res.first = X86::EAX;
8669 Res.second = X86::GRADRegisterClass;
8670 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008671 return Res;
8672 }
8673
8674 // Otherwise, check to see if this is a register class of the wrong value
8675 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
8676 // turn into {ax},{dx}.
8677 if (Res.second->hasType(VT))
8678 return Res; // Correct type already, nothing to do.
8679
8680 // All of the single-register GCC register classes map their values onto
8681 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
8682 // really want an 8-bit or 32-bit register, map to the appropriate register
8683 // class and return the appropriate register.
Chris Lattnere9d7f792008-08-26 06:19:02 +00008684 if (Res.second == X86::GR16RegisterClass) {
8685 if (VT == MVT::i8) {
8686 unsigned DestReg = 0;
8687 switch (Res.first) {
8688 default: break;
8689 case X86::AX: DestReg = X86::AL; break;
8690 case X86::DX: DestReg = X86::DL; break;
8691 case X86::CX: DestReg = X86::CL; break;
8692 case X86::BX: DestReg = X86::BL; break;
8693 }
8694 if (DestReg) {
8695 Res.first = DestReg;
8696 Res.second = Res.second = X86::GR8RegisterClass;
8697 }
8698 } else if (VT == MVT::i32) {
8699 unsigned DestReg = 0;
8700 switch (Res.first) {
8701 default: break;
8702 case X86::AX: DestReg = X86::EAX; break;
8703 case X86::DX: DestReg = X86::EDX; break;
8704 case X86::CX: DestReg = X86::ECX; break;
8705 case X86::BX: DestReg = X86::EBX; break;
8706 case X86::SI: DestReg = X86::ESI; break;
8707 case X86::DI: DestReg = X86::EDI; break;
8708 case X86::BP: DestReg = X86::EBP; break;
8709 case X86::SP: DestReg = X86::ESP; break;
8710 }
8711 if (DestReg) {
8712 Res.first = DestReg;
8713 Res.second = Res.second = X86::GR32RegisterClass;
8714 }
8715 } else if (VT == MVT::i64) {
8716 unsigned DestReg = 0;
8717 switch (Res.first) {
8718 default: break;
8719 case X86::AX: DestReg = X86::RAX; break;
8720 case X86::DX: DestReg = X86::RDX; break;
8721 case X86::CX: DestReg = X86::RCX; break;
8722 case X86::BX: DestReg = X86::RBX; break;
8723 case X86::SI: DestReg = X86::RSI; break;
8724 case X86::DI: DestReg = X86::RDI; break;
8725 case X86::BP: DestReg = X86::RBP; break;
8726 case X86::SP: DestReg = X86::RSP; break;
8727 }
8728 if (DestReg) {
8729 Res.first = DestReg;
8730 Res.second = Res.second = X86::GR64RegisterClass;
8731 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008732 }
Chris Lattnere9d7f792008-08-26 06:19:02 +00008733 } else if (Res.second == X86::FR32RegisterClass ||
8734 Res.second == X86::FR64RegisterClass ||
8735 Res.second == X86::VR128RegisterClass) {
8736 // Handle references to XMM physical registers that got mapped into the
8737 // wrong class. This can happen with constraints like {xmm0} where the
8738 // target independent register mapper will just pick the first match it can
8739 // find, ignoring the required type.
8740 if (VT == MVT::f32)
8741 Res.second = X86::FR32RegisterClass;
8742 else if (VT == MVT::f64)
8743 Res.second = X86::FR64RegisterClass;
8744 else if (X86::VR128RegisterClass->hasType(VT))
8745 Res.second = X86::VR128RegisterClass;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008746 }
8747
8748 return Res;
8749}
Mon P Wang1448aad2008-10-30 08:01:45 +00008750
8751//===----------------------------------------------------------------------===//
8752// X86 Widen vector type
8753//===----------------------------------------------------------------------===//
8754
8755/// getWidenVectorType: given a vector type, returns the type to widen
8756/// to (e.g., v7i8 to v8i8). If the vector type is legal, it returns itself.
8757/// If there is no vector type that we want to widen to, returns MVT::Other
Mon P Wanga5a239f2008-11-06 05:31:54 +00008758/// When and where to widen is target dependent based on the cost of
Mon P Wang1448aad2008-10-30 08:01:45 +00008759/// scalarizing vs using the wider vector type.
8760
Dan Gohman0fe66c92009-01-15 17:34:08 +00008761MVT X86TargetLowering::getWidenVectorType(MVT VT) const {
Mon P Wang1448aad2008-10-30 08:01:45 +00008762 assert(VT.isVector());
8763 if (isTypeLegal(VT))
8764 return VT;
Scott Michel91099d62009-02-17 22:15:04 +00008765
Mon P Wang1448aad2008-10-30 08:01:45 +00008766 // TODO: In computeRegisterProperty, we can compute the list of legal vector
8767 // type based on element type. This would speed up our search (though
8768 // it may not be worth it since the size of the list is relatively
8769 // small).
8770 MVT EltVT = VT.getVectorElementType();
8771 unsigned NElts = VT.getVectorNumElements();
Scott Michel91099d62009-02-17 22:15:04 +00008772
Mon P Wang1448aad2008-10-30 08:01:45 +00008773 // On X86, it make sense to widen any vector wider than 1
8774 if (NElts <= 1)
8775 return MVT::Other;
Scott Michel91099d62009-02-17 22:15:04 +00008776
8777 for (unsigned nVT = MVT::FIRST_VECTOR_VALUETYPE;
Mon P Wang1448aad2008-10-30 08:01:45 +00008778 nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
8779 MVT SVT = (MVT::SimpleValueType)nVT;
Scott Michel91099d62009-02-17 22:15:04 +00008780
8781 if (isTypeLegal(SVT) &&
8782 SVT.getVectorElementType() == EltVT &&
Mon P Wang1448aad2008-10-30 08:01:45 +00008783 SVT.getVectorNumElements() > NElts)
8784 return SVT;
8785 }
8786 return MVT::Other;
8787}