blob: f0a9484b4b6812ae899c81b17a37b5da4bce123e [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()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000116 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
Bill Wendling6b42d012009-03-13 08:41:47 +0000117 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118 } else {
Bill Wendling6b42d012009-03-13 08:41:47 +0000119 if (!UseSoftFloat && !NoImplicitFloat && X86ScalarSSEf64) {
Dale Johannesena359b8b2008-10-21 20:50:01 +0000120 // 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);
Bill Wendling6b42d012009-03-13 08:41:47 +0000125 } else {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
Bill Wendling6b42d012009-03-13 08:41:47 +0000127 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128 }
129
130 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
131 // this operation.
132 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
133 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling6b42d012009-03-13 08:41:47 +0000134
135 if (!UseSoftFloat && !NoImplicitFloat) {
136 // SSE has no i16 to fp conversion, only i32
137 if (X86ScalarSSEf32) {
138 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
139 // f32 and f64 cases are Legal, f80 case is not
140 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
141 } else {
142 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
143 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
144 }
Dale Johannesen2fc20782007-09-14 22:26:36 +0000145 } else {
Bill Wendling6b42d012009-03-13 08:41:47 +0000146 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
147 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 }
149
Dale Johannesen958b08b2007-09-19 23:55:34 +0000150 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
151 // are Legal, f80 is custom lowered.
152 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
153 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154
155 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
156 // this operation.
157 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
158 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
159
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000160 if (X86ScalarSSEf32) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000162 // f32 and f64 cases are Legal, f80 case is not
163 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 } else {
165 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
166 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
167 }
168
169 // Handle FP_TO_UINT by promoting the destination to a larger signed
170 // conversion.
171 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
172 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
173 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
174
175 if (Subtarget->is64Bit()) {
176 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
177 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
178 } else {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000179 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180 // Expand FP_TO_UINT into a select.
181 // FIXME: We would like to use a Custom expander here eventually to do
182 // the optimal thing for SSE vs. the default expansion in the legalizer.
183 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
184 else
185 // With SSE3 we can use fisttpll to convert to a signed i64.
186 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
187 }
188
189 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000190 if (!X86ScalarSSEf64) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191 setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand);
192 setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand);
193 }
194
Dan Gohman8450d862008-02-18 19:34:53 +0000195 // Scalar integer divide and remainder are lowered to use operations that
196 // produce two results, to match the available instructions. This exposes
197 // the two-result form to trivial CSE, which is able to combine x/y and x%y
198 // into a single instruction.
199 //
200 // Scalar integer multiply-high is also lowered to use two-result
201 // operations, to match the available instructions. However, plain multiply
202 // (low) operations are left as Legal, as there are single-result
203 // instructions for this in x86. Using the two-result multiply instructions
204 // when both high and low results are needed must be arranged by dagcombine.
Dan Gohman5a199552007-10-08 18:33:35 +0000205 setOperationAction(ISD::MULHS , MVT::i8 , Expand);
206 setOperationAction(ISD::MULHU , MVT::i8 , Expand);
207 setOperationAction(ISD::SDIV , MVT::i8 , Expand);
208 setOperationAction(ISD::UDIV , MVT::i8 , Expand);
209 setOperationAction(ISD::SREM , MVT::i8 , Expand);
210 setOperationAction(ISD::UREM , MVT::i8 , Expand);
Dan Gohman5a199552007-10-08 18:33:35 +0000211 setOperationAction(ISD::MULHS , MVT::i16 , Expand);
212 setOperationAction(ISD::MULHU , MVT::i16 , Expand);
213 setOperationAction(ISD::SDIV , MVT::i16 , Expand);
214 setOperationAction(ISD::UDIV , MVT::i16 , Expand);
215 setOperationAction(ISD::SREM , MVT::i16 , Expand);
216 setOperationAction(ISD::UREM , MVT::i16 , Expand);
Dan Gohman5a199552007-10-08 18:33:35 +0000217 setOperationAction(ISD::MULHS , MVT::i32 , Expand);
218 setOperationAction(ISD::MULHU , MVT::i32 , Expand);
219 setOperationAction(ISD::SDIV , MVT::i32 , Expand);
220 setOperationAction(ISD::UDIV , MVT::i32 , Expand);
221 setOperationAction(ISD::SREM , MVT::i32 , Expand);
222 setOperationAction(ISD::UREM , MVT::i32 , Expand);
Dan Gohman5a199552007-10-08 18:33:35 +0000223 setOperationAction(ISD::MULHS , MVT::i64 , Expand);
224 setOperationAction(ISD::MULHU , MVT::i64 , Expand);
225 setOperationAction(ISD::SDIV , MVT::i64 , Expand);
226 setOperationAction(ISD::UDIV , MVT::i64 , Expand);
227 setOperationAction(ISD::SREM , MVT::i64 , Expand);
228 setOperationAction(ISD::UREM , MVT::i64 , Expand);
Dan Gohman242a5ba2007-09-25 18:23:27 +0000229
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
231 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
232 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
233 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 if (Subtarget->is64Bit())
Christopher Lamb0a7c8662007-08-10 21:48:46 +0000235 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
236 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
237 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
239 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
Chris Lattnerb7a5cca2008-03-07 06:36:32 +0000240 setOperationAction(ISD::FREM , MVT::f32 , Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000241 setOperationAction(ISD::FREM , MVT::f64 , Expand);
Chris Lattnerb7a5cca2008-03-07 06:36:32 +0000242 setOperationAction(ISD::FREM , MVT::f80 , Expand);
Dan Gohman819574c2008-01-31 00:41:03 +0000243 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michel91099d62009-02-17 22:15:04 +0000244
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000246 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
247 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000248 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000249 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
250 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000252 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
253 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254 if (Subtarget->is64Bit()) {
255 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
Evan Cheng48679f42007-12-14 02:13:44 +0000256 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
257 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000258 }
259
260 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
261 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
262
263 // These should be promoted to a larger select which is supported.
264 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
265 setOperationAction(ISD::SELECT , MVT::i8 , Promote);
266 // X86 wants to expand cmov itself.
267 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
268 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
269 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
270 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000271 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000272 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
273 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
274 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
275 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
276 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000277 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278 if (Subtarget->is64Bit()) {
279 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
280 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
281 }
282 // X86 ret instruction may pop stack.
283 setOperationAction(ISD::RET , MVT::Other, Custom);
Anton Korobeynikov566f9d92008-09-08 21:12:11 +0000284 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285
286 // Darwin ABI issue.
287 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
288 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
289 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
290 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +0000291 if (Subtarget->is64Bit())
292 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Bill Wendlingfef06052008-09-16 21:48:12 +0000293 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000294 if (Subtarget->is64Bit()) {
295 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
296 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
297 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
Bill Wendlingfef06052008-09-16 21:48:12 +0000298 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000299 }
300 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
301 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
302 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
303 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman092014e2008-03-03 22:22:09 +0000304 if (Subtarget->is64Bit()) {
305 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
306 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
307 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
308 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309
Evan Cheng8d51ab32008-03-10 19:38:10 +0000310 if (Subtarget->hasSSE1())
311 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Chengd1d68072008-03-08 00:58:38 +0000312
Andrew Lenharth0531ec52008-02-16 14:46:26 +0000313 if (!Subtarget->hasSSE2())
314 setOperationAction(ISD::MEMBARRIER , MVT::Other, Expand);
315
Mon P Wang078a62d2008-05-05 19:05:59 +0000316 // Expand certain atomics
Dan Gohmanbebba8d2008-12-23 21:37:04 +0000317 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
318 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
319 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
320 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendlingdb2280a2008-08-20 00:28:16 +0000321
Dan Gohmanbebba8d2008-12-23 21:37:04 +0000322 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
323 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
324 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
325 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharth0531ec52008-02-16 14:46:26 +0000326
Dale Johannesenf160d802008-10-02 18:53:47 +0000327 if (!Subtarget->is64Bit()) {
Dan Gohmanbebba8d2008-12-23 21:37:04 +0000328 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
329 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
330 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
331 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
332 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
333 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
334 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesenf160d802008-10-02 18:53:47 +0000335 }
336
Dan Gohman472d12c2008-06-30 20:59:49 +0000337 // Use the default ISD::DBG_STOPPOINT, ISD::DECLARE expansion.
338 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339 // FIXME - use subtarget debug flags
340 if (!Subtarget->isTargetDarwin() &&
341 !Subtarget->isTargetELF() &&
Dan Gohmanfa607c92008-07-01 00:05:16 +0000342 !Subtarget->isTargetCygMing()) {
343 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
344 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
345 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346
347 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
348 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
349 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
350 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
351 if (Subtarget->is64Bit()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 setExceptionPointerRegister(X86::RAX);
353 setExceptionSelectorRegister(X86::RDX);
354 } else {
355 setExceptionPointerRegister(X86::EAX);
356 setExceptionSelectorRegister(X86::EDX);
357 }
Anton Korobeynikov23ca9c52007-09-03 00:36:06 +0000358 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
Anton Korobeynikov566f9d92008-09-08 21:12:11 +0000359 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
360
Duncan Sands7407a9f2007-09-11 14:10:23 +0000361 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsd8455ca2007-07-27 20:02:49 +0000362
Chris Lattner56b941f2008-01-15 21:58:22 +0000363 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +0000364
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
366 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000367 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000368 if (Subtarget->is64Bit()) {
369 setOperationAction(ISD::VAARG , MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000370 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000371 } else {
372 setOperationAction(ISD::VAARG , MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000374 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375
376 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
377 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
378 if (Subtarget->is64Bit())
379 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
380 if (Subtarget->isTargetCygMing())
381 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
382 else
383 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
384
Evan Cheng0b84fe12009-02-13 22:36:38 +0000385 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000386 // f32 and f64 use SSE.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000387 // Set up the FP register classes.
388 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
389 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
390
391 // Use ANDPD to simulate FABS.
392 setOperationAction(ISD::FABS , MVT::f64, Custom);
393 setOperationAction(ISD::FABS , MVT::f32, Custom);
394
395 // Use XORP to simulate FNEG.
396 setOperationAction(ISD::FNEG , MVT::f64, Custom);
397 setOperationAction(ISD::FNEG , MVT::f32, Custom);
398
399 // Use ANDPD and ORPD to simulate FCOPYSIGN.
400 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
401 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
402
403 // We don't support sin/cos/fmod
404 setOperationAction(ISD::FSIN , MVT::f64, Expand);
405 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000406 setOperationAction(ISD::FSIN , MVT::f32, Expand);
407 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000408
409 // Expand FP immediates into loads from the stack, except for the special
410 // cases we handle.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000411 addLegalFPImmediate(APFloat(+0.0)); // xorpd
412 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Dale Johannesen8f83a6b2007-08-09 01:04:01 +0000413
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000414 // Floating truncations from f80 and extensions to f80 go through memory.
415 // If optimizing, we lie about this though and handle it in
416 // InstructionSelectPreprocess so that dagcombine2 can hack on these.
417 if (Fast) {
418 setConvertAction(MVT::f32, MVT::f80, Expand);
419 setConvertAction(MVT::f64, MVT::f80, Expand);
420 setConvertAction(MVT::f80, MVT::f32, Expand);
421 setConvertAction(MVT::f80, MVT::f64, Expand);
422 }
Evan Cheng0b84fe12009-02-13 22:36:38 +0000423 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000424 // Use SSE for f32, x87 for f64.
425 // Set up the FP register classes.
426 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
427 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
428
429 // Use ANDPS to simulate FABS.
430 setOperationAction(ISD::FABS , MVT::f32, Custom);
431
432 // Use XORP to simulate FNEG.
433 setOperationAction(ISD::FNEG , MVT::f32, Custom);
434
435 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
436
437 // Use ANDPS and ORPS to simulate FCOPYSIGN.
438 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
439 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
440
441 // We don't support sin/cos/fmod
442 setOperationAction(ISD::FSIN , MVT::f32, Expand);
443 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000444
Nate Begemane2ba64f2008-02-14 08:57:00 +0000445 // Special cases we handle for FP constants.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000446 addLegalFPImmediate(APFloat(+0.0f)); // xorps
447 addLegalFPImmediate(APFloat(+0.0)); // FLD0
448 addLegalFPImmediate(APFloat(+1.0)); // FLD1
449 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
450 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
451
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000452 // SSE <-> X87 conversions go through memory. If optimizing, we lie about
453 // this though and handle it in InstructionSelectPreprocess so that
454 // dagcombine2 can hack on these.
455 if (Fast) {
456 setConvertAction(MVT::f32, MVT::f64, Expand);
457 setConvertAction(MVT::f32, MVT::f80, Expand);
Scott Michel91099d62009-02-17 22:15:04 +0000458 setConvertAction(MVT::f80, MVT::f32, Expand);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000459 setConvertAction(MVT::f64, MVT::f32, Expand);
460 // And x87->x87 truncations also.
461 setConvertAction(MVT::f80, MVT::f64, Expand);
462 }
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000463
464 if (!UnsafeFPMath) {
465 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
466 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
467 }
Evan Cheng0b84fe12009-02-13 22:36:38 +0000468 } else if (!UseSoftFloat) {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000469 // f32 and f64 in x87.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000470 // Set up the FP register classes.
471 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
472 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
473
474 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
475 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
476 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
477 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen8f83a6b2007-08-09 01:04:01 +0000478
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000479 // Floating truncations go through memory. If optimizing, we lie about
480 // this though and handle it in InstructionSelectPreprocess so that
481 // dagcombine2 can hack on these.
482 if (Fast) {
Scott Michel91099d62009-02-17 22:15:04 +0000483 setConvertAction(MVT::f80, MVT::f32, Expand);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000484 setConvertAction(MVT::f64, MVT::f32, Expand);
485 setConvertAction(MVT::f80, MVT::f64, Expand);
486 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487
488 if (!UnsafeFPMath) {
489 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
490 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
491 }
Dale Johannesenbbe2b702007-08-30 00:23:21 +0000492 addLegalFPImmediate(APFloat(+0.0)); // FLD0
493 addLegalFPImmediate(APFloat(+1.0)); // FLD1
494 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
495 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000496 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
497 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
498 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
499 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000500 }
501
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000502 // Long double always uses X87.
Evan Chenge738dc32009-03-26 23:06:32 +0000503 if (!UseSoftFloat) {
Evan Cheng0b84fe12009-02-13 22:36:38 +0000504 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
505 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
506 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
507 {
508 bool ignored;
509 APFloat TmpFlt(+0.0);
510 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
511 &ignored);
512 addLegalFPImmediate(TmpFlt); // FLD0
513 TmpFlt.changeSign();
514 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
515 APFloat TmpFlt2(+1.0);
516 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
517 &ignored);
518 addLegalFPImmediate(TmpFlt2); // FLD1
519 TmpFlt2.changeSign();
520 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
521 }
Scott Michel91099d62009-02-17 22:15:04 +0000522
Evan Cheng0b84fe12009-02-13 22:36:38 +0000523 if (!UnsafeFPMath) {
524 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
525 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
526 }
Dale Johannesen7f1076b2007-09-26 21:10:55 +0000527 }
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000528
Dan Gohman2f7b1982007-10-11 23:21:31 +0000529 // Always use a library call for pow.
530 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
531 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
532 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
533
Dale Johannesen92b33082008-09-04 00:47:13 +0000534 setOperationAction(ISD::FLOG, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000535 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000536 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000537 setOperationAction(ISD::FEXP, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000538 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
539
Mon P Wanga5a239f2008-11-06 05:31:54 +0000540 // First set operation action for all vector types to either promote
Mon P Wang1448aad2008-10-30 08:01:45 +0000541 // (for widening) or expand (for scalarization). Then we will selectively
542 // turn on ones that can be effectively codegen'd.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
544 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
Duncan Sands92c43912008-06-06 12:08:01 +0000545 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
546 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
547 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
548 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
549 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
550 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
551 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
552 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
553 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
554 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
555 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
556 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
557 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
Gabor Greif825aa892008-08-28 23:19:51 +0000558 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
559 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
560 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
Duncan Sands92c43912008-06-06 12:08:01 +0000561 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
562 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
563 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
564 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
565 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
566 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
567 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
568 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
574 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
576 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
577 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
579 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
580 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
581 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
582 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
Dale Johannesen177edff2008-09-10 17:31:40 +0000583 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
584 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
585 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
586 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
587 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000588 }
589
Evan Cheng0b84fe12009-02-13 22:36:38 +0000590 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
591 // with -msoft-float, disable use of MMX as well.
Evan Chenge738dc32009-03-26 23:06:32 +0000592 if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000593 addRegisterClass(MVT::v8i8, X86::VR64RegisterClass);
594 addRegisterClass(MVT::v4i16, X86::VR64RegisterClass);
595 addRegisterClass(MVT::v2i32, X86::VR64RegisterClass);
Dale Johannesena585daf2008-06-24 22:01:44 +0000596 addRegisterClass(MVT::v2f32, X86::VR64RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000597 addRegisterClass(MVT::v1i64, X86::VR64RegisterClass);
598
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000599 setOperationAction(ISD::ADD, MVT::v8i8, Legal);
600 setOperationAction(ISD::ADD, MVT::v4i16, Legal);
601 setOperationAction(ISD::ADD, MVT::v2i32, Legal);
602 setOperationAction(ISD::ADD, MVT::v1i64, Legal);
603
604 setOperationAction(ISD::SUB, MVT::v8i8, Legal);
605 setOperationAction(ISD::SUB, MVT::v4i16, Legal);
606 setOperationAction(ISD::SUB, MVT::v2i32, Legal);
Dale Johannesen6b65c332007-10-30 01:18:38 +0000607 setOperationAction(ISD::SUB, MVT::v1i64, Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608
609 setOperationAction(ISD::MULHS, MVT::v4i16, Legal);
610 setOperationAction(ISD::MUL, MVT::v4i16, Legal);
611
612 setOperationAction(ISD::AND, MVT::v8i8, Promote);
613 AddPromotedToType (ISD::AND, MVT::v8i8, MVT::v1i64);
614 setOperationAction(ISD::AND, MVT::v4i16, Promote);
615 AddPromotedToType (ISD::AND, MVT::v4i16, MVT::v1i64);
616 setOperationAction(ISD::AND, MVT::v2i32, Promote);
617 AddPromotedToType (ISD::AND, MVT::v2i32, MVT::v1i64);
618 setOperationAction(ISD::AND, MVT::v1i64, Legal);
619
620 setOperationAction(ISD::OR, MVT::v8i8, Promote);
621 AddPromotedToType (ISD::OR, MVT::v8i8, MVT::v1i64);
622 setOperationAction(ISD::OR, MVT::v4i16, Promote);
623 AddPromotedToType (ISD::OR, MVT::v4i16, MVT::v1i64);
624 setOperationAction(ISD::OR, MVT::v2i32, Promote);
625 AddPromotedToType (ISD::OR, MVT::v2i32, MVT::v1i64);
626 setOperationAction(ISD::OR, MVT::v1i64, Legal);
627
628 setOperationAction(ISD::XOR, MVT::v8i8, Promote);
629 AddPromotedToType (ISD::XOR, MVT::v8i8, MVT::v1i64);
630 setOperationAction(ISD::XOR, MVT::v4i16, Promote);
631 AddPromotedToType (ISD::XOR, MVT::v4i16, MVT::v1i64);
632 setOperationAction(ISD::XOR, MVT::v2i32, Promote);
633 AddPromotedToType (ISD::XOR, MVT::v2i32, MVT::v1i64);
634 setOperationAction(ISD::XOR, MVT::v1i64, Legal);
635
636 setOperationAction(ISD::LOAD, MVT::v8i8, Promote);
637 AddPromotedToType (ISD::LOAD, MVT::v8i8, MVT::v1i64);
638 setOperationAction(ISD::LOAD, MVT::v4i16, Promote);
639 AddPromotedToType (ISD::LOAD, MVT::v4i16, MVT::v1i64);
640 setOperationAction(ISD::LOAD, MVT::v2i32, Promote);
641 AddPromotedToType (ISD::LOAD, MVT::v2i32, MVT::v1i64);
Dale Johannesena585daf2008-06-24 22:01:44 +0000642 setOperationAction(ISD::LOAD, MVT::v2f32, Promote);
643 AddPromotedToType (ISD::LOAD, MVT::v2f32, MVT::v1i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000644 setOperationAction(ISD::LOAD, MVT::v1i64, Legal);
645
646 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i8, Custom);
647 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i16, Custom);
648 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i32, Custom);
Dale Johannesena585daf2008-06-24 22:01:44 +0000649 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000650 setOperationAction(ISD::BUILD_VECTOR, MVT::v1i64, Custom);
651
652 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
653 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
654 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i32, Custom);
655 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v1i64, Custom);
656
Evan Cheng759fe022008-07-22 18:39:19 +0000657 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000658 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Custom);
659 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000660 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Custom);
Bill Wendlingb9e5f802008-07-20 02:32:23 +0000661
662 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i16, Custom);
Mon P Wang83edba52008-12-12 01:25:51 +0000663
Bill Wendling042eda32009-03-11 22:30:01 +0000664 setTruncStoreAction(MVT::v8i16, MVT::v8i8, Expand);
Mon P Wang83edba52008-12-12 01:25:51 +0000665 setOperationAction(ISD::TRUNCATE, MVT::v8i8, Expand);
666 setOperationAction(ISD::SELECT, MVT::v8i8, Promote);
667 setOperationAction(ISD::SELECT, MVT::v4i16, Promote);
668 setOperationAction(ISD::SELECT, MVT::v2i32, Promote);
669 setOperationAction(ISD::SELECT, MVT::v1i64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000670 }
671
Evan Chenge738dc32009-03-26 23:06:32 +0000672 if (!UseSoftFloat && Subtarget->hasSSE1()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000673 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
674
675 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
676 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
677 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
678 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
679 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
680 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000681 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
682 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
683 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
684 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
685 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Nate Begeman03605a02008-07-17 16:51:19 +0000686 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000687 }
688
Evan Chenge738dc32009-03-26 23:06:32 +0000689 if (!UseSoftFloat && Subtarget->hasSSE2()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000690 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Cheng0b84fe12009-02-13 22:36:38 +0000691
Bill Wendling042eda32009-03-11 22:30:01 +0000692 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
693 // registers cannot be used even for integer operations.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000694 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
695 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
696 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
697 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
698
699 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
700 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
701 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
702 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Mon P Wang14edb092008-12-18 21:42:19 +0000703 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000704 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
705 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
706 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
707 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
708 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
709 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
710 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
711 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
712 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
713 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
714 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000715
Nate Begeman03605a02008-07-17 16:51:19 +0000716 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
717 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
718 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
719 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begeman061db5f2008-05-12 20:34:32 +0000720
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000721 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
722 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
723 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
724 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000725 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
726
727 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Duncan Sands92c43912008-06-06 12:08:01 +0000728 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
729 MVT VT = (MVT::SimpleValueType)i;
Nate Begemanc16406d2007-12-11 01:41:33 +0000730 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands92c43912008-06-06 12:08:01 +0000731 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begemanc16406d2007-12-11 01:41:33 +0000732 continue;
Duncan Sands92c43912008-06-06 12:08:01 +0000733 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
734 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
735 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000736 }
Bill Wendling042eda32009-03-11 22:30:01 +0000737
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000738 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
739 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
740 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
741 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000742 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000743 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendling042eda32009-03-11 22:30:01 +0000744
Nate Begeman4294c1f2008-02-12 22:51:28 +0000745 if (Subtarget->is64Bit()) {
746 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
Dale Johannesen2ff963d2007-10-31 00:32:36 +0000747 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000748 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000749
750 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
751 for (unsigned VT = (unsigned)MVT::v16i8; VT != (unsigned)MVT::v2i64; VT++) {
Duncan Sands92c43912008-06-06 12:08:01 +0000752 setOperationAction(ISD::AND, (MVT::SimpleValueType)VT, Promote);
753 AddPromotedToType (ISD::AND, (MVT::SimpleValueType)VT, MVT::v2i64);
754 setOperationAction(ISD::OR, (MVT::SimpleValueType)VT, Promote);
755 AddPromotedToType (ISD::OR, (MVT::SimpleValueType)VT, MVT::v2i64);
756 setOperationAction(ISD::XOR, (MVT::SimpleValueType)VT, Promote);
757 AddPromotedToType (ISD::XOR, (MVT::SimpleValueType)VT, MVT::v2i64);
758 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Promote);
759 AddPromotedToType (ISD::LOAD, (MVT::SimpleValueType)VT, MVT::v2i64);
760 setOperationAction(ISD::SELECT, (MVT::SimpleValueType)VT, Promote);
761 AddPromotedToType (ISD::SELECT, (MVT::SimpleValueType)VT, MVT::v2i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000762 }
763
Chris Lattner3bc08502008-01-17 19:59:44 +0000764 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000765
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000766 // Custom lower v2i64 and v2f64 selects.
767 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
768 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
769 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
770 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michel91099d62009-02-17 22:15:04 +0000771
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000772 }
Evan Cheng0b84fe12009-02-13 22:36:38 +0000773
Nate Begemand77e59e2008-02-11 04:19:36 +0000774 if (Subtarget->hasSSE41()) {
775 // FIXME: Do we need to handle scalar-to-vector here?
776 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
777
778 // i8 and i16 vectors are custom , because the source register and source
779 // source memory operand types are not the same width. f32 vectors are
780 // custom since the immediate controlling the insert encodes additional
781 // information.
782 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
783 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangac2a3c52009-01-15 21:10:20 +0000784 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Nate Begemand77e59e2008-02-11 04:19:36 +0000785 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
786
787 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
788 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangac2a3c52009-01-15 21:10:20 +0000789 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
Evan Cheng6c249332008-03-24 21:52:23 +0000790 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begemand77e59e2008-02-11 04:19:36 +0000791
792 if (Subtarget->is64Bit()) {
Nate Begeman4294c1f2008-02-12 22:51:28 +0000793 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
794 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begemand77e59e2008-02-11 04:19:36 +0000795 }
796 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000797
Nate Begeman03605a02008-07-17 16:51:19 +0000798 if (Subtarget->hasSSE42()) {
799 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
800 }
Scott Michel91099d62009-02-17 22:15:04 +0000801
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000802 // We want to custom lower some of our intrinsics.
803 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
804
Bill Wendling7e04be62008-12-09 22:08:41 +0000805 // Add/Sub/Mul with overflow operations are custom lowered.
Bill Wendling4c134df2008-11-24 19:21:46 +0000806 setOperationAction(ISD::SADDO, MVT::i32, Custom);
807 setOperationAction(ISD::SADDO, MVT::i64, Custom);
808 setOperationAction(ISD::UADDO, MVT::i32, Custom);
809 setOperationAction(ISD::UADDO, MVT::i64, Custom);
Bill Wendling7e04be62008-12-09 22:08:41 +0000810 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
811 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
812 setOperationAction(ISD::USUBO, MVT::i32, Custom);
813 setOperationAction(ISD::USUBO, MVT::i64, Custom);
814 setOperationAction(ISD::SMULO, MVT::i32, Custom);
815 setOperationAction(ISD::SMULO, MVT::i64, Custom);
816 setOperationAction(ISD::UMULO, MVT::i32, Custom);
817 setOperationAction(ISD::UMULO, MVT::i64, Custom);
Bill Wendling4c134df2008-11-24 19:21:46 +0000818
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000819 // We have target-specific dag combine patterns for the following nodes:
820 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Evan Chenge9b9c672008-05-09 21:53:03 +0000821 setTargetDAGCombine(ISD::BUILD_VECTOR);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000822 setTargetDAGCombine(ISD::SELECT);
sampo025b75c2009-01-26 00:52:55 +0000823 setTargetDAGCombine(ISD::SHL);
824 setTargetDAGCombine(ISD::SRA);
825 setTargetDAGCombine(ISD::SRL);
Chris Lattnerce84ae42008-02-22 02:09:43 +0000826 setTargetDAGCombine(ISD::STORE);
Evan Cheng04ecee12009-03-28 05:57:29 +0000827 if (Subtarget->is64Bit())
828 setTargetDAGCombine(ISD::MUL);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000829
830 computeRegisterProperties();
831
832 // FIXME: These should be based on subtarget info. Plus, the values should
833 // be smaller when we are in optimizing for size mode.
Dan Gohman97fab242008-06-30 21:00:56 +0000834 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
835 maxStoresPerMemcpy = 16; // For @llvm.memcpy -> sequence of stores
836 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000837 allowUnalignedMemoryAccesses = true; // x86 supports it!
Evan Cheng45c1edb2008-02-28 00:43:03 +0000838 setPrefLoopAlignment(16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000839}
840
Scott Michel502151f2008-03-10 15:42:14 +0000841
Duncan Sands4a361272009-01-01 15:52:00 +0000842MVT X86TargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel502151f2008-03-10 15:42:14 +0000843 return MVT::i8;
844}
845
846
Evan Cheng5a67b812008-01-23 23:17:41 +0000847/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
848/// the desired ByVal argument alignment.
849static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
850 if (MaxAlign == 16)
851 return;
852 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
853 if (VTy->getBitWidth() == 128)
854 MaxAlign = 16;
Evan Cheng5a67b812008-01-23 23:17:41 +0000855 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
856 unsigned EltAlign = 0;
857 getMaxByValAlign(ATy->getElementType(), EltAlign);
858 if (EltAlign > MaxAlign)
859 MaxAlign = EltAlign;
860 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
861 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
862 unsigned EltAlign = 0;
863 getMaxByValAlign(STy->getElementType(i), EltAlign);
864 if (EltAlign > MaxAlign)
865 MaxAlign = EltAlign;
866 if (MaxAlign == 16)
867 break;
868 }
869 }
870 return;
871}
872
873/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
874/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesena58b8622008-02-08 19:48:20 +0000875/// that contain SSE vectors are placed at 16-byte boundaries while the rest
876/// are at 4-byte boundaries.
Evan Cheng5a67b812008-01-23 23:17:41 +0000877unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng9a6e0fa2008-08-21 21:00:15 +0000878 if (Subtarget->is64Bit()) {
879 // Max of 8 and alignment of type.
Anton Korobeynikovd0fef972008-09-09 18:22:57 +0000880 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng9a6e0fa2008-08-21 21:00:15 +0000881 if (TyAlign > 8)
882 return TyAlign;
883 return 8;
884 }
885
Evan Cheng5a67b812008-01-23 23:17:41 +0000886 unsigned Align = 4;
Dale Johannesena58b8622008-02-08 19:48:20 +0000887 if (Subtarget->hasSSE1())
888 getMaxByValAlign(Ty, Align);
Evan Cheng5a67b812008-01-23 23:17:41 +0000889 return Align;
890}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000891
Evan Cheng8c590372008-05-15 08:39:06 +0000892/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng2f1033e2008-05-15 22:13:02 +0000893/// and store operations as a result of memset, memcpy, and memmove
894/// lowering. It returns MVT::iAny if SelectionDAG should be responsible for
Evan Cheng8c590372008-05-15 08:39:06 +0000895/// determining it.
Duncan Sands92c43912008-06-06 12:08:01 +0000896MVT
Evan Cheng8c590372008-05-15 08:39:06 +0000897X86TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned Align,
898 bool isSrcConst, bool isSrcStr) const {
Chris Lattnerf0bf1062008-10-28 05:49:35 +0000899 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
900 // linux. This is because the stack realignment code can't handle certain
901 // cases like PR2962. This should be removed when PR2962 is fixed.
Bill Wendling042eda32009-03-11 22:30:01 +0000902 if (!NoImplicitFloat && Subtarget->getStackAlignment() >= 16) {
Chris Lattnerf0bf1062008-10-28 05:49:35 +0000903 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE2() && Size >= 16)
904 return MVT::v4i32;
905 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE1() && Size >= 16)
906 return MVT::v4f32;
907 }
Evan Cheng8c590372008-05-15 08:39:06 +0000908 if (Subtarget->is64Bit() && Size >= 8)
909 return MVT::i64;
910 return MVT::i32;
911}
912
Evan Cheng6fb06762007-11-09 01:32:10 +0000913/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
914/// jumptable.
Dan Gohman8181bd12008-07-27 21:46:04 +0000915SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Evan Cheng6fb06762007-11-09 01:32:10 +0000916 SelectionDAG &DAG) const {
917 if (usesGlobalOffsetTable())
Dale Johannesen24dd9a52009-02-07 00:55:49 +0000918 return DAG.getGLOBAL_OFFSET_TABLE(getPointerTy());
Evan Cheng6fb06762007-11-09 01:32:10 +0000919 if (!Subtarget->isPICStyleRIPRel())
Dale Johannesen24dd9a52009-02-07 00:55:49 +0000920 // This doesn't have DebugLoc associated with it, but is not really the
921 // same as a Register.
922 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc::getUnknownLoc(),
923 getPointerTy());
Evan Cheng6fb06762007-11-09 01:32:10 +0000924 return Table;
925}
926
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000927//===----------------------------------------------------------------------===//
928// Return Value Calling Convention Implementation
929//===----------------------------------------------------------------------===//
930
931#include "X86GenCallingConv.inc"
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000932
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000933/// LowerRET - Lower an ISD::RET node.
Dan Gohman8181bd12008-07-27 21:46:04 +0000934SDValue X86TargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +0000935 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000936 assert((Op.getNumOperands() & 1) == 1 && "ISD::RET should have odd # args");
Scott Michel91099d62009-02-17 22:15:04 +0000937
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000938 SmallVector<CCValAssign, 16> RVLocs;
939 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
940 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
941 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Gabor Greif1c80d112008-08-28 21:40:38 +0000942 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_X86);
Scott Michel91099d62009-02-17 22:15:04 +0000943
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000944 // If this is the first return lowered for this function, add the regs to the
945 // liveout set for the function.
Chris Lattner1b989192007-12-31 04:13:23 +0000946 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000947 for (unsigned i = 0; i != RVLocs.size(); ++i)
948 if (RVLocs[i].isRegLoc())
Chris Lattner1b989192007-12-31 04:13:23 +0000949 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000950 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000951 SDValue Chain = Op.getOperand(0);
Scott Michel91099d62009-02-17 22:15:04 +0000952
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000953 // Handle tail call return.
Arnold Schwaighofera0032722008-04-30 09:16:33 +0000954 Chain = GetPossiblePreceedingTailCall(Chain, X86ISD::TAILCALL);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000955 if (Chain.getOpcode() == X86ISD::TAILCALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000956 SDValue TailCall = Chain;
957 SDValue TargetAddress = TailCall.getOperand(1);
958 SDValue StackAdjustment = TailCall.getOperand(2);
Chris Lattnerf8decf52008-01-16 05:52:18 +0000959 assert(((TargetAddress.getOpcode() == ISD::Register &&
Arnold Schwaighofer4da27f62008-09-22 14:50:07 +0000960 (cast<RegisterSDNode>(TargetAddress)->getReg() == X86::EAX ||
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000961 cast<RegisterSDNode>(TargetAddress)->getReg() == X86::R9)) ||
Bill Wendlingfef06052008-09-16 21:48:12 +0000962 TargetAddress.getOpcode() == ISD::TargetExternalSymbol ||
Scott Michel91099d62009-02-17 22:15:04 +0000963 TargetAddress.getOpcode() == ISD::TargetGlobalAddress) &&
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000964 "Expecting an global address, external symbol, or register");
Chris Lattnerf8decf52008-01-16 05:52:18 +0000965 assert(StackAdjustment.getOpcode() == ISD::Constant &&
966 "Expecting a const value");
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000967
Dan Gohman8181bd12008-07-27 21:46:04 +0000968 SmallVector<SDValue,8> Operands;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000969 Operands.push_back(Chain.getOperand(0));
970 Operands.push_back(TargetAddress);
971 Operands.push_back(StackAdjustment);
972 // Copy registers used by the call. Last operand is a flag so it is not
973 // copied.
Arnold Schwaighofer10202b32007-10-16 09:05:00 +0000974 for (unsigned i=3; i < TailCall.getNumOperands()-1; i++) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000975 Operands.push_back(Chain.getOperand(i));
976 }
Scott Michel91099d62009-02-17 22:15:04 +0000977 return DAG.getNode(X86ISD::TC_RETURN, dl, MVT::Other, &Operands[0],
Arnold Schwaighofer10202b32007-10-16 09:05:00 +0000978 Operands.size());
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000979 }
Scott Michel91099d62009-02-17 22:15:04 +0000980
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000981 // Regular return.
Dan Gohman8181bd12008-07-27 21:46:04 +0000982 SDValue Flag;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000983
Dan Gohman8181bd12008-07-27 21:46:04 +0000984 SmallVector<SDValue, 6> RetOps;
Chris Lattnerb56cc342008-03-11 03:23:40 +0000985 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
986 // Operand #1 = Bytes To Pop
987 RetOps.push_back(DAG.getConstant(getBytesToPopOnReturn(), MVT::i16));
Scott Michel91099d62009-02-17 22:15:04 +0000988
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000989 // Copy the result values into the output registers.
Chris Lattnere22e1fb2008-03-10 21:08:41 +0000990 for (unsigned i = 0; i != RVLocs.size(); ++i) {
991 CCValAssign &VA = RVLocs[i];
992 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohman8181bd12008-07-27 21:46:04 +0000993 SDValue ValToCopy = Op.getOperand(i*2+1);
Scott Michel91099d62009-02-17 22:15:04 +0000994
Chris Lattnerb56cc342008-03-11 03:23:40 +0000995 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
996 // the RET instruction and handled by the FP Stackifier.
Dan Gohman6c4be722009-02-04 17:28:58 +0000997 if (VA.getLocReg() == X86::ST0 ||
998 VA.getLocReg() == X86::ST1) {
Chris Lattnerb56cc342008-03-11 03:23:40 +0000999 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1000 // change the value to the FP stack register class.
Dan Gohman6c4be722009-02-04 17:28:58 +00001001 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Dale Johannesence0805b2009-02-03 19:33:06 +00001002 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattnerb56cc342008-03-11 03:23:40 +00001003 RetOps.push_back(ValToCopy);
1004 // Don't emit a copytoreg.
1005 continue;
1006 }
Dale Johannesena585daf2008-06-24 22:01:44 +00001007
Evan Chengef356282009-02-23 09:03:22 +00001008 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1009 // which is returned in RAX / RDX.
Evan Chenge8db6e02009-02-22 08:05:12 +00001010 if (Subtarget->is64Bit()) {
1011 MVT ValVT = ValToCopy.getValueType();
Evan Chengef356282009-02-23 09:03:22 +00001012 if (ValVT.isVector() && ValVT.getSizeInBits() == 64) {
Evan Chenge8db6e02009-02-22 08:05:12 +00001013 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy);
Evan Chengef356282009-02-23 09:03:22 +00001014 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1)
1015 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, ValToCopy);
1016 }
Evan Chenge8db6e02009-02-22 08:05:12 +00001017 }
1018
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001019 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001020 Flag = Chain.getValue(1);
1021 }
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001022
1023 // The x86-64 ABI for returning structs by value requires that we copy
1024 // the sret argument into %rax for the return. We saved the argument into
1025 // a virtual register in the entry block, so now we copy the value out
1026 // and into %rax.
1027 if (Subtarget->is64Bit() &&
1028 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1029 MachineFunction &MF = DAG.getMachineFunction();
1030 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1031 unsigned Reg = FuncInfo->getSRetReturnReg();
1032 if (!Reg) {
1033 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1034 FuncInfo->setSRetReturnReg(Reg);
1035 }
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001036 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001037
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001038 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001039 Flag = Chain.getValue(1);
1040 }
Scott Michel91099d62009-02-17 22:15:04 +00001041
Chris Lattnerb56cc342008-03-11 03:23:40 +00001042 RetOps[0] = Chain; // Update chain.
1043
1044 // Add the flag if we have it.
Gabor Greif1c80d112008-08-28 21:40:38 +00001045 if (Flag.getNode())
Chris Lattnerb56cc342008-03-11 03:23:40 +00001046 RetOps.push_back(Flag);
Scott Michel91099d62009-02-17 22:15:04 +00001047
1048 return DAG.getNode(X86ISD::RET_FLAG, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00001049 MVT::Other, &RetOps[0], RetOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001050}
1051
1052
1053/// LowerCallResult - Lower the result values of an ISD::CALL into the
1054/// appropriate copies out of appropriate physical registers. This assumes that
1055/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
1056/// being lowered. The returns a SDNode with the same number of values as the
1057/// ISD::CALL.
1058SDNode *X86TargetLowering::
Scott Michel91099d62009-02-17 22:15:04 +00001059LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001060 unsigned CallingConv, SelectionDAG &DAG) {
Dale Johannesence0805b2009-02-03 19:33:06 +00001061
Scott Michel91099d62009-02-17 22:15:04 +00001062 DebugLoc dl = TheCall->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001063 // Assign locations to each value returned by this call.
1064 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman705e3f72008-09-13 01:54:27 +00001065 bool isVarArg = TheCall->isVarArg();
Edwin Törökaf8e1332009-02-01 18:15:56 +00001066 bool Is64Bit = Subtarget->is64Bit();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001067 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
1068 CCInfo.AnalyzeCallResult(TheCall, RetCC_X86);
1069
Dan Gohman8181bd12008-07-27 21:46:04 +00001070 SmallVector<SDValue, 8> ResultVals;
Scott Michel91099d62009-02-17 22:15:04 +00001071
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001072 // Copy all of the result registers out of their specified physreg.
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001073 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman6c4be722009-02-04 17:28:58 +00001074 CCValAssign &VA = RVLocs[i];
1075 MVT CopyVT = VA.getValVT();
Scott Michel91099d62009-02-17 22:15:04 +00001076
Edwin Törökaf8e1332009-02-01 18:15:56 +00001077 // If this is x86-64, and we disabled SSE, we can't return FP values
Scott Michel91099d62009-02-17 22:15:04 +00001078 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Edwin Törökaf8e1332009-02-01 18:15:56 +00001079 ((Is64Bit || TheCall->isInreg()) && !Subtarget->hasSSE1())) {
1080 cerr << "SSE register return with SSE disabled\n";
1081 exit(1);
1082 }
1083
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001084 // If this is a call to a function that returns an fp value on the floating
1085 // point stack, but where we prefer to use the value in xmm registers, copy
1086 // 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 +00001087 if ((VA.getLocReg() == X86::ST0 ||
1088 VA.getLocReg() == X86::ST1) &&
1089 isScalarFPTypeInSSEReg(VA.getValVT())) {
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001090 CopyVT = MVT::f80;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001091 }
Scott Michel91099d62009-02-17 22:15:04 +00001092
Evan Cheng9cc600e2009-02-20 20:43:02 +00001093 SDValue Val;
1094 if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Chengef356282009-02-23 09:03:22 +00001095 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1096 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1097 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1098 MVT::v2i64, InFlag).getValue(1);
1099 Val = Chain.getValue(0);
1100 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1101 Val, DAG.getConstant(0, MVT::i64));
1102 } else {
1103 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1104 MVT::i64, InFlag).getValue(1);
1105 Val = Chain.getValue(0);
1106 }
Evan Cheng9cc600e2009-02-20 20:43:02 +00001107 Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val);
1108 } else {
1109 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1110 CopyVT, InFlag).getValue(1);
1111 Val = Chain.getValue(0);
1112 }
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001113 InFlag = Chain.getValue(2);
Chris Lattner40758732007-12-29 06:41:28 +00001114
Dan Gohman6c4be722009-02-04 17:28:58 +00001115 if (CopyVT != VA.getValVT()) {
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001116 // Round the F80 the right size, which also moves to the appropriate xmm
1117 // register.
Dan Gohman6c4be722009-02-04 17:28:58 +00001118 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001119 // This truncation won't change the value.
1120 DAG.getIntPtrConstant(1));
1121 }
Scott Michel91099d62009-02-17 22:15:04 +00001122
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001123 ResultVals.push_back(Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001124 }
Duncan Sands698842f2008-07-02 17:40:58 +00001125
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001126 // Merge everything together with a MERGE_VALUES node.
1127 ResultVals.push_back(Chain);
Dale Johannesence0805b2009-02-03 19:33:06 +00001128 return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(),
1129 &ResultVals[0], ResultVals.size()).getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001130}
1131
1132
1133//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001134// C & StdCall & Fast Calling Convention implementation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001135//===----------------------------------------------------------------------===//
1136// StdCall calling convention seems to be standard for many Windows' API
1137// routines and around. It differs from C calling convention just a little:
1138// callee should clean up the stack, not caller. Symbols should be also
1139// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001140// For info on fast calling convention see Fast Calling Convention (tail call)
1141// implementation LowerX86_32FastCCCallTo.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001142
1143/// AddLiveIn - This helper function adds the specified physical register to the
1144/// MachineFunction as a live in value. It also creates a corresponding virtual
1145/// register for it.
1146static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
1147 const TargetRegisterClass *RC) {
1148 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner1b989192007-12-31 04:13:23 +00001149 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
1150 MF.getRegInfo().addLiveIn(PReg, VReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001151 return VReg;
1152}
1153
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001154/// CallIsStructReturn - Determines whether a CALL node uses struct return
1155/// semantics.
Dan Gohman705e3f72008-09-13 01:54:27 +00001156static bool CallIsStructReturn(CallSDNode *TheCall) {
1157 unsigned NumOps = TheCall->getNumArgs();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001158 if (!NumOps)
1159 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001160
Dan Gohman705e3f72008-09-13 01:54:27 +00001161 return TheCall->getArgFlags(0).isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001162}
1163
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001164/// ArgsAreStructReturn - Determines whether a FORMAL_ARGUMENTS node uses struct
1165/// return semantics.
Dan Gohman8181bd12008-07-27 21:46:04 +00001166static bool ArgsAreStructReturn(SDValue Op) {
Gabor Greif1c80d112008-08-28 21:40:38 +00001167 unsigned NumArgs = Op.getNode()->getNumValues() - 1;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001168 if (!NumArgs)
1169 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001170
1171 return cast<ARG_FLAGSSDNode>(Op.getOperand(3))->getArgFlags().isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001172}
1173
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001174/// IsCalleePop - Determines whether a CALL or FORMAL_ARGUMENTS node requires
1175/// the callee to pop its own arguments. Callee pop is necessary to support tail
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001176/// calls.
Dan Gohman705e3f72008-09-13 01:54:27 +00001177bool X86TargetLowering::IsCalleePop(bool IsVarArg, unsigned CallingConv) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001178 if (IsVarArg)
1179 return false;
1180
Dan Gohman705e3f72008-09-13 01:54:27 +00001181 switch (CallingConv) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001182 default:
1183 return false;
1184 case CallingConv::X86_StdCall:
1185 return !Subtarget->is64Bit();
1186 case CallingConv::X86_FastCall:
1187 return !Subtarget->is64Bit();
1188 case CallingConv::Fast:
1189 return PerformTailCallOpt;
1190 }
1191}
1192
Dan Gohman705e3f72008-09-13 01:54:27 +00001193/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1194/// given CallingConvention value.
1195CCAssignFn *X86TargetLowering::CCAssignFnForNode(unsigned CC) const {
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001196 if (Subtarget->is64Bit()) {
Anton Korobeynikov06d49b02008-03-22 20:57:27 +00001197 if (Subtarget->isTargetWin64())
Anton Korobeynikov99bd1882008-03-22 20:37:30 +00001198 return CC_X86_Win64_C;
Evan Chengded8f902008-09-07 09:07:23 +00001199 else if (CC == CallingConv::Fast && PerformTailCallOpt)
1200 return CC_X86_64_TailCall;
1201 else
1202 return CC_X86_64_C;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001203 }
1204
Gordon Henriksen18ace102008-01-05 16:56:59 +00001205 if (CC == CallingConv::X86_FastCall)
1206 return CC_X86_32_FastCall;
Evan Chenga9d15b92008-09-10 18:25:29 +00001207 else if (CC == CallingConv::Fast)
1208 return CC_X86_32_FastCC;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001209 else
1210 return CC_X86_32_C;
1211}
1212
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001213/// NameDecorationForFORMAL_ARGUMENTS - Selects the appropriate decoration to
1214/// apply to a MachineFunction containing a given FORMAL_ARGUMENTS node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001215NameDecorationStyle
Dan Gohman8181bd12008-07-27 21:46:04 +00001216X86TargetLowering::NameDecorationForFORMAL_ARGUMENTS(SDValue Op) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001217 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001218 if (CC == CallingConv::X86_FastCall)
1219 return FastCall;
1220 else if (CC == CallingConv::X86_StdCall)
1221 return StdCall;
1222 return None;
1223}
1224
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001225
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001226/// CallRequiresGOTInRegister - Check whether the call requires the GOT pointer
1227/// in a register before calling.
1228bool X86TargetLowering::CallRequiresGOTPtrInReg(bool Is64Bit, bool IsTailCall) {
1229 return !IsTailCall && !Is64Bit &&
1230 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1231 Subtarget->isPICStyleGOT();
1232}
1233
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001234/// CallRequiresFnAddressInReg - Check whether the call requires the function
1235/// address to be loaded in a register.
Scott Michel91099d62009-02-17 22:15:04 +00001236bool
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001237X86TargetLowering::CallRequiresFnAddressInReg(bool Is64Bit, bool IsTailCall) {
Scott Michel91099d62009-02-17 22:15:04 +00001238 return !Is64Bit && IsTailCall &&
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001239 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1240 Subtarget->isPICStyleGOT();
1241}
1242
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001243/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1244/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001245/// the specific parameter attribute. The copy will be passed as a byval
1246/// function parameter.
Scott Michel91099d62009-02-17 22:15:04 +00001247static SDValue
Dan Gohman8181bd12008-07-27 21:46:04 +00001248CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001249 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1250 DebugLoc dl) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001251 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001252 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001253 /*AlwaysInline=*/true, NULL, 0, NULL, 0);
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001254}
1255
Dan Gohman8181bd12008-07-27 21:46:04 +00001256SDValue X86TargetLowering::LowerMemArgument(SDValue Op, SelectionDAG &DAG,
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001257 const CCValAssign &VA,
1258 MachineFrameInfo *MFI,
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001259 unsigned CC,
Dan Gohman8181bd12008-07-27 21:46:04 +00001260 SDValue Root, unsigned i) {
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001261 // Create the nodes corresponding to a load from this parameter slot.
Duncan Sandsc93fae32008-03-21 09:14:45 +00001262 ISD::ArgFlagsTy Flags =
1263 cast<ARG_FLAGSSDNode>(Op.getOperand(3 + i))->getArgFlags();
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001264 bool AlwaysUseMutable = (CC==CallingConv::Fast) && PerformTailCallOpt;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001265 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Evan Cheng3e42a522008-01-10 02:24:25 +00001266
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001267 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michel91099d62009-02-17 22:15:04 +00001268 // changed with more analysis.
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001269 // In case of tail call optimization mark all arguments mutable. Since they
1270 // could be overwritten by lowering of arguments in case of a tail call.
Duncan Sands92c43912008-06-06 12:08:01 +00001271 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001272 VA.getLocMemOffset(), isImmutable);
Dan Gohman8181bd12008-07-27 21:46:04 +00001273 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Duncan Sandsc93fae32008-03-21 09:14:45 +00001274 if (Flags.isByVal())
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001275 return FIN;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00001276 return DAG.getLoad(VA.getValVT(), Op.getDebugLoc(), Root, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001277 PseudoSourceValue::getFixedStack(FI), 0);
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001278}
1279
Dan Gohman8181bd12008-07-27 21:46:04 +00001280SDValue
1281X86TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001282 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001283 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00001284 DebugLoc dl = Op.getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00001285
Gordon Henriksen18ace102008-01-05 16:56:59 +00001286 const Function* Fn = MF.getFunction();
1287 if (Fn->hasExternalLinkage() &&
1288 Subtarget->isTargetCygMing() &&
1289 Fn->getName() == "main")
1290 FuncInfo->setForceFramePointer(true);
1291
1292 // Decorate the function name.
1293 FuncInfo->setDecorationStyle(NameDecorationForFORMAL_ARGUMENTS(Op));
Scott Michel91099d62009-02-17 22:15:04 +00001294
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001295 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman8181bd12008-07-27 21:46:04 +00001296 SDValue Root = Op.getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001297 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001298 unsigned CC = MF.getFunction()->getCallingConv();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001299 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001300 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001301
1302 assert(!(isVarArg && CC == CallingConv::Fast) &&
1303 "Var args not supported with calling convention fastcc");
1304
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001305 // Assign locations to all of the incoming arguments.
1306 SmallVector<CCValAssign, 16> ArgLocs;
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001307 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman705e3f72008-09-13 01:54:27 +00001308 CCInfo.AnalyzeFormalArguments(Op.getNode(), CCAssignFnForNode(CC));
Scott Michel91099d62009-02-17 22:15:04 +00001309
Dan Gohman8181bd12008-07-27 21:46:04 +00001310 SmallVector<SDValue, 8> ArgValues;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001311 unsigned LastVal = ~0U;
1312 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1313 CCValAssign &VA = ArgLocs[i];
1314 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1315 // places.
1316 assert(VA.getValNo() != LastVal &&
1317 "Don't support value assigned to multiple locs yet");
1318 LastVal = VA.getValNo();
Scott Michel91099d62009-02-17 22:15:04 +00001319
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001320 if (VA.isRegLoc()) {
Duncan Sands92c43912008-06-06 12:08:01 +00001321 MVT RegVT = VA.getLocVT();
Devang Patelf3707e82009-01-05 17:31:22 +00001322 TargetRegisterClass *RC = NULL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001323 if (RegVT == MVT::i32)
1324 RC = X86::GR32RegisterClass;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001325 else if (Is64Bit && RegVT == MVT::i64)
1326 RC = X86::GR64RegisterClass;
Dale Johannesen51552f62008-02-05 20:46:33 +00001327 else if (RegVT == MVT::f32)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001328 RC = X86::FR32RegisterClass;
Dale Johannesen51552f62008-02-05 20:46:33 +00001329 else if (RegVT == MVT::f64)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001330 RC = X86::FR64RegisterClass;
Duncan Sands92c43912008-06-06 12:08:01 +00001331 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengf5af6fe2008-04-25 07:56:45 +00001332 RC = X86::VR128RegisterClass;
Duncan Sands92c43912008-06-06 12:08:01 +00001333 else if (RegVT.isVector()) {
1334 assert(RegVT.getSizeInBits() == 64);
Evan Chengf5af6fe2008-04-25 07:56:45 +00001335 if (!Is64Bit)
1336 RC = X86::VR64RegisterClass; // MMX values are passed in MMXs.
1337 else {
1338 // Darwin calling convention passes MMX values in either GPRs or
1339 // XMMs in x86-64. Other targets pass them in memory.
1340 if (RegVT != MVT::v1i64 && Subtarget->hasSSE2()) {
1341 RC = X86::VR128RegisterClass; // MMX values are passed in XMMs.
1342 RegVT = MVT::v2i64;
1343 } else {
1344 RC = X86::GR64RegisterClass; // v1i64 values are passed in GPRs.
1345 RegVT = MVT::i64;
1346 }
1347 }
1348 } else {
1349 assert(0 && "Unknown argument type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001350 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001351
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001352 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001353 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, RegVT);
Scott Michel91099d62009-02-17 22:15:04 +00001354
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001355 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1356 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1357 // right size.
1358 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesence0805b2009-02-03 19:33:06 +00001359 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001360 DAG.getValueType(VA.getValVT()));
1361 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesence0805b2009-02-03 19:33:06 +00001362 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001363 DAG.getValueType(VA.getValVT()));
Scott Michel91099d62009-02-17 22:15:04 +00001364
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001365 if (VA.getLocInfo() != CCValAssign::Full)
Dale Johannesence0805b2009-02-03 19:33:06 +00001366 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Scott Michel91099d62009-02-17 22:15:04 +00001367
Gordon Henriksen18ace102008-01-05 16:56:59 +00001368 // Handle MMX values passed in GPRs.
Evan Chengad6980b2008-04-25 20:13:28 +00001369 if (Is64Bit && RegVT != VA.getLocVT()) {
Duncan Sands92c43912008-06-06 12:08:01 +00001370 if (RegVT.getSizeInBits() == 64 && RC == X86::GR64RegisterClass)
Dale Johannesence0805b2009-02-03 19:33:06 +00001371 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Chengad6980b2008-04-25 20:13:28 +00001372 else if (RC == X86::VR128RegisterClass) {
Dale Johannesence0805b2009-02-03 19:33:06 +00001373 ArgValue = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1374 ArgValue, DAG.getConstant(0, MVT::i64));
1375 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Chengad6980b2008-04-25 20:13:28 +00001376 }
1377 }
Scott Michel91099d62009-02-17 22:15:04 +00001378
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001379 ArgValues.push_back(ArgValue);
1380 } else {
1381 assert(VA.isMemLoc());
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001382 ArgValues.push_back(LowerMemArgument(Op, DAG, VA, MFI, CC, Root, i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001383 }
1384 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001385
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001386 // The x86-64 ABI for returning structs by value requires that we copy
1387 // the sret argument into %rax for the return. Save the argument into
1388 // a virtual register so that we can access it from the return points.
1389 if (Is64Bit && DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1390 MachineFunction &MF = DAG.getMachineFunction();
1391 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1392 unsigned Reg = FuncInfo->getSRetReturnReg();
1393 if (!Reg) {
1394 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1395 FuncInfo->setSRetReturnReg(Reg);
1396 }
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001397 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, ArgValues[0]);
Dale Johannesence0805b2009-02-03 19:33:06 +00001398 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Root);
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001399 }
1400
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001401 unsigned StackSize = CCInfo.getNextStackOffset();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001402 // align stack specially for tail calls
Evan Chengded8f902008-09-07 09:07:23 +00001403 if (PerformTailCallOpt && CC == CallingConv::Fast)
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001404 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001405
1406 // If the function takes variable number of arguments, make a frame index for
1407 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001408 if (isVarArg) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001409 if (Is64Bit || CC != CallingConv::X86_FastCall) {
1410 VarArgsFrameIndex = MFI->CreateFixedObject(1, StackSize);
1411 }
1412 if (Is64Bit) {
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001413 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1414
1415 // FIXME: We should really autogenerate these arrays
1416 static const unsigned GPR64ArgRegsWin64[] = {
1417 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen18ace102008-01-05 16:56:59 +00001418 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001419 static const unsigned XMMArgRegsWin64[] = {
1420 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3
1421 };
1422 static const unsigned GPR64ArgRegs64Bit[] = {
1423 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1424 };
1425 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001426 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1427 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1428 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001429 const unsigned *GPR64ArgRegs, *XMMArgRegs;
1430
1431 if (IsWin64) {
1432 TotalNumIntRegs = 4; TotalNumXMMRegs = 4;
1433 GPR64ArgRegs = GPR64ArgRegsWin64;
1434 XMMArgRegs = XMMArgRegsWin64;
1435 } else {
1436 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1437 GPR64ArgRegs = GPR64ArgRegs64Bit;
1438 XMMArgRegs = XMMArgRegs64Bit;
1439 }
1440 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1441 TotalNumIntRegs);
1442 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs,
1443 TotalNumXMMRegs);
1444
Evan Cheng0b84fe12009-02-13 22:36:38 +00001445 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Edwin Törökaf8e1332009-02-01 18:15:56 +00001446 "SSE register cannot be used when SSE is disabled!");
Bill Wendling042eda32009-03-11 22:30:01 +00001447 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloat) &&
Evan Cheng0b84fe12009-02-13 22:36:38 +00001448 "SSE register cannot be used when SSE is disabled!");
Bill Wendling042eda32009-03-11 22:30:01 +00001449 if (UseSoftFloat || NoImplicitFloat || !Subtarget->hasSSE1())
Edwin Törökaf8e1332009-02-01 18:15:56 +00001450 // Kernel mode asks for SSE to be disabled, so don't push them
1451 // on the stack.
1452 TotalNumXMMRegs = 0;
Bill Wendling042eda32009-03-11 22:30:01 +00001453
Gordon Henriksen18ace102008-01-05 16:56:59 +00001454 // For X86-64, if there are vararg parameters that are passed via
1455 // registers, then we must store them to their spots on the stack so they
1456 // may be loaded by deferencing the result of va_next.
1457 VarArgsGPOffset = NumIntRegs * 8;
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001458 VarArgsFPOffset = TotalNumIntRegs * 8 + NumXMMRegs * 16;
1459 RegSaveFrameIndex = MFI->CreateStackObject(TotalNumIntRegs * 8 +
1460 TotalNumXMMRegs * 16, 16);
1461
Gordon Henriksen18ace102008-01-05 16:56:59 +00001462 // Store the integer parameter registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00001463 SmallVector<SDValue, 8> MemOps;
1464 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00001465 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001466 DAG.getIntPtrConstant(VarArgsGPOffset));
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001467 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001468 unsigned VReg = AddLiveIn(MF, GPR64ArgRegs[NumIntRegs],
1469 X86::GR64RegisterClass);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001470 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::i64);
Dan Gohman8181bd12008-07-27 21:46:04 +00001471 SDValue Store =
Dale Johannesence0805b2009-02-03 19:33:06 +00001472 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001473 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001474 MemOps.push_back(Store);
Dale Johannesence0805b2009-02-03 19:33:06 +00001475 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001476 DAG.getIntPtrConstant(8));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001477 }
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001478
Gordon Henriksen18ace102008-01-05 16:56:59 +00001479 // Now store the XMM (fp + vector) parameter registers.
Dale Johannesence0805b2009-02-03 19:33:06 +00001480 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001481 DAG.getIntPtrConstant(VarArgsFPOffset));
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001482 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001483 unsigned VReg = AddLiveIn(MF, XMMArgRegs[NumXMMRegs],
1484 X86::VR128RegisterClass);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001485 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::v4f32);
Dan Gohman8181bd12008-07-27 21:46:04 +00001486 SDValue Store =
Dale Johannesence0805b2009-02-03 19:33:06 +00001487 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001488 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001489 MemOps.push_back(Store);
Dale Johannesence0805b2009-02-03 19:33:06 +00001490 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner5872a362008-01-17 07:00:52 +00001491 DAG.getIntPtrConstant(16));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001492 }
1493 if (!MemOps.empty())
Dale Johannesence0805b2009-02-03 19:33:06 +00001494 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Gordon Henriksen18ace102008-01-05 16:56:59 +00001495 &MemOps[0], MemOps.size());
1496 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001497 }
Scott Michel91099d62009-02-17 22:15:04 +00001498
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001499 ArgValues.push_back(Root);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001500
Gordon Henriksen18ace102008-01-05 16:56:59 +00001501 // Some CCs need callee pop.
Dan Gohman705e3f72008-09-13 01:54:27 +00001502 if (IsCalleePop(isVarArg, CC)) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001503 BytesToPopOnReturn = StackSize; // Callee pops everything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001504 BytesCallerReserves = 0;
1505 } else {
1506 BytesToPopOnReturn = 0; // Callee pops nothing.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001507 // If this is an sret function, the return should pop the hidden pointer.
Evan Chenga9d15b92008-09-10 18:25:29 +00001508 if (!Is64Bit && CC != CallingConv::Fast && ArgsAreStructReturn(Op))
Scott Michel91099d62009-02-17 22:15:04 +00001509 BytesToPopOnReturn = 4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001510 BytesCallerReserves = StackSize;
1511 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001512
Gordon Henriksen18ace102008-01-05 16:56:59 +00001513 if (!Is64Bit) {
1514 RegSaveFrameIndex = 0xAAAAAAA; // RegSaveFrameIndex is X86-64 only.
1515 if (CC == CallingConv::X86_FastCall)
1516 VarArgsFrameIndex = 0xAAAAAAA; // fastcc functions can't have varargs.
1517 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001518
Anton Korobeynikove844e472007-08-15 17:12:32 +00001519 FuncInfo->setBytesToPopOnReturn(BytesToPopOnReturn);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001520
1521 // Return the new list of results.
Dale Johannesence0805b2009-02-03 19:33:06 +00001522 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
Duncan Sands42d7bb82008-12-01 11:41:29 +00001523 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001524}
1525
Dan Gohman8181bd12008-07-27 21:46:04 +00001526SDValue
Dan Gohman705e3f72008-09-13 01:54:27 +00001527X86TargetLowering::LowerMemOpCallTo(CallSDNode *TheCall, SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00001528 const SDValue &StackPtr,
Evan Chengbc077bf2008-01-10 00:09:10 +00001529 const CCValAssign &VA,
Dan Gohman8181bd12008-07-27 21:46:04 +00001530 SDValue Chain,
Dan Gohman705e3f72008-09-13 01:54:27 +00001531 SDValue Arg, ISD::ArgFlagsTy Flags) {
Dale Johannesence0805b2009-02-03 19:33:06 +00001532 DebugLoc dl = TheCall->getDebugLoc();
Dan Gohman1190f3a2008-02-07 16:28:05 +00001533 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman8181bd12008-07-27 21:46:04 +00001534 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesence0805b2009-02-03 19:33:06 +00001535 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Duncan Sandsc93fae32008-03-21 09:14:45 +00001536 if (Flags.isByVal()) {
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001537 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Evan Chengbc077bf2008-01-10 00:09:10 +00001538 }
Dale Johannesence0805b2009-02-03 19:33:06 +00001539 return DAG.getStore(Chain, dl, Arg, PtrOff,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001540 PseudoSourceValue::getStack(), LocMemOffset);
Evan Chengbc077bf2008-01-10 00:09:10 +00001541}
1542
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001543/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001544/// optimization is performed and it is required.
Scott Michel91099d62009-02-17 22:15:04 +00001545SDValue
1546X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00001547 SDValue &OutRetAddr,
Scott Michel91099d62009-02-17 22:15:04 +00001548 SDValue Chain,
1549 bool IsTailCall,
1550 bool Is64Bit,
Dale Johannesence0805b2009-02-03 19:33:06 +00001551 int FPDiff,
1552 DebugLoc dl) {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001553 if (!IsTailCall || FPDiff==0) return Chain;
1554
1555 // Adjust the Return address stack slot.
Duncan Sands92c43912008-06-06 12:08:01 +00001556 MVT VT = getPointerTy();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001557 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001558
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001559 // Load the "old" Return address.
Dale Johannesence0805b2009-02-03 19:33:06 +00001560 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, NULL, 0);
Gabor Greif1c80d112008-08-28 21:40:38 +00001561 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001562}
1563
1564/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1565/// optimization is performed and it is required (FPDiff!=0).
Scott Michel91099d62009-02-17 22:15:04 +00001566static SDValue
1567EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman8181bd12008-07-27 21:46:04 +00001568 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesence0805b2009-02-03 19:33:06 +00001569 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001570 // Store the return address to the appropriate stack slot.
1571 if (!FPDiff) return Chain;
1572 // Calculate the new stack slot for the return address.
1573 int SlotSize = Is64Bit ? 8 : 4;
Scott Michel91099d62009-02-17 22:15:04 +00001574 int NewReturnAddrFI =
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001575 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize);
Duncan Sands92c43912008-06-06 12:08:01 +00001576 MVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman8181bd12008-07-27 21:46:04 +00001577 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michel91099d62009-02-17 22:15:04 +00001578 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001579 PseudoSourceValue::getFixedStack(NewReturnAddrFI), 0);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001580 return Chain;
1581}
1582
Dan Gohman8181bd12008-07-27 21:46:04 +00001583SDValue X86TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001584 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman705e3f72008-09-13 01:54:27 +00001585 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
1586 SDValue Chain = TheCall->getChain();
1587 unsigned CC = TheCall->getCallingConv();
1588 bool isVarArg = TheCall->isVarArg();
1589 bool IsTailCall = TheCall->isTailCall() &&
1590 CC == CallingConv::Fast && PerformTailCallOpt;
1591 SDValue Callee = TheCall->getCallee();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001592 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman705e3f72008-09-13 01:54:27 +00001593 bool IsStructRet = CallIsStructReturn(TheCall);
Dale Johannesence0805b2009-02-03 19:33:06 +00001594 DebugLoc dl = TheCall->getDebugLoc();
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001595
1596 assert(!(isVarArg && CC == CallingConv::Fast) &&
1597 "Var args not supported with calling convention fastcc");
1598
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001599 // Analyze operands of the call, assigning locations to each operand.
1600 SmallVector<CCValAssign, 16> ArgLocs;
1601 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman705e3f72008-09-13 01:54:27 +00001602 CCInfo.AnalyzeCallOperands(TheCall, CCAssignFnForNode(CC));
Scott Michel91099d62009-02-17 22:15:04 +00001603
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001604 // Get a count of how many bytes are to be pushed on the stack.
1605 unsigned NumBytes = CCInfo.getNextStackOffset();
Arnold Schwaighofere91fdbf2008-09-11 20:28:43 +00001606 if (PerformTailCallOpt && CC == CallingConv::Fast)
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001607 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001608
Gordon Henriksen18ace102008-01-05 16:56:59 +00001609 int FPDiff = 0;
1610 if (IsTailCall) {
1611 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michel91099d62009-02-17 22:15:04 +00001612 unsigned NumBytesCallerPushed =
Gordon Henriksen18ace102008-01-05 16:56:59 +00001613 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1614 FPDiff = NumBytesCallerPushed - NumBytes;
1615
1616 // Set the delta of movement of the returnaddr stackslot.
1617 // But only set if delta is greater than previous delta.
1618 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1619 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1620 }
1621
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001622 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001623
Dan Gohman8181bd12008-07-27 21:46:04 +00001624 SDValue RetAddrFrIdx;
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001625 // Load return adress for tail calls.
1626 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, IsTailCall, Is64Bit,
Dale Johannesence0805b2009-02-03 19:33:06 +00001627 FPDiff, dl);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001628
Dan Gohman8181bd12008-07-27 21:46:04 +00001629 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1630 SmallVector<SDValue, 8> MemOpChains;
1631 SDValue StackPtr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001632
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001633 // Walk the register/memloc assignments, inserting copies/loads. In the case
1634 // of tail call optimization arguments are handle later.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001635 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1636 CCValAssign &VA = ArgLocs[i];
Dan Gohman705e3f72008-09-13 01:54:27 +00001637 SDValue Arg = TheCall->getArg(i);
1638 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
1639 bool isByVal = Flags.isByVal();
Scott Michel91099d62009-02-17 22:15:04 +00001640
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001641 // Promote the value if needed.
1642 switch (VA.getLocInfo()) {
1643 default: assert(0 && "Unknown loc info!");
1644 case CCValAssign::Full: break;
1645 case CCValAssign::SExt:
Dale Johannesence0805b2009-02-03 19:33:06 +00001646 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001647 break;
1648 case CCValAssign::ZExt:
Dale Johannesence0805b2009-02-03 19:33:06 +00001649 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001650 break;
1651 case CCValAssign::AExt:
Dale Johannesence0805b2009-02-03 19:33:06 +00001652 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001653 break;
1654 }
Scott Michel91099d62009-02-17 22:15:04 +00001655
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001656 if (VA.isRegLoc()) {
Evan Cheng2aea0b42008-04-25 19:11:04 +00001657 if (Is64Bit) {
Duncan Sands92c43912008-06-06 12:08:01 +00001658 MVT RegVT = VA.getLocVT();
1659 if (RegVT.isVector() && RegVT.getSizeInBits() == 64)
Evan Cheng2aea0b42008-04-25 19:11:04 +00001660 switch (VA.getLocReg()) {
1661 default:
1662 break;
1663 case X86::RDI: case X86::RSI: case X86::RDX: case X86::RCX:
1664 case X86::R8: {
1665 // Special case: passing MMX values in GPR registers.
Dale Johannesence0805b2009-02-03 19:33:06 +00001666 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
Evan Cheng2aea0b42008-04-25 19:11:04 +00001667 break;
1668 }
1669 case X86::XMM0: case X86::XMM1: case X86::XMM2: case X86::XMM3:
1670 case X86::XMM4: case X86::XMM5: case X86::XMM6: case X86::XMM7: {
1671 // Special case: passing MMX values in XMM registers.
Dale Johannesence0805b2009-02-03 19:33:06 +00001672 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1673 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1674 Arg = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2i64,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00001675 DAG.getUNDEF(MVT::v2i64), Arg,
Dale Johannesence0805b2009-02-03 19:33:06 +00001676 getMOVLMask(2, DAG, dl));
Evan Cheng2aea0b42008-04-25 19:11:04 +00001677 break;
1678 }
1679 }
1680 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001681 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1682 } else {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001683 if (!IsTailCall || (IsTailCall && isByVal)) {
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001684 assert(VA.isMemLoc());
Gabor Greif1c80d112008-08-28 21:40:38 +00001685 if (StackPtr.getNode() == 0)
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001686 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
Scott Michel91099d62009-02-17 22:15:04 +00001687
Dan Gohman705e3f72008-09-13 01:54:27 +00001688 MemOpChains.push_back(LowerMemOpCallTo(TheCall, DAG, StackPtr, VA,
1689 Chain, Arg, Flags));
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001690 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001691 }
1692 }
Scott Michel91099d62009-02-17 22:15:04 +00001693
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001694 if (!MemOpChains.empty())
Dale Johannesence0805b2009-02-03 19:33:06 +00001695 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001696 &MemOpChains[0], MemOpChains.size());
1697
1698 // Build a sequence of copy-to-reg nodes chained together with token chain
1699 // and flag operands which copy the outgoing args into registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00001700 SDValue InFlag;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001701 // Tail call byval lowering might overwrite argument registers so in case of
1702 // tail call optimization the copies to registers are lowered later.
1703 if (!IsTailCall)
1704 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00001705 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001706 RegsToPass[i].second, InFlag);
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001707 InFlag = Chain.getValue(1);
1708 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001709
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001710 // ELF / PIC requires GOT in the EBX register before function calls via PLT
Scott Michel91099d62009-02-17 22:15:04 +00001711 // GOT pointer.
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001712 if (CallRequiresGOTPtrInReg(Is64Bit, IsTailCall)) {
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001713 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
Scott Michel91099d62009-02-17 22:15:04 +00001714 DAG.getNode(X86ISD::GlobalBaseReg,
1715 DebugLoc::getUnknownLoc(),
Dale Johannesen24dd9a52009-02-07 00:55:49 +00001716 getPointerTy()),
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001717 InFlag);
1718 InFlag = Chain.getValue(1);
1719 }
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001720 // If we are tail calling and generating PIC/GOT style code load the address
1721 // of the callee into ecx. The value in ecx is used as target of the tail
1722 // jump. This is done to circumvent the ebx/callee-saved problem for tail
1723 // calls on PIC/GOT architectures. Normally we would just put the address of
1724 // GOT into ebx and then call target@PLT. But for tail callss ebx would be
1725 // restored (since ebx is callee saved) before jumping to the target@PLT.
Arnold Schwaighofer87f75262008-02-26 22:21:54 +00001726 if (CallRequiresFnAddressInReg(Is64Bit, IsTailCall)) {
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001727 // Note: The actual moving to ecx is done further down.
1728 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
Evan Cheng7f250d62008-09-24 00:05:32 +00001729 if (G && !G->getGlobal()->hasHiddenVisibility() &&
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001730 !G->getGlobal()->hasProtectedVisibility())
1731 Callee = LowerGlobalAddress(Callee, DAG);
Bill Wendlingfef06052008-09-16 21:48:12 +00001732 else if (isa<ExternalSymbolSDNode>(Callee))
1733 Callee = LowerExternalSymbol(Callee,DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001734 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001735
Gordon Henriksen18ace102008-01-05 16:56:59 +00001736 if (Is64Bit && isVarArg) {
1737 // From AMD64 ABI document:
1738 // For calls that may call functions that use varargs or stdargs
1739 // (prototype-less calls or calls to functions containing ellipsis (...) in
1740 // the declaration) %al is used as hidden argument to specify the number
1741 // of SSE registers used. The contents of %al do not need to match exactly
1742 // the number of registers, but must be an ubound on the number of SSE
1743 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001744
1745 // FIXME: Verify this on Win64
Gordon Henriksen18ace102008-01-05 16:56:59 +00001746 // Count the number of XMM registers allocated.
1747 static const unsigned XMMArgRegs[] = {
1748 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1749 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1750 };
1751 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michel91099d62009-02-17 22:15:04 +00001752 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Edwin Törökaf8e1332009-02-01 18:15:56 +00001753 && "SSE registers cannot be used when SSE is disabled");
Scott Michel91099d62009-02-17 22:15:04 +00001754
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001755 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Gordon Henriksen18ace102008-01-05 16:56:59 +00001756 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
1757 InFlag = Chain.getValue(1);
1758 }
1759
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001760
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001761 // For tail calls lower the arguments to the 'real' stack slot.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001762 if (IsTailCall) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001763 SmallVector<SDValue, 8> MemOpChains2;
1764 SDValue FIN;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001765 int FI = 0;
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001766 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman8181bd12008-07-27 21:46:04 +00001767 InFlag = SDValue();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001768 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1769 CCValAssign &VA = ArgLocs[i];
1770 if (!VA.isRegLoc()) {
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001771 assert(VA.isMemLoc());
Dan Gohman705e3f72008-09-13 01:54:27 +00001772 SDValue Arg = TheCall->getArg(i);
1773 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001774 // Create frame index.
1775 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands92c43912008-06-06 12:08:01 +00001776 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001777 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001778 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001779
Duncan Sandsc93fae32008-03-21 09:14:45 +00001780 if (Flags.isByVal()) {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001781 // Copy relative to framepointer.
Dan Gohman8181bd12008-07-27 21:46:04 +00001782 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greif1c80d112008-08-28 21:40:38 +00001783 if (StackPtr.getNode() == 0)
Scott Michel91099d62009-02-17 22:15:04 +00001784 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001785 getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00001786 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001787
1788 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN, Chain,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001789 Flags, DAG, dl));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001790 } else {
Evan Cheng5817a0e2008-01-12 01:08:07 +00001791 // Store relative to framepointer.
Dan Gohman12a9c082008-02-06 22:27:42 +00001792 MemOpChains2.push_back(
Dale Johannesence0805b2009-02-03 19:33:06 +00001793 DAG.getStore(Chain, dl, Arg, FIN,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00001794 PseudoSourceValue::getFixedStack(FI), 0));
Scott Michel91099d62009-02-17 22:15:04 +00001795 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001796 }
1797 }
1798
1799 if (!MemOpChains2.empty())
Dale Johannesence0805b2009-02-03 19:33:06 +00001800 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighoferdfb21302008-01-11 14:34:56 +00001801 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001802
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001803 // Copy arguments to their registers.
1804 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00001805 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001806 RegsToPass[i].second, InFlag);
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001807 InFlag = Chain.getValue(1);
1808 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001809 InFlag =SDValue();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001810
Gordon Henriksen18ace102008-01-05 16:56:59 +00001811 // Store the return address to the appropriate stack slot.
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001812 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesence0805b2009-02-03 19:33:06 +00001813 FPDiff, dl);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001814 }
1815
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001816 // If the callee is a GlobalAddress node (quite common, every direct call is)
1817 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
1818 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1819 // We should use extra load for direct calls to dllimported functions in
1820 // non-JIT mode.
Evan Cheng1f282202008-07-16 01:34:02 +00001821 if (!Subtarget->GVRequiresExtraLoad(G->getGlobal(),
1822 getTargetMachine(), true))
Dan Gohman36322c72008-10-18 02:06:02 +00001823 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy(),
1824 G->getOffset());
Bill Wendlingfef06052008-09-16 21:48:12 +00001825 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1826 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001827 } else if (IsTailCall) {
Arnold Schwaighofer4da27f62008-09-22 14:50:07 +00001828 unsigned Opc = Is64Bit ? X86::R9 : X86::EAX;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001829
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001830 Chain = DAG.getCopyToReg(Chain, dl,
Scott Michel91099d62009-02-17 22:15:04 +00001831 DAG.getRegister(Opc, getPointerTy()),
Gordon Henriksen18ace102008-01-05 16:56:59 +00001832 Callee,InFlag);
1833 Callee = DAG.getRegister(Opc, getPointerTy());
1834 // Add register as live out.
1835 DAG.getMachineFunction().getRegInfo().addLiveOut(Opc);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001836 }
Scott Michel91099d62009-02-17 22:15:04 +00001837
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001838 // Returns a chain & a flag for retval copy to use.
1839 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00001840 SmallVector<SDValue, 8> Ops;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001841
1842 if (IsTailCall) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00001843 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1844 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001845 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00001846
Gordon Henriksen18ace102008-01-05 16:56:59 +00001847 // Returns a chain & a flag for retval copy to use.
1848 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1849 Ops.clear();
1850 }
Scott Michel91099d62009-02-17 22:15:04 +00001851
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001852 Ops.push_back(Chain);
1853 Ops.push_back(Callee);
1854
Gordon Henriksen18ace102008-01-05 16:56:59 +00001855 if (IsTailCall)
1856 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001857
Gordon Henriksen18ace102008-01-05 16:56:59 +00001858 // Add argument registers to the end of the list so that they are known live
1859 // into the call.
Evan Chenge14fc242008-01-07 23:08:23 +00001860 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1861 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1862 RegsToPass[i].second.getValueType()));
Scott Michel91099d62009-02-17 22:15:04 +00001863
Evan Cheng8ba45e62008-03-18 23:36:35 +00001864 // Add an implicit use GOT pointer in EBX.
1865 if (!IsTailCall && !Is64Bit &&
1866 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1867 Subtarget->isPICStyleGOT())
1868 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
1869
1870 // Add an implicit use of AL for x86 vararg functions.
1871 if (Is64Bit && isVarArg)
1872 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
1873
Gabor Greif1c80d112008-08-28 21:40:38 +00001874 if (InFlag.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001875 Ops.push_back(InFlag);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001876
Gordon Henriksen18ace102008-01-05 16:56:59 +00001877 if (IsTailCall) {
Scott Michel91099d62009-02-17 22:15:04 +00001878 assert(InFlag.getNode() &&
Gordon Henriksen18ace102008-01-05 16:56:59 +00001879 "Flag must be set. Depend on flag being set in LowerRET");
Dale Johannesence0805b2009-02-03 19:33:06 +00001880 Chain = DAG.getNode(X86ISD::TAILCALL, dl,
Dan Gohman705e3f72008-09-13 01:54:27 +00001881 TheCall->getVTList(), &Ops[0], Ops.size());
Scott Michel91099d62009-02-17 22:15:04 +00001882
Gabor Greif1c80d112008-08-28 21:40:38 +00001883 return SDValue(Chain.getNode(), Op.getResNo());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001884 }
1885
Dale Johannesence0805b2009-02-03 19:33:06 +00001886 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001887 InFlag = Chain.getValue(1);
1888
1889 // Create the CALLSEQ_END node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001890 unsigned NumBytesForCalleeToPush;
Dan Gohman705e3f72008-09-13 01:54:27 +00001891 if (IsCalleePop(isVarArg, CC))
Gordon Henriksen18ace102008-01-05 16:56:59 +00001892 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Evan Chenga9d15b92008-09-10 18:25:29 +00001893 else if (!Is64Bit && CC != CallingConv::Fast && IsStructRet)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001894 // If this is is a call to a struct-return function, the callee
1895 // pops the hidden struct pointer, so we have to push it back.
1896 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001897 NumBytesForCalleeToPush = 4;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001898 else
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001899 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michel91099d62009-02-17 22:15:04 +00001900
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001901 // Returns a flag for retval copy to use.
Bill Wendling22f8deb2007-11-13 00:44:25 +00001902 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001903 DAG.getIntPtrConstant(NumBytes, true),
1904 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
1905 true),
Bill Wendling22f8deb2007-11-13 00:44:25 +00001906 InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001907 InFlag = Chain.getValue(1);
1908
1909 // Handle result values, copying them out of physregs into vregs that we
1910 // return.
Dan Gohman705e3f72008-09-13 01:54:27 +00001911 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG),
Gabor Greif825aa892008-08-28 23:19:51 +00001912 Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001913}
1914
1915
1916//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001917// Fast Calling Convention (tail call) implementation
1918//===----------------------------------------------------------------------===//
1919
1920// Like std call, callee cleans arguments, convention except that ECX is
1921// reserved for storing the tail called function address. Only 2 registers are
1922// free for argument passing (inreg). Tail call optimization is performed
1923// provided:
1924// * tailcallopt is enabled
1925// * caller/callee are fastcc
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001926// On X86_64 architecture with GOT-style position independent code only local
1927// (within module) calls are supported at the moment.
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00001928// To keep the stack aligned according to platform abi the function
1929// GetAlignedArgumentStackSize ensures that argument delta is always multiples
1930// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001931// If a tail called function callee has more arguments than the caller the
1932// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00001933// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001934// original REtADDR, but before the saved framepointer or the spilled registers
1935// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
1936// stack layout:
1937// arg1
1938// arg2
1939// RETADDR
Scott Michel91099d62009-02-17 22:15:04 +00001940// [ new RETADDR
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001941// move area ]
1942// (possible EBP)
1943// ESI
1944// EDI
1945// local1 ..
1946
1947/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
1948/// for a 16 byte align requirement.
Scott Michel91099d62009-02-17 22:15:04 +00001949unsigned X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001950 SelectionDAG& DAG) {
Evan Chengded8f902008-09-07 09:07:23 +00001951 MachineFunction &MF = DAG.getMachineFunction();
1952 const TargetMachine &TM = MF.getTarget();
1953 const TargetFrameInfo &TFI = *TM.getFrameInfo();
1954 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michel91099d62009-02-17 22:15:04 +00001955 uint64_t AlignMask = StackAlignment - 1;
Evan Chengded8f902008-09-07 09:07:23 +00001956 int64_t Offset = StackSize;
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00001957 uint64_t SlotSize = TD->getPointerSize();
Evan Chengded8f902008-09-07 09:07:23 +00001958 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
1959 // Number smaller than 12 so just add the difference.
1960 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
1961 } else {
1962 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michel91099d62009-02-17 22:15:04 +00001963 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chengded8f902008-09-07 09:07:23 +00001964 (StackAlignment-SlotSize);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001965 }
Evan Chengded8f902008-09-07 09:07:23 +00001966 return Offset;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001967}
1968
1969/// IsEligibleForTailCallElimination - Check to see whether the next instruction
Evan Chenge7a87392007-11-02 01:26:22 +00001970/// following the call is a return. A function is eligible if caller/callee
1971/// calling conventions match, currently only fastcc supports tail calls, and
1972/// the function CALL is immediatly followed by a RET.
Dan Gohman705e3f72008-09-13 01:54:27 +00001973bool X86TargetLowering::IsEligibleForTailCallOptimization(CallSDNode *TheCall,
Dan Gohman8181bd12008-07-27 21:46:04 +00001974 SDValue Ret,
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001975 SelectionDAG& DAG) const {
Evan Chenge7a87392007-11-02 01:26:22 +00001976 if (!PerformTailCallOpt)
1977 return false;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001978
Dan Gohman705e3f72008-09-13 01:54:27 +00001979 if (CheckTailCallReturnConstraints(TheCall, Ret)) {
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001980 MachineFunction &MF = DAG.getMachineFunction();
1981 unsigned CallerCC = MF.getFunction()->getCallingConv();
Dan Gohman705e3f72008-09-13 01:54:27 +00001982 unsigned CalleeCC= TheCall->getCallingConv();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001983 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
Dan Gohman705e3f72008-09-13 01:54:27 +00001984 SDValue Callee = TheCall->getCallee();
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001985 // On x86/32Bit PIC/GOT tail calls are supported.
Evan Chenge7a87392007-11-02 01:26:22 +00001986 if (getTargetMachine().getRelocationModel() != Reloc::PIC_ ||
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001987 !Subtarget->isPICStyleGOT()|| !Subtarget->is64Bit())
Evan Chenge7a87392007-11-02 01:26:22 +00001988 return true;
1989
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00001990 // Can only do local tail calls (in same module, hidden or protected) on
1991 // x86_64 PIC/GOT at the moment.
Gordon Henriksen18ace102008-01-05 16:56:59 +00001992 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1993 return G->getGlobal()->hasHiddenVisibility()
1994 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001995 }
1996 }
Evan Chenge7a87392007-11-02 01:26:22 +00001997
1998 return false;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001999}
2000
Dan Gohmanca4857a2008-09-03 23:12:08 +00002001FastISel *
2002X86TargetLowering::createFastISel(MachineFunction &mf,
Dan Gohman76dd96e2008-09-23 21:53:34 +00002003 MachineModuleInfo *mmo,
Devang Patelfcf1c752009-01-13 00:35:13 +00002004 DwarfWriter *dw,
Dan Gohmanca4857a2008-09-03 23:12:08 +00002005 DenseMap<const Value *, unsigned> &vm,
2006 DenseMap<const BasicBlock *,
Dan Gohmand6211a72008-09-10 20:11:02 +00002007 MachineBasicBlock *> &bm,
Dan Gohman9dd43582008-10-14 23:54:11 +00002008 DenseMap<const AllocaInst *, int> &am
2009#ifndef NDEBUG
2010 , SmallSet<Instruction*, 8> &cil
2011#endif
2012 ) {
Devang Patelfcf1c752009-01-13 00:35:13 +00002013 return X86::createFastISel(mf, mmo, dw, vm, bm, am
Dan Gohman9dd43582008-10-14 23:54:11 +00002014#ifndef NDEBUG
2015 , cil
2016#endif
2017 );
Dan Gohman97805ee2008-08-19 21:32:53 +00002018}
2019
2020
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002021//===----------------------------------------------------------------------===//
2022// Other Lowering Hooks
2023//===----------------------------------------------------------------------===//
2024
2025
Dan Gohman8181bd12008-07-27 21:46:04 +00002026SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
Anton Korobeynikove844e472007-08-15 17:12:32 +00002027 MachineFunction &MF = DAG.getMachineFunction();
2028 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2029 int ReturnAddrIndex = FuncInfo->getRAIndex();
2030
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002031 if (ReturnAddrIndex == 0) {
2032 // Set up a frame object for the return address.
Bill Wendling6ddc87b2009-01-16 19:25:27 +00002033 uint64_t SlotSize = TD->getPointerSize();
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00002034 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize);
Anton Korobeynikove844e472007-08-15 17:12:32 +00002035 FuncInfo->setRAIndex(ReturnAddrIndex);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002036 }
2037
2038 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
2039}
2040
2041
Chris Lattnerebb91142008-12-24 23:53:05 +00002042/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2043/// specific condition code, returning the condition code and the LHS/RHS of the
2044/// comparison to make.
2045static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2046 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002047 if (!isFP) {
2048 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2049 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2050 // X > -1 -> X == 0, jump !sign.
2051 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattnerebb91142008-12-24 23:53:05 +00002052 return X86::COND_NS;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002053 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2054 // X < 0 -> X == 0, jump on sign.
Chris Lattnerebb91142008-12-24 23:53:05 +00002055 return X86::COND_S;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002056 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman37b34262007-09-17 14:49:27 +00002057 // X < 1 -> X <= 0
2058 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattnerebb91142008-12-24 23:53:05 +00002059 return X86::COND_LE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002060 }
2061 }
2062
2063 switch (SetCCOpcode) {
Chris Lattnerb8397512008-12-23 23:42:27 +00002064 default: assert(0 && "Invalid integer condition!");
Chris Lattnerebb91142008-12-24 23:53:05 +00002065 case ISD::SETEQ: return X86::COND_E;
2066 case ISD::SETGT: return X86::COND_G;
2067 case ISD::SETGE: return X86::COND_GE;
2068 case ISD::SETLT: return X86::COND_L;
2069 case ISD::SETLE: return X86::COND_LE;
2070 case ISD::SETNE: return X86::COND_NE;
2071 case ISD::SETULT: return X86::COND_B;
2072 case ISD::SETUGT: return X86::COND_A;
2073 case ISD::SETULE: return X86::COND_BE;
2074 case ISD::SETUGE: return X86::COND_AE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002075 }
Chris Lattnerb8397512008-12-23 23:42:27 +00002076 }
Scott Michel91099d62009-02-17 22:15:04 +00002077
Chris Lattnerb8397512008-12-23 23:42:27 +00002078 // First determine if it is required or is profitable to flip the operands.
Duncan Sandsc2a04622008-10-24 13:03:10 +00002079
Chris Lattnerb8397512008-12-23 23:42:27 +00002080 // If LHS is a foldable load, but RHS is not, flip the condition.
2081 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2082 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2083 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2084 std::swap(LHS, RHS);
Evan Chengfc937c92008-08-28 23:48:31 +00002085 }
2086
Chris Lattnerb8397512008-12-23 23:42:27 +00002087 switch (SetCCOpcode) {
2088 default: break;
2089 case ISD::SETOLT:
2090 case ISD::SETOLE:
2091 case ISD::SETUGT:
2092 case ISD::SETUGE:
2093 std::swap(LHS, RHS);
2094 break;
2095 }
2096
2097 // On a floating point condition, the flags are set as follows:
2098 // ZF PF CF op
2099 // 0 | 0 | 0 | X > Y
2100 // 0 | 0 | 1 | X < Y
2101 // 1 | 0 | 0 | X == Y
2102 // 1 | 1 | 1 | unordered
2103 switch (SetCCOpcode) {
Chris Lattnerebb91142008-12-24 23:53:05 +00002104 default: assert(0 && "Condcode should be pre-legalized away");
Chris Lattnerb8397512008-12-23 23:42:27 +00002105 case ISD::SETUEQ:
Chris Lattnerebb91142008-12-24 23:53:05 +00002106 case ISD::SETEQ: return X86::COND_E;
Chris Lattnerb8397512008-12-23 23:42:27 +00002107 case ISD::SETOLT: // flipped
2108 case ISD::SETOGT:
Chris Lattnerebb91142008-12-24 23:53:05 +00002109 case ISD::SETGT: return X86::COND_A;
Chris Lattnerb8397512008-12-23 23:42:27 +00002110 case ISD::SETOLE: // flipped
2111 case ISD::SETOGE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002112 case ISD::SETGE: return X86::COND_AE;
Chris Lattnerb8397512008-12-23 23:42:27 +00002113 case ISD::SETUGT: // flipped
2114 case ISD::SETULT:
Chris Lattnerebb91142008-12-24 23:53:05 +00002115 case ISD::SETLT: return X86::COND_B;
Chris Lattnerb8397512008-12-23 23:42:27 +00002116 case ISD::SETUGE: // flipped
2117 case ISD::SETULE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002118 case ISD::SETLE: return X86::COND_BE;
Chris Lattnerb8397512008-12-23 23:42:27 +00002119 case ISD::SETONE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002120 case ISD::SETNE: return X86::COND_NE;
2121 case ISD::SETUO: return X86::COND_P;
2122 case ISD::SETO: return X86::COND_NP;
Chris Lattnerb8397512008-12-23 23:42:27 +00002123 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002124}
2125
2126/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2127/// code. Current x86 isa includes the following FP cmov instructions:
2128/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
2129static bool hasFPCMov(unsigned X86CC) {
2130 switch (X86CC) {
2131 default:
2132 return false;
2133 case X86::COND_B:
2134 case X86::COND_BE:
2135 case X86::COND_E:
2136 case X86::COND_P:
2137 case X86::COND_A:
2138 case X86::COND_AE:
2139 case X86::COND_NE:
2140 case X86::COND_NP:
2141 return true;
2142 }
2143}
2144
2145/// isUndefOrInRange - Op is either an undef node or a ConstantSDNode. Return
2146/// true if Op is undef or if its value falls within the specified range (L, H].
Dan Gohman8181bd12008-07-27 21:46:04 +00002147static bool isUndefOrInRange(SDValue Op, unsigned Low, unsigned Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002148 if (Op.getOpcode() == ISD::UNDEF)
2149 return true;
2150
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002151 unsigned Val = cast<ConstantSDNode>(Op)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002152 return (Val >= Low && Val < Hi);
2153}
2154
2155/// isUndefOrEqual - Op is either an undef node or a ConstantSDNode. Return
2156/// true if Op is undef or if its value equal to the specified value.
Dan Gohman8181bd12008-07-27 21:46:04 +00002157static bool isUndefOrEqual(SDValue Op, unsigned Val) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002158 if (Op.getOpcode() == ISD::UNDEF)
2159 return true;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002160 return cast<ConstantSDNode>(Op)->getZExtValue() == Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002161}
2162
2163/// isPSHUFDMask - Return true if the specified VECTOR_SHUFFLE operand
2164/// specifies a shuffle of elements that is suitable for input to PSHUFD.
2165bool X86::isPSHUFDMask(SDNode *N) {
2166 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2167
Dan Gohman7dc19012007-08-02 21:17:01 +00002168 if (N->getNumOperands() != 2 && N->getNumOperands() != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002169 return false;
2170
2171 // Check if the value doesn't reference the second vector.
2172 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002173 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002174 if (Arg.getOpcode() == ISD::UNDEF) continue;
2175 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002176 if (cast<ConstantSDNode>(Arg)->getZExtValue() >= e)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002177 return false;
2178 }
2179
2180 return true;
2181}
2182
2183/// isPSHUFHWMask - Return true if the specified VECTOR_SHUFFLE operand
2184/// specifies a shuffle of elements that is suitable for input to PSHUFHW.
2185bool X86::isPSHUFHWMask(SDNode *N) {
2186 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2187
2188 if (N->getNumOperands() != 8)
2189 return false;
2190
2191 // Lower quadword copied in order.
2192 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002193 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002194 if (Arg.getOpcode() == ISD::UNDEF) continue;
2195 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002196 if (cast<ConstantSDNode>(Arg)->getZExtValue() != i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002197 return false;
2198 }
2199
2200 // Upper quadword shuffled.
2201 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002202 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002203 if (Arg.getOpcode() == ISD::UNDEF) continue;
2204 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002205 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002206 if (Val < 4 || Val > 7)
2207 return false;
2208 }
2209
2210 return true;
2211}
2212
2213/// isPSHUFLWMask - Return true if the specified VECTOR_SHUFFLE operand
2214/// specifies a shuffle of elements that is suitable for input to PSHUFLW.
2215bool X86::isPSHUFLWMask(SDNode *N) {
2216 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2217
2218 if (N->getNumOperands() != 8)
2219 return false;
2220
2221 // Upper quadword copied in order.
2222 for (unsigned i = 4; i != 8; ++i)
2223 if (!isUndefOrEqual(N->getOperand(i), i))
2224 return false;
2225
2226 // Lower quadword shuffled.
2227 for (unsigned i = 0; i != 4; ++i)
2228 if (!isUndefOrInRange(N->getOperand(i), 0, 4))
2229 return false;
2230
2231 return true;
2232}
2233
2234/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2235/// specifies a shuffle of elements that is suitable for input to SHUFP*.
djgc2517d32009-01-26 04:35:06 +00002236template<class SDOperand>
2237static bool isSHUFPMask(SDOperand *Elems, unsigned NumElems) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002238 if (NumElems != 2 && NumElems != 4) return false;
2239
2240 unsigned Half = NumElems / 2;
2241 for (unsigned i = 0; i < Half; ++i)
2242 if (!isUndefOrInRange(Elems[i], 0, NumElems))
2243 return false;
2244 for (unsigned i = Half; i < NumElems; ++i)
2245 if (!isUndefOrInRange(Elems[i], NumElems, NumElems*2))
2246 return false;
2247
2248 return true;
2249}
2250
2251bool X86::isSHUFPMask(SDNode *N) {
2252 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2253 return ::isSHUFPMask(N->op_begin(), N->getNumOperands());
2254}
2255
2256/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
2257/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2258/// half elements to come from vector 1 (which would equal the dest.) and
2259/// the upper half to come from vector 2.
djgc2517d32009-01-26 04:35:06 +00002260template<class SDOperand>
2261static bool isCommutedSHUFP(SDOperand *Ops, unsigned NumOps) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002262 if (NumOps != 2 && NumOps != 4) return false;
2263
2264 unsigned Half = NumOps / 2;
2265 for (unsigned i = 0; i < Half; ++i)
2266 if (!isUndefOrInRange(Ops[i], NumOps, NumOps*2))
2267 return false;
2268 for (unsigned i = Half; i < NumOps; ++i)
2269 if (!isUndefOrInRange(Ops[i], 0, NumOps))
2270 return false;
2271 return true;
2272}
2273
2274static bool isCommutedSHUFP(SDNode *N) {
2275 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2276 return isCommutedSHUFP(N->op_begin(), N->getNumOperands());
2277}
2278
2279/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2280/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
2281bool X86::isMOVHLPSMask(SDNode *N) {
2282 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2283
2284 if (N->getNumOperands() != 4)
2285 return false;
2286
2287 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
2288 return isUndefOrEqual(N->getOperand(0), 6) &&
2289 isUndefOrEqual(N->getOperand(1), 7) &&
2290 isUndefOrEqual(N->getOperand(2), 2) &&
2291 isUndefOrEqual(N->getOperand(3), 3);
2292}
2293
2294/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2295/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2296/// <2, 3, 2, 3>
2297bool X86::isMOVHLPS_v_undef_Mask(SDNode *N) {
2298 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2299
2300 if (N->getNumOperands() != 4)
2301 return false;
2302
2303 // Expect bit0 == 2, bit1 == 3, bit2 == 2, bit3 == 3
2304 return isUndefOrEqual(N->getOperand(0), 2) &&
2305 isUndefOrEqual(N->getOperand(1), 3) &&
2306 isUndefOrEqual(N->getOperand(2), 2) &&
2307 isUndefOrEqual(N->getOperand(3), 3);
2308}
2309
2310/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
2311/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
2312bool X86::isMOVLPMask(SDNode *N) {
2313 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2314
2315 unsigned NumElems = N->getNumOperands();
2316 if (NumElems != 2 && NumElems != 4)
2317 return false;
2318
2319 for (unsigned i = 0; i < NumElems/2; ++i)
2320 if (!isUndefOrEqual(N->getOperand(i), i + NumElems))
2321 return false;
2322
2323 for (unsigned i = NumElems/2; i < NumElems; ++i)
2324 if (!isUndefOrEqual(N->getOperand(i), i))
2325 return false;
2326
2327 return true;
2328}
2329
2330/// isMOVHPMask - Return true if the specified VECTOR_SHUFFLE operand
2331/// specifies a shuffle of elements that is suitable for input to MOVHP{S|D}
2332/// and MOVLHPS.
2333bool X86::isMOVHPMask(SDNode *N) {
2334 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2335
2336 unsigned NumElems = N->getNumOperands();
2337 if (NumElems != 2 && NumElems != 4)
2338 return false;
2339
2340 for (unsigned i = 0; i < NumElems/2; ++i)
2341 if (!isUndefOrEqual(N->getOperand(i), i))
2342 return false;
2343
2344 for (unsigned i = 0; i < NumElems/2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002345 SDValue Arg = N->getOperand(i + NumElems/2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002346 if (!isUndefOrEqual(Arg, i + NumElems))
2347 return false;
2348 }
2349
2350 return true;
2351}
2352
2353/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
2354/// specifies a shuffle of elements that is suitable for input to UNPCKL.
djgc2517d32009-01-26 04:35:06 +00002355template<class SDOperand>
2356bool static isUNPCKLMask(SDOperand *Elts, unsigned NumElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002357 bool V2IsSplat = false) {
2358 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2359 return false;
2360
2361 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002362 SDValue BitI = Elts[i];
2363 SDValue BitI1 = Elts[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002364 if (!isUndefOrEqual(BitI, j))
2365 return false;
2366 if (V2IsSplat) {
Mon P Wang56d91642009-02-04 01:16:59 +00002367 if (!isUndefOrEqual(BitI1, NumElts))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002368 return false;
2369 } else {
2370 if (!isUndefOrEqual(BitI1, j + NumElts))
2371 return false;
2372 }
2373 }
2374
2375 return true;
2376}
2377
2378bool X86::isUNPCKLMask(SDNode *N, bool V2IsSplat) {
2379 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2380 return ::isUNPCKLMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
2381}
2382
2383/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
2384/// specifies a shuffle of elements that is suitable for input to UNPCKH.
djgc2517d32009-01-26 04:35:06 +00002385template<class SDOperand>
2386bool static isUNPCKHMask(SDOperand *Elts, unsigned NumElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002387 bool V2IsSplat = false) {
2388 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2389 return false;
2390
2391 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002392 SDValue BitI = Elts[i];
2393 SDValue BitI1 = Elts[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002394 if (!isUndefOrEqual(BitI, j + NumElts/2))
2395 return false;
2396 if (V2IsSplat) {
2397 if (isUndefOrEqual(BitI1, NumElts))
2398 return false;
2399 } else {
2400 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
2401 return false;
2402 }
2403 }
2404
2405 return true;
2406}
2407
2408bool X86::isUNPCKHMask(SDNode *N, bool V2IsSplat) {
2409 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2410 return ::isUNPCKHMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
2411}
2412
2413/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
2414/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
2415/// <0, 0, 1, 1>
2416bool X86::isUNPCKL_v_undef_Mask(SDNode *N) {
2417 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2418
2419 unsigned NumElems = N->getNumOperands();
2420 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2421 return false;
2422
2423 for (unsigned i = 0, j = 0; i != NumElems; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002424 SDValue BitI = N->getOperand(i);
2425 SDValue BitI1 = N->getOperand(i+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002426
2427 if (!isUndefOrEqual(BitI, j))
2428 return false;
2429 if (!isUndefOrEqual(BitI1, j))
2430 return false;
2431 }
2432
2433 return true;
2434}
2435
2436/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
2437/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
2438/// <2, 2, 3, 3>
2439bool X86::isUNPCKH_v_undef_Mask(SDNode *N) {
2440 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2441
2442 unsigned NumElems = N->getNumOperands();
2443 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2444 return false;
2445
2446 for (unsigned i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002447 SDValue BitI = N->getOperand(i);
2448 SDValue BitI1 = N->getOperand(i + 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002449
2450 if (!isUndefOrEqual(BitI, j))
2451 return false;
2452 if (!isUndefOrEqual(BitI1, j))
2453 return false;
2454 }
2455
2456 return true;
2457}
2458
2459/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
2460/// specifies a shuffle of elements that is suitable for input to MOVSS,
2461/// MOVSD, and MOVD, i.e. setting the lowest element.
djgc2517d32009-01-26 04:35:06 +00002462template<class SDOperand>
2463static bool isMOVLMask(SDOperand *Elts, unsigned NumElts) {
Evan Cheng62cdc642007-12-06 22:14:22 +00002464 if (NumElts != 2 && NumElts != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002465 return false;
2466
2467 if (!isUndefOrEqual(Elts[0], NumElts))
2468 return false;
2469
2470 for (unsigned i = 1; i < NumElts; ++i) {
2471 if (!isUndefOrEqual(Elts[i], i))
2472 return false;
2473 }
2474
2475 return true;
2476}
2477
2478bool X86::isMOVLMask(SDNode *N) {
2479 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2480 return ::isMOVLMask(N->op_begin(), N->getNumOperands());
2481}
2482
2483/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
2484/// of what x86 movss want. X86 movs requires the lowest element to be lowest
2485/// element of vector 2 and the other elements to come from vector 1 in order.
djgc2517d32009-01-26 04:35:06 +00002486template<class SDOperand>
2487static bool isCommutedMOVL(SDOperand *Ops, unsigned NumOps,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002488 bool V2IsSplat = false,
2489 bool V2IsUndef = false) {
2490 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
2491 return false;
2492
2493 if (!isUndefOrEqual(Ops[0], 0))
2494 return false;
2495
2496 for (unsigned i = 1; i < NumOps; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002497 SDValue Arg = Ops[i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002498 if (!(isUndefOrEqual(Arg, i+NumOps) ||
2499 (V2IsUndef && isUndefOrInRange(Arg, NumOps, NumOps*2)) ||
2500 (V2IsSplat && isUndefOrEqual(Arg, NumOps))))
2501 return false;
2502 }
2503
2504 return true;
2505}
2506
2507static bool isCommutedMOVL(SDNode *N, bool V2IsSplat = false,
2508 bool V2IsUndef = false) {
2509 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2510 return isCommutedMOVL(N->op_begin(), N->getNumOperands(),
2511 V2IsSplat, V2IsUndef);
2512}
2513
2514/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2515/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
2516bool X86::isMOVSHDUPMask(SDNode *N) {
2517 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2518
2519 if (N->getNumOperands() != 4)
2520 return false;
2521
2522 // Expect 1, 1, 3, 3
2523 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002524 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002525 if (Arg.getOpcode() == ISD::UNDEF) continue;
2526 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002527 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002528 if (Val != 1) return false;
2529 }
2530
2531 bool HasHi = false;
2532 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002533 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002534 if (Arg.getOpcode() == ISD::UNDEF) continue;
2535 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002536 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002537 if (Val != 3) return false;
2538 HasHi = true;
2539 }
2540
2541 // Don't use movshdup if it can be done with a shufps.
2542 return HasHi;
2543}
2544
2545/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2546/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
2547bool X86::isMOVSLDUPMask(SDNode *N) {
2548 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2549
2550 if (N->getNumOperands() != 4)
2551 return false;
2552
2553 // Expect 0, 0, 2, 2
2554 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002555 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002556 if (Arg.getOpcode() == ISD::UNDEF) continue;
2557 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002558 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002559 if (Val != 0) return false;
2560 }
2561
2562 bool HasHi = false;
2563 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002564 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002565 if (Arg.getOpcode() == ISD::UNDEF) continue;
2566 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002567 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002568 if (Val != 2) return false;
2569 HasHi = true;
2570 }
2571
2572 // Don't use movshdup if it can be done with a shufps.
2573 return HasHi;
2574}
2575
2576/// isIdentityMask - Return true if the specified VECTOR_SHUFFLE operand
2577/// specifies a identity operation on the LHS or RHS.
2578static bool isIdentityMask(SDNode *N, bool RHS = false) {
2579 unsigned NumElems = N->getNumOperands();
2580 for (unsigned i = 0; i < NumElems; ++i)
2581 if (!isUndefOrEqual(N->getOperand(i), i + (RHS ? NumElems : 0)))
2582 return false;
2583 return true;
2584}
2585
2586/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2587/// a splat of a single element.
2588static bool isSplatMask(SDNode *N) {
2589 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2590
2591 // This is a splat operation if each element of the permute is the same, and
2592 // if the value doesn't reference the second vector.
2593 unsigned NumElems = N->getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002594 SDValue ElementBase;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002595 unsigned i = 0;
2596 for (; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002597 SDValue Elt = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002598 if (isa<ConstantSDNode>(Elt)) {
2599 ElementBase = Elt;
2600 break;
2601 }
2602 }
2603
Gabor Greif1c80d112008-08-28 21:40:38 +00002604 if (!ElementBase.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002605 return false;
2606
2607 for (; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002608 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002609 if (Arg.getOpcode() == ISD::UNDEF) continue;
2610 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2611 if (Arg != ElementBase) return false;
2612 }
2613
2614 // Make sure it is a splat of the first vector operand.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002615 return cast<ConstantSDNode>(ElementBase)->getZExtValue() < NumElems;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002616}
2617
Mon P Wang532c9632008-12-23 04:03:27 +00002618/// getSplatMaskEltNo - Given a splat mask, return the index to the element
2619/// we want to splat.
2620static SDValue getSplatMaskEltNo(SDNode *N) {
2621 assert(isSplatMask(N) && "Not a splat mask");
2622 unsigned NumElems = N->getNumOperands();
2623 SDValue ElementBase;
2624 unsigned i = 0;
2625 for (; i != NumElems; ++i) {
2626 SDValue Elt = N->getOperand(i);
2627 if (isa<ConstantSDNode>(Elt))
2628 return Elt;
2629 }
2630 assert(0 && " No splat value found!");
2631 return SDValue();
2632}
2633
2634
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002635/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2636/// a splat of a single element and it's a 2 or 4 element mask.
2637bool X86::isSplatMask(SDNode *N) {
2638 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2639
2640 // We can only splat 64-bit, and 32-bit quantities with a single instruction.
2641 if (N->getNumOperands() != 4 && N->getNumOperands() != 2)
2642 return false;
2643 return ::isSplatMask(N);
2644}
2645
2646/// isSplatLoMask - Return true if the specified VECTOR_SHUFFLE operand
2647/// specifies a splat of zero element.
2648bool X86::isSplatLoMask(SDNode *N) {
2649 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2650
2651 for (unsigned i = 0, e = N->getNumOperands(); i < e; ++i)
2652 if (!isUndefOrEqual(N->getOperand(i), 0))
2653 return false;
2654 return true;
2655}
2656
Evan Chenga2497eb2008-09-25 20:50:48 +00002657/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2658/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
2659bool X86::isMOVDDUPMask(SDNode *N) {
2660 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2661
2662 unsigned e = N->getNumOperands() / 2;
2663 for (unsigned i = 0; i < e; ++i)
2664 if (!isUndefOrEqual(N->getOperand(i), i))
2665 return false;
2666 for (unsigned i = 0; i < e; ++i)
2667 if (!isUndefOrEqual(N->getOperand(e+i), i))
2668 return false;
2669 return true;
2670}
2671
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002672/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
2673/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUF* and SHUFP*
2674/// instructions.
2675unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
2676 unsigned NumOperands = N->getNumOperands();
2677 unsigned Shift = (NumOperands == 4) ? 2 : 1;
2678 unsigned Mask = 0;
2679 for (unsigned i = 0; i < NumOperands; ++i) {
2680 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002681 SDValue Arg = N->getOperand(NumOperands-i-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002682 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002683 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002684 if (Val >= NumOperands) Val -= NumOperands;
2685 Mask |= Val;
2686 if (i != NumOperands - 1)
2687 Mask <<= Shift;
2688 }
2689
2690 return Mask;
2691}
2692
2693/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
2694/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFHW
2695/// instructions.
2696unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
2697 unsigned Mask = 0;
2698 // 8 nodes, but we only care about the last 4.
2699 for (unsigned i = 7; i >= 4; --i) {
2700 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002701 SDValue Arg = N->getOperand(i);
Mon P Wang56d91642009-02-04 01:16:59 +00002702 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002703 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Mon P Wang56d91642009-02-04 01:16:59 +00002704 Mask |= (Val - 4);
2705 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002706 if (i != 4)
2707 Mask <<= 2;
2708 }
2709
2710 return Mask;
2711}
2712
2713/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
2714/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFLW
2715/// instructions.
2716unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
2717 unsigned Mask = 0;
2718 // 8 nodes, but we only care about the first 4.
2719 for (int i = 3; i >= 0; --i) {
2720 unsigned Val = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002721 SDValue Arg = N->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002722 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002723 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002724 Mask |= Val;
2725 if (i != 0)
2726 Mask <<= 2;
2727 }
2728
2729 return Mask;
2730}
2731
Chris Lattnere6aa3862007-11-25 00:24:49 +00002732/// CommuteVectorShuffle - Swap vector_shuffle operands as well as
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002733/// values in ther permute mask.
Dan Gohman8181bd12008-07-27 21:46:04 +00002734static SDValue CommuteVectorShuffle(SDValue Op, SDValue &V1,
2735 SDValue &V2, SDValue &Mask,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002736 SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00002737 MVT VT = Op.getValueType();
2738 MVT MaskVT = Mask.getValueType();
2739 MVT EltVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002740 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002741 SmallVector<SDValue, 8> MaskVec;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00002742 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002743
2744 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002745 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002746 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00002747 MaskVec.push_back(DAG.getUNDEF(EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002748 continue;
2749 }
2750 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002751 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002752 if (Val < NumElems)
2753 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2754 else
2755 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2756 }
2757
2758 std::swap(V1, V2);
Evan Cheng907a2d22009-02-25 22:49:59 +00002759 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], NumElems);
Dale Johannesence0805b2009-02-03 19:33:06 +00002760 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002761}
2762
Evan Chenga6769df2007-12-07 21:30:01 +00002763/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
2764/// the two vector operands have swapped position.
Evan Chengfca29242007-12-07 08:07:39 +00002765static
Dale Johannesence0805b2009-02-03 19:33:06 +00002766SDValue CommuteVectorShuffleMask(SDValue Mask, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002767 MVT MaskVT = Mask.getValueType();
2768 MVT EltVT = MaskVT.getVectorElementType();
Evan Chengfca29242007-12-07 08:07:39 +00002769 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00002770 SmallVector<SDValue, 8> MaskVec;
Evan Chengfca29242007-12-07 08:07:39 +00002771 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002772 SDValue Arg = Mask.getOperand(i);
Evan Chengfca29242007-12-07 08:07:39 +00002773 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00002774 MaskVec.push_back(DAG.getUNDEF(EltVT));
Evan Chengfca29242007-12-07 08:07:39 +00002775 continue;
2776 }
2777 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002778 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengfca29242007-12-07 08:07:39 +00002779 if (Val < NumElems)
2780 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2781 else
2782 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2783 }
Evan Cheng907a2d22009-02-25 22:49:59 +00002784 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], NumElems);
Evan Chengfca29242007-12-07 08:07:39 +00002785}
2786
2787
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002788/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
2789/// match movhlps. The lower half elements should come from upper half of
2790/// V1 (and in order), and the upper half elements should come from the upper
2791/// half of V2 (and in order).
2792static bool ShouldXformToMOVHLPS(SDNode *Mask) {
2793 unsigned NumElems = Mask->getNumOperands();
2794 if (NumElems != 4)
2795 return false;
2796 for (unsigned i = 0, e = 2; i != e; ++i)
2797 if (!isUndefOrEqual(Mask->getOperand(i), i+2))
2798 return false;
2799 for (unsigned i = 2; i != 4; ++i)
2800 if (!isUndefOrEqual(Mask->getOperand(i), i+4))
2801 return false;
2802 return true;
2803}
2804
2805/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng40ee6e52008-05-08 00:57:18 +00002806/// is promoted to a vector. It also returns the LoadSDNode by reference if
2807/// required.
2808static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Chenga2497eb2008-09-25 20:50:48 +00002809 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
2810 return false;
2811 N = N->getOperand(0).getNode();
2812 if (!ISD::isNON_EXTLoad(N))
2813 return false;
2814 if (LD)
2815 *LD = cast<LoadSDNode>(N);
2816 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002817}
2818
2819/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
2820/// match movlp{s|d}. The lower half elements should come from lower half of
2821/// V1 (and in order), and the upper half elements should come from the upper
2822/// half of V2 (and in order). And since V1 will become the source of the
2823/// MOVLP, it must be either a vector load or a scalar load to vector.
2824static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2, SDNode *Mask) {
2825 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
2826 return false;
2827 // Is V2 is a vector load, don't do this transformation. We will try to use
2828 // load folding shufps op.
2829 if (ISD::isNON_EXTLoad(V2))
2830 return false;
2831
2832 unsigned NumElems = Mask->getNumOperands();
2833 if (NumElems != 2 && NumElems != 4)
2834 return false;
2835 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
2836 if (!isUndefOrEqual(Mask->getOperand(i), i))
2837 return false;
2838 for (unsigned i = NumElems/2; i != NumElems; ++i)
2839 if (!isUndefOrEqual(Mask->getOperand(i), i+NumElems))
2840 return false;
2841 return true;
2842}
2843
2844/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
2845/// all the same.
2846static bool isSplatVector(SDNode *N) {
2847 if (N->getOpcode() != ISD::BUILD_VECTOR)
2848 return false;
2849
Dan Gohman8181bd12008-07-27 21:46:04 +00002850 SDValue SplatValue = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002851 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
2852 if (N->getOperand(i) != SplatValue)
2853 return false;
2854 return true;
2855}
2856
2857/// isUndefShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2858/// to an undef.
2859static bool isUndefShuffle(SDNode *N) {
2860 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2861 return false;
2862
Dan Gohman8181bd12008-07-27 21:46:04 +00002863 SDValue V1 = N->getOperand(0);
2864 SDValue V2 = N->getOperand(1);
2865 SDValue Mask = N->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002866 unsigned NumElems = Mask.getNumOperands();
2867 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002868 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002869 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002870 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002871 if (Val < NumElems && V1.getOpcode() != ISD::UNDEF)
2872 return false;
2873 else if (Val >= NumElems && V2.getOpcode() != ISD::UNDEF)
2874 return false;
2875 }
2876 }
2877 return true;
2878}
2879
2880/// isZeroNode - Returns true if Elt is a constant zero or a floating point
2881/// constant +0.0.
Dan Gohman8181bd12008-07-27 21:46:04 +00002882static inline bool isZeroNode(SDValue Elt) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002883 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002884 cast<ConstantSDNode>(Elt)->getZExtValue() == 0) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002885 (isa<ConstantFPSDNode>(Elt) &&
Dale Johannesendf8a8312007-08-31 04:03:46 +00002886 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002887}
2888
2889/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2890/// to an zero vector.
2891static bool isZeroShuffle(SDNode *N) {
2892 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2893 return false;
2894
Dan Gohman8181bd12008-07-27 21:46:04 +00002895 SDValue V1 = N->getOperand(0);
2896 SDValue V2 = N->getOperand(1);
2897 SDValue Mask = N->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002898 unsigned NumElems = Mask.getNumOperands();
2899 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002900 SDValue Arg = Mask.getOperand(i);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002901 if (Arg.getOpcode() == ISD::UNDEF)
2902 continue;
Scott Michel91099d62009-02-17 22:15:04 +00002903
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002904 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Chris Lattnere6aa3862007-11-25 00:24:49 +00002905 if (Idx < NumElems) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002906 unsigned Opc = V1.getNode()->getOpcode();
2907 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002908 continue;
2909 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greif1c80d112008-08-28 21:40:38 +00002910 !isZeroNode(V1.getNode()->getOperand(Idx)))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002911 return false;
2912 } else if (Idx >= NumElems) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002913 unsigned Opc = V2.getNode()->getOpcode();
2914 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002915 continue;
2916 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greif1c80d112008-08-28 21:40:38 +00002917 !isZeroNode(V2.getNode()->getOperand(Idx - NumElems)))
Chris Lattnere6aa3862007-11-25 00:24:49 +00002918 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002919 }
2920 }
2921 return true;
2922}
2923
2924/// getZeroVector - Returns a vector of specified type with all zero elements.
2925///
Dale Johannesence0805b2009-02-03 19:33:06 +00002926static SDValue getZeroVector(MVT VT, bool HasSSE2, SelectionDAG &DAG,
2927 DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002928 assert(VT.isVector() && "Expected a vector type");
Scott Michel91099d62009-02-17 22:15:04 +00002929
Chris Lattnere6aa3862007-11-25 00:24:49 +00002930 // Always build zero vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2931 // type. This ensures they get CSE'd.
Dan Gohman8181bd12008-07-27 21:46:04 +00002932 SDValue Vec;
Duncan Sands92c43912008-06-06 12:08:01 +00002933 if (VT.getSizeInBits() == 64) { // MMX
Dan Gohman8181bd12008-07-27 21:46:04 +00002934 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00002935 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002936 } else if (HasSSE2) { // SSE2
Dan Gohman8181bd12008-07-27 21:46:04 +00002937 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00002938 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002939 } else { // SSE1
Dan Gohman8181bd12008-07-27 21:46:04 +00002940 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Evan Cheng907a2d22009-02-25 22:49:59 +00002941 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00002942 }
Dale Johannesence0805b2009-02-03 19:33:06 +00002943 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002944}
2945
Chris Lattnere6aa3862007-11-25 00:24:49 +00002946/// getOnesVector - Returns a vector of specified type with all bits set.
2947///
Dale Johannesence0805b2009-02-03 19:33:06 +00002948static SDValue getOnesVector(MVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002949 assert(VT.isVector() && "Expected a vector type");
Scott Michel91099d62009-02-17 22:15:04 +00002950
Chris Lattnere6aa3862007-11-25 00:24:49 +00002951 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2952 // type. This ensures they get CSE'd.
Dan Gohman8181bd12008-07-27 21:46:04 +00002953 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
2954 SDValue Vec;
Duncan Sands92c43912008-06-06 12:08:01 +00002955 if (VT.getSizeInBits() == 64) // MMX
Evan Cheng907a2d22009-02-25 22:49:59 +00002956 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002957 else // SSE
Evan Cheng907a2d22009-02-25 22:49:59 +00002958 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dale Johannesence0805b2009-02-03 19:33:06 +00002959 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Chris Lattnere6aa3862007-11-25 00:24:49 +00002960}
2961
2962
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002963/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
2964/// that point to V2 points to its first element.
Dan Gohman8181bd12008-07-27 21:46:04 +00002965static SDValue NormalizeMask(SDValue Mask, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002966 assert(Mask.getOpcode() == ISD::BUILD_VECTOR);
2967
2968 bool Changed = false;
Dan Gohman8181bd12008-07-27 21:46:04 +00002969 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002970 unsigned NumElems = Mask.getNumOperands();
2971 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002972 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002973 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002974 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002975 if (Val > NumElems) {
2976 Arg = DAG.getConstant(NumElems, Arg.getValueType());
2977 Changed = true;
2978 }
2979 }
2980 MaskVec.push_back(Arg);
2981 }
2982
2983 if (Changed)
Evan Cheng907a2d22009-02-25 22:49:59 +00002984 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getDebugLoc(),
2985 Mask.getValueType(),
2986 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002987 return Mask;
2988}
2989
2990/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
2991/// operation of specified width.
Dale Johannesence0805b2009-02-03 19:33:06 +00002992static SDValue getMOVLMask(unsigned NumElems, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00002993 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2994 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002995
Dan Gohman8181bd12008-07-27 21:46:04 +00002996 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002997 MaskVec.push_back(DAG.getConstant(NumElems, BaseVT));
2998 for (unsigned i = 1; i != NumElems; ++i)
2999 MaskVec.push_back(DAG.getConstant(i, BaseVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00003000 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3001 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003002}
3003
3004/// getUnpacklMask - Returns a vector_shuffle mask for an unpackl operation
3005/// of specified width.
Scott Michel91099d62009-02-17 22:15:04 +00003006static SDValue getUnpacklMask(unsigned NumElems, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003007 DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003008 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3009 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003010 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003011 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
3012 MaskVec.push_back(DAG.getConstant(i, BaseVT));
3013 MaskVec.push_back(DAG.getConstant(i + NumElems, BaseVT));
3014 }
Evan Cheng907a2d22009-02-25 22:49:59 +00003015 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3016 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003017}
3018
3019/// getUnpackhMask - Returns a vector_shuffle mask for an unpackh operation
3020/// of specified width.
Dale Johannesence0805b2009-02-03 19:33:06 +00003021static SDValue getUnpackhMask(unsigned NumElems, SelectionDAG &DAG,
3022 DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003023 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3024 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003025 unsigned Half = NumElems/2;
Dan Gohman8181bd12008-07-27 21:46:04 +00003026 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003027 for (unsigned i = 0; i != Half; ++i) {
3028 MaskVec.push_back(DAG.getConstant(i + Half, BaseVT));
3029 MaskVec.push_back(DAG.getConstant(i + NumElems + Half, BaseVT));
3030 }
Evan Cheng907a2d22009-02-25 22:49:59 +00003031 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3032 &MaskVec[0], MaskVec.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003033}
3034
Chris Lattner2d91b962008-03-09 01:05:04 +00003035/// getSwapEltZeroMask - Returns a vector_shuffle mask for a shuffle that swaps
3036/// element #0 of a vector with the specified index, leaving the rest of the
3037/// elements in place.
Dan Gohman8181bd12008-07-27 21:46:04 +00003038static SDValue getSwapEltZeroMask(unsigned NumElems, unsigned DestElt,
Dale Johannesence0805b2009-02-03 19:33:06 +00003039 SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003040 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3041 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003042 SmallVector<SDValue, 8> MaskVec;
Chris Lattner2d91b962008-03-09 01:05:04 +00003043 // Element #0 of the result gets the elt we are replacing.
3044 MaskVec.push_back(DAG.getConstant(DestElt, BaseVT));
3045 for (unsigned i = 1; i != NumElems; ++i)
3046 MaskVec.push_back(DAG.getConstant(i == DestElt ? 0 : i, BaseVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00003047 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3048 &MaskVec[0], MaskVec.size());
Chris Lattner2d91b962008-03-09 01:05:04 +00003049}
3050
Evan Chengbf8b2c52008-04-05 00:30:36 +00003051/// PromoteSplat - Promote a splat of v4f32, v8i16 or v16i8 to v4i32.
Dan Gohman8181bd12008-07-27 21:46:04 +00003052static SDValue PromoteSplat(SDValue Op, SelectionDAG &DAG, bool HasSSE2) {
Duncan Sands92c43912008-06-06 12:08:01 +00003053 MVT PVT = HasSSE2 ? MVT::v4i32 : MVT::v4f32;
3054 MVT VT = Op.getValueType();
Evan Chengbf8b2c52008-04-05 00:30:36 +00003055 if (PVT == VT)
3056 return Op;
Dan Gohman8181bd12008-07-27 21:46:04 +00003057 SDValue V1 = Op.getOperand(0);
3058 SDValue Mask = Op.getOperand(2);
Mon P Wang532c9632008-12-23 04:03:27 +00003059 unsigned MaskNumElems = Mask.getNumOperands();
3060 unsigned NumElems = MaskNumElems;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003061 DebugLoc dl = Op.getDebugLoc();
Evan Chengbf8b2c52008-04-05 00:30:36 +00003062 // Special handling of v4f32 -> v4i32.
3063 if (VT != MVT::v4f32) {
Mon P Wang532c9632008-12-23 04:03:27 +00003064 // Find which element we want to splat.
3065 SDNode* EltNoNode = getSplatMaskEltNo(Mask.getNode()).getNode();
3066 unsigned EltNo = cast<ConstantSDNode>(EltNoNode)->getZExtValue();
3067 // unpack elements to the correct location
Evan Chengbf8b2c52008-04-05 00:30:36 +00003068 while (NumElems > 4) {
Mon P Wang532c9632008-12-23 04:03:27 +00003069 if (EltNo < NumElems/2) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003070 Mask = getUnpacklMask(MaskNumElems, DAG, dl);
Mon P Wang532c9632008-12-23 04:03:27 +00003071 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00003072 Mask = getUnpackhMask(MaskNumElems, DAG, dl);
Mon P Wang532c9632008-12-23 04:03:27 +00003073 EltNo -= NumElems/2;
3074 }
Dale Johannesence0805b2009-02-03 19:33:06 +00003075 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V1, Mask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00003076 NumElems >>= 1;
3077 }
Mon P Wang532c9632008-12-23 04:03:27 +00003078 SDValue Cst = DAG.getConstant(EltNo, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00003079 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003080 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003081
Dale Johannesence0805b2009-02-03 19:33:06 +00003082 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
3083 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, PVT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003084 DAG.getUNDEF(PVT), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00003085 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Shuffle);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003086}
3087
Evan Chenga2497eb2008-09-25 20:50:48 +00003088/// isVectorLoad - Returns true if the node is a vector load, a scalar
3089/// load that's promoted to vector, or a load bitcasted.
3090static bool isVectorLoad(SDValue Op) {
3091 assert(Op.getValueType().isVector() && "Expected a vector type");
3092 if (Op.getOpcode() == ISD::SCALAR_TO_VECTOR ||
3093 Op.getOpcode() == ISD::BIT_CONVERT) {
3094 return isa<LoadSDNode>(Op.getOperand(0));
3095 }
3096 return isa<LoadSDNode>(Op);
3097}
3098
3099
3100/// CanonicalizeMovddup - Cannonicalize movddup shuffle to v2f64.
3101///
3102static SDValue CanonicalizeMovddup(SDValue Op, SDValue V1, SDValue Mask,
3103 SelectionDAG &DAG, bool HasSSE3) {
3104 // If we have sse3 and shuffle has more than one use or input is a load, then
3105 // use movddup. Otherwise, use movlhps.
3106 bool UseMovddup = HasSSE3 && (!Op.hasOneUse() || isVectorLoad(V1));
3107 MVT PVT = UseMovddup ? MVT::v2f64 : MVT::v4f32;
3108 MVT VT = Op.getValueType();
3109 if (VT == PVT)
3110 return Op;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003111 DebugLoc dl = Op.getDebugLoc();
Evan Chenga2497eb2008-09-25 20:50:48 +00003112 unsigned NumElems = PVT.getVectorNumElements();
3113 if (NumElems == 2) {
3114 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00003115 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Chenga2497eb2008-09-25 20:50:48 +00003116 } else {
3117 assert(NumElems == 4);
3118 SDValue Cst0 = DAG.getTargetConstant(0, MVT::i32);
3119 SDValue Cst1 = DAG.getTargetConstant(1, MVT::i32);
Evan Cheng907a2d22009-02-25 22:49:59 +00003120 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
3121 Cst0, Cst1, Cst0, Cst1);
Evan Chenga2497eb2008-09-25 20:50:48 +00003122 }
3123
Dale Johannesence0805b2009-02-03 19:33:06 +00003124 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
3125 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, PVT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003126 DAG.getUNDEF(PVT), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00003127 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Shuffle);
Evan Chenga2497eb2008-09-25 20:50:48 +00003128}
3129
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003130/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattnere6aa3862007-11-25 00:24:49 +00003131/// vector of zero or undef vector. This produces a shuffle where the low
3132/// element of V2 is swizzled into the zero/undef vector, landing at element
3133/// 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 +00003134static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Cheng8c590372008-05-15 08:39:06 +00003135 bool isZero, bool HasSSE2,
3136 SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003137 DebugLoc dl = V2.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00003138 MVT VT = V2.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003139 SDValue V1 = isZero
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003140 ? getZeroVector(VT, HasSSE2, DAG, dl) : DAG.getUNDEF(VT);
Duncan Sands92c43912008-06-06 12:08:01 +00003141 unsigned NumElems = V2.getValueType().getVectorNumElements();
3142 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3143 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003144 SmallVector<SDValue, 16> MaskVec;
Chris Lattnere6aa3862007-11-25 00:24:49 +00003145 for (unsigned i = 0; i != NumElems; ++i)
3146 if (i == Idx) // If this is the insertion idx, put the low elt of V2 here.
3147 MaskVec.push_back(DAG.getConstant(NumElems, EVT));
3148 else
3149 MaskVec.push_back(DAG.getConstant(i, EVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00003150 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3151 &MaskVec[0], MaskVec.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00003152 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003153}
3154
Evan Chengdea99362008-05-29 08:22:04 +00003155/// getNumOfConsecutiveZeros - Return the number of elements in a result of
3156/// a shuffle that is zero.
3157static
Dan Gohman8181bd12008-07-27 21:46:04 +00003158unsigned getNumOfConsecutiveZeros(SDValue Op, SDValue Mask,
Evan Chengdea99362008-05-29 08:22:04 +00003159 unsigned NumElems, bool Low,
3160 SelectionDAG &DAG) {
3161 unsigned NumZeros = 0;
3162 for (unsigned i = 0; i < NumElems; ++i) {
Evan Cheng57db53b2008-06-25 20:52:59 +00003163 unsigned Index = Low ? i : NumElems-i-1;
Dan Gohman8181bd12008-07-27 21:46:04 +00003164 SDValue Idx = Mask.getOperand(Index);
Evan Chengdea99362008-05-29 08:22:04 +00003165 if (Idx.getOpcode() == ISD::UNDEF) {
3166 ++NumZeros;
3167 continue;
3168 }
Gabor Greif1c80d112008-08-28 21:40:38 +00003169 SDValue Elt = DAG.getShuffleScalarElt(Op.getNode(), Index);
3170 if (Elt.getNode() && isZeroNode(Elt))
Evan Chengdea99362008-05-29 08:22:04 +00003171 ++NumZeros;
3172 else
3173 break;
3174 }
3175 return NumZeros;
3176}
3177
3178/// isVectorShift - Returns true if the shuffle can be implemented as a
3179/// logical left or right shift of a vector.
Dan Gohman8181bd12008-07-27 21:46:04 +00003180static bool isVectorShift(SDValue Op, SDValue Mask, SelectionDAG &DAG,
3181 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Evan Chengdea99362008-05-29 08:22:04 +00003182 unsigned NumElems = Mask.getNumOperands();
3183
3184 isLeft = true;
3185 unsigned NumZeros= getNumOfConsecutiveZeros(Op, Mask, NumElems, true, DAG);
3186 if (!NumZeros) {
3187 isLeft = false;
3188 NumZeros = getNumOfConsecutiveZeros(Op, Mask, NumElems, false, DAG);
3189 if (!NumZeros)
3190 return false;
3191 }
3192
3193 bool SeenV1 = false;
3194 bool SeenV2 = false;
3195 for (unsigned i = NumZeros; i < NumElems; ++i) {
3196 unsigned Val = isLeft ? (i - NumZeros) : i;
Dan Gohman8181bd12008-07-27 21:46:04 +00003197 SDValue Idx = Mask.getOperand(isLeft ? i : (i - NumZeros));
Evan Chengdea99362008-05-29 08:22:04 +00003198 if (Idx.getOpcode() == ISD::UNDEF)
3199 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003200 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Chengdea99362008-05-29 08:22:04 +00003201 if (Index < NumElems)
3202 SeenV1 = true;
3203 else {
3204 Index -= NumElems;
3205 SeenV2 = true;
3206 }
3207 if (Index != Val)
3208 return false;
3209 }
3210 if (SeenV1 && SeenV2)
3211 return false;
3212
3213 ShVal = SeenV1 ? Op.getOperand(0) : Op.getOperand(1);
3214 ShAmt = NumZeros;
3215 return true;
3216}
3217
3218
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003219/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3220///
Dan Gohman8181bd12008-07-27 21:46:04 +00003221static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003222 unsigned NumNonZero, unsigned NumZero,
3223 SelectionDAG &DAG, TargetLowering &TLI) {
3224 if (NumNonZero > 8)
Dan Gohman8181bd12008-07-27 21:46:04 +00003225 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003226
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003227 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00003228 SDValue V(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003229 bool First = true;
3230 for (unsigned i = 0; i < 16; ++i) {
3231 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3232 if (ThisIsNonZero && First) {
3233 if (NumZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003234 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003235 else
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003236 V = DAG.getUNDEF(MVT::v8i16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003237 First = false;
3238 }
3239
3240 if ((i & 1) != 0) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003241 SDValue ThisElt(0, 0), LastElt(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003242 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3243 if (LastIsNonZero) {
Scott Michel91099d62009-02-17 22:15:04 +00003244 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00003245 MVT::i16, Op.getOperand(i-1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003246 }
3247 if (ThisIsNonZero) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003248 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3249 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003250 ThisElt, DAG.getConstant(8, MVT::i8));
3251 if (LastIsNonZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003252 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003253 } else
3254 ThisElt = LastElt;
3255
Gabor Greif1c80d112008-08-28 21:40:38 +00003256 if (ThisElt.getNode())
Dale Johannesence0805b2009-02-03 19:33:06 +00003257 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner5872a362008-01-17 07:00:52 +00003258 DAG.getIntPtrConstant(i/2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003259 }
3260 }
3261
Dale Johannesence0805b2009-02-03 19:33:06 +00003262 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003263}
3264
3265/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
3266///
Dan Gohman8181bd12008-07-27 21:46:04 +00003267static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003268 unsigned NumNonZero, unsigned NumZero,
3269 SelectionDAG &DAG, TargetLowering &TLI) {
3270 if (NumNonZero > 4)
Dan Gohman8181bd12008-07-27 21:46:04 +00003271 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003272
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003273 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00003274 SDValue V(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003275 bool First = true;
3276 for (unsigned i = 0; i < 8; ++i) {
3277 bool isNonZero = (NonZeros & (1 << i)) != 0;
3278 if (isNonZero) {
3279 if (First) {
3280 if (NumZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003281 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003282 else
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003283 V = DAG.getUNDEF(MVT::v8i16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003284 First = false;
3285 }
Scott Michel91099d62009-02-17 22:15:04 +00003286 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00003287 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner5872a362008-01-17 07:00:52 +00003288 DAG.getIntPtrConstant(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003289 }
3290 }
3291
3292 return V;
3293}
3294
Evan Chengdea99362008-05-29 08:22:04 +00003295/// getVShift - Return a vector logical shift node.
3296///
Dan Gohman8181bd12008-07-27 21:46:04 +00003297static SDValue getVShift(bool isLeft, MVT VT, SDValue SrcOp,
Evan Chengdea99362008-05-29 08:22:04 +00003298 unsigned NumBits, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003299 const TargetLowering &TLI, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003300 bool isMMX = VT.getSizeInBits() == 64;
3301 MVT ShVT = isMMX ? MVT::v1i64 : MVT::v2i64;
Evan Chengdea99362008-05-29 08:22:04 +00003302 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Dale Johannesence0805b2009-02-03 19:33:06 +00003303 SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp);
3304 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3305 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif825aa892008-08-28 23:19:51 +00003306 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengdea99362008-05-29 08:22:04 +00003307}
3308
Dan Gohman8181bd12008-07-27 21:46:04 +00003309SDValue
3310X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003311 DebugLoc dl = Op.getDebugLoc();
Chris Lattnere6aa3862007-11-25 00:24:49 +00003312 // All zero's are handled with pxor, all one's are handled with pcmpeqd.
Gabor Greif825aa892008-08-28 23:19:51 +00003313 if (ISD::isBuildVectorAllZeros(Op.getNode())
3314 || ISD::isBuildVectorAllOnes(Op.getNode())) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003315 // Canonicalize this to either <4 x i32> or <2 x i32> (SSE vs MMX) to
3316 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
3317 // eliminated on x86-32 hosts.
3318 if (Op.getValueType() == MVT::v4i32 || Op.getValueType() == MVT::v2i32)
3319 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003320
Gabor Greif1c80d112008-08-28 21:40:38 +00003321 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00003322 return getOnesVector(Op.getValueType(), DAG, dl);
3323 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattnere6aa3862007-11-25 00:24:49 +00003324 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003325
Duncan Sands92c43912008-06-06 12:08:01 +00003326 MVT VT = Op.getValueType();
3327 MVT EVT = VT.getVectorElementType();
3328 unsigned EVTBits = EVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003329
3330 unsigned NumElems = Op.getNumOperands();
3331 unsigned NumZero = 0;
3332 unsigned NumNonZero = 0;
3333 unsigned NonZeros = 0;
Chris Lattner92bdcb52008-03-08 22:48:29 +00003334 bool IsAllConstants = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00003335 SmallSet<SDValue, 8> Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003336 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003337 SDValue Elt = Op.getOperand(i);
Evan Chengc1073492007-12-12 06:45:40 +00003338 if (Elt.getOpcode() == ISD::UNDEF)
3339 continue;
3340 Values.insert(Elt);
3341 if (Elt.getOpcode() != ISD::Constant &&
3342 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattner92bdcb52008-03-08 22:48:29 +00003343 IsAllConstants = false;
Evan Chengc1073492007-12-12 06:45:40 +00003344 if (isZeroNode(Elt))
3345 NumZero++;
3346 else {
3347 NonZeros |= (1 << i);
3348 NumNonZero++;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003349 }
3350 }
3351
3352 if (NumNonZero == 0) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003353 // All undef vector. Return an UNDEF. All zero vectors were handled above.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003354 return DAG.getUNDEF(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003355 }
3356
Chris Lattner66a4dda2008-03-09 05:42:06 +00003357 // Special case for single non-zero, non-undef, element.
Evan Chengc1073492007-12-12 06:45:40 +00003358 if (NumNonZero == 1 && NumElems <= 4) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003359 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman8181bd12008-07-27 21:46:04 +00003360 SDValue Item = Op.getOperand(Idx);
Scott Michel91099d62009-02-17 22:15:04 +00003361
Chris Lattner2d91b962008-03-09 01:05:04 +00003362 // If this is an insertion of an i64 value on x86-32, and if the top bits of
3363 // the value are obviously zero, truncate the value to i32 and do the
3364 // insertion that way. Only do this if the value is non-constant or if the
3365 // value is a constant being inserted into element 0. It is cheaper to do
3366 // a constant pool load than it is to do a movd + shuffle.
3367 if (EVT == MVT::i64 && !Subtarget->is64Bit() &&
3368 (!IsAllConstants || Idx == 0)) {
3369 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
3370 // Handle MMX and SSE both.
Duncan Sands92c43912008-06-06 12:08:01 +00003371 MVT VecVT = VT == MVT::v2i64 ? MVT::v4i32 : MVT::v2i32;
3372 unsigned VecElts = VT == MVT::v2i64 ? 4 : 2;
Scott Michel91099d62009-02-17 22:15:04 +00003373
Chris Lattner2d91b962008-03-09 01:05:04 +00003374 // Truncate the value (which may itself be a constant) to i32, and
3375 // convert it to a vector with movd (S2V+shuffle to zero extend).
Dale Johannesence0805b2009-02-03 19:33:06 +00003376 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
3377 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Cheng8c590372008-05-15 08:39:06 +00003378 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3379 Subtarget->hasSSE2(), DAG);
Scott Michel91099d62009-02-17 22:15:04 +00003380
Chris Lattner2d91b962008-03-09 01:05:04 +00003381 // Now we have our 32-bit value zero extended in the low element of
3382 // a vector. If Idx != 0, swizzle it into place.
3383 if (Idx != 0) {
Scott Michel91099d62009-02-17 22:15:04 +00003384 SDValue Ops[] = {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003385 Item, DAG.getUNDEF(Item.getValueType()),
Dale Johannesence0805b2009-02-03 19:33:06 +00003386 getSwapEltZeroMask(VecElts, Idx, DAG, dl)
Chris Lattner2d91b962008-03-09 01:05:04 +00003387 };
Dale Johannesence0805b2009-02-03 19:33:06 +00003388 Item = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VecVT, Ops, 3);
Chris Lattner2d91b962008-03-09 01:05:04 +00003389 }
Dale Johannesence0805b2009-02-03 19:33:06 +00003390 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item);
Chris Lattner2d91b962008-03-09 01:05:04 +00003391 }
3392 }
Scott Michel91099d62009-02-17 22:15:04 +00003393
Chris Lattnerac914892008-03-08 22:59:52 +00003394 // If we have a constant or non-constant insertion into the low element of
3395 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
3396 // the rest of the elements. This will be matched as movd/movq/movss/movsd
3397 // depending on what the source datatype is. Because we can only get here
3398 // when NumElems <= 4, this only needs to handle i32/f32/i64/f64.
3399 if (Idx == 0 &&
3400 // Don't do this for i64 values on x86-32.
3401 (EVT != MVT::i64 || Subtarget->is64Bit())) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003402 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003403 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Evan Cheng8c590372008-05-15 08:39:06 +00003404 return getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3405 Subtarget->hasSSE2(), DAG);
Chris Lattner92bdcb52008-03-08 22:48:29 +00003406 }
Evan Chengdea99362008-05-29 08:22:04 +00003407
3408 // Is it a vector logical left shift?
3409 if (NumElems == 2 && Idx == 1 &&
3410 isZeroNode(Op.getOperand(0)) && !isZeroNode(Op.getOperand(1))) {
Duncan Sands92c43912008-06-06 12:08:01 +00003411 unsigned NumBits = VT.getSizeInBits();
Evan Chengdea99362008-05-29 08:22:04 +00003412 return getVShift(true, VT,
Scott Michel91099d62009-02-17 22:15:04 +00003413 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00003414 VT, Op.getOperand(1)),
Dale Johannesence0805b2009-02-03 19:33:06 +00003415 NumBits/2, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00003416 }
Scott Michel91099d62009-02-17 22:15:04 +00003417
Chris Lattner92bdcb52008-03-08 22:48:29 +00003418 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman8181bd12008-07-27 21:46:04 +00003419 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003420
Chris Lattnerac914892008-03-08 22:59:52 +00003421 // Otherwise, if this is a vector with i32 or f32 elements, and the element
3422 // is a non-constant being inserted into an element other than the low one,
3423 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
3424 // movd/movss) to move this into the low element, then shuffle it into
3425 // place.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003426 if (EVTBits == 32) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003427 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michel91099d62009-02-17 22:15:04 +00003428
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003429 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Cheng8c590372008-05-15 08:39:06 +00003430 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3431 Subtarget->hasSSE2(), DAG);
Duncan Sands92c43912008-06-06 12:08:01 +00003432 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3433 MVT MaskEVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003434 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003435 for (unsigned i = 0; i < NumElems; i++)
3436 MaskVec.push_back(DAG.getConstant((i == Idx) ? 0 : 1, MaskEVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00003437 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3438 &MaskVec[0], MaskVec.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00003439 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, Item,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003440 DAG.getUNDEF(VT), Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003441 }
3442 }
3443
Chris Lattner66a4dda2008-03-09 05:42:06 +00003444 // Splat is obviously ok. Let legalizer expand it to a shuffle.
3445 if (Values.size() == 1)
Dan Gohman8181bd12008-07-27 21:46:04 +00003446 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00003447
Dan Gohman21463242007-07-24 22:55:08 +00003448 // A vector full of immediates; various special cases are already
3449 // handled, so this is best done with a single constant-pool load.
Chris Lattner92bdcb52008-03-08 22:48:29 +00003450 if (IsAllConstants)
Dan Gohman8181bd12008-07-27 21:46:04 +00003451 return SDValue();
Dan Gohman21463242007-07-24 22:55:08 +00003452
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003453 // Let legalizer expand 2-wide build_vectors.
Evan Cheng40ee6e52008-05-08 00:57:18 +00003454 if (EVTBits == 64) {
3455 if (NumNonZero == 1) {
3456 // One half is zero or undef.
3457 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesence0805b2009-02-03 19:33:06 +00003458 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng40ee6e52008-05-08 00:57:18 +00003459 Op.getOperand(Idx));
Evan Cheng8c590372008-05-15 08:39:06 +00003460 return getShuffleVectorZeroOrUndef(V2, Idx, true,
3461 Subtarget->hasSSE2(), DAG);
Evan Cheng40ee6e52008-05-08 00:57:18 +00003462 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003463 return SDValue();
Evan Cheng40ee6e52008-05-08 00:57:18 +00003464 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003465
3466 // If element VT is < 32 bits, convert it to inserts into a zero vector.
3467 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003468 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003469 *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00003470 if (V.getNode()) return V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003471 }
3472
3473 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003474 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003475 *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00003476 if (V.getNode()) return V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003477 }
3478
3479 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman8181bd12008-07-27 21:46:04 +00003480 SmallVector<SDValue, 8> V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003481 V.resize(NumElems);
3482 if (NumElems == 4 && NumZero > 0) {
3483 for (unsigned i = 0; i < 4; ++i) {
3484 bool isZero = !(NonZeros & (1 << i));
3485 if (isZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003486 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003487 else
Dale Johannesence0805b2009-02-03 19:33:06 +00003488 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003489 }
3490
3491 for (unsigned i = 0; i < 2; ++i) {
3492 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
3493 default: break;
3494 case 0:
3495 V[i] = V[i*2]; // Must be a zero vector.
3496 break;
3497 case 1:
Dale Johannesence0805b2009-02-03 19:33:06 +00003498 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2+1], V[i*2],
3499 getMOVLMask(NumElems, DAG, dl));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003500 break;
3501 case 2:
Dale Johannesence0805b2009-02-03 19:33:06 +00003502 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2], V[i*2+1],
3503 getMOVLMask(NumElems, DAG, dl));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003504 break;
3505 case 3:
Dale Johannesence0805b2009-02-03 19:33:06 +00003506 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2], V[i*2+1],
3507 getUnpacklMask(NumElems, DAG, dl));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003508 break;
3509 }
3510 }
3511
Duncan Sands92c43912008-06-06 12:08:01 +00003512 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3513 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003514 SmallVector<SDValue, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003515 bool Reverse = (NonZeros & 0x3) == 2;
3516 for (unsigned i = 0; i < 2; ++i)
3517 if (Reverse)
3518 MaskVec.push_back(DAG.getConstant(1-i, EVT));
3519 else
3520 MaskVec.push_back(DAG.getConstant(i, EVT));
3521 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
3522 for (unsigned i = 0; i < 2; ++i)
3523 if (Reverse)
3524 MaskVec.push_back(DAG.getConstant(1-i+NumElems, EVT));
3525 else
3526 MaskVec.push_back(DAG.getConstant(i+NumElems, EVT));
Evan Cheng907a2d22009-02-25 22:49:59 +00003527 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3528 &MaskVec[0], MaskVec.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00003529 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[0], V[1], ShufMask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003530 }
3531
3532 if (Values.size() > 2) {
3533 // Expand into a number of unpckl*.
3534 // e.g. for v4f32
3535 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
3536 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
3537 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Dale Johannesence0805b2009-02-03 19:33:06 +00003538 SDValue UnpckMask = getUnpacklMask(NumElems, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003539 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesence0805b2009-02-03 19:33:06 +00003540 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003541 NumElems >>= 1;
3542 while (NumElems != 0) {
3543 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesence0805b2009-02-03 19:33:06 +00003544 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i], V[i + NumElems],
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003545 UnpckMask);
3546 NumElems >>= 1;
3547 }
3548 return V[0];
3549 }
3550
Dan Gohman8181bd12008-07-27 21:46:04 +00003551 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003552}
3553
Nate Begeman2c87c422009-02-23 08:49:38 +00003554// v8i16 shuffles - Prefer shuffles in the following order:
3555// 1. [all] pshuflw, pshufhw, optional move
3556// 2. [ssse3] 1 x pshufb
3557// 3. [ssse3] 2 x pshufb + 1 x por
3558// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Evan Chengfca29242007-12-07 08:07:39 +00003559static
Dan Gohman8181bd12008-07-27 21:46:04 +00003560SDValue LowerVECTOR_SHUFFLEv8i16(SDValue V1, SDValue V2,
Bill Wendling2c7cd592008-08-21 22:35:37 +00003561 SDValue PermMask, SelectionDAG &DAG,
Nate Begeman2c87c422009-02-23 08:49:38 +00003562 X86TargetLowering &TLI, DebugLoc dl) {
Gabor Greif1c80d112008-08-28 21:40:38 +00003563 SmallVector<SDValue, 8> MaskElts(PermMask.getNode()->op_begin(),
3564 PermMask.getNode()->op_end());
Nate Begeman2c87c422009-02-23 08:49:38 +00003565 SmallVector<int, 8> MaskVals;
Evan Cheng75184a92007-12-11 01:46:18 +00003566
Nate Begeman2c87c422009-02-23 08:49:38 +00003567 // Determine if more than 1 of the words in each of the low and high quadwords
3568 // of the result come from the same quadword of one of the two inputs. Undef
3569 // mask values count as coming from any quadword, for better codegen.
3570 SmallVector<unsigned, 4> LoQuad(4);
3571 SmallVector<unsigned, 4> HiQuad(4);
3572 BitVector InputQuads(4);
3573 for (unsigned i = 0; i < 8; ++i) {
3574 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Dan Gohman8181bd12008-07-27 21:46:04 +00003575 SDValue Elt = MaskElts[i];
Nate Begeman2c87c422009-02-23 08:49:38 +00003576 int EltIdx = Elt.getOpcode() == ISD::UNDEF ? -1 :
3577 cast<ConstantSDNode>(Elt)->getZExtValue();
3578 MaskVals.push_back(EltIdx);
3579 if (EltIdx < 0) {
3580 ++Quad[0];
3581 ++Quad[1];
3582 ++Quad[2];
3583 ++Quad[3];
Evan Cheng75184a92007-12-11 01:46:18 +00003584 continue;
Nate Begeman2c87c422009-02-23 08:49:38 +00003585 }
3586 ++Quad[EltIdx / 4];
3587 InputQuads.set(EltIdx / 4);
Evan Cheng75184a92007-12-11 01:46:18 +00003588 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003589
Nate Begeman2c87c422009-02-23 08:49:38 +00003590 int BestLoQuad = -1;
Evan Cheng75184a92007-12-11 01:46:18 +00003591 unsigned MaxQuad = 1;
3592 for (unsigned i = 0; i < 4; ++i) {
Nate Begeman2c87c422009-02-23 08:49:38 +00003593 if (LoQuad[i] > MaxQuad) {
3594 BestLoQuad = i;
3595 MaxQuad = LoQuad[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003596 }
Evan Chengfca29242007-12-07 08:07:39 +00003597 }
3598
Nate Begeman2c87c422009-02-23 08:49:38 +00003599 int BestHiQuad = -1;
Evan Cheng75184a92007-12-11 01:46:18 +00003600 MaxQuad = 1;
3601 for (unsigned i = 0; i < 4; ++i) {
Nate Begeman2c87c422009-02-23 08:49:38 +00003602 if (HiQuad[i] > MaxQuad) {
3603 BestHiQuad = i;
3604 MaxQuad = HiQuad[i];
Evan Cheng75184a92007-12-11 01:46:18 +00003605 }
3606 }
3607
Nate Begeman2c87c422009-02-23 08:49:38 +00003608 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
3609 // of the two input vectors, shuffle them into one input vector so only a
3610 // single pshufb instruction is necessary. If There are more than 2 input
3611 // quads, disable the next transformation since it does not help SSSE3.
3612 bool V1Used = InputQuads[0] || InputQuads[1];
3613 bool V2Used = InputQuads[2] || InputQuads[3];
3614 if (TLI.getSubtarget()->hasSSSE3()) {
3615 if (InputQuads.count() == 2 && V1Used && V2Used) {
3616 BestLoQuad = InputQuads.find_first();
3617 BestHiQuad = InputQuads.find_next(BestLoQuad);
3618 }
3619 if (InputQuads.count() > 2) {
3620 BestLoQuad = -1;
3621 BestHiQuad = -1;
3622 }
3623 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003624
Nate Begeman2c87c422009-02-23 08:49:38 +00003625 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
3626 // the shuffle mask. If a quad is scored as -1, that means that it contains
3627 // words from all 4 input quadwords.
3628 SDValue NewV;
3629 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
3630 SmallVector<SDValue,8> MaskV;
3631 MaskV.push_back(DAG.getConstant(BestLoQuad < 0 ? 0 : BestLoQuad, MVT::i64));
3632 MaskV.push_back(DAG.getConstant(BestHiQuad < 0 ? 1 : BestHiQuad, MVT::i64));
Evan Cheng907a2d22009-02-25 22:49:59 +00003633 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64, &MaskV[0], 2);
Nate Begeman2c87c422009-02-23 08:49:38 +00003634
Dale Johannesence0805b2009-02-03 19:33:06 +00003635 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2i64,
Nate Begeman2c87c422009-02-23 08:49:38 +00003636 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1),
3637 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00003638 NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV);
Evan Cheng75184a92007-12-11 01:46:18 +00003639
Nate Begeman2c87c422009-02-23 08:49:38 +00003640 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
3641 // source words for the shuffle, to aid later transformations.
3642 bool AllWordsInNewV = true;
Mon P Wangb1db1202009-03-11 06:35:11 +00003643 bool InOrder[2] = { true, true };
Evan Cheng75184a92007-12-11 01:46:18 +00003644 for (unsigned i = 0; i != 8; ++i) {
Nate Begeman2c87c422009-02-23 08:49:38 +00003645 int idx = MaskVals[i];
Mon P Wangb1db1202009-03-11 06:35:11 +00003646 if (idx != (int)i)
3647 InOrder[i/4] = false;
Nate Begeman2c87c422009-02-23 08:49:38 +00003648 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng75184a92007-12-11 01:46:18 +00003649 continue;
Nate Begeman2c87c422009-02-23 08:49:38 +00003650 AllWordsInNewV = false;
3651 break;
Evan Cheng75184a92007-12-11 01:46:18 +00003652 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00003653
Nate Begeman2c87c422009-02-23 08:49:38 +00003654 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
3655 if (AllWordsInNewV) {
3656 for (int i = 0; i != 8; ++i) {
3657 int idx = MaskVals[i];
3658 if (idx < 0)
Evan Cheng75184a92007-12-11 01:46:18 +00003659 continue;
Nate Begeman2c87c422009-02-23 08:49:38 +00003660 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
3661 if ((idx != i) && idx < 4)
3662 pshufhw = false;
3663 if ((idx != i) && idx > 3)
3664 pshuflw = false;
Evan Cheng75184a92007-12-11 01:46:18 +00003665 }
Nate Begeman2c87c422009-02-23 08:49:38 +00003666 V1 = NewV;
3667 V2Used = false;
3668 BestLoQuad = 0;
3669 BestHiQuad = 1;
Evan Chengfca29242007-12-07 08:07:39 +00003670 }
Evan Cheng75184a92007-12-11 01:46:18 +00003671
Nate Begeman2c87c422009-02-23 08:49:38 +00003672 // If we've eliminated the use of V2, and the new mask is a pshuflw or
3673 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wangb1db1202009-03-11 06:35:11 +00003674 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Nate Begeman2c87c422009-02-23 08:49:38 +00003675 MaskV.clear();
3676 for (unsigned i = 0; i != 8; ++i)
3677 MaskV.push_back((MaskVals[i] < 0) ? DAG.getUNDEF(MVT::i16)
3678 : DAG.getConstant(MaskVals[i],
3679 MVT::i16));
3680 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, NewV,
3681 DAG.getUNDEF(MVT::v8i16),
Evan Cheng907a2d22009-02-25 22:49:59 +00003682 DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i16,
3683 &MaskV[0], 8));
Evan Cheng75184a92007-12-11 01:46:18 +00003684 }
Evan Cheng75184a92007-12-11 01:46:18 +00003685 }
Nate Begeman2c87c422009-02-23 08:49:38 +00003686
3687 // If we have SSSE3, and all words of the result are from 1 input vector,
3688 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
3689 // is present, fall back to case 4.
3690 if (TLI.getSubtarget()->hasSSSE3()) {
3691 SmallVector<SDValue,16> pshufbMask;
3692
3693 // If we have elements from both input vectors, set the high bit of the
3694 // shuffle mask element to zero out elements that come from V2 in the V1
3695 // mask, and elements that come from V1 in the V2 mask, so that the two
3696 // results can be OR'd together.
3697 bool TwoInputs = V1Used && V2Used;
3698 for (unsigned i = 0; i != 8; ++i) {
3699 int EltIdx = MaskVals[i] * 2;
3700 if (TwoInputs && (EltIdx >= 16)) {
3701 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3702 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3703 continue;
3704 }
3705 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
3706 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
3707 }
3708 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V1);
3709 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00003710 DAG.getNode(ISD::BUILD_VECTOR, dl,
3711 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003712 if (!TwoInputs)
3713 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3714
3715 // Calculate the shuffle mask for the second input, shuffle it, and
3716 // OR it with the first shuffled input.
3717 pshufbMask.clear();
3718 for (unsigned i = 0; i != 8; ++i) {
3719 int EltIdx = MaskVals[i] * 2;
3720 if (EltIdx < 16) {
3721 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3722 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3723 continue;
3724 }
3725 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
3726 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
3727 }
3728 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V2);
3729 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00003730 DAG.getNode(ISD::BUILD_VECTOR, dl,
3731 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003732 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
3733 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3734 }
3735
3736 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
3737 // and update MaskVals with new element order.
3738 BitVector InOrder(8);
3739 if (BestLoQuad >= 0) {
3740 SmallVector<SDValue, 8> MaskV;
3741 for (int i = 0; i != 4; ++i) {
3742 int idx = MaskVals[i];
3743 if (idx < 0) {
3744 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3745 InOrder.set(i);
3746 } else if ((idx / 4) == BestLoQuad) {
3747 MaskV.push_back(DAG.getConstant(idx & 3, MVT::i16));
3748 InOrder.set(i);
3749 } else {
3750 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3751 }
3752 }
3753 for (unsigned i = 4; i != 8; ++i)
3754 MaskV.push_back(DAG.getConstant(i, MVT::i16));
3755 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, NewV,
3756 DAG.getUNDEF(MVT::v8i16),
Evan Cheng907a2d22009-02-25 22:49:59 +00003757 DAG.getNode(ISD::BUILD_VECTOR, dl,
3758 MVT::v8i16, &MaskV[0], 8));
Nate Begeman2c87c422009-02-23 08:49:38 +00003759 }
3760
3761 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
3762 // and update MaskVals with the new element order.
3763 if (BestHiQuad >= 0) {
3764 SmallVector<SDValue, 8> MaskV;
3765 for (unsigned i = 0; i != 4; ++i)
3766 MaskV.push_back(DAG.getConstant(i, MVT::i16));
3767 for (unsigned i = 4; i != 8; ++i) {
3768 int idx = MaskVals[i];
3769 if (idx < 0) {
3770 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3771 InOrder.set(i);
3772 } else if ((idx / 4) == BestHiQuad) {
3773 MaskV.push_back(DAG.getConstant((idx & 3) + 4, MVT::i16));
3774 InOrder.set(i);
3775 } else {
3776 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3777 }
3778 }
3779 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, NewV,
3780 DAG.getUNDEF(MVT::v8i16),
Evan Cheng907a2d22009-02-25 22:49:59 +00003781 DAG.getNode(ISD::BUILD_VECTOR, dl,
3782 MVT::v8i16, &MaskV[0], 8));
Nate Begeman2c87c422009-02-23 08:49:38 +00003783 }
3784
3785 // In case BestHi & BestLo were both -1, which means each quadword has a word
3786 // from each of the four input quadwords, calculate the InOrder bitvector now
3787 // before falling through to the insert/extract cleanup.
3788 if (BestLoQuad == -1 && BestHiQuad == -1) {
3789 NewV = V1;
3790 for (int i = 0; i != 8; ++i)
3791 if (MaskVals[i] < 0 || MaskVals[i] == i)
3792 InOrder.set(i);
3793 }
3794
3795 // The other elements are put in the right place using pextrw and pinsrw.
3796 for (unsigned i = 0; i != 8; ++i) {
3797 if (InOrder[i])
3798 continue;
3799 int EltIdx = MaskVals[i];
3800 if (EltIdx < 0)
3801 continue;
3802 SDValue ExtOp = (EltIdx < 8)
3803 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
3804 DAG.getIntPtrConstant(EltIdx))
3805 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
3806 DAG.getIntPtrConstant(EltIdx - 8));
3807 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
3808 DAG.getIntPtrConstant(i));
3809 }
3810 return NewV;
3811}
3812
3813// v16i8 shuffles - Prefer shuffles in the following order:
3814// 1. [ssse3] 1 x pshufb
3815// 2. [ssse3] 2 x pshufb + 1 x por
3816// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
3817static
3818SDValue LowerVECTOR_SHUFFLEv16i8(SDValue V1, SDValue V2,
3819 SDValue PermMask, SelectionDAG &DAG,
3820 X86TargetLowering &TLI, DebugLoc dl) {
3821 SmallVector<SDValue, 16> MaskElts(PermMask.getNode()->op_begin(),
3822 PermMask.getNode()->op_end());
3823 SmallVector<int, 16> MaskVals;
3824
3825 // If we have SSSE3, case 1 is generated when all result bytes come from
3826 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
3827 // present, fall back to case 3.
3828 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
3829 bool V1Only = true;
3830 bool V2Only = true;
3831 for (unsigned i = 0; i < 16; ++i) {
3832 SDValue Elt = MaskElts[i];
3833 int EltIdx = Elt.getOpcode() == ISD::UNDEF ? -1 :
3834 cast<ConstantSDNode>(Elt)->getZExtValue();
3835 MaskVals.push_back(EltIdx);
3836 if (EltIdx < 0)
3837 continue;
3838 if (EltIdx < 16)
3839 V2Only = false;
3840 else
3841 V1Only = false;
3842 }
3843
3844 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
3845 if (TLI.getSubtarget()->hasSSSE3()) {
3846 SmallVector<SDValue,16> pshufbMask;
3847
3848 // If all result elements are from one input vector, then only translate
3849 // undef mask values to 0x80 (zero out result) in the pshufb mask.
3850 //
3851 // Otherwise, we have elements from both input vectors, and must zero out
3852 // elements that come from V2 in the first mask, and V1 in the second mask
3853 // so that we can OR them together.
3854 bool TwoInputs = !(V1Only || V2Only);
3855 for (unsigned i = 0; i != 16; ++i) {
3856 int EltIdx = MaskVals[i];
3857 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
3858 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3859 continue;
3860 }
3861 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
3862 }
3863 // If all the elements are from V2, assign it to V1 and return after
3864 // building the first pshufb.
3865 if (V2Only)
3866 V1 = V2;
3867 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00003868 DAG.getNode(ISD::BUILD_VECTOR, dl,
3869 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003870 if (!TwoInputs)
3871 return V1;
3872
3873 // Calculate the shuffle mask for the second input, shuffle it, and
3874 // OR it with the first shuffled input.
3875 pshufbMask.clear();
3876 for (unsigned i = 0; i != 16; ++i) {
3877 int EltIdx = MaskVals[i];
3878 if (EltIdx < 16) {
3879 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3880 continue;
3881 }
3882 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
3883 }
3884 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00003885 DAG.getNode(ISD::BUILD_VECTOR, dl,
3886 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003887 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
3888 }
3889
3890 // No SSSE3 - Calculate in place words and then fix all out of place words
3891 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
3892 // the 16 different words that comprise the two doublequadword input vectors.
3893 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3894 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V2);
3895 SDValue NewV = V2Only ? V2 : V1;
3896 for (int i = 0; i != 8; ++i) {
3897 int Elt0 = MaskVals[i*2];
3898 int Elt1 = MaskVals[i*2+1];
3899
3900 // This word of the result is all undef, skip it.
3901 if (Elt0 < 0 && Elt1 < 0)
3902 continue;
3903
3904 // This word of the result is already in the correct place, skip it.
3905 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
3906 continue;
3907 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
3908 continue;
3909
3910 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
3911 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
3912 SDValue InsElt;
Mon P Wangd0cec7a2009-03-11 18:47:57 +00003913
3914 // If Elt0 and Elt1 are defined, are consecutive, and can be load
3915 // using a single extract together, load it and store it.
3916 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
3917 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
3918 DAG.getIntPtrConstant(Elt1 / 2));
3919 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
3920 DAG.getIntPtrConstant(i));
3921 continue;
3922 }
3923
Nate Begeman2c87c422009-02-23 08:49:38 +00003924 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wangd0cec7a2009-03-11 18:47:57 +00003925 // source byte is not also odd, shift the extracted word left 8 bits
3926 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begeman2c87c422009-02-23 08:49:38 +00003927 if (Elt1 >= 0) {
3928 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
3929 DAG.getIntPtrConstant(Elt1 / 2));
3930 if ((Elt1 & 1) == 0)
3931 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
3932 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wangd0cec7a2009-03-11 18:47:57 +00003933 else if (Elt0 >= 0)
3934 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
3935 DAG.getConstant(0xFF00, MVT::i16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003936 }
3937 // If Elt0 is defined, extract it from the appropriate source. If the
3938 // source byte is not also even, shift the extracted word right 8 bits. If
3939 // Elt1 was also defined, OR the extracted values together before
3940 // inserting them in the result.
3941 if (Elt0 >= 0) {
3942 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
3943 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
3944 if ((Elt0 & 1) != 0)
3945 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
3946 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wangd0cec7a2009-03-11 18:47:57 +00003947 else if (Elt1 >= 0)
3948 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
3949 DAG.getConstant(0x00FF, MVT::i16));
Nate Begeman2c87c422009-02-23 08:49:38 +00003950 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
3951 : InsElt0;
3952 }
3953 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
3954 DAG.getIntPtrConstant(i));
3955 }
3956 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, NewV);
Evan Cheng75184a92007-12-11 01:46:18 +00003957}
3958
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003959/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
3960/// ones, or rewriting v4i32 / v2f32 as 2 wide ones if possible. This can be
3961/// done when every pair / quad of shuffle mask elements point to elements in
3962/// the right sequence. e.g.
Evan Cheng75184a92007-12-11 01:46:18 +00003963/// vector_shuffle <>, <>, < 3, 4, | 10, 11, | 0, 1, | 14, 15>
3964static
Dan Gohman8181bd12008-07-27 21:46:04 +00003965SDValue RewriteAsNarrowerShuffle(SDValue V1, SDValue V2,
Duncan Sands92c43912008-06-06 12:08:01 +00003966 MVT VT,
Dan Gohman8181bd12008-07-27 21:46:04 +00003967 SDValue PermMask, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003968 TargetLowering &TLI, DebugLoc dl) {
Evan Cheng75184a92007-12-11 01:46:18 +00003969 unsigned NumElems = PermMask.getNumOperands();
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003970 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Duncan Sands92c43912008-06-06 12:08:01 +00003971 MVT MaskVT = MVT::getIntVectorWithNumElements(NewWidth);
Duncan Sandsd3ace282008-07-21 10:20:31 +00003972 MVT MaskEltVT = MaskVT.getVectorElementType();
Duncan Sands92c43912008-06-06 12:08:01 +00003973 MVT NewVT = MaskVT;
3974 switch (VT.getSimpleVT()) {
3975 default: assert(false && "Unexpected!");
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003976 case MVT::v4f32: NewVT = MVT::v2f64; break;
3977 case MVT::v4i32: NewVT = MVT::v2i64; break;
3978 case MVT::v8i16: NewVT = MVT::v4i32; break;
3979 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003980 }
3981
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00003982 if (NewWidth == 2) {
Duncan Sands92c43912008-06-06 12:08:01 +00003983 if (VT.isInteger())
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003984 NewVT = MVT::v2i64;
3985 else
3986 NewVT = MVT::v2f64;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00003987 }
Evan Cheng15e8f5a2007-12-15 03:00:47 +00003988 unsigned Scale = NumElems / NewWidth;
Dan Gohman8181bd12008-07-27 21:46:04 +00003989 SmallVector<SDValue, 8> MaskVec;
Evan Cheng75184a92007-12-11 01:46:18 +00003990 for (unsigned i = 0; i < NumElems; i += Scale) {
3991 unsigned StartIdx = ~0U;
3992 for (unsigned j = 0; j < Scale; ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003993 SDValue Elt = PermMask.getOperand(i+j);
Evan Cheng75184a92007-12-11 01:46:18 +00003994 if (Elt.getOpcode() == ISD::UNDEF)
3995 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00003996 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00003997 if (StartIdx == ~0U)
3998 StartIdx = EltIdx - (EltIdx % Scale);
3999 if (EltIdx != StartIdx + j)
Dan Gohman8181bd12008-07-27 21:46:04 +00004000 return SDValue();
Evan Cheng75184a92007-12-11 01:46:18 +00004001 }
4002 if (StartIdx == ~0U)
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004003 MaskVec.push_back(DAG.getUNDEF(MaskEltVT));
Evan Cheng75184a92007-12-11 01:46:18 +00004004 else
Duncan Sandsd3ace282008-07-21 10:20:31 +00004005 MaskVec.push_back(DAG.getConstant(StartIdx / Scale, MaskEltVT));
Evan Chengfca29242007-12-07 08:07:39 +00004006 }
4007
Dale Johannesence0805b2009-02-03 19:33:06 +00004008 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1);
4009 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2);
4010 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, NewVT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004011 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4012 &MaskVec[0], MaskVec.size()));
Evan Chengfca29242007-12-07 08:07:39 +00004013}
4014
Evan Chenge9b9c672008-05-09 21:53:03 +00004015/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng40ee6e52008-05-08 00:57:18 +00004016///
Dan Gohman8181bd12008-07-27 21:46:04 +00004017static SDValue getVZextMovL(MVT VT, MVT OpVT,
4018 SDValue SrcOp, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00004019 const X86Subtarget *Subtarget, DebugLoc dl) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00004020 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
4021 LoadSDNode *LD = NULL;
Gabor Greif1c80d112008-08-28 21:40:38 +00004022 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng40ee6e52008-05-08 00:57:18 +00004023 LD = dyn_cast<LoadSDNode>(SrcOp);
4024 if (!LD) {
4025 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
4026 // instead.
Duncan Sands92c43912008-06-06 12:08:01 +00004027 MVT EVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Evan Cheng40ee6e52008-05-08 00:57:18 +00004028 if ((EVT != MVT::i64 || Subtarget->is64Bit()) &&
4029 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4030 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
4031 SrcOp.getOperand(0).getOperand(0).getValueType() == EVT) {
4032 // PR2108
4033 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Dale Johannesence0805b2009-02-03 19:33:06 +00004034 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4035 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4036 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4037 OpVT,
Gabor Greif825aa892008-08-28 23:19:51 +00004038 SrcOp.getOperand(0)
4039 .getOperand(0))));
Evan Cheng40ee6e52008-05-08 00:57:18 +00004040 }
4041 }
4042 }
4043
Dale Johannesence0805b2009-02-03 19:33:06 +00004044 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4045 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Scott Michel91099d62009-02-17 22:15:04 +00004046 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00004047 OpVT, SrcOp)));
Evan Cheng40ee6e52008-05-08 00:57:18 +00004048}
4049
Evan Chengf50554e2008-07-22 21:13:36 +00004050/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4051/// shuffles.
Dan Gohman8181bd12008-07-27 21:46:04 +00004052static SDValue
4053LowerVECTOR_SHUFFLE_4wide(SDValue V1, SDValue V2,
Dale Johannesence0805b2009-02-03 19:33:06 +00004054 SDValue PermMask, MVT VT, SelectionDAG &DAG,
4055 DebugLoc dl) {
Evan Chengf50554e2008-07-22 21:13:36 +00004056 MVT MaskVT = PermMask.getValueType();
4057 MVT MaskEVT = MaskVT.getVectorElementType();
4058 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola4e3ff5a2008-08-28 18:32:53 +00004059 Locs.resize(4);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004060 SmallVector<SDValue, 8> Mask1(4, DAG.getUNDEF(MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00004061 unsigned NumHi = 0;
4062 unsigned NumLo = 0;
Evan Chengf50554e2008-07-22 21:13:36 +00004063 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004064 SDValue Elt = PermMask.getOperand(i);
Evan Chengf50554e2008-07-22 21:13:36 +00004065 if (Elt.getOpcode() == ISD::UNDEF) {
4066 Locs[i] = std::make_pair(-1, -1);
4067 } else {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004068 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohmance57fd92008-08-04 23:09:15 +00004069 assert(Val < 8 && "Invalid VECTOR_SHUFFLE index!");
Evan Chengf50554e2008-07-22 21:13:36 +00004070 if (Val < 4) {
4071 Locs[i] = std::make_pair(0, NumLo);
4072 Mask1[NumLo] = Elt;
4073 NumLo++;
4074 } else {
4075 Locs[i] = std::make_pair(1, NumHi);
4076 if (2+NumHi < 4)
4077 Mask1[2+NumHi] = Elt;
4078 NumHi++;
4079 }
4080 }
4081 }
Evan Cheng3cae0332008-07-23 00:22:17 +00004082
Evan Chengf50554e2008-07-22 21:13:36 +00004083 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng3cae0332008-07-23 00:22:17 +00004084 // If no more than two elements come from either vector. This can be
4085 // implemented with two shuffles. First shuffle gather the elements.
4086 // The second shuffle, which takes the first shuffle as both of its
4087 // vector operands, put the elements into the right order.
Dale Johannesence0805b2009-02-03 19:33:06 +00004088 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004089 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4090 &Mask1[0], Mask1.size()));
Evan Cheng3cae0332008-07-23 00:22:17 +00004091
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004092 SmallVector<SDValue, 8> Mask2(4, DAG.getUNDEF(MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00004093 for (unsigned i = 0; i != 4; ++i) {
4094 if (Locs[i].first == -1)
4095 continue;
4096 else {
4097 unsigned Idx = (i < 2) ? 0 : 4;
4098 Idx += Locs[i].first * 2 + Locs[i].second;
4099 Mask2[i] = DAG.getConstant(Idx, MaskEVT);
4100 }
4101 }
4102
Dale Johannesence0805b2009-02-03 19:33:06 +00004103 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00004104 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4105 &Mask2[0], Mask2.size()));
Evan Cheng3cae0332008-07-23 00:22:17 +00004106 } else if (NumLo == 3 || NumHi == 3) {
4107 // Otherwise, we must have three elements from one vector, call it X, and
4108 // one element from the other, call it Y. First, use a shufps to build an
4109 // intermediate vector with the one element from Y and the element from X
4110 // that will be in the same half in the final destination (the indexes don't
4111 // matter). Then, use a shufps to build the final vector, taking the half
4112 // containing the element from Y from the intermediate, and the other half
4113 // from X.
4114 if (NumHi == 3) {
4115 // Normalize it so the 3 elements come from V1.
Dale Johannesence0805b2009-02-03 19:33:06 +00004116 PermMask = CommuteVectorShuffleMask(PermMask, DAG, dl);
Evan Cheng3cae0332008-07-23 00:22:17 +00004117 std::swap(V1, V2);
4118 }
4119
4120 // Find the element from V2.
4121 unsigned HiIndex;
4122 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004123 SDValue Elt = PermMask.getOperand(HiIndex);
Evan Cheng3cae0332008-07-23 00:22:17 +00004124 if (Elt.getOpcode() == ISD::UNDEF)
4125 continue;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004126 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng3cae0332008-07-23 00:22:17 +00004127 if (Val >= 4)
4128 break;
4129 }
4130
4131 Mask1[0] = PermMask.getOperand(HiIndex);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004132 Mask1[1] = DAG.getUNDEF(MaskEVT);
Evan Cheng3cae0332008-07-23 00:22:17 +00004133 Mask1[2] = PermMask.getOperand(HiIndex^1);
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004134 Mask1[3] = DAG.getUNDEF(MaskEVT);
Dale Johannesence0805b2009-02-03 19:33:06 +00004135 V2 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004136 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &Mask1[0], 4));
Evan Cheng3cae0332008-07-23 00:22:17 +00004137
4138 if (HiIndex >= 2) {
4139 Mask1[0] = PermMask.getOperand(0);
4140 Mask1[1] = PermMask.getOperand(1);
4141 Mask1[2] = DAG.getConstant(HiIndex & 1 ? 6 : 4, MaskEVT);
4142 Mask1[3] = DAG.getConstant(HiIndex & 1 ? 4 : 6, MaskEVT);
Dale Johannesence0805b2009-02-03 19:33:06 +00004143 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004144 DAG.getNode(ISD::BUILD_VECTOR, dl,
4145 MaskVT, &Mask1[0], 4));
Evan Cheng3cae0332008-07-23 00:22:17 +00004146 } else {
4147 Mask1[0] = DAG.getConstant(HiIndex & 1 ? 2 : 0, MaskEVT);
4148 Mask1[1] = DAG.getConstant(HiIndex & 1 ? 0 : 2, MaskEVT);
4149 Mask1[2] = PermMask.getOperand(2);
4150 Mask1[3] = PermMask.getOperand(3);
4151 if (Mask1[2].getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004152 Mask1[2] =
4153 DAG.getConstant(cast<ConstantSDNode>(Mask1[2])->getZExtValue()+4,
4154 MaskEVT);
Evan Cheng3cae0332008-07-23 00:22:17 +00004155 if (Mask1[3].getOpcode() != ISD::UNDEF)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004156 Mask1[3] =
4157 DAG.getConstant(cast<ConstantSDNode>(Mask1[3])->getZExtValue()+4,
4158 MaskEVT);
Dale Johannesence0805b2009-02-03 19:33:06 +00004159 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V2, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00004160 DAG.getNode(ISD::BUILD_VECTOR, dl,
4161 MaskVT, &Mask1[0], 4));
Evan Cheng3cae0332008-07-23 00:22:17 +00004162 }
Evan Chengf50554e2008-07-22 21:13:36 +00004163 }
4164
4165 // Break it into (shuffle shuffle_hi, shuffle_lo).
4166 Locs.clear();
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004167 SmallVector<SDValue,8> LoMask(4, DAG.getUNDEF(MaskEVT));
4168 SmallVector<SDValue,8> HiMask(4, DAG.getUNDEF(MaskEVT));
Dan Gohman8181bd12008-07-27 21:46:04 +00004169 SmallVector<SDValue,8> *MaskPtr = &LoMask;
Evan Chengf50554e2008-07-22 21:13:36 +00004170 unsigned MaskIdx = 0;
4171 unsigned LoIdx = 0;
4172 unsigned HiIdx = 2;
4173 for (unsigned i = 0; i != 4; ++i) {
4174 if (i == 2) {
4175 MaskPtr = &HiMask;
4176 MaskIdx = 1;
4177 LoIdx = 0;
4178 HiIdx = 2;
4179 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004180 SDValue Elt = PermMask.getOperand(i);
Evan Chengf50554e2008-07-22 21:13:36 +00004181 if (Elt.getOpcode() == ISD::UNDEF) {
4182 Locs[i] = std::make_pair(-1, -1);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004183 } else if (cast<ConstantSDNode>(Elt)->getZExtValue() < 4) {
Evan Chengf50554e2008-07-22 21:13:36 +00004184 Locs[i] = std::make_pair(MaskIdx, LoIdx);
4185 (*MaskPtr)[LoIdx] = Elt;
4186 LoIdx++;
4187 } else {
4188 Locs[i] = std::make_pair(MaskIdx, HiIdx);
4189 (*MaskPtr)[HiIdx] = Elt;
4190 HiIdx++;
4191 }
4192 }
4193
Dale Johannesence0805b2009-02-03 19:33:06 +00004194 SDValue LoShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004195 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengf50554e2008-07-22 21:13:36 +00004196 &LoMask[0], LoMask.size()));
Dale Johannesence0805b2009-02-03 19:33:06 +00004197 SDValue HiShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004198 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengf50554e2008-07-22 21:13:36 +00004199 &HiMask[0], HiMask.size()));
Dan Gohman8181bd12008-07-27 21:46:04 +00004200 SmallVector<SDValue, 8> MaskOps;
Evan Chengf50554e2008-07-22 21:13:36 +00004201 for (unsigned i = 0; i != 4; ++i) {
4202 if (Locs[i].first == -1) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004203 MaskOps.push_back(DAG.getUNDEF(MaskEVT));
Evan Chengf50554e2008-07-22 21:13:36 +00004204 } else {
4205 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
4206 MaskOps.push_back(DAG.getConstant(Idx, MaskEVT));
4207 }
4208 }
Dale Johannesence0805b2009-02-03 19:33:06 +00004209 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, LoShuffle, HiShuffle,
Evan Cheng907a2d22009-02-25 22:49:59 +00004210 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4211 &MaskOps[0], MaskOps.size()));
Evan Chengf50554e2008-07-22 21:13:36 +00004212}
4213
Dan Gohman8181bd12008-07-27 21:46:04 +00004214SDValue
4215X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
4216 SDValue V1 = Op.getOperand(0);
4217 SDValue V2 = Op.getOperand(1);
4218 SDValue PermMask = Op.getOperand(2);
Duncan Sands92c43912008-06-06 12:08:01 +00004219 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004220 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004221 unsigned NumElems = PermMask.getNumOperands();
Duncan Sands92c43912008-06-06 12:08:01 +00004222 bool isMMX = VT.getSizeInBits() == 64;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004223 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
4224 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
4225 bool V1IsSplat = false;
4226 bool V2IsSplat = false;
4227
Nate Begeman2c87c422009-02-23 08:49:38 +00004228 // FIXME: Check for legal shuffle and return?
4229
Gabor Greif1c80d112008-08-28 21:40:38 +00004230 if (isUndefShuffle(Op.getNode()))
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004231 return DAG.getUNDEF(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004232
Gabor Greif1c80d112008-08-28 21:40:38 +00004233 if (isZeroShuffle(Op.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00004234 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004235
Gabor Greif1c80d112008-08-28 21:40:38 +00004236 if (isIdentityMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004237 return V1;
Gabor Greif1c80d112008-08-28 21:40:38 +00004238 else if (isIdentityMask(PermMask.getNode(), true))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004239 return V2;
4240
Evan Chengae6c9212008-09-25 23:35:16 +00004241 // Canonicalize movddup shuffles.
4242 if (V2IsUndef && Subtarget->hasSSE2() &&
Evan Chengbdd9d9f2008-10-06 21:13:08 +00004243 VT.getSizeInBits() == 128 &&
Evan Chengae6c9212008-09-25 23:35:16 +00004244 X86::isMOVDDUPMask(PermMask.getNode()))
4245 return CanonicalizeMovddup(Op, V1, PermMask, DAG, Subtarget->hasSSE3());
4246
Gabor Greif1c80d112008-08-28 21:40:38 +00004247 if (isSplatMask(PermMask.getNode())) {
Evan Chengbf8b2c52008-04-05 00:30:36 +00004248 if (isMMX || NumElems < 4) return Op;
4249 // Promote it to a v4{if}32 splat.
4250 return PromoteSplat(Op, DAG, Subtarget->hasSSE2());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004251 }
4252
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004253 // If the shuffle can be profitably rewritten as a narrower shuffle, then
4254 // do it!
4255 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004256 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask, DAG,
4257 *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004258 if (NewOp.getNode())
Scott Michel91099d62009-02-17 22:15:04 +00004259 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Dale Johannesence0805b2009-02-03 19:33:06 +00004260 LowerVECTOR_SHUFFLE(NewOp, DAG));
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004261 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
4262 // FIXME: Figure out a cleaner way to do this.
4263 // Try to make use of movq to zero out the top part.
Gabor Greif1c80d112008-08-28 21:40:38 +00004264 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004265 SDValue NewOp = RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Dale Johannesence0805b2009-02-03 19:33:06 +00004266 DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004267 if (NewOp.getNode()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004268 SDValue NewV1 = NewOp.getOperand(0);
4269 SDValue NewV2 = NewOp.getOperand(1);
4270 SDValue NewMask = NewOp.getOperand(2);
Gabor Greif1c80d112008-08-28 21:40:38 +00004271 if (isCommutedMOVL(NewMask.getNode(), true, false)) {
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004272 NewOp = CommuteVectorShuffle(NewOp, NewV1, NewV2, NewMask, DAG);
Dale Johannesence0805b2009-02-03 19:33:06 +00004273 return getVZextMovL(VT, NewOp.getValueType(), NewV2, DAG, Subtarget,
4274 dl);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004275 }
4276 }
Gabor Greif1c80d112008-08-28 21:40:38 +00004277 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004278 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Dale Johannesence0805b2009-02-03 19:33:06 +00004279 DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004280 if (NewOp.getNode() && X86::isMOVLMask(NewOp.getOperand(2).getNode()))
Evan Chenge9b9c672008-05-09 21:53:03 +00004281 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
Dale Johannesence0805b2009-02-03 19:33:06 +00004282 DAG, Subtarget, dl);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004283 }
4284 }
4285
Evan Chengdea99362008-05-29 08:22:04 +00004286 // Check if this can be converted into a logical shift.
4287 bool isLeft = false;
4288 unsigned ShAmt = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00004289 SDValue ShVal;
Evan Chengdea99362008-05-29 08:22:04 +00004290 bool isShift = isVectorShift(Op, PermMask, DAG, isLeft, ShVal, ShAmt);
4291 if (isShift && ShVal.hasOneUse()) {
Scott Michel91099d62009-02-17 22:15:04 +00004292 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengdea99362008-05-29 08:22:04 +00004293 // v_set0 + movlhps or movhlps, etc.
Duncan Sands92c43912008-06-06 12:08:01 +00004294 MVT EVT = VT.getVectorElementType();
4295 ShAmt *= EVT.getSizeInBits();
Dale Johannesence0805b2009-02-03 19:33:06 +00004296 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00004297 }
4298
Gabor Greif1c80d112008-08-28 21:40:38 +00004299 if (X86::isMOVLMask(PermMask.getNode())) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00004300 if (V1IsUndef)
4301 return V2;
Gabor Greif1c80d112008-08-28 21:40:38 +00004302 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00004303 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Nate Begeman6357f9d2008-07-25 19:05:58 +00004304 if (!isMMX)
4305 return Op;
Evan Cheng40ee6e52008-05-08 00:57:18 +00004306 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004307
Gabor Greif1c80d112008-08-28 21:40:38 +00004308 if (!isMMX && (X86::isMOVSHDUPMask(PermMask.getNode()) ||
4309 X86::isMOVSLDUPMask(PermMask.getNode()) ||
4310 X86::isMOVHLPSMask(PermMask.getNode()) ||
4311 X86::isMOVHPMask(PermMask.getNode()) ||
4312 X86::isMOVLPMask(PermMask.getNode())))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004313 return Op;
4314
Gabor Greif1c80d112008-08-28 21:40:38 +00004315 if (ShouldXformToMOVHLPS(PermMask.getNode()) ||
4316 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004317 return CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4318
Evan Chengdea99362008-05-29 08:22:04 +00004319 if (isShift) {
4320 // No better options. Use a vshl / vsrl.
Duncan Sands92c43912008-06-06 12:08:01 +00004321 MVT EVT = VT.getVectorElementType();
4322 ShAmt *= EVT.getSizeInBits();
Dale Johannesence0805b2009-02-03 19:33:06 +00004323 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00004324 }
4325
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004326 bool Commuted = false;
Chris Lattnere6aa3862007-11-25 00:24:49 +00004327 // FIXME: This should also accept a bitcast of a splat? Be careful, not
4328 // 1,1,1,1 -> v8i16 though.
Gabor Greif1c80d112008-08-28 21:40:38 +00004329 V1IsSplat = isSplatVector(V1.getNode());
4330 V2IsSplat = isSplatVector(V2.getNode());
Scott Michel91099d62009-02-17 22:15:04 +00004331
Chris Lattnere6aa3862007-11-25 00:24:49 +00004332 // Canonicalize the splat or undef, if present, to be on the RHS.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004333 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
4334 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4335 std::swap(V1IsSplat, V2IsSplat);
4336 std::swap(V1IsUndef, V2IsUndef);
4337 Commuted = true;
4338 }
4339
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004340 // FIXME: Figure out a cleaner way to do this.
Gabor Greif1c80d112008-08-28 21:40:38 +00004341 if (isCommutedMOVL(PermMask.getNode(), V2IsSplat, V2IsUndef)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004342 if (V2IsUndef) return V1;
4343 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4344 if (V2IsSplat) {
4345 // V2 is a splat, so the mask may be malformed. That is, it may point
4346 // to any V2 element. The instruction selectior won't like this. Get
4347 // a corrected mask and commute to form a proper MOVS{S|D}.
Dale Johannesence0805b2009-02-03 19:33:06 +00004348 SDValue NewMask = getMOVLMask(NumElems, DAG, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004349 if (NewMask.getNode() != PermMask.getNode())
Dale Johannesence0805b2009-02-03 19:33:06 +00004350 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004351 }
4352 return Op;
4353 }
4354
Gabor Greif1c80d112008-08-28 21:40:38 +00004355 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4356 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4357 X86::isUNPCKLMask(PermMask.getNode()) ||
4358 X86::isUNPCKHMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004359 return Op;
4360
4361 if (V2IsSplat) {
4362 // Normalize mask so all entries that point to V2 points to its first
4363 // element then try to match unpck{h|l} again. If match, return a
4364 // new vector_shuffle with the corrected mask.
Dan Gohman8181bd12008-07-27 21:46:04 +00004365 SDValue NewMask = NormalizeMask(PermMask, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004366 if (NewMask.getNode() != PermMask.getNode()) {
Mon P Wang56d91642009-02-04 01:16:59 +00004367 if (X86::isUNPCKLMask(NewMask.getNode(), true)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004368 SDValue NewMask = getUnpacklMask(NumElems, DAG, dl);
4369 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Mon P Wang56d91642009-02-04 01:16:59 +00004370 } else if (X86::isUNPCKHMask(NewMask.getNode(), true)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004371 SDValue NewMask = getUnpackhMask(NumElems, DAG, dl);
4372 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004373 }
4374 }
4375 }
4376
4377 // Normalize the node to match x86 shuffle ops if needed
Gabor Greif1c80d112008-08-28 21:40:38 +00004378 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004379 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4380
4381 if (Commuted) {
4382 // Commute is back and try unpck* again.
4383 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004384 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4385 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4386 X86::isUNPCKLMask(PermMask.getNode()) ||
4387 X86::isUNPCKHMask(PermMask.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004388 return Op;
4389 }
4390
Nate Begeman2c87c422009-02-23 08:49:38 +00004391 // FIXME: for mmx, bitcast v2i32 to v4i16 for shuffle.
Evan Chengbf8b2c52008-04-05 00:30:36 +00004392 // Try PSHUF* first, then SHUFP*.
4393 // MMX doesn't have PSHUFD but it does have PSHUFW. While it's theoretically
4394 // possible to shuffle a v2i32 using PSHUFW, that's not yet implemented.
Gabor Greif1c80d112008-08-28 21:40:38 +00004395 if (isMMX && NumElems == 4 && X86::isPSHUFDMask(PermMask.getNode())) {
Evan Chengbf8b2c52008-04-05 00:30:36 +00004396 if (V2.getOpcode() != ISD::UNDEF)
Dale Johannesence0805b2009-02-03 19:33:06 +00004397 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004398 DAG.getUNDEF(VT), PermMask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00004399 return Op;
4400 }
4401
4402 if (!isMMX) {
4403 if (Subtarget->hasSSE2() &&
Gabor Greif1c80d112008-08-28 21:40:38 +00004404 (X86::isPSHUFDMask(PermMask.getNode()) ||
4405 X86::isPSHUFHWMask(PermMask.getNode()) ||
4406 X86::isPSHUFLWMask(PermMask.getNode()))) {
Duncan Sands92c43912008-06-06 12:08:01 +00004407 MVT RVT = VT;
Evan Chengbf8b2c52008-04-05 00:30:36 +00004408 if (VT == MVT::v4f32) {
4409 RVT = MVT::v4i32;
Dale Johannesence0805b2009-02-03 19:33:06 +00004410 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, RVT,
4411 DAG.getNode(ISD::BIT_CONVERT, dl, RVT, V1),
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004412 DAG.getUNDEF(RVT), PermMask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00004413 } else if (V2.getOpcode() != ISD::UNDEF)
Dale Johannesence0805b2009-02-03 19:33:06 +00004414 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, RVT, V1,
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004415 DAG.getUNDEF(RVT), PermMask);
Evan Chengbf8b2c52008-04-05 00:30:36 +00004416 if (RVT != VT)
Dale Johannesence0805b2009-02-03 19:33:06 +00004417 Op = DAG.getNode(ISD::BIT_CONVERT, dl, VT, Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004418 return Op;
4419 }
4420
Evan Chengbf8b2c52008-04-05 00:30:36 +00004421 // Binary or unary shufps.
Gabor Greif1c80d112008-08-28 21:40:38 +00004422 if (X86::isSHUFPMask(PermMask.getNode()) ||
4423 (V2.getOpcode() == ISD::UNDEF && X86::isPSHUFDMask(PermMask.getNode())))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004424 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004425 }
4426
Evan Cheng75184a92007-12-11 01:46:18 +00004427 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
4428 if (VT == MVT::v8i16) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004429 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(V1, V2, PermMask, DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004430 if (NewOp.getNode())
Evan Cheng75184a92007-12-11 01:46:18 +00004431 return NewOp;
4432 }
4433
Nate Begeman2c87c422009-02-23 08:49:38 +00004434 if (VT == MVT::v16i8) {
4435 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(V1, V2, PermMask, DAG, *this, dl);
4436 if (NewOp.getNode())
4437 return NewOp;
4438 }
4439
Evan Chengf50554e2008-07-22 21:13:36 +00004440 // Handle all 4 wide cases with a number of shuffles except for MMX.
4441 if (NumElems == 4 && !isMMX)
Dale Johannesence0805b2009-02-03 19:33:06 +00004442 return LowerVECTOR_SHUFFLE_4wide(V1, V2, PermMask, VT, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004443
Dan Gohman8181bd12008-07-27 21:46:04 +00004444 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004445}
4446
Dan Gohman8181bd12008-07-27 21:46:04 +00004447SDValue
4448X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Nate Begemand77e59e2008-02-11 04:19:36 +00004449 SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004450 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004451 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00004452 if (VT.getSizeInBits() == 8) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004453 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begemand77e59e2008-02-11 04:19:36 +00004454 Op.getOperand(0), Op.getOperand(1));
Dale Johannesence0805b2009-02-03 19:33:06 +00004455 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begemand77e59e2008-02-11 04:19:36 +00004456 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004457 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands92c43912008-06-06 12:08:01 +00004458 } else if (VT.getSizeInBits() == 16) {
Evan Chengf9393b32009-01-02 05:29:08 +00004459 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
4460 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
4461 if (Idx == 0)
Dale Johannesence0805b2009-02-03 19:33:06 +00004462 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4463 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
4464 DAG.getNode(ISD::BIT_CONVERT, dl,
4465 MVT::v4i32,
Evan Chengf9393b32009-01-02 05:29:08 +00004466 Op.getOperand(0)),
4467 Op.getOperand(1)));
Dale Johannesence0805b2009-02-03 19:33:06 +00004468 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begemand77e59e2008-02-11 04:19:36 +00004469 Op.getOperand(0), Op.getOperand(1));
Dale Johannesence0805b2009-02-03 19:33:06 +00004470 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begemand77e59e2008-02-11 04:19:36 +00004471 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004472 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Evan Cheng6c249332008-03-24 21:52:23 +00004473 } else if (VT == MVT::f32) {
4474 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
4475 // the result back to FR32 register. It's only worth matching if the
Dan Gohman9fdd0142008-10-31 00:57:24 +00004476 // result has a single use which is a store or a bitcast to i32. And in
4477 // the case of a store, it's not worth it if the index is a constant 0,
4478 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng6c249332008-03-24 21:52:23 +00004479 if (!Op.hasOneUse())
Dan Gohman8181bd12008-07-27 21:46:04 +00004480 return SDValue();
Gabor Greif1c80d112008-08-28 21:40:38 +00004481 SDNode *User = *Op.getNode()->use_begin();
Dan Gohman9fdd0142008-10-31 00:57:24 +00004482 if ((User->getOpcode() != ISD::STORE ||
4483 (isa<ConstantSDNode>(Op.getOperand(1)) &&
4484 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman788db592008-04-16 02:32:24 +00004485 (User->getOpcode() != ISD::BIT_CONVERT ||
4486 User->getValueType(0) != MVT::i32))
Dan Gohman8181bd12008-07-27 21:46:04 +00004487 return SDValue();
Dale Johannesence0805b2009-02-03 19:33:06 +00004488 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michel91099d62009-02-17 22:15:04 +00004489 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32,
Dale Johannesence0805b2009-02-03 19:33:06 +00004490 Op.getOperand(0)),
4491 Op.getOperand(1));
4492 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract);
Mon P Wangac2a3c52009-01-15 21:10:20 +00004493 } else if (VT == MVT::i32) {
4494 // ExtractPS works with constant index.
4495 if (isa<ConstantSDNode>(Op.getOperand(1)))
4496 return Op;
Nate Begemand77e59e2008-02-11 04:19:36 +00004497 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004498 return SDValue();
Nate Begemand77e59e2008-02-11 04:19:36 +00004499}
4500
4501
Dan Gohman8181bd12008-07-27 21:46:04 +00004502SDValue
4503X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004504 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman8181bd12008-07-27 21:46:04 +00004505 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004506
Evan Cheng6c249332008-03-24 21:52:23 +00004507 if (Subtarget->hasSSE41()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004508 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004509 if (Res.getNode())
Evan Cheng6c249332008-03-24 21:52:23 +00004510 return Res;
4511 }
Nate Begemand77e59e2008-02-11 04:19:36 +00004512
Duncan Sands92c43912008-06-06 12:08:01 +00004513 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004514 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004515 // TODO: handle v16i8.
Duncan Sands92c43912008-06-06 12:08:01 +00004516 if (VT.getSizeInBits() == 16) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004517 SDValue Vec = Op.getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004518 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00004519 if (Idx == 0)
Dale Johannesence0805b2009-02-03 19:33:06 +00004520 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4521 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michel91099d62009-02-17 22:15:04 +00004522 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00004523 MVT::v4i32, Vec),
Evan Cheng75184a92007-12-11 01:46:18 +00004524 Op.getOperand(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004525 // Transform it so it match pextrw which produces a 32-bit result.
Duncan Sands92c43912008-06-06 12:08:01 +00004526 MVT EVT = (MVT::SimpleValueType)(VT.getSimpleVT()+1);
Dale Johannesence0805b2009-02-03 19:33:06 +00004527 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004528 Op.getOperand(0), Op.getOperand(1));
Dale Johannesence0805b2009-02-03 19:33:06 +00004529 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EVT, Extract,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004530 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004531 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands92c43912008-06-06 12:08:01 +00004532 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004533 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004534 if (Idx == 0)
4535 return Op;
4536 // SHUFPS the element to the lowest double word, then movss.
Duncan Sands92c43912008-06-06 12:08:01 +00004537 MVT MaskVT = MVT::getIntVectorWithNumElements(4);
Dan Gohman8181bd12008-07-27 21:46:04 +00004538 SmallVector<SDValue, 8> IdxVec;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004539 IdxVec.
Duncan Sands92c43912008-06-06 12:08:01 +00004540 push_back(DAG.getConstant(Idx, MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004541 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004542 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004543 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004544 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004545 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004546 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Evan Cheng907a2d22009-02-25 22:49:59 +00004547 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4548 &IdxVec[0], IdxVec.size());
Dan Gohman8181bd12008-07-27 21:46:04 +00004549 SDValue Vec = Op.getOperand(0);
Dale Johannesence0805b2009-02-03 19:33:06 +00004550 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Vec.getValueType(),
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004551 Vec, DAG.getUNDEF(Vec.getValueType()), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00004552 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00004553 DAG.getIntPtrConstant(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004554 } else if (VT.getSizeInBits() == 64) {
Nate Begemand77e59e2008-02-11 04:19:36 +00004555 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
4556 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
4557 // to match extract_elt for f64.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004558 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004559 if (Idx == 0)
4560 return Op;
4561
4562 // UNPCKHPD the element to the lowest double word, then movsd.
4563 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
4564 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Duncan Sandsd3ace282008-07-21 10:20:31 +00004565 MVT MaskVT = MVT::getIntVectorWithNumElements(2);
Dan Gohman8181bd12008-07-27 21:46:04 +00004566 SmallVector<SDValue, 8> IdxVec;
Duncan Sands92c43912008-06-06 12:08:01 +00004567 IdxVec.push_back(DAG.getConstant(1, MaskVT.getVectorElementType()));
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00004568 IdxVec.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004569 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Evan Cheng907a2d22009-02-25 22:49:59 +00004570 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4571 &IdxVec[0], IdxVec.size());
Dan Gohman8181bd12008-07-27 21:46:04 +00004572 SDValue Vec = Op.getOperand(0);
Dale Johannesence0805b2009-02-03 19:33:06 +00004573 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Vec.getValueType(),
Scott Michel91099d62009-02-17 22:15:04 +00004574 Vec, DAG.getUNDEF(Vec.getValueType()),
Dale Johannesence0805b2009-02-03 19:33:06 +00004575 Mask);
4576 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00004577 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004578 }
4579
Dan Gohman8181bd12008-07-27 21:46:04 +00004580 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004581}
4582
Dan Gohman8181bd12008-07-27 21:46:04 +00004583SDValue
4584X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG){
Duncan Sands92c43912008-06-06 12:08:01 +00004585 MVT VT = Op.getValueType();
4586 MVT EVT = VT.getVectorElementType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004587 DebugLoc dl = Op.getDebugLoc();
Nate Begemand77e59e2008-02-11 04:19:36 +00004588
Dan Gohman8181bd12008-07-27 21:46:04 +00004589 SDValue N0 = Op.getOperand(0);
4590 SDValue N1 = Op.getOperand(1);
4591 SDValue N2 = Op.getOperand(2);
Nate Begemand77e59e2008-02-11 04:19:36 +00004592
Dan Gohman5a7af042008-08-14 22:53:18 +00004593 if ((EVT.getSizeInBits() == 8 || EVT.getSizeInBits() == 16) &&
4594 isa<ConstantSDNode>(N2)) {
Duncan Sands92c43912008-06-06 12:08:01 +00004595 unsigned Opc = (EVT.getSizeInBits() == 8) ? X86ISD::PINSRB
Nate Begeman2c87c422009-02-23 08:49:38 +00004596 : X86ISD::PINSRW;
Nate Begemand77e59e2008-02-11 04:19:36 +00004597 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
4598 // argument.
4599 if (N1.getValueType() != MVT::i32)
Dale Johannesence0805b2009-02-03 19:33:06 +00004600 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Nate Begemand77e59e2008-02-11 04:19:36 +00004601 if (N2.getValueType() != MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004602 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesence0805b2009-02-03 19:33:06 +00004603 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohmanfd7369a2008-08-14 22:43:26 +00004604 } else if (EVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begemand77e59e2008-02-11 04:19:36 +00004605 // Bits [7:6] of the constant are the source select. This will always be
4606 // zero here. The DAG Combiner may combine an extract_elt index into these
4607 // bits. For example (insert (extract, 3), 2) could be matched by putting
4608 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michel91099d62009-02-17 22:15:04 +00004609 // Bits [5:4] of the constant are the destination select. This is the
Nate Begemand77e59e2008-02-11 04:19:36 +00004610 // value of the incoming immediate.
Scott Michel91099d62009-02-17 22:15:04 +00004611 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begemand77e59e2008-02-11 04:19:36 +00004612 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004613 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Dale Johannesence0805b2009-02-03 19:33:06 +00004614 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Mon P Wangac2a3c52009-01-15 21:10:20 +00004615 } else if (EVT == MVT::i32) {
4616 // InsertPS works with constant index.
4617 if (isa<ConstantSDNode>(N2))
4618 return Op;
Nate Begemand77e59e2008-02-11 04:19:36 +00004619 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004620 return SDValue();
Nate Begemand77e59e2008-02-11 04:19:36 +00004621}
4622
Dan Gohman8181bd12008-07-27 21:46:04 +00004623SDValue
4624X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004625 MVT VT = Op.getValueType();
4626 MVT EVT = VT.getVectorElementType();
Nate Begemand77e59e2008-02-11 04:19:36 +00004627
4628 if (Subtarget->hasSSE41())
4629 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
4630
Evan Chenge12a7eb2007-12-12 07:55:34 +00004631 if (EVT == MVT::i8)
Dan Gohman8181bd12008-07-27 21:46:04 +00004632 return SDValue();
Evan Chenge12a7eb2007-12-12 07:55:34 +00004633
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004634 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00004635 SDValue N0 = Op.getOperand(0);
4636 SDValue N1 = Op.getOperand(1);
4637 SDValue N2 = Op.getOperand(2);
Evan Chenge12a7eb2007-12-12 07:55:34 +00004638
Duncan Sands92c43912008-06-06 12:08:01 +00004639 if (EVT.getSizeInBits() == 16) {
Evan Chenge12a7eb2007-12-12 07:55:34 +00004640 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
4641 // as its second argument.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004642 if (N1.getValueType() != MVT::i32)
Dale Johannesence0805b2009-02-03 19:33:06 +00004643 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004644 if (N2.getValueType() != MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004645 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesence0805b2009-02-03 19:33:06 +00004646 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004647 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004648 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004649}
4650
Dan Gohman8181bd12008-07-27 21:46:04 +00004651SDValue
4652X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004653 DebugLoc dl = Op.getDebugLoc();
Evan Cheng759fe022008-07-22 18:39:19 +00004654 if (Op.getValueType() == MVT::v2f32)
Dale Johannesence0805b2009-02-03 19:33:06 +00004655 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f32,
4656 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i32,
4657 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32,
Evan Cheng759fe022008-07-22 18:39:19 +00004658 Op.getOperand(0))));
4659
Dale Johannesence0805b2009-02-03 19:33:06 +00004660 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004661 MVT VT = MVT::v2i32;
4662 switch (Op.getValueType().getSimpleVT()) {
Evan Chengd1045a62008-02-18 23:04:32 +00004663 default: break;
4664 case MVT::v16i8:
4665 case MVT::v8i16:
4666 VT = MVT::v4i32;
4667 break;
4668 }
Dale Johannesence0805b2009-02-03 19:33:06 +00004669 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(),
4670 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, AnyExt));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004671}
4672
Bill Wendlingfef06052008-09-16 21:48:12 +00004673// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
4674// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
4675// one of the above mentioned nodes. It has to be wrapped because otherwise
4676// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
4677// be used to form addressing mode. These wrapped nodes will be selected
4678// into MOV32ri.
Dan Gohman8181bd12008-07-27 21:46:04 +00004679SDValue
4680X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004681 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dale Johannesen175fdef2009-02-06 21:50:26 +00004682 // FIXME there isn't really any debug info here, should come from the parent
4683 DebugLoc dl = CP->getDebugLoc();
Evan Cheng68c18682009-03-13 07:51:59 +00004684 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
4685 CP->getAlignment());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004686 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004687 // With PIC, the address is actually $g + Offset.
4688 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4689 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004690 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004691 DAG.getNode(X86ISD::GlobalBaseReg,
4692 DebugLoc::getUnknownLoc(),
4693 getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004694 Result);
4695 }
4696
4697 return Result;
4698}
4699
Dan Gohman8181bd12008-07-27 21:46:04 +00004700SDValue
Dale Johannesenea996922009-02-04 20:06:27 +00004701X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman36322c72008-10-18 02:06:02 +00004702 int64_t Offset,
Evan Cheng7f250d62008-09-24 00:05:32 +00004703 SelectionDAG &DAG) const {
Dan Gohman36322c72008-10-18 02:06:02 +00004704 bool IsPic = getTargetMachine().getRelocationModel() == Reloc::PIC_;
4705 bool ExtraLoadRequired =
4706 Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false);
4707
4708 // Create the TargetGlobalAddress node, folding in the constant
4709 // offset if it is legal.
4710 SDValue Result;
Dan Gohman3d5257c2008-10-21 03:38:42 +00004711 if (!IsPic && !ExtraLoadRequired && isInt32(Offset)) {
Dan Gohman36322c72008-10-18 02:06:02 +00004712 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
4713 Offset = 0;
4714 } else
4715 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), 0);
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004716 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman36322c72008-10-18 02:06:02 +00004717
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004718 // With PIC, the address is actually $g + Offset.
Dan Gohman36322c72008-10-18 02:06:02 +00004719 if (IsPic && !Subtarget->isPICStyleRIPRel()) {
Dale Johannesenea996922009-02-04 20:06:27 +00004720 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
4721 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004722 Result);
4723 }
Scott Michel91099d62009-02-17 22:15:04 +00004724
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004725 // For Darwin & Mingw32, external and weak symbols are indirect, so we want to
4726 // load the value at address GV, not the value of GV itself. This means that
4727 // the GlobalAddress must be in the base or index register of the address, not
4728 // the GV offset field. Platform check is inside GVRequiresExtraLoad() call
4729 // The same applies for external symbols during PIC codegen
Dan Gohman36322c72008-10-18 02:06:02 +00004730 if (ExtraLoadRequired)
Dale Johannesenea996922009-02-04 20:06:27 +00004731 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004732 PseudoSourceValue::getGOT(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004733
Dan Gohman36322c72008-10-18 02:06:02 +00004734 // If there was a non-zero offset that we didn't fold, create an explicit
4735 // addition for it.
4736 if (Offset != 0)
Dale Johannesenea996922009-02-04 20:06:27 +00004737 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman36322c72008-10-18 02:06:02 +00004738 DAG.getConstant(Offset, getPointerTy()));
4739
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004740 return Result;
4741}
4742
Evan Cheng7f250d62008-09-24 00:05:32 +00004743SDValue
4744X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) {
4745 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman36322c72008-10-18 02:06:02 +00004746 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004747 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Cheng7f250d62008-09-24 00:05:32 +00004748}
4749
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004750// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman8181bd12008-07-27 21:46:04 +00004751static SDValue
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004752LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00004753 const MVT PtrVT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004754 SDValue InFlag;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004755 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
4756 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004757 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004758 DebugLoc::getUnknownLoc(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004759 PtrVT), InFlag);
4760 InFlag = Chain.getValue(1);
4761
4762 // emit leal symbol@TLSGD(,%ebx,1), %eax
4763 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004764 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004765 GA->getValueType(0),
4766 GA->getOffset());
Dan Gohman8181bd12008-07-27 21:46:04 +00004767 SDValue Ops[] = { Chain, TGA, InFlag };
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004768 SDValue Result = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004769 InFlag = Result.getValue(2);
4770 Chain = Result.getValue(1);
4771
4772 // call ___tls_get_addr. This function receives its argument in
4773 // the register EAX.
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004774 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Result, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004775 InFlag = Chain.getValue(1);
4776
4777 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004778 SDValue Ops1[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00004779 DAG.getTargetExternalSymbol("___tls_get_addr",
4780 PtrVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004781 DAG.getRegister(X86::EAX, PtrVT),
4782 DAG.getRegister(X86::EBX, PtrVT),
4783 InFlag };
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004784 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops1, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004785 InFlag = Chain.getValue(1);
4786
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004787 return DAG.getCopyFromReg(Chain, dl, X86::EAX, PtrVT, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004788}
4789
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004790// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman8181bd12008-07-27 21:46:04 +00004791static SDValue
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004792LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands92c43912008-06-06 12:08:01 +00004793 const MVT PtrVT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004794 SDValue InFlag, Chain;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004795 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004796
4797 // emit leaq symbol@TLSGD(%rip), %rdi
4798 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004799 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004800 GA->getValueType(0),
4801 GA->getOffset());
Dan Gohman8181bd12008-07-27 21:46:04 +00004802 SDValue Ops[] = { DAG.getEntryNode(), TGA};
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004803 SDValue Result = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004804 Chain = Result.getValue(1);
4805 InFlag = Result.getValue(2);
4806
aslb204cd52008-08-16 12:58:29 +00004807 // call __tls_get_addr. This function receives its argument in
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004808 // the register RDI.
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004809 Chain = DAG.getCopyToReg(Chain, dl, X86::RDI, Result, InFlag);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004810 InFlag = Chain.getValue(1);
4811
4812 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00004813 SDValue Ops1[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00004814 DAG.getTargetExternalSymbol("__tls_get_addr",
4815 PtrVT),
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004816 DAG.getRegister(X86::RDI, PtrVT),
4817 InFlag };
Dale Johannesen9bfc0172009-02-06 23:05:02 +00004818 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops1, 4);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004819 InFlag = Chain.getValue(1);
4820
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00004821 return DAG.getCopyFromReg(Chain, dl, X86::RAX, PtrVT, InFlag);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004822}
4823
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004824// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
4825// "local exec" model.
Dan Gohman8181bd12008-07-27 21:46:04 +00004826static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Rafael Espindola7b620af2009-02-27 13:37:18 +00004827 const MVT PtrVT, TLSModel::Model model) {
Dale Johannesenea996922009-02-04 20:06:27 +00004828 DebugLoc dl = GA->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004829 // Get the Thread Pointer
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004830 SDValue ThreadPointer = DAG.getNode(X86ISD::THREAD_POINTER,
4831 DebugLoc::getUnknownLoc(), PtrVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004832 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
4833 // exec)
Dan Gohman8181bd12008-07-27 21:46:04 +00004834 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004835 GA->getValueType(0),
4836 GA->getOffset());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004837 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, TGA);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004838
Rafael Espindola7b620af2009-02-27 13:37:18 +00004839 if (model == TLSModel::InitialExec)
Dale Johannesenea996922009-02-04 20:06:27 +00004840 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004841 PseudoSourceValue::getGOT(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004842
4843 // The address of the thread local variable is the add of the thread
4844 // pointer with the offset of the variable.
Dale Johannesenea996922009-02-04 20:06:27 +00004845 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004846}
4847
Dan Gohman8181bd12008-07-27 21:46:04 +00004848SDValue
4849X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004850 // TODO: implement the "local dynamic" model
4851 // TODO: implement the "initial exec"model for pic executables
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004852 assert(Subtarget->isTargetELF() &&
4853 "TLS not implemented for non-ELF targets");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004854 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Rafael Espindola7b620af2009-02-27 13:37:18 +00004855 GlobalValue *GV = GA->getGlobal();
4856 TLSModel::Model model =
4857 getTLSModel (GV, getTargetMachine().getRelocationModel());
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004858 if (Subtarget->is64Bit()) {
Rafael Espindola7b620af2009-02-27 13:37:18 +00004859 switch (model) {
4860 case TLSModel::GeneralDynamic:
4861 case TLSModel::LocalDynamic: // not implemented
4862 case TLSModel::InitialExec: // not implemented
4863 case TLSModel::LocalExec: // not implemented
4864 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
4865 default:
4866 assert (0 && "Unknown TLS model");
4867 }
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004868 } else {
Rafael Espindola7b620af2009-02-27 13:37:18 +00004869 switch (model) {
4870 case TLSModel::GeneralDynamic:
4871 case TLSModel::LocalDynamic: // not implemented
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004872 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Rafael Espindola7b620af2009-02-27 13:37:18 +00004873
4874 case TLSModel::InitialExec:
4875 case TLSModel::LocalExec:
4876 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model);
4877 default:
4878 assert (0 && "Unknown TLS model");
4879 }
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00004880 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004881}
4882
Dan Gohman8181bd12008-07-27 21:46:04 +00004883SDValue
4884X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004885 // FIXME there isn't really any debug info here
4886 DebugLoc dl = Op.getDebugLoc();
Bill Wendlingfef06052008-09-16 21:48:12 +00004887 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
4888 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004889 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004890 // With PIC, the address is actually $g + Offset.
4891 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4892 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004893 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Scott Michel91099d62009-02-17 22:15:04 +00004894 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004895 DebugLoc::getUnknownLoc(),
4896 getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004897 Result);
4898 }
4899
4900 return Result;
4901}
4902
Dan Gohman8181bd12008-07-27 21:46:04 +00004903SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004904 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dale Johannesen175fdef2009-02-06 21:50:26 +00004905 // FIXME there isn't really any debug into here
4906 DebugLoc dl = JT->getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00004907 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy());
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004908 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004909 // With PIC, the address is actually $g + Offset.
4910 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4911 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen175fdef2009-02-06 21:50:26 +00004912 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen24dd9a52009-02-07 00:55:49 +00004913 DAG.getNode(X86ISD::GlobalBaseReg,
4914 DebugLoc::getUnknownLoc(),
4915 getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004916 Result);
4917 }
4918
4919 return Result;
4920}
4921
Chris Lattner62814a32007-10-17 06:02:13 +00004922/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michel91099d62009-02-17 22:15:04 +00004923/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohman8181bd12008-07-27 21:46:04 +00004924SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) {
Dan Gohman092014e2008-03-03 22:22:09 +00004925 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Duncan Sands92c43912008-06-06 12:08:01 +00004926 MVT VT = Op.getValueType();
4927 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004928 DebugLoc dl = Op.getDebugLoc();
Chris Lattner62814a32007-10-17 06:02:13 +00004929 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman8181bd12008-07-27 21:46:04 +00004930 SDValue ShOpLo = Op.getOperand(0);
4931 SDValue ShOpHi = Op.getOperand(1);
4932 SDValue ShAmt = Op.getOperand(2);
4933 SDValue Tmp1 = isSRA ?
Scott Michel91099d62009-02-17 22:15:04 +00004934 DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Dale Johannesence0805b2009-02-03 19:33:06 +00004935 DAG.getConstant(VTBits - 1, MVT::i8)) :
Dan Gohman092014e2008-03-03 22:22:09 +00004936 DAG.getConstant(0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004937
Dan Gohman8181bd12008-07-27 21:46:04 +00004938 SDValue Tmp2, Tmp3;
Chris Lattner62814a32007-10-17 06:02:13 +00004939 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004940 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
4941 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00004942 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00004943 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
4944 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00004945 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004946
Dale Johannesence0805b2009-02-03 19:33:06 +00004947 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
Dan Gohman092014e2008-03-03 22:22:09 +00004948 DAG.getConstant(VTBits, MVT::i8));
Dale Johannesence0805b2009-02-03 19:33:06 +00004949 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, VT,
Chris Lattner62814a32007-10-17 06:02:13 +00004950 AndNode, DAG.getConstant(0, MVT::i8));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004951
Dan Gohman8181bd12008-07-27 21:46:04 +00004952 SDValue Hi, Lo;
4953 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
4954 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
4955 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf19591c2008-06-30 10:19:09 +00004956
Chris Lattner62814a32007-10-17 06:02:13 +00004957 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesence0805b2009-02-03 19:33:06 +00004958 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4959 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner62814a32007-10-17 06:02:13 +00004960 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00004961 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4962 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner62814a32007-10-17 06:02:13 +00004963 }
4964
Dan Gohman8181bd12008-07-27 21:46:04 +00004965 SDValue Ops[2] = { Lo, Hi };
Dale Johannesence0805b2009-02-03 19:33:06 +00004966 return DAG.getMergeValues(Ops, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004967}
4968
Dan Gohman8181bd12008-07-27 21:46:04 +00004969SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00004970 MVT SrcVT = Op.getOperand(0).getValueType();
Duncan Sandsec142ee2008-06-08 20:54:56 +00004971 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004972 "Unknown SINT_TO_FP to lower!");
Scott Michel91099d62009-02-17 22:15:04 +00004973
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004974 // These are really Legal; caller falls through into that case.
4975 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Dan Gohman8181bd12008-07-27 21:46:04 +00004976 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00004977 if (SrcVT == MVT::i64 && Op.getValueType() != MVT::f80 &&
Chris Lattnerdd3e1422008-02-27 05:57:41 +00004978 Subtarget->is64Bit())
Dan Gohman8181bd12008-07-27 21:46:04 +00004979 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00004980
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004981 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00004982 unsigned Size = SrcVT.getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004983 MachineFunction &MF = DAG.getMachineFunction();
4984 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
Dan Gohman8181bd12008-07-27 21:46:04 +00004985 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00004986 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling6b42d012009-03-13 08:41:47 +00004987 StackSlot,
4988 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004989
4990 // Build the FILD
4991 SDVTList Tys;
Chris Lattnercf515b52008-01-16 06:24:21 +00004992 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen2fc20782007-09-14 22:26:36 +00004993 if (useSSE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004994 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
4995 else
4996 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00004997 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004998 Ops.push_back(Chain);
4999 Ops.push_back(StackSlot);
5000 Ops.push_back(DAG.getValueType(SrcVT));
Dale Johannesence0805b2009-02-03 19:33:06 +00005001 SDValue Result = DAG.getNode(useSSE ? X86ISD::FILD_FLAG : X86ISD::FILD, dl,
Chris Lattnerdd3e1422008-02-27 05:57:41 +00005002 Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005003
Dale Johannesen2fc20782007-09-14 22:26:36 +00005004 if (useSSE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005005 Chain = Result.getValue(1);
Dan Gohman8181bd12008-07-27 21:46:04 +00005006 SDValue InFlag = Result.getValue(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005007
5008 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
5009 // shouldn't be necessary except that RFP cannot be live across
5010 // multiple blocks. When stackifier is fixed, they can be uncoupled.
5011 MachineFunction &MF = DAG.getMachineFunction();
5012 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
Dan Gohman8181bd12008-07-27 21:46:04 +00005013 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005014 Tys = DAG.getVTList(MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00005015 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005016 Ops.push_back(Chain);
5017 Ops.push_back(Result);
5018 Ops.push_back(StackSlot);
5019 Ops.push_back(DAG.getValueType(Op.getValueType()));
5020 Ops.push_back(InFlag);
Dale Johannesence0805b2009-02-03 19:33:06 +00005021 Chain = DAG.getNode(X86ISD::FST, dl, Tys, &Ops[0], Ops.size());
5022 Result = DAG.getLoad(Op.getValueType(), dl, Chain, StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005023 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005024 }
5025
5026 return Result;
5027}
5028
Bill Wendling14a30ef2009-01-17 03:56:04 +00005029// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
5030SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op, SelectionDAG &DAG) {
5031 // This algorithm is not obvious. Here it is in C code, more or less:
5032 /*
5033 double uint64_to_double( uint32_t hi, uint32_t lo ) {
5034 static const __m128i exp = { 0x4330000045300000ULL, 0 };
5035 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesenfb019af2008-10-21 23:07:49 +00005036
Bill Wendling14a30ef2009-01-17 03:56:04 +00005037 // Copy ints to xmm registers.
5038 __m128i xh = _mm_cvtsi32_si128( hi );
5039 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesenfb019af2008-10-21 23:07:49 +00005040
Bill Wendling14a30ef2009-01-17 03:56:04 +00005041 // Combine into low half of a single xmm register.
5042 __m128i x = _mm_unpacklo_epi32( xh, xl );
5043 __m128d d;
5044 double sd;
Dale Johannesenfb019af2008-10-21 23:07:49 +00005045
Bill Wendling14a30ef2009-01-17 03:56:04 +00005046 // Merge in appropriate exponents to give the integer bits the right
5047 // magnitude.
5048 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesenfb019af2008-10-21 23:07:49 +00005049
Bill Wendling14a30ef2009-01-17 03:56:04 +00005050 // Subtract away the biases to deal with the IEEE-754 double precision
5051 // implicit 1.
5052 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesenfb019af2008-10-21 23:07:49 +00005053
Bill Wendling14a30ef2009-01-17 03:56:04 +00005054 // All conversions up to here are exact. The correctly rounded result is
5055 // calculated using the current rounding mode using the following
5056 // horizontal add.
5057 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
5058 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
5059 // store doesn't really need to be here (except
5060 // maybe to zero the other double)
5061 return sd;
5062 }
5063 */
Dale Johannesenfb019af2008-10-21 23:07:49 +00005064
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005065 DebugLoc dl = Op.getDebugLoc();
Dale Johannesence0805b2009-02-03 19:33:06 +00005066
Dale Johannesena359b8b2008-10-21 20:50:01 +00005067 // Build some magic constants.
Bill Wendling14a30ef2009-01-17 03:56:04 +00005068 std::vector<Constant*> CV0;
Dale Johannesena359b8b2008-10-21 20:50:01 +00005069 CV0.push_back(ConstantInt::get(APInt(32, 0x45300000)));
5070 CV0.push_back(ConstantInt::get(APInt(32, 0x43300000)));
5071 CV0.push_back(ConstantInt::get(APInt(32, 0)));
5072 CV0.push_back(ConstantInt::get(APInt(32, 0)));
5073 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng68c18682009-03-13 07:51:59 +00005074 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesena359b8b2008-10-21 20:50:01 +00005075
Bill Wendling14a30ef2009-01-17 03:56:04 +00005076 std::vector<Constant*> CV1;
Dale Johannesena359b8b2008-10-21 20:50:01 +00005077 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4530000000000000ULL))));
5078 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4330000000000000ULL))));
5079 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng68c18682009-03-13 07:51:59 +00005080 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesena359b8b2008-10-21 20:50:01 +00005081
5082 SmallVector<SDValue, 4> MaskVec;
5083 MaskVec.push_back(DAG.getConstant(0, MVT::i32));
5084 MaskVec.push_back(DAG.getConstant(4, MVT::i32));
5085 MaskVec.push_back(DAG.getConstant(1, MVT::i32));
5086 MaskVec.push_back(DAG.getConstant(5, MVT::i32));
Evan Cheng907a2d22009-02-25 22:49:59 +00005087 SDValue UnpcklMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
5088 &MaskVec[0], MaskVec.size());
Dale Johannesena359b8b2008-10-21 20:50:01 +00005089 SmallVector<SDValue, 4> MaskVec2;
Duncan Sandsca872ca2008-10-22 11:24:12 +00005090 MaskVec2.push_back(DAG.getConstant(1, MVT::i32));
5091 MaskVec2.push_back(DAG.getConstant(0, MVT::i32));
Evan Cheng907a2d22009-02-25 22:49:59 +00005092 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32,
5093 &MaskVec2[0], MaskVec2.size());
Dale Johannesena359b8b2008-10-21 20:50:01 +00005094
Dale Johannesence0805b2009-02-03 19:33:06 +00005095 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5096 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sandsca872ca2008-10-22 11:24:12 +00005097 Op.getOperand(0),
5098 DAG.getIntPtrConstant(1)));
Dale Johannesence0805b2009-02-03 19:33:06 +00005099 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5100 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sandsca872ca2008-10-22 11:24:12 +00005101 Op.getOperand(0),
5102 DAG.getIntPtrConstant(0)));
Dale Johannesence0805b2009-02-03 19:33:06 +00005103 SDValue Unpck1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v4i32,
Dale Johannesena359b8b2008-10-21 20:50:01 +00005104 XR1, XR2, UnpcklMask);
Dale Johannesence0805b2009-02-03 19:33:06 +00005105 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005106 PseudoSourceValue::getConstantPool(), 0,
5107 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005108 SDValue Unpck2 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v4i32,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005109 Unpck1, CLod0, UnpcklMask);
Dale Johannesence0805b2009-02-03 19:33:06 +00005110 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2);
5111 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005112 PseudoSourceValue::getConstantPool(), 0,
5113 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005114 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling14a30ef2009-01-17 03:56:04 +00005115
Dale Johannesena359b8b2008-10-21 20:50:01 +00005116 // Add the halves; easiest way is to swap them into another reg first.
Dale Johannesence0805b2009-02-03 19:33:06 +00005117 SDValue Shuf = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2f64,
Dale Johannesena359b8b2008-10-21 20:50:01 +00005118 Sub, Sub, ShufMask);
Dale Johannesence0805b2009-02-03 19:33:06 +00005119 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
5120 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesena359b8b2008-10-21 20:50:01 +00005121 DAG.getIntPtrConstant(0));
5122}
5123
Bill Wendling14a30ef2009-01-17 03:56:04 +00005124// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
5125SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005126 DebugLoc dl = Op.getDebugLoc();
Bill Wendling14a30ef2009-01-17 03:56:04 +00005127 // FP constant to bias correct the final result.
5128 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
5129 MVT::f64);
5130
5131 // Load the 32-bit value into an XMM register.
Dale Johannesence0805b2009-02-03 19:33:06 +00005132 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5133 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005134 Op.getOperand(0),
5135 DAG.getIntPtrConstant(0)));
5136
Dale Johannesence0805b2009-02-03 19:33:06 +00005137 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
5138 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load),
Bill Wendling14a30ef2009-01-17 03:56:04 +00005139 DAG.getIntPtrConstant(0));
5140
5141 // Or the load with the bias.
Dale Johannesence0805b2009-02-03 19:33:06 +00005142 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
5143 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
5144 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Chengc0ab5e52009-01-19 08:19:57 +00005145 MVT::v2f64, Load)),
Dale Johannesence0805b2009-02-03 19:33:06 +00005146 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
5147 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Chengc0ab5e52009-01-19 08:19:57 +00005148 MVT::v2f64, Bias)));
Dale Johannesence0805b2009-02-03 19:33:06 +00005149 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
5150 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or),
Bill Wendling14a30ef2009-01-17 03:56:04 +00005151 DAG.getIntPtrConstant(0));
5152
5153 // Subtract the bias.
Dale Johannesence0805b2009-02-03 19:33:06 +00005154 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling14a30ef2009-01-17 03:56:04 +00005155
5156 // Handle final rounding.
Bill Wendlingdb547de2009-01-17 07:40:19 +00005157 MVT DestVT = Op.getValueType();
5158
5159 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005160 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendlingdb547de2009-01-17 07:40:19 +00005161 DAG.getIntPtrConstant(0));
5162 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005163 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendlingdb547de2009-01-17 07:40:19 +00005164 }
5165
5166 // Handle final rounding.
5167 return Sub;
Bill Wendling14a30ef2009-01-17 03:56:04 +00005168}
5169
5170SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Evan Cheng44fd2392009-01-19 08:08:22 +00005171 SDValue N0 = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005172 DebugLoc dl = Op.getDebugLoc();
Bill Wendling14a30ef2009-01-17 03:56:04 +00005173
Evan Cheng44fd2392009-01-19 08:08:22 +00005174 // Now not UINT_TO_FP is legal (it's marked custom), dag combiner won't
5175 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
5176 // the optimization here.
5177 if (DAG.SignBitIsZero(N0))
Dale Johannesence0805b2009-02-03 19:33:06 +00005178 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Cheng44fd2392009-01-19 08:08:22 +00005179
5180 MVT SrcVT = N0.getValueType();
Bill Wendling14a30ef2009-01-17 03:56:04 +00005181 if (SrcVT == MVT::i64) {
5182 // We only handle SSE2 f64 target here; caller can handle the rest.
5183 if (Op.getValueType() != MVT::f64 || !X86ScalarSSEf64)
5184 return SDValue();
Bill Wendlingdb547de2009-01-17 07:40:19 +00005185
Bill Wendling14a30ef2009-01-17 03:56:04 +00005186 return LowerUINT_TO_FP_i64(Op, DAG);
5187 } else if (SrcVT == MVT::i32) {
Bill Wendling14a30ef2009-01-17 03:56:04 +00005188 return LowerUINT_TO_FP_i32(Op, DAG);
5189 }
5190
5191 assert(0 && "Unknown UINT_TO_FP to lower!");
5192 return SDValue();
5193}
5194
Dan Gohman8181bd12008-07-27 21:46:04 +00005195std::pair<SDValue,SDValue> X86TargetLowering::
5196FP_TO_SINTHelper(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005197 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsec142ee2008-06-08 20:54:56 +00005198 assert(Op.getValueType().getSimpleVT() <= MVT::i64 &&
5199 Op.getValueType().getSimpleVT() >= MVT::i16 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005200 "Unknown FP_TO_SINT to lower!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005201
Dale Johannesen2fc20782007-09-14 22:26:36 +00005202 // These are really Legal.
Scott Michel91099d62009-02-17 22:15:04 +00005203 if (Op.getValueType() == MVT::i32 &&
Chris Lattnercf515b52008-01-16 06:24:21 +00005204 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman8181bd12008-07-27 21:46:04 +00005205 return std::make_pair(SDValue(), SDValue());
Dale Johannesen958b08b2007-09-19 23:55:34 +00005206 if (Subtarget->is64Bit() &&
5207 Op.getValueType() == MVT::i64 &&
5208 Op.getOperand(0).getValueType() != MVT::f80)
Dan Gohman8181bd12008-07-27 21:46:04 +00005209 return std::make_pair(SDValue(), SDValue());
Dale Johannesen2fc20782007-09-14 22:26:36 +00005210
Evan Cheng05441e62007-10-15 20:11:21 +00005211 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
5212 // stack slot.
5213 MachineFunction &MF = DAG.getMachineFunction();
Duncan Sands92c43912008-06-06 12:08:01 +00005214 unsigned MemSize = Op.getValueType().getSizeInBits()/8;
Evan Cheng05441e62007-10-15 20:11:21 +00005215 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
Dan Gohman8181bd12008-07-27 21:46:04 +00005216 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005217 unsigned Opc;
Duncan Sands92c43912008-06-06 12:08:01 +00005218 switch (Op.getValueType().getSimpleVT()) {
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005219 default: assert(0 && "Invalid FP_TO_SINT to lower!");
5220 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
5221 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
5222 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005223 }
5224
Dan Gohman8181bd12008-07-27 21:46:04 +00005225 SDValue Chain = DAG.getEntryNode();
5226 SDValue Value = Op.getOperand(0);
Chris Lattnercf515b52008-01-16 06:24:21 +00005227 if (isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005228 assert(Op.getValueType() == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Dale Johannesence0805b2009-02-03 19:33:06 +00005229 Chain = DAG.getStore(Chain, dl, Value, StackSlot,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00005230 PseudoSourceValue::getFixedStack(SSFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005231 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00005232 SDValue Ops[] = {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005233 Chain, StackSlot, DAG.getValueType(Op.getOperand(0).getValueType())
5234 };
Dale Johannesence0805b2009-02-03 19:33:06 +00005235 Value = DAG.getNode(X86ISD::FLD, dl, Tys, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005236 Chain = Value.getValue(1);
5237 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
5238 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
5239 }
5240
5241 // Build the FP_TO_INT*_IN_MEM
Dan Gohman8181bd12008-07-27 21:46:04 +00005242 SDValue Ops[] = { Chain, Value, StackSlot };
Dale Johannesence0805b2009-02-03 19:33:06 +00005243 SDValue FIST = DAG.getNode(Opc, dl, MVT::Other, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005244
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005245 return std::make_pair(FIST, StackSlot);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005246}
5247
Dan Gohman8181bd12008-07-27 21:46:04 +00005248SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) {
5249 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(Op, DAG);
5250 SDValue FIST = Vals.first, StackSlot = Vals.second;
Gabor Greif1c80d112008-08-28 21:40:38 +00005251 if (FIST.getNode() == 0) return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00005252
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005253 // Load the result.
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005254 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Dale Johannesence0805b2009-02-03 19:33:06 +00005255 FIST, StackSlot, NULL, 0);
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005256}
5257
Dan Gohman8181bd12008-07-27 21:46:04 +00005258SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005259 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00005260 MVT VT = Op.getValueType();
5261 MVT EltVT = VT;
5262 if (VT.isVector())
5263 EltVT = VT.getVectorElementType();
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);
Evan Cheng68c18682009-03-13 07:51:59 +00005277 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
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);
Dale Johannesence0805b2009-02-03 19:33:06 +00005281 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005282}
5283
Dan Gohman8181bd12008-07-27 21:46:04 +00005284SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005285 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00005286 MVT VT = Op.getValueType();
5287 MVT EltVT = VT;
Evan Cheng92b8f782007-07-19 23:36:01 +00005288 unsigned EltNum = 1;
Duncan Sands92c43912008-06-06 12:08:01 +00005289 if (VT.isVector()) {
5290 EltVT = VT.getVectorElementType();
5291 EltNum = VT.getVectorNumElements();
Evan Cheng92b8f782007-07-19 23:36:01 +00005292 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005293 std::vector<Constant*> CV;
5294 if (EltVT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005295 Constant *C = ConstantFP::get(APFloat(APInt(64, 1ULL << 63)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005296 CV.push_back(C);
5297 CV.push_back(C);
5298 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005299 Constant *C = ConstantFP::get(APFloat(APInt(32, 1U << 31)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005300 CV.push_back(C);
5301 CV.push_back(C);
5302 CV.push_back(C);
5303 CV.push_back(C);
5304 }
Dan Gohman11821702007-07-27 17:16:43 +00005305 Constant *C = ConstantVector::get(CV);
Evan Cheng68c18682009-03-13 07:51:59 +00005306 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005307 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005308 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005309 false, 16);
Duncan Sands92c43912008-06-06 12:08:01 +00005310 if (VT.isVector()) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005311 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
5312 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Scott Michel91099d62009-02-17 22:15:04 +00005313 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesence0805b2009-02-03 19:33:06 +00005314 Op.getOperand(0)),
5315 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask)));
Evan Cheng92b8f782007-07-19 23:36:01 +00005316 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00005317 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng92b8f782007-07-19 23:36:01 +00005318 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005319}
5320
Dan Gohman8181bd12008-07-27 21:46:04 +00005321SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
5322 SDValue Op0 = Op.getOperand(0);
5323 SDValue Op1 = Op.getOperand(1);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005324 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00005325 MVT VT = Op.getValueType();
5326 MVT SrcVT = Op1.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005327
5328 // If second operand is smaller, extend it first.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005329 if (SrcVT.bitsLT(VT)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005330 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005331 SrcVT = VT;
5332 }
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005333 // And if it is bigger, shrink it first.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005334 if (SrcVT.bitsGT(VT)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005335 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005336 SrcVT = VT;
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005337 }
5338
5339 // At this point the operands and the result should have the same
5340 // type, and that won't be f80 since that is not custom lowered.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005341
5342 // First get the sign bit of second operand.
5343 std::vector<Constant*> CV;
5344 if (SrcVT == 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 Constant *C = ConstantVector::get(CV);
Evan Cheng68c18682009-03-13 07:51:59 +00005354 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005355 SDValue Mask1 = DAG.getLoad(SrcVT, 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 SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005359
5360 // Shift sign bit right or left if the two operands have different types.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005361 if (SrcVT.bitsGT(VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005362 // Op0 is MVT::f32, Op1 is MVT::f64.
Dale Johannesence0805b2009-02-03 19:33:06 +00005363 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
5364 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005365 DAG.getConstant(32, MVT::i32));
Dale Johannesence0805b2009-02-03 19:33:06 +00005366 SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit);
5367 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner5872a362008-01-17 07:00:52 +00005368 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005369 }
5370
5371 // Clear first operand sign bit.
5372 CV.clear();
5373 if (VT == MVT::f64) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005374 CV.push_back(ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63)))));
5375 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005376 } else {
Chris Lattner5e0610f2008-04-20 00:41:09 +00005377 CV.push_back(ConstantFP::get(APFloat(APInt(32, ~(1U << 31)))));
5378 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5379 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5380 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005381 }
Dan Gohman11821702007-07-27 17:16:43 +00005382 C = ConstantVector::get(CV);
Evan Cheng68c18682009-03-13 07:51:59 +00005383 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005384 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005385 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman11821702007-07-27 17:16:43 +00005386 false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005387 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005388
5389 // Or the value with the sign bit.
Dale Johannesence0805b2009-02-03 19:33:06 +00005390 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005391}
5392
Dan Gohman99a12192009-03-04 19:44:21 +00005393/// Emit nodes that will be selected as "test Op0,Op0", or something
5394/// equivalent.
Dan Gohmanc8b47852009-03-07 01:58:32 +00005395SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
5396 SelectionDAG &DAG) {
Dan Gohman99a12192009-03-04 19:44:21 +00005397 DebugLoc dl = Op.getDebugLoc();
5398
Dan Gohmanc8b47852009-03-07 01:58:32 +00005399 // CF and OF aren't always set the way we want. Determine which
5400 // of these we need.
5401 bool NeedCF = false;
5402 bool NeedOF = false;
5403 switch (X86CC) {
5404 case X86::COND_A: case X86::COND_AE:
5405 case X86::COND_B: case X86::COND_BE:
5406 NeedCF = true;
5407 break;
5408 case X86::COND_G: case X86::COND_GE:
5409 case X86::COND_L: case X86::COND_LE:
5410 case X86::COND_O: case X86::COND_NO:
5411 NeedOF = true;
5412 break;
5413 default: break;
5414 }
5415
Dan Gohman99a12192009-03-04 19:44:21 +00005416 // See if we can use the EFLAGS value from the operand instead of
Dan Gohmanc8b47852009-03-07 01:58:32 +00005417 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
5418 // we prove that the arithmetic won't overflow, we can't use OF or CF.
5419 if (Op.getResNo() == 0 && !NeedOF && !NeedCF) {
Dan Gohman99a12192009-03-04 19:44:21 +00005420 unsigned Opcode = 0;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005421 unsigned NumOperands = 0;
Dan Gohman99a12192009-03-04 19:44:21 +00005422 switch (Op.getNode()->getOpcode()) {
5423 case ISD::ADD:
5424 // Due to an isel shortcoming, be conservative if this add is likely to
5425 // be selected as part of a load-modify-store instruction. When the root
5426 // node in a match is a store, isel doesn't know how to remap non-chain
5427 // non-flag uses of other nodes in the match, such as the ADD in this
5428 // case. This leads to the ADD being left around and reselected, with
5429 // the result being two adds in the output.
5430 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
5431 UE = Op.getNode()->use_end(); UI != UE; ++UI)
5432 if (UI->getOpcode() == ISD::STORE)
5433 goto default_case;
Dan Gohman99a12192009-03-04 19:44:21 +00005434 if (ConstantSDNode *C =
Dan Gohmand90a8fd2009-03-05 19:32:48 +00005435 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
5436 // An add of one will be selected as an INC.
Dan Gohman99a12192009-03-04 19:44:21 +00005437 if (C->getAPIntValue() == 1) {
5438 Opcode = X86ISD::INC;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005439 NumOperands = 1;
Dan Gohman99a12192009-03-04 19:44:21 +00005440 break;
5441 }
Dan Gohmand90a8fd2009-03-05 19:32:48 +00005442 // An add of negative one (subtract of one) will be selected as a DEC.
5443 if (C->getAPIntValue().isAllOnesValue()) {
5444 Opcode = X86ISD::DEC;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005445 NumOperands = 1;
Dan Gohmand90a8fd2009-03-05 19:32:48 +00005446 break;
5447 }
5448 }
Dan Gohman99a12192009-03-04 19:44:21 +00005449 // Otherwise use a regular EFLAGS-setting add.
5450 Opcode = X86ISD::ADD;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005451 NumOperands = 2;
Dan Gohman99a12192009-03-04 19:44:21 +00005452 break;
5453 case ISD::SUB:
5454 // Due to the ISEL shortcoming noted above, be conservative if this sub is
5455 // likely to be selected as part of a load-modify-store instruction.
5456 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
5457 UE = Op.getNode()->use_end(); UI != UE; ++UI)
5458 if (UI->getOpcode() == ISD::STORE)
5459 goto default_case;
Dan Gohman99a12192009-03-04 19:44:21 +00005460 // Otherwise use a regular EFLAGS-setting sub.
5461 Opcode = X86ISD::SUB;
Dan Gohman8c8a8022009-03-05 21:29:28 +00005462 NumOperands = 2;
Dan Gohman99a12192009-03-04 19:44:21 +00005463 break;
5464 case X86ISD::ADD:
5465 case X86ISD::SUB:
5466 case X86ISD::INC:
5467 case X86ISD::DEC:
5468 return SDValue(Op.getNode(), 1);
5469 default:
5470 default_case:
5471 break;
5472 }
5473 if (Opcode != 0) {
5474 const MVT *VTs = DAG.getNodeValueTypes(Op.getValueType(), MVT::i32);
5475 SmallVector<SDValue, 4> Ops;
Dan Gohmanc8b47852009-03-07 01:58:32 +00005476 for (unsigned i = 0; i != NumOperands; ++i)
Dan Gohman99a12192009-03-04 19:44:21 +00005477 Ops.push_back(Op.getOperand(i));
Dan Gohmanc8b47852009-03-07 01:58:32 +00005478 SDValue New = DAG.getNode(Opcode, dl, VTs, 2, &Ops[0], NumOperands);
Dan Gohman99a12192009-03-04 19:44:21 +00005479 DAG.ReplaceAllUsesWith(Op, New);
5480 return SDValue(New.getNode(), 1);
5481 }
5482 }
5483
5484 // Otherwise just emit a CMP with 0, which is the TEST pattern.
5485 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
5486 DAG.getConstant(0, Op.getValueType()));
5487}
5488
5489/// Emit nodes that will be selected as "cmp Op0,Op1", or something
5490/// equivalent.
Dan Gohmanc8b47852009-03-07 01:58:32 +00005491SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
5492 SelectionDAG &DAG) {
Dan Gohman99a12192009-03-04 19:44:21 +00005493 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
5494 if (C->getAPIntValue() == 0)
Dan Gohmanc8b47852009-03-07 01:58:32 +00005495 return EmitTest(Op0, X86CC, DAG);
Dan Gohman99a12192009-03-04 19:44:21 +00005496
5497 DebugLoc dl = Op0.getDebugLoc();
5498 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
5499}
5500
Dan Gohman8181bd12008-07-27 21:46:04 +00005501SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
Evan Cheng950aac02007-09-25 01:57:46 +00005502 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
Dan Gohman8181bd12008-07-27 21:46:04 +00005503 SDValue Op0 = Op.getOperand(0);
5504 SDValue Op1 = Op.getOperand(1);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005505 DebugLoc dl = Op.getDebugLoc();
Chris Lattner77a62312008-12-25 05:34:37 +00005506 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Scott Michel91099d62009-02-17 22:15:04 +00005507
Dan Gohman22cefb02009-01-29 01:59:02 +00005508 // Lower (X & (1 << N)) == 0 to BT(X, N).
5509 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
5510 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Dan Gohman13dd9522009-01-13 23:25:30 +00005511 if (Op0.getOpcode() == ISD::AND &&
5512 Op0.hasOneUse() &&
5513 Op1.getOpcode() == ISD::Constant &&
Dan Gohman22cefb02009-01-29 01:59:02 +00005514 cast<ConstantSDNode>(Op1)->getZExtValue() == 0 &&
Chris Lattner77a62312008-12-25 05:34:37 +00005515 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Dan Gohman22cefb02009-01-29 01:59:02 +00005516 SDValue LHS, RHS;
5517 if (Op0.getOperand(1).getOpcode() == ISD::SHL) {
5518 if (ConstantSDNode *Op010C =
5519 dyn_cast<ConstantSDNode>(Op0.getOperand(1).getOperand(0)))
5520 if (Op010C->getZExtValue() == 1) {
5521 LHS = Op0.getOperand(0);
5522 RHS = Op0.getOperand(1).getOperand(1);
5523 }
5524 } else if (Op0.getOperand(0).getOpcode() == ISD::SHL) {
5525 if (ConstantSDNode *Op000C =
5526 dyn_cast<ConstantSDNode>(Op0.getOperand(0).getOperand(0)))
5527 if (Op000C->getZExtValue() == 1) {
5528 LHS = Op0.getOperand(1);
5529 RHS = Op0.getOperand(0).getOperand(1);
5530 }
5531 } else if (Op0.getOperand(1).getOpcode() == ISD::Constant) {
5532 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op0.getOperand(1));
5533 SDValue AndLHS = Op0.getOperand(0);
5534 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
5535 LHS = AndLHS.getOperand(0);
5536 RHS = AndLHS.getOperand(1);
5537 }
5538 }
Evan Cheng950aac02007-09-25 01:57:46 +00005539
Dan Gohman22cefb02009-01-29 01:59:02 +00005540 if (LHS.getNode()) {
Chris Lattner77a62312008-12-25 05:34:37 +00005541 // If LHS is i8, promote it to i16 with any_extend. There is no i8 BT
5542 // instruction. Since the shift amount is in-range-or-undefined, we know
5543 // that doing a bittest on the i16 value is ok. We extend to i32 because
5544 // the encoding for the i16 version is larger than the i32 version.
5545 if (LHS.getValueType() == MVT::i8)
Dale Johannesence0805b2009-02-03 19:33:06 +00005546 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattner77a62312008-12-25 05:34:37 +00005547
5548 // If the operand types disagree, extend the shift amount to match. Since
5549 // BT ignores high bits (like shifts) we can use anyextend.
5550 if (LHS.getValueType() != RHS.getValueType())
Dale Johannesence0805b2009-02-03 19:33:06 +00005551 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohman22cefb02009-01-29 01:59:02 +00005552
Dale Johannesence0805b2009-02-03 19:33:06 +00005553 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Dan Gohman0fc9ed62009-01-07 00:15:08 +00005554 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Dale Johannesence0805b2009-02-03 19:33:06 +00005555 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattner77a62312008-12-25 05:34:37 +00005556 DAG.getConstant(Cond, MVT::i8), BT);
5557 }
5558 }
5559
5560 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
5561 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Scott Michel91099d62009-02-17 22:15:04 +00005562
Dan Gohmanc8b47852009-03-07 01:58:32 +00005563 SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
Dale Johannesence0805b2009-02-03 19:33:06 +00005564 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattner60435922008-12-24 00:11:37 +00005565 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng950aac02007-09-25 01:57:46 +00005566}
5567
Dan Gohman8181bd12008-07-27 21:46:04 +00005568SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
5569 SDValue Cond;
5570 SDValue Op0 = Op.getOperand(0);
5571 SDValue Op1 = Op.getOperand(1);
5572 SDValue CC = Op.getOperand(2);
Nate Begeman03605a02008-07-17 16:51:19 +00005573 MVT VT = Op.getValueType();
5574 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
5575 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005576 DebugLoc dl = Op.getDebugLoc();
Nate Begeman03605a02008-07-17 16:51:19 +00005577
5578 if (isFP) {
5579 unsigned SSECC = 8;
Evan Cheng33754092008-08-05 22:19:15 +00005580 MVT VT0 = Op0.getValueType();
5581 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
5582 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman03605a02008-07-17 16:51:19 +00005583 bool Swap = false;
5584
5585 switch (SetCCOpcode) {
5586 default: break;
Nate Begeman6357f9d2008-07-25 19:05:58 +00005587 case ISD::SETOEQ:
Nate Begeman03605a02008-07-17 16:51:19 +00005588 case ISD::SETEQ: SSECC = 0; break;
Scott Michel91099d62009-02-17 22:15:04 +00005589 case ISD::SETOGT:
Nate Begeman03605a02008-07-17 16:51:19 +00005590 case ISD::SETGT: Swap = true; // Fallthrough
5591 case ISD::SETLT:
5592 case ISD::SETOLT: SSECC = 1; break;
5593 case ISD::SETOGE:
5594 case ISD::SETGE: Swap = true; // Fallthrough
5595 case ISD::SETLE:
5596 case ISD::SETOLE: SSECC = 2; break;
5597 case ISD::SETUO: SSECC = 3; break;
Nate Begeman6357f9d2008-07-25 19:05:58 +00005598 case ISD::SETUNE:
Nate Begeman03605a02008-07-17 16:51:19 +00005599 case ISD::SETNE: SSECC = 4; break;
5600 case ISD::SETULE: Swap = true;
5601 case ISD::SETUGE: SSECC = 5; break;
5602 case ISD::SETULT: Swap = true;
5603 case ISD::SETUGT: SSECC = 6; break;
5604 case ISD::SETO: SSECC = 7; break;
5605 }
5606 if (Swap)
5607 std::swap(Op0, Op1);
5608
Nate Begeman6357f9d2008-07-25 19:05:58 +00005609 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman03605a02008-07-17 16:51:19 +00005610 if (SSECC == 8) {
Nate Begeman6357f9d2008-07-25 19:05:58 +00005611 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005612 SDValue UNORD, EQ;
Dale Johannesence0805b2009-02-03 19:33:06 +00005613 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
5614 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
5615 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begeman6357f9d2008-07-25 19:05:58 +00005616 }
5617 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005618 SDValue ORD, NEQ;
Dale Johannesence0805b2009-02-03 19:33:06 +00005619 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
5620 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
5621 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begeman6357f9d2008-07-25 19:05:58 +00005622 }
5623 assert(0 && "Illegal FP comparison");
Nate Begeman03605a02008-07-17 16:51:19 +00005624 }
5625 // Handle all other FP comparisons here.
Dale Johannesence0805b2009-02-03 19:33:06 +00005626 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman03605a02008-07-17 16:51:19 +00005627 }
Scott Michel91099d62009-02-17 22:15:04 +00005628
Nate Begeman03605a02008-07-17 16:51:19 +00005629 // We are handling one of the integer comparisons here. Since SSE only has
5630 // GT and EQ comparisons for integer, swapping operands and multiple
5631 // operations may be required for some comparisons.
5632 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
5633 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michel91099d62009-02-17 22:15:04 +00005634
Nate Begeman03605a02008-07-17 16:51:19 +00005635 switch (VT.getSimpleVT()) {
5636 default: break;
5637 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
5638 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
5639 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
5640 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
5641 }
Scott Michel91099d62009-02-17 22:15:04 +00005642
Nate Begeman03605a02008-07-17 16:51:19 +00005643 switch (SetCCOpcode) {
5644 default: break;
5645 case ISD::SETNE: Invert = true;
5646 case ISD::SETEQ: Opc = EQOpc; break;
5647 case ISD::SETLT: Swap = true;
5648 case ISD::SETGT: Opc = GTOpc; break;
5649 case ISD::SETGE: Swap = true;
5650 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
5651 case ISD::SETULT: Swap = true;
5652 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
5653 case ISD::SETUGE: Swap = true;
5654 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
5655 }
5656 if (Swap)
5657 std::swap(Op0, Op1);
Scott Michel91099d62009-02-17 22:15:04 +00005658
Nate Begeman03605a02008-07-17 16:51:19 +00005659 // Since SSE has no unsigned integer comparisons, we need to flip the sign
5660 // bits of the inputs before performing those operations.
5661 if (FlipSigns) {
5662 MVT EltVT = VT.getVectorElementType();
Duncan Sands505ba942009-02-01 18:06:53 +00005663 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
5664 EltVT);
Dan Gohman8181bd12008-07-27 21:46:04 +00005665 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Cheng907a2d22009-02-25 22:49:59 +00005666 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
5667 SignBits.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00005668 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
5669 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman03605a02008-07-17 16:51:19 +00005670 }
Scott Michel91099d62009-02-17 22:15:04 +00005671
Dale Johannesence0805b2009-02-03 19:33:06 +00005672 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman03605a02008-07-17 16:51:19 +00005673
5674 // If the logical-not of the result is required, perform that now.
Bob Wilson81a42cf2009-01-22 17:39:32 +00005675 if (Invert)
Dale Johannesence0805b2009-02-03 19:33:06 +00005676 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson81a42cf2009-01-22 17:39:32 +00005677
Nate Begeman03605a02008-07-17 16:51:19 +00005678 return Result;
5679}
Evan Cheng950aac02007-09-25 01:57:46 +00005680
Evan Chengd580f022008-12-03 08:38:43 +00005681// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman99a12192009-03-04 19:44:21 +00005682static bool isX86LogicalCmp(SDValue Op) {
5683 unsigned Opc = Op.getNode()->getOpcode();
5684 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
5685 return true;
5686 if (Op.getResNo() == 1 &&
5687 (Opc == X86ISD::ADD ||
5688 Opc == X86ISD::SUB ||
5689 Opc == X86ISD::SMUL ||
5690 Opc == X86ISD::UMUL ||
5691 Opc == X86ISD::INC ||
5692 Opc == X86ISD::DEC))
5693 return true;
5694
5695 return false;
Evan Chengd580f022008-12-03 08:38:43 +00005696}
5697
Dan Gohman8181bd12008-07-27 21:46:04 +00005698SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005699 bool addTest = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00005700 SDValue Cond = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005701 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00005702 SDValue CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005703
5704 if (Cond.getOpcode() == ISD::SETCC)
Evan Cheng621216e2007-09-29 00:00:36 +00005705 Cond = LowerSETCC(Cond, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005706
Evan Cheng50d37ab2007-10-08 22:16:29 +00005707 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5708 // setting operand in place of the X86ISD::SETCC.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005709 if (Cond.getOpcode() == X86ISD::SETCC) {
5710 CC = Cond.getOperand(0);
5711
Dan Gohman8181bd12008-07-27 21:46:04 +00005712 SDValue Cmp = Cond.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005713 unsigned Opc = Cmp.getOpcode();
Duncan Sands92c43912008-06-06 12:08:01 +00005714 MVT VT = Op.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00005715
Evan Cheng50d37ab2007-10-08 22:16:29 +00005716 bool IllegalFPCMov = false;
Duncan Sands92c43912008-06-06 12:08:01 +00005717 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattnercf515b52008-01-16 06:24:21 +00005718 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman40686732008-09-26 21:54:37 +00005719 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michel91099d62009-02-17 22:15:04 +00005720
Chris Lattnere4577dc2009-03-12 06:52:53 +00005721 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
5722 Opc == X86ISD::BT) { // FIXME
Evan Cheng50d37ab2007-10-08 22:16:29 +00005723 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00005724 addTest = false;
5725 }
5726 }
5727
5728 if (addTest) {
5729 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohmanc8b47852009-03-07 01:58:32 +00005730 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng950aac02007-09-25 01:57:46 +00005731 }
5732
Duncan Sands92c43912008-06-06 12:08:01 +00005733 const MVT *VTs = DAG.getNodeValueTypes(Op.getValueType(),
Evan Cheng950aac02007-09-25 01:57:46 +00005734 MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005735 SmallVector<SDValue, 4> Ops;
Evan Cheng950aac02007-09-25 01:57:46 +00005736 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
5737 // condition is true.
5738 Ops.push_back(Op.getOperand(2));
5739 Ops.push_back(Op.getOperand(1));
5740 Ops.push_back(CC);
5741 Ops.push_back(Cond);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005742 return DAG.getNode(X86ISD::CMOV, dl, VTs, 2, &Ops[0], Ops.size());
Evan Cheng950aac02007-09-25 01:57:46 +00005743}
5744
Evan Chengd580f022008-12-03 08:38:43 +00005745// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
5746// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
5747// from the AND / OR.
5748static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
5749 Opc = Op.getOpcode();
5750 if (Opc != ISD::OR && Opc != ISD::AND)
5751 return false;
5752 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5753 Op.getOperand(0).hasOneUse() &&
5754 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
5755 Op.getOperand(1).hasOneUse());
5756}
5757
Evan Cheng67f98b12009-02-02 08:19:07 +00005758// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
5759// 1 and that the SETCC node has a single use.
Evan Cheng8c3af2c2009-02-02 08:07:36 +00005760static bool isXor1OfSetCC(SDValue Op) {
5761 if (Op.getOpcode() != ISD::XOR)
5762 return false;
5763 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
5764 if (N1C && N1C->getAPIntValue() == 1) {
5765 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5766 Op.getOperand(0).hasOneUse();
5767 }
5768 return false;
5769}
5770
Dan Gohman8181bd12008-07-27 21:46:04 +00005771SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005772 bool addTest = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00005773 SDValue Chain = Op.getOperand(0);
5774 SDValue Cond = Op.getOperand(1);
5775 SDValue Dest = Op.getOperand(2);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005776 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00005777 SDValue CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005778
5779 if (Cond.getOpcode() == ISD::SETCC)
Evan Cheng621216e2007-09-29 00:00:36 +00005780 Cond = LowerSETCC(Cond, DAG);
Chris Lattner77a62312008-12-25 05:34:37 +00005781#if 0
5782 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingf5399032008-12-12 21:15:41 +00005783 else if (Cond.getOpcode() == X86ISD::ADD ||
5784 Cond.getOpcode() == X86ISD::SUB ||
5785 Cond.getOpcode() == X86ISD::SMUL ||
5786 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling7e04be62008-12-09 22:08:41 +00005787 Cond = LowerXALUO(Cond, DAG);
Chris Lattner77a62312008-12-25 05:34:37 +00005788#endif
Scott Michel91099d62009-02-17 22:15:04 +00005789
Evan Cheng50d37ab2007-10-08 22:16:29 +00005790 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5791 // setting operand in place of the X86ISD::SETCC.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005792 if (Cond.getOpcode() == X86ISD::SETCC) {
5793 CC = Cond.getOperand(0);
5794
Dan Gohman8181bd12008-07-27 21:46:04 +00005795 SDValue Cmp = Cond.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005796 unsigned Opc = Cmp.getOpcode();
Chris Lattner77a62312008-12-25 05:34:37 +00005797 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman99a12192009-03-04 19:44:21 +00005798 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng50d37ab2007-10-08 22:16:29 +00005799 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00005800 addTest = false;
Bill Wendlingd3511522008-12-02 01:06:39 +00005801 } else {
Evan Chengd580f022008-12-03 08:38:43 +00005802 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling809e7bd2008-12-03 08:32:02 +00005803 default: break;
5804 case X86::COND_O:
Dan Gohman0fc9ed62009-01-07 00:15:08 +00005805 case X86::COND_B:
Chris Lattner77a62312008-12-25 05:34:37 +00005806 // These can only come from an arithmetic instruction with overflow,
5807 // e.g. SADDO, UADDO.
Bill Wendling809e7bd2008-12-03 08:32:02 +00005808 Cond = Cond.getNode()->getOperand(1);
5809 addTest = false;
5810 break;
Bill Wendlingd3511522008-12-02 01:06:39 +00005811 }
Evan Cheng950aac02007-09-25 01:57:46 +00005812 }
Evan Chengd580f022008-12-03 08:38:43 +00005813 } else {
5814 unsigned CondOpc;
5815 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
5816 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Chengd580f022008-12-03 08:38:43 +00005817 if (CondOpc == ISD::OR) {
5818 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
5819 // two branches instead of an explicit OR instruction with a
5820 // separate test.
5821 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman99a12192009-03-04 19:44:21 +00005822 isX86LogicalCmp(Cmp)) {
Evan Chengd580f022008-12-03 08:38:43 +00005823 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005824 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Chengd580f022008-12-03 08:38:43 +00005825 Chain, Dest, CC, Cmp);
5826 CC = Cond.getOperand(1).getOperand(0);
5827 Cond = Cmp;
5828 addTest = false;
5829 }
5830 } else { // ISD::AND
5831 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
5832 // two branches instead of an explicit AND instruction with a
5833 // separate test. However, we only do this if this block doesn't
5834 // have a fall-through edge, because this requires an explicit
5835 // jmp when the condition is false.
5836 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman99a12192009-03-04 19:44:21 +00005837 isX86LogicalCmp(Cmp) &&
Evan Chengd580f022008-12-03 08:38:43 +00005838 Op.getNode()->hasOneUse()) {
5839 X86::CondCode CCode =
5840 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5841 CCode = X86::GetOppositeBranchCondition(CCode);
5842 CC = DAG.getConstant(CCode, MVT::i8);
5843 SDValue User = SDValue(*Op.getNode()->use_begin(), 0);
5844 // Look for an unconditional branch following this conditional branch.
5845 // We need this because we need to reverse the successors in order
5846 // to implement FCMP_OEQ.
5847 if (User.getOpcode() == ISD::BR) {
5848 SDValue FalseBB = User.getOperand(1);
5849 SDValue NewBR =
5850 DAG.UpdateNodeOperands(User, User.getOperand(0), Dest);
5851 assert(NewBR == User);
5852 Dest = FalseBB;
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005853
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005854 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Chengd580f022008-12-03 08:38:43 +00005855 Chain, Dest, CC, Cmp);
5856 X86::CondCode CCode =
5857 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
5858 CCode = X86::GetOppositeBranchCondition(CCode);
5859 CC = DAG.getConstant(CCode, MVT::i8);
5860 Cond = Cmp;
5861 addTest = false;
5862 }
5863 }
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005864 }
Evan Cheng8c3af2c2009-02-02 08:07:36 +00005865 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
5866 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
5867 // It should be transformed during dag combiner except when the condition
5868 // is set by a arithmetics with overflow node.
5869 X86::CondCode CCode =
5870 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5871 CCode = X86::GetOppositeBranchCondition(CCode);
5872 CC = DAG.getConstant(CCode, MVT::i8);
5873 Cond = Cond.getOperand(0).getOperand(1);
5874 addTest = false;
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005875 }
Evan Cheng950aac02007-09-25 01:57:46 +00005876 }
5877
5878 if (addTest) {
5879 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohmanc8b47852009-03-07 01:58:32 +00005880 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng950aac02007-09-25 01:57:46 +00005881 }
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005882 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman6a00fcb2008-10-21 03:29:32 +00005883 Chain, Dest, CC, Cond);
Evan Cheng950aac02007-09-25 01:57:46 +00005884}
5885
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005886
5887// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
5888// Calls to _alloca is needed to probe the stack when allocating more than 4k
5889// bytes in one go. Touching the stack at 4K increments is necessary to ensure
5890// that the guard pages used by the OS virtual memory manager are allocated in
5891// correct sequence.
Dan Gohman8181bd12008-07-27 21:46:04 +00005892SDValue
5893X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005894 SelectionDAG &DAG) {
5895 assert(Subtarget->isTargetCygMing() &&
5896 "This should be used only on Cygwin/Mingw targets");
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005897 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005898
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005899 // Get the inputs.
Dan Gohman8181bd12008-07-27 21:46:04 +00005900 SDValue Chain = Op.getOperand(0);
5901 SDValue Size = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005902 // FIXME: Ensure alignment here
5903
Dan Gohman8181bd12008-07-27 21:46:04 +00005904 SDValue Flag;
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005905
Duncan Sands92c43912008-06-06 12:08:01 +00005906 MVT IntPtr = getPointerTy();
5907 MVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005908
Chris Lattnerfe5d4022008-10-11 22:08:30 +00005909 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005910
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00005911 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005912 Flag = Chain.getValue(1);
5913
5914 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00005915 SDValue Ops[] = { Chain,
Bill Wendlingfef06052008-09-16 21:48:12 +00005916 DAG.getTargetExternalSymbol("_alloca", IntPtr),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005917 DAG.getRegister(X86::EAX, IntPtr),
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005918 DAG.getRegister(X86StackPtr, SPTy),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005919 Flag };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005920 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops, 5);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005921 Flag = Chain.getValue(1);
5922
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005923 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnerfe5d4022008-10-11 22:08:30 +00005924 DAG.getIntPtrConstant(0, true),
5925 DAG.getIntPtrConstant(0, true),
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005926 Flag);
5927
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00005928 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00005929
Dan Gohman8181bd12008-07-27 21:46:04 +00005930 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00005931 return DAG.getMergeValues(Ops1, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005932}
5933
Dan Gohman8181bd12008-07-27 21:46:04 +00005934SDValue
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005935X86TargetLowering::EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl,
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005936 SDValue Chain,
5937 SDValue Dst, SDValue Src,
5938 SDValue Size, unsigned Align,
5939 const Value *DstSV,
Bill Wendling4b2e3782008-10-01 00:59:58 +00005940 uint64_t DstSVOff) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00005941 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005942
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005943 // If not DWORD aligned or size is more than the threshold, call the library.
5944 // The libc version is likely to be faster for these cases. It can use the
5945 // address value and run time information about the CPU.
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005946 if ((Align & 3) != 0 ||
Dan Gohmane8b391e2008-04-12 04:36:06 +00005947 !ConstantSize ||
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005948 ConstantSize->getZExtValue() >
5949 getSubtarget()->getMaxInlineSizeThreshold()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005950 SDValue InFlag(0, 0);
Dan Gohmanf95c2bf2008-04-01 20:38:36 +00005951
5952 // Check to see if there is a specialized entry-point for memory zeroing.
Dan Gohmane8b391e2008-04-12 04:36:06 +00005953 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
Bill Wendling5db7ffb2008-09-30 21:22:07 +00005954
Bill Wendling4b2e3782008-10-01 00:59:58 +00005955 if (const char *bzeroEntry = V &&
5956 V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
5957 MVT IntPtr = getPointerTy();
5958 const Type *IntPtrTy = TD->getIntPtrType();
Scott Michel91099d62009-02-17 22:15:04 +00005959 TargetLowering::ArgListTy Args;
Bill Wendling4b2e3782008-10-01 00:59:58 +00005960 TargetLowering::ArgListEntry Entry;
5961 Entry.Node = Dst;
5962 Entry.Ty = IntPtrTy;
5963 Args.push_back(Entry);
5964 Entry.Node = Size;
5965 Args.push_back(Entry);
5966 std::pair<SDValue,SDValue> CallResult =
Scott Michel91099d62009-02-17 22:15:04 +00005967 LowerCallTo(Chain, Type::VoidTy, false, false, false, false,
5968 CallingConv::C, false,
Dale Johannesen7f2abf42009-02-03 22:26:09 +00005969 DAG.getExternalSymbol(bzeroEntry, IntPtr), Args, DAG, dl);
Bill Wendling4b2e3782008-10-01 00:59:58 +00005970 return CallResult.second;
Dan Gohmanf95c2bf2008-04-01 20:38:36 +00005971 }
5972
Dan Gohmane8b391e2008-04-12 04:36:06 +00005973 // Otherwise have the target-independent code call memset.
Dan Gohman8181bd12008-07-27 21:46:04 +00005974 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005975 }
5976
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005977 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00005978 SDValue InFlag(0, 0);
Duncan Sands92c43912008-06-06 12:08:01 +00005979 MVT AVT;
Dan Gohman8181bd12008-07-27 21:46:04 +00005980 SDValue Count;
Dan Gohmane8b391e2008-04-12 04:36:06 +00005981 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005982 unsigned BytesLeft = 0;
5983 bool TwoRepStos = false;
5984 if (ValC) {
5985 unsigned ValReg;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005986 uint64_t Val = ValC->getZExtValue() & 255;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005987
5988 // If the value is a constant, then we can potentially use larger sets.
5989 switch (Align & 3) {
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00005990 case 2: // WORD aligned
5991 AVT = MVT::i16;
5992 ValReg = X86::AX;
5993 Val = (Val << 8) | Val;
5994 break;
5995 case 0: // DWORD aligned
5996 AVT = MVT::i32;
5997 ValReg = X86::EAX;
5998 Val = (Val << 8) | Val;
5999 Val = (Val << 16) | Val;
6000 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
6001 AVT = MVT::i64;
6002 ValReg = X86::RAX;
6003 Val = (Val << 32) | Val;
6004 }
6005 break;
6006 default: // Byte aligned
6007 AVT = MVT::i8;
6008 ValReg = X86::AL;
6009 Count = DAG.getIntPtrConstant(SizeVal);
6010 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006011 }
6012
Duncan Sandsec142ee2008-06-08 20:54:56 +00006013 if (AVT.bitsGT(MVT::i8)) {
Duncan Sands92c43912008-06-06 12:08:01 +00006014 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohmane8b391e2008-04-12 04:36:06 +00006015 Count = DAG.getIntPtrConstant(SizeVal / UBytes);
6016 BytesLeft = SizeVal % UBytes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006017 }
6018
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006019 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, AVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006020 InFlag);
6021 InFlag = Chain.getValue(1);
6022 } else {
6023 AVT = MVT::i8;
Dan Gohman271d1c22008-04-16 01:32:32 +00006024 Count = DAG.getIntPtrConstant(SizeVal);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006025 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006026 InFlag = Chain.getValue(1);
6027 }
6028
Scott Michel91099d62009-02-17 22:15:04 +00006029 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006030 X86::ECX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006031 Count, InFlag);
6032 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00006033 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006034 X86::EDI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00006035 Dst, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006036 InFlag = Chain.getValue(1);
6037
6038 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006039 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006040 Ops.push_back(Chain);
6041 Ops.push_back(DAG.getValueType(AVT));
6042 Ops.push_back(InFlag);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006043 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006044
6045 if (TwoRepStos) {
6046 InFlag = Chain.getValue(1);
Dan Gohmane8b391e2008-04-12 04:36:06 +00006047 Count = Size;
Duncan Sands92c43912008-06-06 12:08:01 +00006048 MVT CVT = Count.getValueType();
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006049 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006050 DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
Scott Michel91099d62009-02-17 22:15:04 +00006051 Chain = DAG.getCopyToReg(Chain, dl, (CVT == MVT::i64) ? X86::RCX :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006052 X86::ECX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006053 Left, InFlag);
6054 InFlag = Chain.getValue(1);
6055 Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6056 Ops.clear();
6057 Ops.push_back(Chain);
6058 Ops.push_back(DAG.getValueType(MVT::i8));
6059 Ops.push_back(InFlag);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006060 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006061 } else if (BytesLeft) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00006062 // Handle the last 1 - 7 bytes.
6063 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands92c43912008-06-06 12:08:01 +00006064 MVT AddrVT = Dst.getValueType();
6065 MVT SizeVT = Size.getValueType();
Dan Gohmane8b391e2008-04-12 04:36:06 +00006066
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006067 Chain = DAG.getMemset(Chain, dl,
6068 DAG.getNode(ISD::ADD, dl, AddrVT, Dst,
Dan Gohmane8b391e2008-04-12 04:36:06 +00006069 DAG.getConstant(Offset, AddrVT)),
6070 Src,
6071 DAG.getConstant(BytesLeft, SizeVT),
Dan Gohman65118f42008-04-28 17:15:20 +00006072 Align, DstSV, DstSVOff + Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006073 }
6074
Dan Gohmane8b391e2008-04-12 04:36:06 +00006075 // TODO: Use a Tokenfactor, as in memcpy, instead of a single chain.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006076 return Chain;
6077}
6078
Dan Gohman8181bd12008-07-27 21:46:04 +00006079SDValue
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006080X86TargetLowering::EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00006081 SDValue Chain, SDValue Dst, SDValue Src,
6082 SDValue Size, unsigned Align,
6083 bool AlwaysInline,
6084 const Value *DstSV, uint64_t DstSVOff,
Scott Michel91099d62009-02-17 22:15:04 +00006085 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00006086 // This requires the copy size to be a constant, preferrably
6087 // within a subtarget-specific limit.
6088 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
6089 if (!ConstantSize)
Dan Gohman8181bd12008-07-27 21:46:04 +00006090 return SDValue();
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006091 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohmane8b391e2008-04-12 04:36:06 +00006092 if (!AlwaysInline && SizeVal > getSubtarget()->getMaxInlineSizeThreshold())
Dan Gohman8181bd12008-07-27 21:46:04 +00006093 return SDValue();
Dan Gohmane8b391e2008-04-12 04:36:06 +00006094
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00006095 /// If not DWORD aligned, call the library.
6096 if ((Align & 3) != 0)
6097 return SDValue();
6098
6099 // DWORD aligned
6100 MVT AVT = MVT::i32;
6101 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) // QWORD aligned
Dan Gohmane8b391e2008-04-12 04:36:06 +00006102 AVT = MVT::i64;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006103
Duncan Sands92c43912008-06-06 12:08:01 +00006104 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohmane8b391e2008-04-12 04:36:06 +00006105 unsigned CountVal = SizeVal / UBytes;
Dan Gohman8181bd12008-07-27 21:46:04 +00006106 SDValue Count = DAG.getIntPtrConstant(CountVal);
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00006107 unsigned BytesLeft = SizeVal % UBytes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006108
Dan Gohman8181bd12008-07-27 21:46:04 +00006109 SDValue InFlag(0, 0);
Scott Michel91099d62009-02-17 22:15:04 +00006110 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006111 X86::ECX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006112 Count, InFlag);
6113 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00006114 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006115 X86::EDI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00006116 Dst, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006117 InFlag = Chain.getValue(1);
Scott Michel91099d62009-02-17 22:15:04 +00006118 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RSI :
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006119 X86::ESI,
Dan Gohmane8b391e2008-04-12 04:36:06 +00006120 Src, InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006121 InFlag = Chain.getValue(1);
6122
6123 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006124 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006125 Ops.push_back(Chain);
6126 Ops.push_back(DAG.getValueType(AVT));
6127 Ops.push_back(InFlag);
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006128 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, dl, Tys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006129
Dan Gohman8181bd12008-07-27 21:46:04 +00006130 SmallVector<SDValue, 4> Results;
Evan Cheng38d3c522008-04-25 00:26:43 +00006131 Results.push_back(RepMovs);
Rafael Espindolaf12f3a92007-09-28 12:53:01 +00006132 if (BytesLeft) {
Dan Gohmane8b391e2008-04-12 04:36:06 +00006133 // Handle the last 1 - 7 bytes.
6134 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands92c43912008-06-06 12:08:01 +00006135 MVT DstVT = Dst.getValueType();
6136 MVT SrcVT = Src.getValueType();
6137 MVT SizeVT = Size.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00006138 Results.push_back(DAG.getMemcpy(Chain, dl,
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006139 DAG.getNode(ISD::ADD, dl, DstVT, Dst,
Evan Cheng38d3c522008-04-25 00:26:43 +00006140 DAG.getConstant(Offset, DstVT)),
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006141 DAG.getNode(ISD::ADD, dl, SrcVT, Src,
Evan Cheng38d3c522008-04-25 00:26:43 +00006142 DAG.getConstant(Offset, SrcVT)),
Dan Gohmane8b391e2008-04-12 04:36:06 +00006143 DAG.getConstant(BytesLeft, SizeVT),
6144 Align, AlwaysInline,
Dan Gohman65118f42008-04-28 17:15:20 +00006145 DstSV, DstSVOff + Offset,
6146 SrcSV, SrcSVOff + Offset));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006147 }
6148
Scott Michel91099d62009-02-17 22:15:04 +00006149 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesen7f2abf42009-02-03 22:26:09 +00006150 &Results[0], Results.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006151}
6152
Dan Gohman8181bd12008-07-27 21:46:04 +00006153SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) {
Dan Gohman12a9c082008-02-06 22:27:42 +00006154 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006155 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006156
6157 if (!Subtarget->is64Bit()) {
6158 // vastart just stores the address of the VarArgsFrameIndex slot into the
6159 // memory location argument.
Dan Gohman8181bd12008-07-27 21:46:04 +00006160 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006161 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006162 }
6163
6164 // __va_list_tag:
6165 // gp_offset (0 - 6 * 8)
6166 // fp_offset (48 - 48 + 8 * 16)
6167 // overflow_arg_area (point to parameters coming in memory).
6168 // reg_save_area
Dan Gohman8181bd12008-07-27 21:46:04 +00006169 SmallVector<SDValue, 8> MemOps;
6170 SDValue FIN = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006171 // Store gp_offset
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006172 SDValue Store = DAG.getStore(Op.getOperand(0), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006173 DAG.getConstant(VarArgsGPOffset, MVT::i32),
Dan Gohman12a9c082008-02-06 22:27:42 +00006174 FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006175 MemOps.push_back(Store);
6176
6177 // Store fp_offset
Scott Michel91099d62009-02-17 22:15:04 +00006178 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006179 FIN, DAG.getIntPtrConstant(4));
6180 Store = DAG.getStore(Op.getOperand(0), dl,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006181 DAG.getConstant(VarArgsFPOffset, MVT::i32),
Dan Gohman12a9c082008-02-06 22:27:42 +00006182 FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006183 MemOps.push_back(Store);
6184
6185 // Store ptr to overflow_arg_area
Scott Michel91099d62009-02-17 22:15:04 +00006186 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006187 FIN, DAG.getIntPtrConstant(4));
Dan Gohman8181bd12008-07-27 21:46:04 +00006188 SDValue OVFIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006189 Store = DAG.getStore(Op.getOperand(0), dl, OVFIN, FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006190 MemOps.push_back(Store);
6191
6192 // Store ptr to reg_save_area.
Scott Michel91099d62009-02-17 22:15:04 +00006193 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006194 FIN, DAG.getIntPtrConstant(8));
Dan Gohman8181bd12008-07-27 21:46:04 +00006195 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006196 Store = DAG.getStore(Op.getOperand(0), dl, RSFIN, FIN, SV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006197 MemOps.push_back(Store);
Scott Michel91099d62009-02-17 22:15:04 +00006198 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006199 &MemOps[0], MemOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006200}
6201
Dan Gohman8181bd12008-07-27 21:46:04 +00006202SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) {
Dan Gohman827cb1f2008-05-10 01:26:14 +00006203 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
6204 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_arg!");
Dan Gohman8181bd12008-07-27 21:46:04 +00006205 SDValue Chain = Op.getOperand(0);
6206 SDValue SrcPtr = Op.getOperand(1);
6207 SDValue SrcSV = Op.getOperand(2);
Dan Gohman827cb1f2008-05-10 01:26:14 +00006208
6209 assert(0 && "VAArgInst is not yet implemented for x86-64!");
6210 abort();
Dan Gohman8181bd12008-07-27 21:46:04 +00006211 return SDValue();
Dan Gohman827cb1f2008-05-10 01:26:14 +00006212}
6213
Dan Gohman8181bd12008-07-27 21:46:04 +00006214SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006215 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman840ff5c2008-04-18 20:55:41 +00006216 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman8181bd12008-07-27 21:46:04 +00006217 SDValue Chain = Op.getOperand(0);
6218 SDValue DstPtr = Op.getOperand(1);
6219 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman12a9c082008-02-06 22:27:42 +00006220 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
6221 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006222 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006223
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006224 return DAG.getMemcpy(Chain, dl, DstPtr, SrcPtr,
Dan Gohman840ff5c2008-04-18 20:55:41 +00006225 DAG.getIntPtrConstant(24), 8, false,
6226 DstSV, 0, SrcSV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006227}
6228
Dan Gohman8181bd12008-07-27 21:46:04 +00006229SDValue
6230X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006231 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006232 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006233 switch (IntNo) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006234 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006235 // Comparison intrinsics.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006236 case Intrinsic::x86_sse_comieq_ss:
6237 case Intrinsic::x86_sse_comilt_ss:
6238 case Intrinsic::x86_sse_comile_ss:
6239 case Intrinsic::x86_sse_comigt_ss:
6240 case Intrinsic::x86_sse_comige_ss:
6241 case Intrinsic::x86_sse_comineq_ss:
6242 case Intrinsic::x86_sse_ucomieq_ss:
6243 case Intrinsic::x86_sse_ucomilt_ss:
6244 case Intrinsic::x86_sse_ucomile_ss:
6245 case Intrinsic::x86_sse_ucomigt_ss:
6246 case Intrinsic::x86_sse_ucomige_ss:
6247 case Intrinsic::x86_sse_ucomineq_ss:
6248 case Intrinsic::x86_sse2_comieq_sd:
6249 case Intrinsic::x86_sse2_comilt_sd:
6250 case Intrinsic::x86_sse2_comile_sd:
6251 case Intrinsic::x86_sse2_comigt_sd:
6252 case Intrinsic::x86_sse2_comige_sd:
6253 case Intrinsic::x86_sse2_comineq_sd:
6254 case Intrinsic::x86_sse2_ucomieq_sd:
6255 case Intrinsic::x86_sse2_ucomilt_sd:
6256 case Intrinsic::x86_sse2_ucomile_sd:
6257 case Intrinsic::x86_sse2_ucomigt_sd:
6258 case Intrinsic::x86_sse2_ucomige_sd:
6259 case Intrinsic::x86_sse2_ucomineq_sd: {
6260 unsigned Opc = 0;
6261 ISD::CondCode CC = ISD::SETCC_INVALID;
6262 switch (IntNo) {
6263 default: break;
6264 case Intrinsic::x86_sse_comieq_ss:
6265 case Intrinsic::x86_sse2_comieq_sd:
6266 Opc = X86ISD::COMI;
6267 CC = ISD::SETEQ;
6268 break;
6269 case Intrinsic::x86_sse_comilt_ss:
6270 case Intrinsic::x86_sse2_comilt_sd:
6271 Opc = X86ISD::COMI;
6272 CC = ISD::SETLT;
6273 break;
6274 case Intrinsic::x86_sse_comile_ss:
6275 case Intrinsic::x86_sse2_comile_sd:
6276 Opc = X86ISD::COMI;
6277 CC = ISD::SETLE;
6278 break;
6279 case Intrinsic::x86_sse_comigt_ss:
6280 case Intrinsic::x86_sse2_comigt_sd:
6281 Opc = X86ISD::COMI;
6282 CC = ISD::SETGT;
6283 break;
6284 case Intrinsic::x86_sse_comige_ss:
6285 case Intrinsic::x86_sse2_comige_sd:
6286 Opc = X86ISD::COMI;
6287 CC = ISD::SETGE;
6288 break;
6289 case Intrinsic::x86_sse_comineq_ss:
6290 case Intrinsic::x86_sse2_comineq_sd:
6291 Opc = X86ISD::COMI;
6292 CC = ISD::SETNE;
6293 break;
6294 case Intrinsic::x86_sse_ucomieq_ss:
6295 case Intrinsic::x86_sse2_ucomieq_sd:
6296 Opc = X86ISD::UCOMI;
6297 CC = ISD::SETEQ;
6298 break;
6299 case Intrinsic::x86_sse_ucomilt_ss:
6300 case Intrinsic::x86_sse2_ucomilt_sd:
6301 Opc = X86ISD::UCOMI;
6302 CC = ISD::SETLT;
6303 break;
6304 case Intrinsic::x86_sse_ucomile_ss:
6305 case Intrinsic::x86_sse2_ucomile_sd:
6306 Opc = X86ISD::UCOMI;
6307 CC = ISD::SETLE;
6308 break;
6309 case Intrinsic::x86_sse_ucomigt_ss:
6310 case Intrinsic::x86_sse2_ucomigt_sd:
6311 Opc = X86ISD::UCOMI;
6312 CC = ISD::SETGT;
6313 break;
6314 case Intrinsic::x86_sse_ucomige_ss:
6315 case Intrinsic::x86_sse2_ucomige_sd:
6316 Opc = X86ISD::UCOMI;
6317 CC = ISD::SETGE;
6318 break;
6319 case Intrinsic::x86_sse_ucomineq_ss:
6320 case Intrinsic::x86_sse2_ucomineq_sd:
6321 Opc = X86ISD::UCOMI;
6322 CC = ISD::SETNE;
6323 break;
6324 }
6325
Dan Gohman8181bd12008-07-27 21:46:04 +00006326 SDValue LHS = Op.getOperand(1);
6327 SDValue RHS = Op.getOperand(2);
Chris Lattnerebb91142008-12-24 23:53:05 +00006328 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006329 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
6330 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Evan Cheng89c17632008-08-17 19:22:34 +00006331 DAG.getConstant(X86CC, MVT::i8), Cond);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006332 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006333 }
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006334
6335 // Fix vector shift instructions where the last operand is a non-immediate
6336 // i32 value.
6337 case Intrinsic::x86_sse2_pslli_w:
6338 case Intrinsic::x86_sse2_pslli_d:
6339 case Intrinsic::x86_sse2_pslli_q:
6340 case Intrinsic::x86_sse2_psrli_w:
6341 case Intrinsic::x86_sse2_psrli_d:
6342 case Intrinsic::x86_sse2_psrli_q:
6343 case Intrinsic::x86_sse2_psrai_w:
6344 case Intrinsic::x86_sse2_psrai_d:
6345 case Intrinsic::x86_mmx_pslli_w:
6346 case Intrinsic::x86_mmx_pslli_d:
6347 case Intrinsic::x86_mmx_pslli_q:
6348 case Intrinsic::x86_mmx_psrli_w:
6349 case Intrinsic::x86_mmx_psrli_d:
6350 case Intrinsic::x86_mmx_psrli_q:
6351 case Intrinsic::x86_mmx_psrai_w:
6352 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006353 SDValue ShAmt = Op.getOperand(2);
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006354 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman8181bd12008-07-27 21:46:04 +00006355 return SDValue();
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006356
6357 unsigned NewIntNo = 0;
Duncan Sands92c43912008-06-06 12:08:01 +00006358 MVT ShAmtVT = MVT::v4i32;
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006359 switch (IntNo) {
6360 case Intrinsic::x86_sse2_pslli_w:
6361 NewIntNo = Intrinsic::x86_sse2_psll_w;
6362 break;
6363 case Intrinsic::x86_sse2_pslli_d:
6364 NewIntNo = Intrinsic::x86_sse2_psll_d;
6365 break;
6366 case Intrinsic::x86_sse2_pslli_q:
6367 NewIntNo = Intrinsic::x86_sse2_psll_q;
6368 break;
6369 case Intrinsic::x86_sse2_psrli_w:
6370 NewIntNo = Intrinsic::x86_sse2_psrl_w;
6371 break;
6372 case Intrinsic::x86_sse2_psrli_d:
6373 NewIntNo = Intrinsic::x86_sse2_psrl_d;
6374 break;
6375 case Intrinsic::x86_sse2_psrli_q:
6376 NewIntNo = Intrinsic::x86_sse2_psrl_q;
6377 break;
6378 case Intrinsic::x86_sse2_psrai_w:
6379 NewIntNo = Intrinsic::x86_sse2_psra_w;
6380 break;
6381 case Intrinsic::x86_sse2_psrai_d:
6382 NewIntNo = Intrinsic::x86_sse2_psra_d;
6383 break;
6384 default: {
6385 ShAmtVT = MVT::v2i32;
6386 switch (IntNo) {
6387 case Intrinsic::x86_mmx_pslli_w:
6388 NewIntNo = Intrinsic::x86_mmx_psll_w;
6389 break;
6390 case Intrinsic::x86_mmx_pslli_d:
6391 NewIntNo = Intrinsic::x86_mmx_psll_d;
6392 break;
6393 case Intrinsic::x86_mmx_pslli_q:
6394 NewIntNo = Intrinsic::x86_mmx_psll_q;
6395 break;
6396 case Intrinsic::x86_mmx_psrli_w:
6397 NewIntNo = Intrinsic::x86_mmx_psrl_w;
6398 break;
6399 case Intrinsic::x86_mmx_psrli_d:
6400 NewIntNo = Intrinsic::x86_mmx_psrl_d;
6401 break;
6402 case Intrinsic::x86_mmx_psrli_q:
6403 NewIntNo = Intrinsic::x86_mmx_psrl_q;
6404 break;
6405 case Intrinsic::x86_mmx_psrai_w:
6406 NewIntNo = Intrinsic::x86_mmx_psra_w;
6407 break;
6408 case Intrinsic::x86_mmx_psrai_d:
6409 NewIntNo = Intrinsic::x86_mmx_psra_d;
6410 break;
6411 default: abort(); // Can't reach here.
6412 }
6413 break;
6414 }
6415 }
Duncan Sands92c43912008-06-06 12:08:01 +00006416 MVT VT = Op.getValueType();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006417 ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT,
6418 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, ShAmtVT, ShAmt));
6419 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006420 DAG.getConstant(NewIntNo, MVT::i32),
6421 Op.getOperand(1), ShAmt);
6422 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006423 }
6424}
6425
Dan Gohman8181bd12008-07-27 21:46:04 +00006426SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
Bill Wendling6ddc87b2009-01-16 19:25:27 +00006427 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006428 DebugLoc dl = Op.getDebugLoc();
Bill Wendling6ddc87b2009-01-16 19:25:27 +00006429
6430 if (Depth > 0) {
6431 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
6432 SDValue Offset =
6433 DAG.getConstant(TD->getPointerSize(),
6434 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006435 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michel91099d62009-02-17 22:15:04 +00006436 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006437 FrameAddr, Offset),
Bill Wendling6ddc87b2009-01-16 19:25:27 +00006438 NULL, 0);
6439 }
6440
6441 // Just load the return address.
Dan Gohman8181bd12008-07-27 21:46:04 +00006442 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michel91099d62009-02-17 22:15:04 +00006443 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006444 RetAddrFI, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006445}
6446
Dan Gohman8181bd12008-07-27 21:46:04 +00006447SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
Evan Cheng33633672008-09-27 01:56:22 +00006448 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6449 MFI->setFrameAddressIsTaken(true);
6450 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006451 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng33633672008-09-27 01:56:22 +00006452 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
6453 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006454 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng33633672008-09-27 01:56:22 +00006455 while (Depth--)
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006456 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, NULL, 0);
Evan Cheng33633672008-09-27 01:56:22 +00006457 return FrameAddr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006458}
6459
Dan Gohman8181bd12008-07-27 21:46:04 +00006460SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Anton Korobeynikov566f9d92008-09-08 21:12:11 +00006461 SelectionDAG &DAG) {
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006462 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006463}
6464
Dan Gohman8181bd12008-07-27 21:46:04 +00006465SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006466{
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006467 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman8181bd12008-07-27 21:46:04 +00006468 SDValue Chain = Op.getOperand(0);
6469 SDValue Offset = Op.getOperand(1);
6470 SDValue Handler = Op.getOperand(2);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006471 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006472
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006473 SDValue Frame = DAG.getRegister(Subtarget->is64Bit() ? X86::RBP : X86::EBP,
6474 getPointerTy());
6475 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006476
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006477 SDValue StoreAddr = DAG.getNode(ISD::SUB, dl, getPointerTy(), Frame,
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006478 DAG.getIntPtrConstant(-TD->getPointerSize()));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006479 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
6480 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, NULL, 0);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006481 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006482 MF.getRegInfo().addLiveOut(StoreAddrReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006483
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006484 return DAG.getNode(X86ISD::EH_RETURN, dl,
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00006485 MVT::Other,
6486 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006487}
6488
Dan Gohman8181bd12008-07-27 21:46:04 +00006489SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006490 SelectionDAG &DAG) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006491 SDValue Root = Op.getOperand(0);
6492 SDValue Trmp = Op.getOperand(1); // trampoline
6493 SDValue FPtr = Op.getOperand(2); // nested function
6494 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006495 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006496
Dan Gohman12a9c082008-02-06 22:27:42 +00006497 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006498
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006499 const X86InstrInfo *TII =
6500 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
6501
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006502 if (Subtarget->is64Bit()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006503 SDValue OutChains[6];
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006504
6505 // Large code-model.
6506
6507 const unsigned char JMP64r = TII->getBaseOpcodeFor(X86::JMP64r);
6508 const unsigned char MOV64ri = TII->getBaseOpcodeFor(X86::MOV64ri);
6509
Dan Gohmanb41dfba2008-05-14 01:58:56 +00006510 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
6511 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006512
6513 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
6514
6515 // Load the pointer to the nested function into R11.
6516 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman8181bd12008-07-27 21:46:04 +00006517 SDValue Addr = Trmp;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006518 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6519 Addr, TrmpAddr, 0);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006520
Scott Michel91099d62009-02-17 22:15:04 +00006521 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006522 DAG.getConstant(2, MVT::i64));
6523 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr, TrmpAddr, 2, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006524
6525 // Load the 'nest' parameter value into R10.
6526 // R10 is specified in X86CallingConv.td
6527 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Scott Michel91099d62009-02-17 22:15:04 +00006528 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006529 DAG.getConstant(10, MVT::i64));
6530 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6531 Addr, TrmpAddr, 10);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006532
Scott Michel91099d62009-02-17 22:15:04 +00006533 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006534 DAG.getConstant(12, MVT::i64));
6535 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 12, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006536
6537 // Jump to the nested function.
6538 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Scott Michel91099d62009-02-17 22:15:04 +00006539 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006540 DAG.getConstant(20, MVT::i64));
6541 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6542 Addr, TrmpAddr, 20);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006543
6544 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Scott Michel91099d62009-02-17 22:15:04 +00006545 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006546 DAG.getConstant(22, MVT::i64));
6547 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00006548 TrmpAddr, 22);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006549
Dan Gohman8181bd12008-07-27 21:46:04 +00006550 SDValue Ops[] =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006551 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
6552 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006553 } else {
Dan Gohman0bd70702008-01-31 01:01:48 +00006554 const Function *Func =
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006555 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
6556 unsigned CC = Func->getCallingConv();
Duncan Sands466eadd2007-08-29 19:01:20 +00006557 unsigned NestReg;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006558
6559 switch (CC) {
6560 default:
6561 assert(0 && "Unsupported calling convention");
6562 case CallingConv::C:
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006563 case CallingConv::X86_StdCall: {
6564 // Pass 'nest' parameter in ECX.
6565 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00006566 NestReg = X86::ECX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006567
6568 // Check that ECX wasn't needed by an 'inreg' parameter.
6569 const FunctionType *FTy = Func->getFunctionType();
Devang Pateld222f862008-09-25 21:00:45 +00006570 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006571
Chris Lattner1c8733e2008-03-12 17:45:29 +00006572 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006573 unsigned InRegCount = 0;
6574 unsigned Idx = 1;
6575
6576 for (FunctionType::param_iterator I = FTy->param_begin(),
6577 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Pateld222f862008-09-25 21:00:45 +00006578 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006579 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00006580 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006581
6582 if (InRegCount > 2) {
6583 cerr << "Nest register in use - reduce number of inreg parameters!\n";
6584 abort();
6585 }
6586 }
6587 break;
6588 }
6589 case CallingConv::X86_FastCall:
Duncan Sands162c1d52008-09-10 13:22:10 +00006590 case CallingConv::Fast:
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006591 // Pass 'nest' parameter in EAX.
6592 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00006593 NestReg = X86::EAX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006594 break;
6595 }
6596
Dan Gohman8181bd12008-07-27 21:46:04 +00006597 SDValue OutChains[4];
6598 SDValue Addr, Disp;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006599
Scott Michel91099d62009-02-17 22:15:04 +00006600 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006601 DAG.getConstant(10, MVT::i32));
6602 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006603
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006604 const unsigned char MOV32ri = TII->getBaseOpcodeFor(X86::MOV32ri);
Dan Gohmanb41dfba2008-05-14 01:58:56 +00006605 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michel91099d62009-02-17 22:15:04 +00006606 OutChains[0] = DAG.getStore(Root, dl,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006607 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Dan Gohman12a9c082008-02-06 22:27:42 +00006608 Trmp, TrmpAddr, 0);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006609
Scott Michel91099d62009-02-17 22:15:04 +00006610 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006611 DAG.getConstant(1, MVT::i32));
6612 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 1, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006613
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00006614 const unsigned char JMP = TII->getBaseOpcodeFor(X86::JMP);
Scott Michel91099d62009-02-17 22:15:04 +00006615 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006616 DAG.getConstant(5, MVT::i32));
6617 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Dan Gohman12a9c082008-02-06 22:27:42 +00006618 TrmpAddr, 5, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006619
Scott Michel91099d62009-02-17 22:15:04 +00006620 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006621 DAG.getConstant(6, MVT::i32));
6622 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr, TrmpAddr, 6, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006623
Dan Gohman8181bd12008-07-27 21:46:04 +00006624 SDValue Ops[] =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006625 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
6626 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006627 }
6628}
6629
Dan Gohman8181bd12008-07-27 21:46:04 +00006630SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006631 /*
6632 The rounding mode is in bits 11:10 of FPSR, and has the following
6633 settings:
6634 00 Round to nearest
6635 01 Round to -inf
6636 10 Round to +inf
6637 11 Round to 0
6638
6639 FLT_ROUNDS, on the other hand, expects the following:
6640 -1 Undefined
6641 0 Round to 0
6642 1 Round to nearest
6643 2 Round to +inf
6644 3 Round to -inf
6645
6646 To perform the conversion, we do:
6647 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
6648 */
6649
6650 MachineFunction &MF = DAG.getMachineFunction();
6651 const TargetMachine &TM = MF.getTarget();
6652 const TargetFrameInfo &TFI = *TM.getFrameInfo();
6653 unsigned StackAlignment = TFI.getStackAlignment();
Duncan Sands92c43912008-06-06 12:08:01 +00006654 MVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006655 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006656
6657 // Save FP Control Word to stack slot
6658 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment);
Dan Gohman8181bd12008-07-27 21:46:04 +00006659 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006660
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006661 SDValue Chain = DAG.getNode(X86ISD::FNSTCW16m, dl, MVT::Other,
Evan Cheng6617eed2008-09-24 23:26:36 +00006662 DAG.getEntryNode(), StackSlot);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006663
6664 // Load FP Control Word from stack slot
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006665 SDValue CWD = DAG.getLoad(MVT::i16, dl, Chain, StackSlot, NULL, 0);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006666
6667 // Transform as necessary
Dan Gohman8181bd12008-07-27 21:46:04 +00006668 SDValue CWD1 =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006669 DAG.getNode(ISD::SRL, dl, MVT::i16,
6670 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006671 CWD, DAG.getConstant(0x800, MVT::i16)),
6672 DAG.getConstant(11, MVT::i8));
Dan Gohman8181bd12008-07-27 21:46:04 +00006673 SDValue CWD2 =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006674 DAG.getNode(ISD::SRL, dl, MVT::i16,
6675 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006676 CWD, DAG.getConstant(0x400, MVT::i16)),
6677 DAG.getConstant(9, MVT::i8));
6678
Dan Gohman8181bd12008-07-27 21:46:04 +00006679 SDValue RetVal =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006680 DAG.getNode(ISD::AND, dl, MVT::i16,
6681 DAG.getNode(ISD::ADD, dl, MVT::i16,
6682 DAG.getNode(ISD::OR, dl, MVT::i16, CWD1, CWD2),
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006683 DAG.getConstant(1, MVT::i16)),
6684 DAG.getConstant(3, MVT::i16));
6685
6686
Duncan Sands92c43912008-06-06 12:08:01 +00006687 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen24dd9a52009-02-07 00:55:49 +00006688 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00006689}
6690
Dan Gohman8181bd12008-07-27 21:46:04 +00006691SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00006692 MVT VT = Op.getValueType();
6693 MVT OpVT = VT;
6694 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006695 DebugLoc dl = Op.getDebugLoc();
Evan Cheng48679f42007-12-14 02:13:44 +00006696
6697 Op = Op.getOperand(0);
6698 if (VT == MVT::i8) {
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006699 // Zero extend to i32 since there is not an i8 bsr.
Evan Cheng48679f42007-12-14 02:13:44 +00006700 OpVT = MVT::i32;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006701 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006702 }
Evan Cheng48679f42007-12-14 02:13:44 +00006703
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006704 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
6705 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006706 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006707
6708 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Dan Gohman8181bd12008-07-27 21:46:04 +00006709 SmallVector<SDValue, 4> Ops;
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006710 Ops.push_back(Op);
6711 Ops.push_back(DAG.getConstant(NumBits+NumBits-1, OpVT));
6712 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6713 Ops.push_back(Op.getValue(1));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006714 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006715
6716 // Finally xor with NumBits-1.
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006717 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006718
Evan Cheng48679f42007-12-14 02:13:44 +00006719 if (VT == MVT::i8)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006720 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006721 return Op;
6722}
6723
Dan Gohman8181bd12008-07-27 21:46:04 +00006724SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +00006725 MVT VT = Op.getValueType();
6726 MVT OpVT = VT;
6727 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006728 DebugLoc dl = Op.getDebugLoc();
Evan Cheng48679f42007-12-14 02:13:44 +00006729
6730 Op = Op.getOperand(0);
6731 if (VT == MVT::i8) {
6732 OpVT = MVT::i32;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006733 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006734 }
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006735
6736 // Issue a bsf (scan bits forward) which also sets EFLAGS.
6737 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006738 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006739
6740 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Dan Gohman8181bd12008-07-27 21:46:04 +00006741 SmallVector<SDValue, 4> Ops;
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006742 Ops.push_back(Op);
6743 Ops.push_back(DAG.getConstant(NumBits, OpVT));
6744 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6745 Ops.push_back(Op.getValue(1));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006746 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00006747
Evan Cheng48679f42007-12-14 02:13:44 +00006748 if (VT == MVT::i8)
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006749 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00006750 return Op;
6751}
6752
Mon P Wang14edb092008-12-18 21:42:19 +00006753SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) {
6754 MVT VT = Op.getValueType();
6755 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006756 DebugLoc dl = Op.getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00006757
Mon P Wang14edb092008-12-18 21:42:19 +00006758 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
6759 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
6760 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
6761 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
6762 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
6763 //
6764 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
6765 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
6766 // return AloBlo + AloBhi + AhiBlo;
6767
6768 SDValue A = Op.getOperand(0);
6769 SDValue B = Op.getOperand(1);
Scott Michel91099d62009-02-17 22:15:04 +00006770
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006771 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006772 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6773 A, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006774 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006775 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6776 B, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006777 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006778 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6779 A, B);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006780 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006781 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6782 A, Bhi);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006783 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006784 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6785 Ahi, B);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006786 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006787 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6788 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006789 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wang14edb092008-12-18 21:42:19 +00006790 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6791 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006792 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
6793 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wang14edb092008-12-18 21:42:19 +00006794 return Res;
6795}
6796
6797
Bill Wendling7e04be62008-12-09 22:08:41 +00006798SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) {
6799 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
6800 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendlingd3511522008-12-02 01:06:39 +00006801 // looks for this combo and may remove the "setcc" instruction if the "setcc"
6802 // has only one use.
Bill Wendlingd06b4202008-11-26 22:37:40 +00006803 SDNode *N = Op.getNode();
Bill Wendlingd3511522008-12-02 01:06:39 +00006804 SDValue LHS = N->getOperand(0);
6805 SDValue RHS = N->getOperand(1);
Bill Wendling7e04be62008-12-09 22:08:41 +00006806 unsigned BaseOp = 0;
6807 unsigned Cond = 0;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006808 DebugLoc dl = Op.getDebugLoc();
Bill Wendling7e04be62008-12-09 22:08:41 +00006809
6810 switch (Op.getOpcode()) {
6811 default: assert(0 && "Unknown ovf instruction!");
6812 case ISD::SADDO:
Dan Gohman99a12192009-03-04 19:44:21 +00006813 // A subtract of one will be selected as a INC. Note that INC doesn't
6814 // set CF, so we can't do this for UADDO.
6815 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
6816 if (C->getAPIntValue() == 1) {
6817 BaseOp = X86ISD::INC;
6818 Cond = X86::COND_O;
6819 break;
6820 }
Bill Wendlingae034ed2008-12-12 00:56:36 +00006821 BaseOp = X86ISD::ADD;
Bill Wendling7e04be62008-12-09 22:08:41 +00006822 Cond = X86::COND_O;
6823 break;
6824 case ISD::UADDO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006825 BaseOp = X86ISD::ADD;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006826 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006827 break;
6828 case ISD::SSUBO:
Dan Gohman99a12192009-03-04 19:44:21 +00006829 // A subtract of one will be selected as a DEC. Note that DEC doesn't
6830 // set CF, so we can't do this for USUBO.
6831 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
6832 if (C->getAPIntValue() == 1) {
6833 BaseOp = X86ISD::DEC;
6834 Cond = X86::COND_O;
6835 break;
6836 }
Bill Wendlingae034ed2008-12-12 00:56:36 +00006837 BaseOp = X86ISD::SUB;
Bill Wendling7e04be62008-12-09 22:08:41 +00006838 Cond = X86::COND_O;
6839 break;
6840 case ISD::USUBO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00006841 BaseOp = X86ISD::SUB;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006842 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006843 break;
6844 case ISD::SMULO:
Bill Wendlingf5399032008-12-12 21:15:41 +00006845 BaseOp = X86ISD::SMUL;
Bill Wendling7e04be62008-12-09 22:08:41 +00006846 Cond = X86::COND_O;
6847 break;
6848 case ISD::UMULO:
Bill Wendlingf5399032008-12-12 21:15:41 +00006849 BaseOp = X86ISD::UMUL;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006850 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00006851 break;
6852 }
Bill Wendlingd06b4202008-11-26 22:37:40 +00006853
Bill Wendlingd3511522008-12-02 01:06:39 +00006854 // Also sets EFLAGS.
6855 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006856 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendlingd06b4202008-11-26 22:37:40 +00006857
Bill Wendlingd3511522008-12-02 01:06:39 +00006858 SDValue SetCC =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006859 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Bill Wendling35f1a9d2008-12-10 02:01:32 +00006860 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendlingd06b4202008-11-26 22:37:40 +00006861
Bill Wendlingd3511522008-12-02 01:06:39 +00006862 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
6863 return Sum;
Bill Wendling4c134df2008-11-24 19:21:46 +00006864}
6865
Dan Gohman8181bd12008-07-27 21:46:04 +00006866SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanc70fa752008-06-25 16:07:49 +00006867 MVT T = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006868 DebugLoc dl = Op.getDebugLoc();
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00006869 unsigned Reg = 0;
6870 unsigned size = 0;
Duncan Sands92c43912008-06-06 12:08:01 +00006871 switch(T.getSimpleVT()) {
6872 default:
6873 assert(false && "Invalid value type!");
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006874 case MVT::i8: Reg = X86::AL; size = 1; break;
6875 case MVT::i16: Reg = X86::AX; size = 2; break;
6876 case MVT::i32: Reg = X86::EAX; size = 4; break;
Scott Michel91099d62009-02-17 22:15:04 +00006877 case MVT::i64:
Duncan Sands7d9834b2008-12-01 11:39:25 +00006878 assert(Subtarget->is64Bit() && "Node not type legal!");
6879 Reg = X86::RAX; size = 8;
Andrew Lenharth81580822008-03-05 01:15:49 +00006880 break;
Bill Wendlingd3511522008-12-02 01:06:39 +00006881 }
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006882 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), dl, Reg,
Dale Johannesenddb761b2008-09-11 03:12:59 +00006883 Op.getOperand(2), SDValue());
Dan Gohman8181bd12008-07-27 21:46:04 +00006884 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng6617eed2008-09-24 23:26:36 +00006885 Op.getOperand(1),
6886 Op.getOperand(3),
6887 DAG.getTargetConstant(size, MVT::i8),
6888 cpIn.getValue(1) };
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006889 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006890 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG_DAG, dl, Tys, Ops, 5);
Scott Michel91099d62009-02-17 22:15:04 +00006891 SDValue cpOut =
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006892 DAG.getCopyFromReg(Result.getValue(0), dl, Reg, T, Result.getValue(1));
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00006893 return cpOut;
6894}
6895
Duncan Sands7d9834b2008-12-01 11:39:25 +00006896SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Gabor Greif825aa892008-08-28 23:19:51 +00006897 SelectionDAG &DAG) {
Duncan Sands7d9834b2008-12-01 11:39:25 +00006898 assert(Subtarget->is64Bit() && "Result not type legalized?");
Andrew Lenharth81580822008-03-05 01:15:49 +00006899 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands7d9834b2008-12-01 11:39:25 +00006900 SDValue TheChain = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006901 DebugLoc dl = Op.getDebugLoc();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006902 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006903 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
6904 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006905 rax.getValue(2));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006906 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006907 DAG.getConstant(32, MVT::i8));
6908 SDValue Ops[] = {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006909 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands7d9834b2008-12-01 11:39:25 +00006910 rdx.getValue(1)
6911 };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006912 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesenf160d802008-10-02 18:53:47 +00006913}
6914
Dale Johannesen9011d872008-09-29 22:25:26 +00006915SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
6916 SDNode *Node = Op.getNode();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006917 DebugLoc dl = Node->getDebugLoc();
Dale Johannesen9011d872008-09-29 22:25:26 +00006918 MVT T = Node->getValueType(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006919 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Chengef356282009-02-23 09:03:22 +00006920 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006921 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006922 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen9011d872008-09-29 22:25:26 +00006923 Node->getOperand(0),
6924 Node->getOperand(1), negOp,
6925 cast<AtomicSDNode>(Node)->getSrcValue(),
6926 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang078a62d2008-05-05 19:05:59 +00006927}
6928
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006929/// LowerOperation - Provide custom lowering hooks for some operations.
6930///
Dan Gohman8181bd12008-07-27 21:46:04 +00006931SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006932 switch (Op.getOpcode()) {
6933 default: assert(0 && "Should not custom lower this!");
Dan Gohmanbebba8d2008-12-23 21:37:04 +00006934 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
6935 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006936 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
6937 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6938 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6939 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
6940 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
6941 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
6942 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
6943 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendlingfef06052008-09-16 21:48:12 +00006944 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006945 case ISD::SHL_PARTS:
6946 case ISD::SRA_PARTS:
6947 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
6948 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesena359b8b2008-10-21 20:50:01 +00006949 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006950 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
6951 case ISD::FABS: return LowerFABS(Op, DAG);
6952 case ISD::FNEG: return LowerFNEG(Op, DAG);
6953 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Cheng621216e2007-09-29 00:00:36 +00006954 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman03605a02008-07-17 16:51:19 +00006955 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Cheng621216e2007-09-29 00:00:36 +00006956 case ISD::SELECT: return LowerSELECT(Op, DAG);
6957 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006958 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
6959 case ISD::CALL: return LowerCALL(Op, DAG);
6960 case ISD::RET: return LowerRET(Op, DAG);
6961 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006962 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman827cb1f2008-05-10 01:26:14 +00006963 case ISD::VAARG: return LowerVAARG(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006964 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
6965 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
6966 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
6967 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
6968 case ISD::FRAME_TO_ARGS_OFFSET:
6969 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
6970 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
6971 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00006972 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman819574c2008-01-31 00:41:03 +00006973 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng48679f42007-12-14 02:13:44 +00006974 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
6975 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wang14edb092008-12-18 21:42:19 +00006976 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Bill Wendling7e04be62008-12-09 22:08:41 +00006977 case ISD::SADDO:
6978 case ISD::UADDO:
6979 case ISD::SSUBO:
6980 case ISD::USUBO:
6981 case ISD::SMULO:
6982 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands7d9834b2008-12-01 11:39:25 +00006983 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006984 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006985}
6986
Duncan Sands7d9834b2008-12-01 11:39:25 +00006987void X86TargetLowering::
6988ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
6989 SelectionDAG &DAG, unsigned NewOp) {
6990 MVT T = Node->getValueType(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006991 DebugLoc dl = Node->getDebugLoc();
Duncan Sands7d9834b2008-12-01 11:39:25 +00006992 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
6993
6994 SDValue Chain = Node->getOperand(0);
6995 SDValue In1 = Node->getOperand(1);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006996 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006997 Node->getOperand(2), DAG.getIntPtrConstant(0));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006998 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00006999 Node->getOperand(2), DAG.getIntPtrConstant(1));
7000 // This is a generalized SDNode, not an AtomicSDNode, so it doesn't
7001 // have a MemOperand. Pass the info through as a normal operand.
7002 SDValue LSI = DAG.getMemOperand(cast<MemSDNode>(Node)->getMemOperand());
7003 SDValue Ops[] = { Chain, In1, In2L, In2H, LSI };
7004 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007005 SDValue Result = DAG.getNode(NewOp, dl, Tys, Ops, 5);
Duncan Sands7d9834b2008-12-01 11:39:25 +00007006 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007007 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007008 Results.push_back(Result.getValue(2));
7009}
7010
Duncan Sandsac496a12008-07-04 11:47:58 +00007011/// ReplaceNodeResults - Replace a node with an illegal result type
7012/// with a new node built out of custom code.
Duncan Sands7d9834b2008-12-01 11:39:25 +00007013void X86TargetLowering::ReplaceNodeResults(SDNode *N,
7014 SmallVectorImpl<SDValue>&Results,
7015 SelectionDAG &DAG) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007016 DebugLoc dl = N->getDebugLoc();
Chris Lattnerdfb947d2007-11-24 07:07:01 +00007017 switch (N->getOpcode()) {
Duncan Sands8ec7aa72008-10-20 15:56:33 +00007018 default:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007019 assert(false && "Do not know how to custom type legalize this operation!");
7020 return;
7021 case ISD::FP_TO_SINT: {
7022 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(SDValue(N, 0), DAG);
7023 SDValue FIST = Vals.first, StackSlot = Vals.second;
7024 if (FIST.getNode() != 0) {
7025 MVT VT = N->getValueType(0);
7026 // Return a load from the stack slot.
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007027 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot, NULL, 0));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007028 }
7029 return;
7030 }
7031 case ISD::READCYCLECOUNTER: {
7032 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
7033 SDValue TheChain = N->getOperand(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007034 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Scott Michel91099d62009-02-17 22:15:04 +00007035 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007036 rd.getValue(1));
7037 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007038 eax.getValue(2));
7039 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
7040 SDValue Ops[] = { eax, edx };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007041 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007042 Results.push_back(edx.getValue(1));
7043 return;
7044 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007045 case ISD::ATOMIC_CMP_SWAP: {
Duncan Sands7d9834b2008-12-01 11:39:25 +00007046 MVT T = N->getValueType(0);
7047 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
7048 SDValue cpInL, cpInH;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007049 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands7d9834b2008-12-01 11:39:25 +00007050 DAG.getConstant(0, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007051 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands7d9834b2008-12-01 11:39:25 +00007052 DAG.getConstant(1, MVT::i32));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007053 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
7054 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007055 cpInL.getValue(1));
7056 SDValue swapInL, swapInH;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007057 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands7d9834b2008-12-01 11:39:25 +00007058 DAG.getConstant(0, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007059 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands7d9834b2008-12-01 11:39:25 +00007060 DAG.getConstant(1, MVT::i32));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007061 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007062 cpInH.getValue(1));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007063 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007064 swapInL.getValue(1));
7065 SDValue Ops[] = { swapInH.getValue(0),
7066 N->getOperand(1),
7067 swapInH.getValue(1) };
7068 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007069 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG8_DAG, dl, Tys, Ops, 3);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007070 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
7071 MVT::i32, Result.getValue(1));
7072 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
7073 MVT::i32, cpOutL.getValue(2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007074 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007075 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007076 Results.push_back(cpOutH.getValue(1));
7077 return;
7078 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007079 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007080 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
7081 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007082 case ISD::ATOMIC_LOAD_AND:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007083 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
7084 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007085 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007086 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
7087 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007088 case ISD::ATOMIC_LOAD_OR:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007089 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
7090 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007091 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007092 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
7093 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007094 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007095 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
7096 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007097 case ISD::ATOMIC_SWAP:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007098 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
7099 return;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00007100 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007101}
7102
7103const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
7104 switch (Opcode) {
7105 default: return NULL;
Evan Cheng48679f42007-12-14 02:13:44 +00007106 case X86ISD::BSF: return "X86ISD::BSF";
7107 case X86ISD::BSR: return "X86ISD::BSR";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007108 case X86ISD::SHLD: return "X86ISD::SHLD";
7109 case X86ISD::SHRD: return "X86ISD::SHRD";
7110 case X86ISD::FAND: return "X86ISD::FAND";
7111 case X86ISD::FOR: return "X86ISD::FOR";
7112 case X86ISD::FXOR: return "X86ISD::FXOR";
7113 case X86ISD::FSRL: return "X86ISD::FSRL";
7114 case X86ISD::FILD: return "X86ISD::FILD";
7115 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
7116 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
7117 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
7118 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
7119 case X86ISD::FLD: return "X86ISD::FLD";
7120 case X86ISD::FST: return "X86ISD::FST";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007121 case X86ISD::CALL: return "X86ISD::CALL";
7122 case X86ISD::TAILCALL: return "X86ISD::TAILCALL";
7123 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohman7fe9b7f2008-12-23 22:45:23 +00007124 case X86ISD::BT: return "X86ISD::BT";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007125 case X86ISD::CMP: return "X86ISD::CMP";
7126 case X86ISD::COMI: return "X86ISD::COMI";
7127 case X86ISD::UCOMI: return "X86ISD::UCOMI";
7128 case X86ISD::SETCC: return "X86ISD::SETCC";
7129 case X86ISD::CMOV: return "X86ISD::CMOV";
7130 case X86ISD::BRCOND: return "X86ISD::BRCOND";
7131 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
7132 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
7133 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007134 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
7135 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Nate Begemand77e59e2008-02-11 04:19:36 +00007136 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007137 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begemand77e59e2008-02-11 04:19:36 +00007138 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
7139 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007140 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begeman2c87c422009-02-23 08:49:38 +00007141 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007142 case X86ISD::FMAX: return "X86ISD::FMAX";
7143 case X86ISD::FMIN: return "X86ISD::FMIN";
7144 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
7145 case X86ISD::FRCP: return "X86ISD::FRCP";
7146 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
7147 case X86ISD::THREAD_POINTER: return "X86ISD::THREAD_POINTER";
7148 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00007149 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00007150 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng40ee6e52008-05-08 00:57:18 +00007151 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
7152 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesenf160d802008-10-02 18:53:47 +00007153 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
7154 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
7155 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
7156 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
7157 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
7158 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chenge9b9c672008-05-09 21:53:03 +00007159 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
7160 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengdea99362008-05-29 08:22:04 +00007161 case X86ISD::VSHL: return "X86ISD::VSHL";
7162 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman03605a02008-07-17 16:51:19 +00007163 case X86ISD::CMPPD: return "X86ISD::CMPPD";
7164 case X86ISD::CMPPS: return "X86ISD::CMPPS";
7165 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
7166 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
7167 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
7168 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
7169 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
7170 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
7171 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
7172 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingae034ed2008-12-12 00:56:36 +00007173 case X86ISD::ADD: return "X86ISD::ADD";
7174 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingf5399032008-12-12 21:15:41 +00007175 case X86ISD::SMUL: return "X86ISD::SMUL";
7176 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman99a12192009-03-04 19:44:21 +00007177 case X86ISD::INC: return "X86ISD::INC";
7178 case X86ISD::DEC: return "X86ISD::DEC";
Evan Chengc3495762009-03-30 21:36:47 +00007179 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007180 }
7181}
7182
7183// isLegalAddressingMode - Return true if the addressing mode represented
7184// by AM is legal for this target, for a load/store of the specified type.
Scott Michel91099d62009-02-17 22:15:04 +00007185bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007186 const Type *Ty) const {
7187 // X86 supports extremely general addressing modes.
Scott Michel91099d62009-02-17 22:15:04 +00007188
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007189 // X86 allows a sign-extended 32-bit immediate field as a displacement.
7190 if (AM.BaseOffs <= -(1LL << 32) || AM.BaseOffs >= (1LL << 32)-1)
7191 return false;
Scott Michel91099d62009-02-17 22:15:04 +00007192
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007193 if (AM.BaseGV) {
Evan Cheng6a1f3f12007-08-01 23:46:47 +00007194 // We can only fold this if we don't need an extra load.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007195 if (Subtarget->GVRequiresExtraLoad(AM.BaseGV, getTargetMachine(), false))
7196 return false;
Dale Johannesen64660e92008-12-05 21:47:27 +00007197 // If BaseGV requires a register, we cannot also have a BaseReg.
7198 if (Subtarget->GVRequiresRegister(AM.BaseGV, getTargetMachine(), false) &&
7199 AM.HasBaseReg)
7200 return false;
Evan Cheng6a1f3f12007-08-01 23:46:47 +00007201
7202 // X86-64 only supports addr of globals in small code model.
7203 if (Subtarget->is64Bit()) {
7204 if (getTargetMachine().getCodeModel() != CodeModel::Small)
7205 return false;
7206 // If lower 4G is not available, then we must use rip-relative addressing.
7207 if (AM.BaseOffs || AM.Scale > 1)
7208 return false;
7209 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007210 }
Scott Michel91099d62009-02-17 22:15:04 +00007211
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007212 switch (AM.Scale) {
7213 case 0:
7214 case 1:
7215 case 2:
7216 case 4:
7217 case 8:
7218 // These scales always work.
7219 break;
7220 case 3:
7221 case 5:
7222 case 9:
7223 // These scales are formed with basereg+scalereg. Only accept if there is
7224 // no basereg yet.
7225 if (AM.HasBaseReg)
7226 return false;
7227 break;
7228 default: // Other stuff never works.
7229 return false;
7230 }
Scott Michel91099d62009-02-17 22:15:04 +00007231
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007232 return true;
7233}
7234
7235
Evan Cheng27a820a2007-10-26 01:56:11 +00007236bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
7237 if (!Ty1->isInteger() || !Ty2->isInteger())
7238 return false;
Evan Cheng7f152602007-10-29 07:57:50 +00007239 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
7240 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Chengca0e80f2008-03-20 02:18:41 +00007241 if (NumBits1 <= NumBits2)
Evan Cheng7f152602007-10-29 07:57:50 +00007242 return false;
7243 return Subtarget->is64Bit() || NumBits1 < 64;
Evan Cheng27a820a2007-10-26 01:56:11 +00007244}
7245
Duncan Sands92c43912008-06-06 12:08:01 +00007246bool X86TargetLowering::isTruncateFree(MVT VT1, MVT VT2) const {
7247 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng9decb332007-10-29 19:58:20 +00007248 return false;
Duncan Sands92c43912008-06-06 12:08:01 +00007249 unsigned NumBits1 = VT1.getSizeInBits();
7250 unsigned NumBits2 = VT2.getSizeInBits();
Evan Chengca0e80f2008-03-20 02:18:41 +00007251 if (NumBits1 <= NumBits2)
Evan Cheng9decb332007-10-29 19:58:20 +00007252 return false;
7253 return Subtarget->is64Bit() || NumBits1 < 64;
7254}
Evan Cheng27a820a2007-10-26 01:56:11 +00007255
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007256/// isShuffleMaskLegal - Targets can use this to indicate that they only
7257/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
7258/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
7259/// are assumed to be legal.
7260bool
Dan Gohman8181bd12008-07-27 21:46:04 +00007261X86TargetLowering::isShuffleMaskLegal(SDValue Mask, MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007262 // Only do shuffles on 128-bit vector types for now.
Nate Begeman2c87c422009-02-23 08:49:38 +00007263 // FIXME: pshufb, blends
Duncan Sands92c43912008-06-06 12:08:01 +00007264 if (VT.getSizeInBits() == 64) return false;
Gabor Greif1c80d112008-08-28 21:40:38 +00007265 return (Mask.getNode()->getNumOperands() <= 4 ||
7266 isIdentityMask(Mask.getNode()) ||
7267 isIdentityMask(Mask.getNode(), true) ||
7268 isSplatMask(Mask.getNode()) ||
Nate Begeman2c87c422009-02-23 08:49:38 +00007269 X86::isPSHUFHWMask(Mask.getNode()) ||
7270 X86::isPSHUFLWMask(Mask.getNode()) ||
Gabor Greif1c80d112008-08-28 21:40:38 +00007271 X86::isUNPCKLMask(Mask.getNode()) ||
7272 X86::isUNPCKHMask(Mask.getNode()) ||
7273 X86::isUNPCKL_v_undef_Mask(Mask.getNode()) ||
7274 X86::isUNPCKH_v_undef_Mask(Mask.getNode()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007275}
7276
Dan Gohman48d5f062008-04-09 20:09:42 +00007277bool
Dan Gohman8181bd12008-07-27 21:46:04 +00007278X86TargetLowering::isVectorClearMaskLegal(const std::vector<SDValue> &BVOps,
Duncan Sands92c43912008-06-06 12:08:01 +00007279 MVT EVT, SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007280 unsigned NumElts = BVOps.size();
7281 // Only do shuffles on 128-bit vector types for now.
Duncan Sands92c43912008-06-06 12:08:01 +00007282 if (EVT.getSizeInBits() * NumElts == 64) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007283 if (NumElts == 2) return true;
7284 if (NumElts == 4) {
7285 return (isMOVLMask(&BVOps[0], 4) ||
7286 isCommutedMOVL(&BVOps[0], 4, true) ||
Scott Michel91099d62009-02-17 22:15:04 +00007287 isSHUFPMask(&BVOps[0], 4) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007288 isCommutedSHUFP(&BVOps[0], 4));
7289 }
7290 return false;
7291}
7292
7293//===----------------------------------------------------------------------===//
7294// X86 Scheduler Hooks
7295//===----------------------------------------------------------------------===//
7296
Mon P Wang078a62d2008-05-05 19:05:59 +00007297// private utility function
7298MachineBasicBlock *
7299X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
7300 MachineBasicBlock *MBB,
7301 unsigned regOpc,
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007302 unsigned immOpc,
Dale Johannesend20e4452008-08-19 18:47:28 +00007303 unsigned LoadOpc,
7304 unsigned CXchgOpc,
7305 unsigned copyOpc,
7306 unsigned notOpc,
7307 unsigned EAXreg,
7308 TargetRegisterClass *RC,
Dan Gohman96d60922009-02-07 16:15:20 +00007309 bool invSrc) const {
Mon P Wang078a62d2008-05-05 19:05:59 +00007310 // For the atomic bitwise operator, we generate
7311 // thisMBB:
7312 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00007313 // ld t1 = [bitinstr.addr]
7314 // op t2 = t1, [bitinstr.val]
7315 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00007316 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7317 // bz newMBB
7318 // fallthrough -->nextMBB
7319 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7320 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007321 MachineFunction::iterator MBBIter = MBB;
Mon P Wang078a62d2008-05-05 19:05:59 +00007322 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00007323
Mon P Wang078a62d2008-05-05 19:05:59 +00007324 /// First build the CFG
7325 MachineFunction *F = MBB->getParent();
7326 MachineBasicBlock *thisMBB = MBB;
Dan Gohman221a4372008-07-07 23:14:23 +00007327 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7328 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7329 F->insert(MBBIter, newMBB);
7330 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007331
Mon P Wang078a62d2008-05-05 19:05:59 +00007332 // Move all successors to thisMBB to nextMBB
7333 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007334
Mon P Wang078a62d2008-05-05 19:05:59 +00007335 // Update thisMBB to fall through to newMBB
7336 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007337
Mon P Wang078a62d2008-05-05 19:05:59 +00007338 // newMBB jumps to itself and fall through to nextMBB
7339 newMBB->addSuccessor(nextMBB);
7340 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007341
Mon P Wang078a62d2008-05-05 19:05:59 +00007342 // Insert instructions into newMBB based on incoming instruction
Rafael Espindolacfc409e2009-03-27 15:26:30 +00007343 assert(bInstr->getNumOperands() < X86AddrNumOperands + 4 &&
7344 "unexpected number of operands");
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007345 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang078a62d2008-05-05 19:05:59 +00007346 MachineOperand& destOper = bInstr->getOperand(0);
Rafael Espindolacfc409e2009-03-27 15:26:30 +00007347 MachineOperand* argOpers[2 + X86AddrNumOperands];
Mon P Wang078a62d2008-05-05 19:05:59 +00007348 int numArgs = bInstr->getNumOperands() - 1;
7349 for (int i=0; i < numArgs; ++i)
7350 argOpers[i] = &bInstr->getOperand(i+1);
7351
7352 // x86 address has 4 operands: base, index, scale, and displacement
Rafael Espindolacfc409e2009-03-27 15:26:30 +00007353 int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
7354 int valArgIndx = lastAddrIndx + 1;
Scott Michel91099d62009-02-17 22:15:04 +00007355
Dale Johannesend20e4452008-08-19 18:47:28 +00007356 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007357 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00007358 for (int i=0; i <= lastAddrIndx; ++i)
7359 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007360
Dale Johannesend20e4452008-08-19 18:47:28 +00007361 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007362 if (invSrc) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007363 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007364 }
Scott Michel91099d62009-02-17 22:15:04 +00007365 else
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007366 tt = t1;
7367
Dale Johannesend20e4452008-08-19 18:47:28 +00007368 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007369 assert((argOpers[valArgIndx]->isReg() ||
7370 argOpers[valArgIndx]->isImm()) &&
Dan Gohman7f7f3652008-09-13 17:58:21 +00007371 "invalid operand");
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007372 if (argOpers[valArgIndx]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007373 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang078a62d2008-05-05 19:05:59 +00007374 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007375 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007376 MIB.addReg(tt);
Mon P Wang078a62d2008-05-05 19:05:59 +00007377 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007378
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007379 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), EAXreg);
Mon P Wang318b0372008-05-05 22:56:23 +00007380 MIB.addReg(t1);
Scott Michel91099d62009-02-17 22:15:04 +00007381
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007382 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang078a62d2008-05-05 19:05:59 +00007383 for (int i=0; i <= lastAddrIndx; ++i)
7384 (*MIB).addOperand(*argOpers[i]);
7385 MIB.addReg(t2);
Mon P Wang50584a62008-07-17 04:54:06 +00007386 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7387 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7388
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007389 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), destOper.getReg());
Dale Johannesend20e4452008-08-19 18:47:28 +00007390 MIB.addReg(EAXreg);
Scott Michel91099d62009-02-17 22:15:04 +00007391
Mon P Wang078a62d2008-05-05 19:05:59 +00007392 // insert branch
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007393 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007394
Dan Gohman221a4372008-07-07 23:14:23 +00007395 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
Mon P Wang078a62d2008-05-05 19:05:59 +00007396 return nextMBB;
7397}
7398
Dale Johannesen44eb5372008-10-03 19:41:08 +00007399// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang078a62d2008-05-05 19:05:59 +00007400MachineBasicBlock *
Dale Johannesenf160d802008-10-02 18:53:47 +00007401X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
7402 MachineBasicBlock *MBB,
7403 unsigned regOpcL,
7404 unsigned regOpcH,
7405 unsigned immOpcL,
7406 unsigned immOpcH,
Dan Gohman96d60922009-02-07 16:15:20 +00007407 bool invSrc) const {
Dale Johannesenf160d802008-10-02 18:53:47 +00007408 // For the atomic bitwise operator, we generate
7409 // thisMBB (instructions are in pairs, except cmpxchg8b)
7410 // ld t1,t2 = [bitinstr.addr]
7411 // newMBB:
7412 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
7413 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007414 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesenf160d802008-10-02 18:53:47 +00007415 // mov ECX, EBX <- t5, t6
7416 // mov EAX, EDX <- t1, t2
7417 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
7418 // mov t3, t4 <- EAX, EDX
7419 // bz newMBB
7420 // result in out1, out2
7421 // fallthrough -->nextMBB
7422
7423 const TargetRegisterClass *RC = X86::GR32RegisterClass;
7424 const unsigned LoadOpc = X86::MOV32rm;
7425 const unsigned copyOpc = X86::MOV32rr;
7426 const unsigned NotOpc = X86::NOT32r;
7427 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7428 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
7429 MachineFunction::iterator MBBIter = MBB;
7430 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00007431
Dale Johannesenf160d802008-10-02 18:53:47 +00007432 /// First build the CFG
7433 MachineFunction *F = MBB->getParent();
7434 MachineBasicBlock *thisMBB = MBB;
7435 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7436 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7437 F->insert(MBBIter, newMBB);
7438 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007439
Dale Johannesenf160d802008-10-02 18:53:47 +00007440 // Move all successors to thisMBB to nextMBB
7441 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007442
Dale Johannesenf160d802008-10-02 18:53:47 +00007443 // Update thisMBB to fall through to newMBB
7444 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007445
Dale Johannesenf160d802008-10-02 18:53:47 +00007446 // newMBB jumps to itself and fall through to nextMBB
7447 newMBB->addSuccessor(nextMBB);
7448 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007449
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007450 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesenf160d802008-10-02 18:53:47 +00007451 // Insert instructions into newMBB based on incoming instruction
7452 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Rafael Espindolacfc409e2009-03-27 15:26:30 +00007453 assert(bInstr->getNumOperands() < X86AddrNumOperands + 14 &&
7454 "unexpected number of operands");
Dale Johannesenf160d802008-10-02 18:53:47 +00007455 MachineOperand& dest1Oper = bInstr->getOperand(0);
7456 MachineOperand& dest2Oper = bInstr->getOperand(1);
Rafael Espindolacfc409e2009-03-27 15:26:30 +00007457 MachineOperand* argOpers[2 + X86AddrNumOperands];
7458 for (int i=0; i < 2 + X86AddrNumOperands; ++i)
Dale Johannesenf160d802008-10-02 18:53:47 +00007459 argOpers[i] = &bInstr->getOperand(i+2);
7460
7461 // x86 address has 4 operands: base, index, scale, and displacement
Rafael Espindolacfc409e2009-03-27 15:26:30 +00007462 int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
Scott Michel91099d62009-02-17 22:15:04 +00007463
Dale Johannesenf160d802008-10-02 18:53:47 +00007464 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007465 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesenf160d802008-10-02 18:53:47 +00007466 for (int i=0; i <= lastAddrIndx; ++i)
7467 (*MIB).addOperand(*argOpers[i]);
7468 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007469 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007470 // add 4 to displacement.
Dale Johannesenf160d802008-10-02 18:53:47 +00007471 for (int i=0; i <= lastAddrIndx-1; ++i)
7472 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007473 MachineOperand newOp3 = *(argOpers[3]);
7474 if (newOp3.isImm())
7475 newOp3.setImm(newOp3.getImm()+4);
7476 else
7477 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesenf160d802008-10-02 18:53:47 +00007478 (*MIB).addOperand(newOp3);
7479
7480 // t3/4 are defined later, at the bottom of the loop
7481 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
7482 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007483 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesenf160d802008-10-02 18:53:47 +00007484 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007485 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesenf160d802008-10-02 18:53:47 +00007486 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
7487
7488 unsigned tt1 = F->getRegInfo().createVirtualRegister(RC);
7489 unsigned tt2 = F->getRegInfo().createVirtualRegister(RC);
Scott Michel91099d62009-02-17 22:15:04 +00007490 if (invSrc) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007491 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt1).addReg(t1);
7492 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt2).addReg(t2);
Dale Johannesenf160d802008-10-02 18:53:47 +00007493 } else {
7494 tt1 = t1;
7495 tt2 = t2;
7496 }
7497
Rafael Espindolacfc409e2009-03-27 15:26:30 +00007498 int valArgIndx = lastAddrIndx + 1;
7499 assert((argOpers[valArgIndx]->isReg() ||
7500 argOpers[valArgIndx]->isImm()) &&
Dale Johannesenf160d802008-10-02 18:53:47 +00007501 "invalid operand");
7502 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
7503 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolacfc409e2009-03-27 15:26:30 +00007504 if (argOpers[valArgIndx]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007505 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesenf160d802008-10-02 18:53:47 +00007506 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007507 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007508 if (regOpcL != X86::MOV32rr)
7509 MIB.addReg(tt1);
Rafael Espindolacfc409e2009-03-27 15:26:30 +00007510 (*MIB).addOperand(*argOpers[valArgIndx]);
7511 assert(argOpers[valArgIndx + 1]->isReg() ==
7512 argOpers[valArgIndx]->isReg());
7513 assert(argOpers[valArgIndx + 1]->isImm() ==
7514 argOpers[valArgIndx]->isImm());
7515 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007516 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesenf160d802008-10-02 18:53:47 +00007517 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007518 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007519 if (regOpcH != X86::MOV32rr)
7520 MIB.addReg(tt2);
Rafael Espindolacfc409e2009-03-27 15:26:30 +00007521 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesenf160d802008-10-02 18:53:47 +00007522
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007523 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EAX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007524 MIB.addReg(t1);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007525 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EDX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007526 MIB.addReg(t2);
7527
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007528 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EBX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007529 MIB.addReg(t5);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007530 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::ECX);
Dale Johannesenf160d802008-10-02 18:53:47 +00007531 MIB.addReg(t6);
Scott Michel91099d62009-02-17 22:15:04 +00007532
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007533 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesenf160d802008-10-02 18:53:47 +00007534 for (int i=0; i <= lastAddrIndx; ++i)
7535 (*MIB).addOperand(*argOpers[i]);
7536
7537 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7538 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7539
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007540 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t3);
Dale Johannesenf160d802008-10-02 18:53:47 +00007541 MIB.addReg(X86::EAX);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007542 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t4);
Dale Johannesenf160d802008-10-02 18:53:47 +00007543 MIB.addReg(X86::EDX);
Scott Michel91099d62009-02-17 22:15:04 +00007544
Dale Johannesenf160d802008-10-02 18:53:47 +00007545 // insert branch
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007546 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Dale Johannesenf160d802008-10-02 18:53:47 +00007547
7548 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
7549 return nextMBB;
7550}
7551
7552// private utility function
7553MachineBasicBlock *
Mon P Wang078a62d2008-05-05 19:05:59 +00007554X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
7555 MachineBasicBlock *MBB,
Dan Gohman96d60922009-02-07 16:15:20 +00007556 unsigned cmovOpc) const {
Mon P Wang078a62d2008-05-05 19:05:59 +00007557 // For the atomic min/max operator, we generate
7558 // thisMBB:
7559 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00007560 // ld t1 = [min/max.addr]
Scott Michel91099d62009-02-17 22:15:04 +00007561 // mov t2 = [min/max.val]
Mon P Wang078a62d2008-05-05 19:05:59 +00007562 // cmp t1, t2
7563 // cmov[cond] t2 = t1
Mon P Wang318b0372008-05-05 22:56:23 +00007564 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00007565 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7566 // bz newMBB
7567 // fallthrough -->nextMBB
7568 //
7569 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7570 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007571 MachineFunction::iterator MBBIter = MBB;
Mon P Wang078a62d2008-05-05 19:05:59 +00007572 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00007573
Mon P Wang078a62d2008-05-05 19:05:59 +00007574 /// First build the CFG
7575 MachineFunction *F = MBB->getParent();
7576 MachineBasicBlock *thisMBB = MBB;
Dan Gohman221a4372008-07-07 23:14:23 +00007577 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7578 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7579 F->insert(MBBIter, newMBB);
7580 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007581
Mon P Wang078a62d2008-05-05 19:05:59 +00007582 // Move all successors to thisMBB to nextMBB
7583 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007584
Mon P Wang078a62d2008-05-05 19:05:59 +00007585 // Update thisMBB to fall through to newMBB
7586 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007587
Mon P Wang078a62d2008-05-05 19:05:59 +00007588 // newMBB jumps to newMBB and fall through to nextMBB
7589 newMBB->addSuccessor(nextMBB);
7590 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00007591
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007592 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang078a62d2008-05-05 19:05:59 +00007593 // Insert instructions into newMBB based on incoming instruction
Rafael Espindolacfc409e2009-03-27 15:26:30 +00007594 assert(mInstr->getNumOperands() < X86AddrNumOperands + 4 &&
7595 "unexpected number of operands");
Mon P Wang078a62d2008-05-05 19:05:59 +00007596 MachineOperand& destOper = mInstr->getOperand(0);
Rafael Espindolacfc409e2009-03-27 15:26:30 +00007597 MachineOperand* argOpers[2 + X86AddrNumOperands];
Mon P Wang078a62d2008-05-05 19:05:59 +00007598 int numArgs = mInstr->getNumOperands() - 1;
7599 for (int i=0; i < numArgs; ++i)
7600 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michel91099d62009-02-17 22:15:04 +00007601
Mon P Wang078a62d2008-05-05 19:05:59 +00007602 // x86 address has 4 operands: base, index, scale, and displacement
Rafael Espindolacfc409e2009-03-27 15:26:30 +00007603 int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
7604 int valArgIndx = lastAddrIndx + 1;
Scott Michel91099d62009-02-17 22:15:04 +00007605
Mon P Wang318b0372008-05-05 22:56:23 +00007606 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007607 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00007608 for (int i=0; i <= lastAddrIndx; ++i)
7609 (*MIB).addOperand(*argOpers[i]);
Mon P Wang318b0372008-05-05 22:56:23 +00007610
Mon P Wang078a62d2008-05-05 19:05:59 +00007611 // We only support register and immediate values
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007612 assert((argOpers[valArgIndx]->isReg() ||
7613 argOpers[valArgIndx]->isImm()) &&
Dan Gohman7f7f3652008-09-13 17:58:21 +00007614 "invalid operand");
Scott Michel91099d62009-02-17 22:15:04 +00007615
7616 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007617 if (argOpers[valArgIndx]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007618 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Scott Michel91099d62009-02-17 22:15:04 +00007619 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007620 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang078a62d2008-05-05 19:05:59 +00007621 (*MIB).addOperand(*argOpers[valArgIndx]);
7622
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007623 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), X86::EAX);
Mon P Wang318b0372008-05-05 22:56:23 +00007624 MIB.addReg(t1);
7625
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007626 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang078a62d2008-05-05 19:05:59 +00007627 MIB.addReg(t1);
7628 MIB.addReg(t2);
7629
7630 // Generate movc
7631 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007632 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang078a62d2008-05-05 19:05:59 +00007633 MIB.addReg(t2);
7634 MIB.addReg(t1);
7635
7636 // Cmp and exchange if none has modified the memory location
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007637 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang078a62d2008-05-05 19:05:59 +00007638 for (int i=0; i <= lastAddrIndx; ++i)
7639 (*MIB).addOperand(*argOpers[i]);
7640 MIB.addReg(t3);
Mon P Wang50584a62008-07-17 04:54:06 +00007641 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7642 (*MIB).addMemOperand(*F, *mInstr->memoperands_begin());
Scott Michel91099d62009-02-17 22:15:04 +00007643
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007644 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), destOper.getReg());
Mon P Wang078a62d2008-05-05 19:05:59 +00007645 MIB.addReg(X86::EAX);
Scott Michel91099d62009-02-17 22:15:04 +00007646
Mon P Wang078a62d2008-05-05 19:05:59 +00007647 // insert branch
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007648 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007649
Dan Gohman221a4372008-07-07 23:14:23 +00007650 F->DeleteMachineInstr(mInstr); // The pseudo instruction is gone now.
Mon P Wang078a62d2008-05-05 19:05:59 +00007651 return nextMBB;
7652}
7653
7654
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007655MachineBasicBlock *
Evan Chenge637db12008-01-30 18:18:23 +00007656X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman96d60922009-02-07 16:15:20 +00007657 MachineBasicBlock *BB) const {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007658 DebugLoc dl = MI->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007659 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7660 switch (MI->getOpcode()) {
7661 default: assert(false && "Unexpected instr type to insert");
Mon P Wang83edba52008-12-12 01:25:51 +00007662 case X86::CMOV_V1I64:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007663 case X86::CMOV_FR32:
7664 case X86::CMOV_FR64:
7665 case X86::CMOV_V4F32:
7666 case X86::CMOV_V2F64:
Evan Cheng621216e2007-09-29 00:00:36 +00007667 case X86::CMOV_V2I64: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007668 // To "insert" a SELECT_CC instruction, we actually have to insert the
7669 // diamond control-flow pattern. The incoming instruction knows the
7670 // destination vreg to set, the condition code register to branch on, the
7671 // true/false values to select between, and a branch opcode to use.
7672 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00007673 MachineFunction::iterator It = BB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007674 ++It;
7675
7676 // thisMBB:
7677 // ...
7678 // TrueVal = ...
7679 // cmpTY ccX, r1, r2
7680 // bCC copy1MBB
7681 // fallthrough --> copy0MBB
7682 MachineBasicBlock *thisMBB = BB;
Dan Gohman221a4372008-07-07 23:14:23 +00007683 MachineFunction *F = BB->getParent();
7684 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7685 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007686 unsigned Opc =
7687 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007688 BuildMI(BB, dl, TII->get(Opc)).addMBB(sinkMBB);
Dan Gohman221a4372008-07-07 23:14:23 +00007689 F->insert(It, copy0MBB);
7690 F->insert(It, sinkMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00007691 // Update machine-CFG edges by transferring all successors of the current
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007692 // block to the new block which will contain the Phi node for the select.
Mon P Wang078a62d2008-05-05 19:05:59 +00007693 sinkMBB->transferSuccessors(BB);
7694
7695 // Add the true and fallthrough blocks as its successors.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007696 BB->addSuccessor(copy0MBB);
7697 BB->addSuccessor(sinkMBB);
7698
7699 // copy0MBB:
7700 // %FalseValue = ...
7701 // # fallthrough to sinkMBB
7702 BB = copy0MBB;
7703
7704 // Update machine-CFG edges
7705 BB->addSuccessor(sinkMBB);
7706
7707 // sinkMBB:
7708 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7709 // ...
7710 BB = sinkMBB;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007711 BuildMI(BB, dl, TII->get(X86::PHI), MI->getOperand(0).getReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007712 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7713 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7714
Dan Gohman221a4372008-07-07 23:14:23 +00007715 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007716 return BB;
7717 }
7718
7719 case X86::FP32_TO_INT16_IN_MEM:
7720 case X86::FP32_TO_INT32_IN_MEM:
7721 case X86::FP32_TO_INT64_IN_MEM:
7722 case X86::FP64_TO_INT16_IN_MEM:
7723 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00007724 case X86::FP64_TO_INT64_IN_MEM:
7725 case X86::FP80_TO_INT16_IN_MEM:
7726 case X86::FP80_TO_INT32_IN_MEM:
7727 case X86::FP80_TO_INT64_IN_MEM: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007728 // Change the floating point control register to use "round towards zero"
7729 // mode when truncating to an integer value.
7730 MachineFunction *F = BB->getParent();
7731 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007732 addFrameReference(BuildMI(BB, dl, TII->get(X86::FNSTCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007733
7734 // Load the old value of the high byte of the control word...
7735 unsigned OldCW =
Chris Lattner1b989192007-12-31 04:13:23 +00007736 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Scott Michel91099d62009-02-17 22:15:04 +00007737 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16rm), OldCW),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007738 CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007739
7740 // Set the high part to be round to zero...
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007741 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mi)), CWFrameIdx)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007742 .addImm(0xC7F);
7743
7744 // Reload the modified control word now...
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007745 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007746
7747 // Restore the memory image of control word to original value
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007748 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mr)), CWFrameIdx)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007749 .addReg(OldCW);
7750
7751 // Get the X86 opcode to use.
7752 unsigned Opc;
7753 switch (MI->getOpcode()) {
7754 default: assert(0 && "illegal opcode!");
7755 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
7756 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
7757 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
7758 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
7759 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
7760 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00007761 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
7762 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
7763 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007764 }
7765
7766 X86AddressMode AM;
7767 MachineOperand &Op = MI->getOperand(0);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007768 if (Op.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007769 AM.BaseType = X86AddressMode::RegBase;
7770 AM.Base.Reg = Op.getReg();
7771 } else {
7772 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner6017d482007-12-30 23:10:15 +00007773 AM.Base.FrameIndex = Op.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007774 }
7775 Op = MI->getOperand(1);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007776 if (Op.isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007777 AM.Scale = Op.getImm();
7778 Op = MI->getOperand(2);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007779 if (Op.isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007780 AM.IndexReg = Op.getImm();
7781 Op = MI->getOperand(3);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00007782 if (Op.isGlobal()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007783 AM.GV = Op.getGlobal();
7784 } else {
7785 AM.Disp = Op.getImm();
7786 }
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007787 addFullAddress(BuildMI(BB, dl, TII->get(Opc)), AM)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007788 .addReg(MI->getOperand(4).getReg());
7789
7790 // Reload the original control word now.
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007791 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007792
Dan Gohman221a4372008-07-07 23:14:23 +00007793 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007794 return BB;
7795 }
Mon P Wang078a62d2008-05-05 19:05:59 +00007796 case X86::ATOMAND32:
7797 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michel91099d62009-02-17 22:15:04 +00007798 X86::AND32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00007799 X86::LCMPXCHG32, X86::MOV32rr,
7800 X86::NOT32r, X86::EAX,
7801 X86::GR32RegisterClass);
Mon P Wang078a62d2008-05-05 19:05:59 +00007802 case X86::ATOMOR32:
Scott Michel91099d62009-02-17 22:15:04 +00007803 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
7804 X86::OR32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00007805 X86::LCMPXCHG32, X86::MOV32rr,
7806 X86::NOT32r, X86::EAX,
7807 X86::GR32RegisterClass);
Mon P Wang078a62d2008-05-05 19:05:59 +00007808 case X86::ATOMXOR32:
7809 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michel91099d62009-02-17 22:15:04 +00007810 X86::XOR32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00007811 X86::LCMPXCHG32, X86::MOV32rr,
7812 X86::NOT32r, X86::EAX,
7813 X86::GR32RegisterClass);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007814 case X86::ATOMNAND32:
7815 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007816 X86::AND32ri, X86::MOV32rm,
7817 X86::LCMPXCHG32, X86::MOV32rr,
7818 X86::NOT32r, X86::EAX,
7819 X86::GR32RegisterClass, true);
Mon P Wang078a62d2008-05-05 19:05:59 +00007820 case X86::ATOMMIN32:
7821 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
7822 case X86::ATOMMAX32:
7823 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
7824 case X86::ATOMUMIN32:
7825 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
7826 case X86::ATOMUMAX32:
7827 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesend20e4452008-08-19 18:47:28 +00007828
7829 case X86::ATOMAND16:
7830 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7831 X86::AND16ri, X86::MOV16rm,
7832 X86::LCMPXCHG16, X86::MOV16rr,
7833 X86::NOT16r, X86::AX,
7834 X86::GR16RegisterClass);
7835 case X86::ATOMOR16:
Scott Michel91099d62009-02-17 22:15:04 +00007836 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007837 X86::OR16ri, X86::MOV16rm,
7838 X86::LCMPXCHG16, X86::MOV16rr,
7839 X86::NOT16r, X86::AX,
7840 X86::GR16RegisterClass);
7841 case X86::ATOMXOR16:
7842 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
7843 X86::XOR16ri, X86::MOV16rm,
7844 X86::LCMPXCHG16, X86::MOV16rr,
7845 X86::NOT16r, X86::AX,
7846 X86::GR16RegisterClass);
7847 case X86::ATOMNAND16:
7848 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7849 X86::AND16ri, X86::MOV16rm,
7850 X86::LCMPXCHG16, X86::MOV16rr,
7851 X86::NOT16r, X86::AX,
7852 X86::GR16RegisterClass, true);
7853 case X86::ATOMMIN16:
7854 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
7855 case X86::ATOMMAX16:
7856 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
7857 case X86::ATOMUMIN16:
7858 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
7859 case X86::ATOMUMAX16:
7860 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
7861
7862 case X86::ATOMAND8:
7863 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7864 X86::AND8ri, X86::MOV8rm,
7865 X86::LCMPXCHG8, X86::MOV8rr,
7866 X86::NOT8r, X86::AL,
7867 X86::GR8RegisterClass);
7868 case X86::ATOMOR8:
Scott Michel91099d62009-02-17 22:15:04 +00007869 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00007870 X86::OR8ri, X86::MOV8rm,
7871 X86::LCMPXCHG8, X86::MOV8rr,
7872 X86::NOT8r, X86::AL,
7873 X86::GR8RegisterClass);
7874 case X86::ATOMXOR8:
7875 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
7876 X86::XOR8ri, X86::MOV8rm,
7877 X86::LCMPXCHG8, X86::MOV8rr,
7878 X86::NOT8r, X86::AL,
7879 X86::GR8RegisterClass);
7880 case X86::ATOMNAND8:
7881 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7882 X86::AND8ri, X86::MOV8rm,
7883 X86::LCMPXCHG8, X86::MOV8rr,
7884 X86::NOT8r, X86::AL,
7885 X86::GR8RegisterClass, true);
7886 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesenf160d802008-10-02 18:53:47 +00007887 // This group is for 64-bit host.
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007888 case X86::ATOMAND64:
7889 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michel91099d62009-02-17 22:15:04 +00007890 X86::AND64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007891 X86::LCMPXCHG64, X86::MOV64rr,
7892 X86::NOT64r, X86::RAX,
7893 X86::GR64RegisterClass);
7894 case X86::ATOMOR64:
Scott Michel91099d62009-02-17 22:15:04 +00007895 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
7896 X86::OR64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007897 X86::LCMPXCHG64, X86::MOV64rr,
7898 X86::NOT64r, X86::RAX,
7899 X86::GR64RegisterClass);
7900 case X86::ATOMXOR64:
7901 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michel91099d62009-02-17 22:15:04 +00007902 X86::XOR64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00007903 X86::LCMPXCHG64, X86::MOV64rr,
7904 X86::NOT64r, X86::RAX,
7905 X86::GR64RegisterClass);
7906 case X86::ATOMNAND64:
7907 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
7908 X86::AND64ri32, X86::MOV64rm,
7909 X86::LCMPXCHG64, X86::MOV64rr,
7910 X86::NOT64r, X86::RAX,
7911 X86::GR64RegisterClass, true);
7912 case X86::ATOMMIN64:
7913 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
7914 case X86::ATOMMAX64:
7915 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
7916 case X86::ATOMUMIN64:
7917 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
7918 case X86::ATOMUMAX64:
7919 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesenf160d802008-10-02 18:53:47 +00007920
7921 // This group does 64-bit operations on a 32-bit host.
7922 case X86::ATOMAND6432:
Scott Michel91099d62009-02-17 22:15:04 +00007923 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007924 X86::AND32rr, X86::AND32rr,
7925 X86::AND32ri, X86::AND32ri,
7926 false);
7927 case X86::ATOMOR6432:
Scott Michel91099d62009-02-17 22:15:04 +00007928 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007929 X86::OR32rr, X86::OR32rr,
7930 X86::OR32ri, X86::OR32ri,
7931 false);
7932 case X86::ATOMXOR6432:
Scott Michel91099d62009-02-17 22:15:04 +00007933 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007934 X86::XOR32rr, X86::XOR32rr,
7935 X86::XOR32ri, X86::XOR32ri,
7936 false);
7937 case X86::ATOMNAND6432:
Scott Michel91099d62009-02-17 22:15:04 +00007938 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007939 X86::AND32rr, X86::AND32rr,
7940 X86::AND32ri, X86::AND32ri,
7941 true);
Dale Johannesenf160d802008-10-02 18:53:47 +00007942 case X86::ATOMADD6432:
Scott Michel91099d62009-02-17 22:15:04 +00007943 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007944 X86::ADD32rr, X86::ADC32rr,
7945 X86::ADD32ri, X86::ADC32ri,
7946 false);
Dale Johannesenf160d802008-10-02 18:53:47 +00007947 case X86::ATOMSUB6432:
Scott Michel91099d62009-02-17 22:15:04 +00007948 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00007949 X86::SUB32rr, X86::SBB32rr,
7950 X86::SUB32ri, X86::SBB32ri,
7951 false);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007952 case X86::ATOMSWAP6432:
Scott Michel91099d62009-02-17 22:15:04 +00007953 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen51c58ee2008-10-03 22:25:52 +00007954 X86::MOV32rr, X86::MOV32rr,
7955 X86::MOV32ri, X86::MOV32ri,
7956 false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007957 }
7958}
7959
7960//===----------------------------------------------------------------------===//
7961// X86 Optimization Hooks
7962//===----------------------------------------------------------------------===//
7963
Dan Gohman8181bd12008-07-27 21:46:04 +00007964void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmand0dfc772008-02-13 22:28:48 +00007965 const APInt &Mask,
Dan Gohman229fa052008-02-13 00:35:47 +00007966 APInt &KnownZero,
7967 APInt &KnownOne,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007968 const SelectionDAG &DAG,
7969 unsigned Depth) const {
7970 unsigned Opc = Op.getOpcode();
7971 assert((Opc >= ISD::BUILTIN_OP_END ||
7972 Opc == ISD::INTRINSIC_WO_CHAIN ||
7973 Opc == ISD::INTRINSIC_W_CHAIN ||
7974 Opc == ISD::INTRINSIC_VOID) &&
7975 "Should use MaskedValueIsZero if you don't know whether Op"
7976 " is a target node!");
7977
Dan Gohman1d79e432008-02-13 23:07:24 +00007978 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007979 switch (Opc) {
7980 default: break;
Evan Cheng8e9b21c2009-02-02 09:15:04 +00007981 case X86ISD::ADD:
7982 case X86ISD::SUB:
7983 case X86ISD::SMUL:
7984 case X86ISD::UMUL:
Dan Gohman99a12192009-03-04 19:44:21 +00007985 case X86ISD::INC:
7986 case X86ISD::DEC:
Evan Cheng8e9b21c2009-02-02 09:15:04 +00007987 // These nodes' second result is a boolean.
7988 if (Op.getResNo() == 0)
7989 break;
7990 // Fallthrough
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007991 case X86ISD::SETCC:
Dan Gohman229fa052008-02-13 00:35:47 +00007992 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
7993 Mask.getBitWidth() - 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007994 break;
7995 }
7996}
7997
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007998/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengef7be082008-05-12 19:56:52 +00007999/// node is a GlobalAddress + offset.
8000bool X86TargetLowering::isGAPlusOffset(SDNode *N,
8001 GlobalValue* &GA, int64_t &Offset) const{
8002 if (N->getOpcode() == X86ISD::Wrapper) {
8003 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008004 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman36322c72008-10-18 02:06:02 +00008005 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008006 return true;
8007 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008008 }
Evan Chengef7be082008-05-12 19:56:52 +00008009 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008010}
8011
Evan Chengef7be082008-05-12 19:56:52 +00008012static bool isBaseAlignmentOfN(unsigned N, SDNode *Base,
8013 const TargetLowering &TLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008014 GlobalValue *GV;
Nick Lewycky4bd3fca2008-02-02 08:29:58 +00008015 int64_t Offset = 0;
Evan Chengef7be082008-05-12 19:56:52 +00008016 if (TLI.isGAPlusOffset(Base, GV, Offset))
Evan Cheng40ee6e52008-05-08 00:57:18 +00008017 return (GV->getAlignment() >= N && (Offset % N) == 0);
Chris Lattner3834cf32008-01-26 20:07:42 +00008018 // DAG combine handles the stack object case.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008019 return false;
8020}
8021
Dan Gohman8181bd12008-07-27 21:46:04 +00008022static bool EltsFromConsecutiveLoads(SDNode *N, SDValue PermMask,
Duncan Sands92c43912008-06-06 12:08:01 +00008023 unsigned NumElems, MVT EVT,
Evan Chengef7be082008-05-12 19:56:52 +00008024 SDNode *&Base,
8025 SelectionDAG &DAG, MachineFrameInfo *MFI,
8026 const TargetLowering &TLI) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00008027 Base = NULL;
8028 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00008029 SDValue Idx = PermMask.getOperand(i);
Evan Cheng40ee6e52008-05-08 00:57:18 +00008030 if (Idx.getOpcode() == ISD::UNDEF) {
8031 if (!Base)
8032 return false;
8033 continue;
8034 }
8035
Dan Gohman8181bd12008-07-27 21:46:04 +00008036 SDValue Elt = DAG.getShuffleScalarElt(N, i);
Gabor Greif1c80d112008-08-28 21:40:38 +00008037 if (!Elt.getNode() ||
8038 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
Evan Cheng40ee6e52008-05-08 00:57:18 +00008039 return false;
8040 if (!Base) {
Gabor Greif1c80d112008-08-28 21:40:38 +00008041 Base = Elt.getNode();
Evan Cheng92ee6822008-05-10 06:46:49 +00008042 if (Base->getOpcode() == ISD::UNDEF)
8043 return false;
Evan Cheng40ee6e52008-05-08 00:57:18 +00008044 continue;
8045 }
8046 if (Elt.getOpcode() == ISD::UNDEF)
8047 continue;
8048
Gabor Greif1c80d112008-08-28 21:40:38 +00008049 if (!TLI.isConsecutiveLoad(Elt.getNode(), Base,
Duncan Sands92c43912008-06-06 12:08:01 +00008050 EVT.getSizeInBits()/8, i, MFI))
Evan Cheng40ee6e52008-05-08 00:57:18 +00008051 return false;
8052 }
8053 return true;
8054}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008055
8056/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
8057/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
8058/// if the load addresses are consecutive, non-overlapping, and in the right
8059/// order.
Dan Gohman8181bd12008-07-27 21:46:04 +00008060static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Evan Chengef7be082008-05-12 19:56:52 +00008061 const TargetLowering &TLI) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00008062 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008063 DebugLoc dl = N->getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00008064 MVT VT = N->getValueType(0);
8065 MVT EVT = VT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00008066 SDValue PermMask = N->getOperand(2);
Evan Chengbad18452008-05-05 22:12:23 +00008067 unsigned NumElems = PermMask.getNumOperands();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008068 SDNode *Base = NULL;
Evan Chengef7be082008-05-12 19:56:52 +00008069 if (!EltsFromConsecutiveLoads(N, PermMask, NumElems, EVT, Base,
8070 DAG, MFI, TLI))
Dan Gohman8181bd12008-07-27 21:46:04 +00008071 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008072
Dan Gohman11821702007-07-27 17:16:43 +00008073 LoadSDNode *LD = cast<LoadSDNode>(Base);
Gabor Greif1c80d112008-08-28 21:40:38 +00008074 if (isBaseAlignmentOfN(16, Base->getOperand(1).getNode(), TLI))
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008075 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
Scott Michel91099d62009-02-17 22:15:04 +00008076 LD->getSrcValue(), LD->getSrcValueOffset(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008077 LD->isVolatile());
8078 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
8079 LD->getSrcValue(), LD->getSrcValueOffset(),
8080 LD->isVolatile(), LD->getAlignment());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008081}
8082
Evan Chengb6290462008-05-12 23:04:07 +00008083/// PerformBuildVectorCombine - build_vector 0,(load i64 / f64) -> movq / movsd.
Dan Gohman8181bd12008-07-27 21:46:04 +00008084static SDValue PerformBuildVectorCombine(SDNode *N, SelectionDAG &DAG,
Dan Gohman22cefb02009-01-29 01:59:02 +00008085 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng6617eed2008-09-24 23:26:36 +00008086 const X86Subtarget *Subtarget,
8087 const TargetLowering &TLI) {
Evan Chengdea99362008-05-29 08:22:04 +00008088 unsigned NumOps = N->getNumOperands();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008089 DebugLoc dl = N->getDebugLoc();
Evan Chengdea99362008-05-29 08:22:04 +00008090
Evan Chenge9b9c672008-05-09 21:53:03 +00008091 // Ignore single operand BUILD_VECTOR.
Evan Chengdea99362008-05-29 08:22:04 +00008092 if (NumOps == 1)
Dan Gohman8181bd12008-07-27 21:46:04 +00008093 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00008094
Duncan Sands92c43912008-06-06 12:08:01 +00008095 MVT VT = N->getValueType(0);
8096 MVT EVT = VT.getVectorElementType();
Evan Chenge9b9c672008-05-09 21:53:03 +00008097 if ((EVT != MVT::i64 && EVT != MVT::f64) || Subtarget->is64Bit())
8098 // We are looking for load i64 and zero extend. We want to transform
8099 // it before legalizer has a chance to expand it. Also look for i64
8100 // BUILD_PAIR bit casted to f64.
Dan Gohman8181bd12008-07-27 21:46:04 +00008101 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00008102 // This must be an insertion into a zero vector.
Dan Gohman8181bd12008-07-27 21:46:04 +00008103 SDValue HighElt = N->getOperand(1);
Evan Cheng5b0c30e2008-05-10 00:58:41 +00008104 if (!isZeroNode(HighElt))
Dan Gohman8181bd12008-07-27 21:46:04 +00008105 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00008106
8107 // Value must be a load.
Gabor Greif1c80d112008-08-28 21:40:38 +00008108 SDNode *Base = N->getOperand(0).getNode();
Evan Chenge9b9c672008-05-09 21:53:03 +00008109 if (!isa<LoadSDNode>(Base)) {
Evan Chengb6290462008-05-12 23:04:07 +00008110 if (Base->getOpcode() != ISD::BIT_CONVERT)
Dan Gohman8181bd12008-07-27 21:46:04 +00008111 return SDValue();
Gabor Greif1c80d112008-08-28 21:40:38 +00008112 Base = Base->getOperand(0).getNode();
Evan Chengb6290462008-05-12 23:04:07 +00008113 if (!isa<LoadSDNode>(Base))
Dan Gohman8181bd12008-07-27 21:46:04 +00008114 return SDValue();
Evan Chenge9b9c672008-05-09 21:53:03 +00008115 }
Evan Chenge9b9c672008-05-09 21:53:03 +00008116
8117 // Transform it into VZEXT_LOAD addr.
Evan Chengb6290462008-05-12 23:04:07 +00008118 LoadSDNode *LD = cast<LoadSDNode>(Base);
Scott Michel91099d62009-02-17 22:15:04 +00008119
Nate Begeman211c4742008-05-28 00:24:25 +00008120 // Load must not be an extload.
8121 if (LD->getExtensionType() != ISD::NON_EXTLOAD)
Dan Gohman8181bd12008-07-27 21:46:04 +00008122 return SDValue();
Mon P Wang28b36412009-01-30 07:07:40 +00008123
8124 // Load type should legal type so we don't have to legalize it.
8125 if (!TLI.isTypeLegal(VT))
8126 return SDValue();
8127
Evan Cheng6617eed2008-09-24 23:26:36 +00008128 SDVTList Tys = DAG.getVTList(VT, MVT::Other);
8129 SDValue Ops[] = { LD->getChain(), LD->getBasePtr() };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008130 SDValue ResNode = DAG.getNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2);
Dan Gohman22cefb02009-01-29 01:59:02 +00008131 TargetLowering::TargetLoweringOpt TLO(DAG);
8132 TLO.CombineTo(SDValue(Base, 1), ResNode.getValue(1));
8133 DCI.CommitTargetLoweringOpt(TLO);
Evan Cheng6617eed2008-09-24 23:26:36 +00008134 return ResNode;
Scott Michel91099d62009-02-17 22:15:04 +00008135}
Evan Chenge9b9c672008-05-09 21:53:03 +00008136
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008137/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008138static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner472f1d52009-03-11 05:48:52 +00008139 const X86Subtarget *Subtarget) {
8140 DebugLoc DL = N->getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00008141 SDValue Cond = N->getOperand(0);
Chris Lattner472f1d52009-03-11 05:48:52 +00008142 // Get the LHS/RHS of the select.
8143 SDValue LHS = N->getOperand(1);
8144 SDValue RHS = N->getOperand(2);
8145
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008146 // If we have SSE[12] support, try to form min/max nodes.
8147 if (Subtarget->hasSSE2() &&
Chris Lattner472f1d52009-03-11 05:48:52 +00008148 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
8149 Cond.getOpcode() == ISD::SETCC) {
8150 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008151
Chris Lattner472f1d52009-03-11 05:48:52 +00008152 unsigned Opcode = 0;
8153 if (LHS == Cond.getOperand(0) && RHS == Cond.getOperand(1)) {
8154 switch (CC) {
8155 default: break;
8156 case ISD::SETOLE: // (X <= Y) ? X : Y -> min
8157 case ISD::SETULE:
8158 case ISD::SETLE:
8159 if (!UnsafeFPMath) break;
8160 // FALL THROUGH.
8161 case ISD::SETOLT: // (X olt/lt Y) ? X : Y -> min
8162 case ISD::SETLT:
8163 Opcode = X86ISD::FMIN;
8164 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008165
Chris Lattner472f1d52009-03-11 05:48:52 +00008166 case ISD::SETOGT: // (X > Y) ? X : Y -> max
8167 case ISD::SETUGT:
8168 case ISD::SETGT:
8169 if (!UnsafeFPMath) break;
8170 // FALL THROUGH.
8171 case ISD::SETUGE: // (X uge/ge Y) ? X : Y -> max
8172 case ISD::SETGE:
8173 Opcode = X86ISD::FMAX;
8174 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008175 }
Chris Lattner472f1d52009-03-11 05:48:52 +00008176 } else if (LHS == Cond.getOperand(1) && RHS == Cond.getOperand(0)) {
8177 switch (CC) {
8178 default: break;
8179 case ISD::SETOGT: // (X > Y) ? Y : X -> min
8180 case ISD::SETUGT:
8181 case ISD::SETGT:
8182 if (!UnsafeFPMath) break;
8183 // FALL THROUGH.
8184 case ISD::SETUGE: // (X uge/ge Y) ? Y : X -> min
8185 case ISD::SETGE:
8186 Opcode = X86ISD::FMIN;
8187 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008188
Chris Lattner472f1d52009-03-11 05:48:52 +00008189 case ISD::SETOLE: // (X <= Y) ? Y : X -> max
8190 case ISD::SETULE:
8191 case ISD::SETLE:
8192 if (!UnsafeFPMath) break;
8193 // FALL THROUGH.
8194 case ISD::SETOLT: // (X olt/lt Y) ? Y : X -> max
8195 case ISD::SETLT:
8196 Opcode = X86ISD::FMAX;
8197 break;
8198 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008199 }
8200
Chris Lattner472f1d52009-03-11 05:48:52 +00008201 if (Opcode)
8202 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008203 }
Chris Lattner472f1d52009-03-11 05:48:52 +00008204
Chris Lattnere4577dc2009-03-12 06:52:53 +00008205 // If this is a select between two integer constants, try to do some
8206 // optimizations.
Chris Lattnera054e842009-03-13 05:53:31 +00008207 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
8208 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnere4577dc2009-03-12 06:52:53 +00008209 // Don't do this for crazy integer types.
8210 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
8211 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnera054e842009-03-13 05:53:31 +00008212 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnere4577dc2009-03-12 06:52:53 +00008213 bool NeedsCondInvert = false;
8214
Chris Lattnera054e842009-03-13 05:53:31 +00008215 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnere4577dc2009-03-12 06:52:53 +00008216 // Efficiently invertible.
8217 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
8218 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
8219 isa<ConstantSDNode>(Cond.getOperand(1))))) {
8220 NeedsCondInvert = true;
Chris Lattnera054e842009-03-13 05:53:31 +00008221 std::swap(TrueC, FalseC);
Chris Lattnere4577dc2009-03-12 06:52:53 +00008222 }
8223
8224 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnera054e842009-03-13 05:53:31 +00008225 if (FalseC->getAPIntValue() == 0 &&
8226 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnere4577dc2009-03-12 06:52:53 +00008227 if (NeedsCondInvert) // Invert the condition if needed.
8228 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
8229 DAG.getConstant(1, Cond.getValueType()));
8230
8231 // Zero extend the condition if needed.
8232 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
8233
Chris Lattnera054e842009-03-13 05:53:31 +00008234 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnere4577dc2009-03-12 06:52:53 +00008235 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
8236 DAG.getConstant(ShAmt, MVT::i8));
8237 }
Chris Lattner938d6652009-03-13 05:22:11 +00008238
8239 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnera054e842009-03-13 05:53:31 +00008240 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner938d6652009-03-13 05:22:11 +00008241 if (NeedsCondInvert) // Invert the condition if needed.
8242 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
8243 DAG.getConstant(1, Cond.getValueType()));
8244
8245 // Zero extend the condition if needed.
Chris Lattnera054e842009-03-13 05:53:31 +00008246 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
8247 FalseC->getValueType(0), Cond);
Chris Lattner938d6652009-03-13 05:22:11 +00008248 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnera054e842009-03-13 05:53:31 +00008249 SDValue(FalseC, 0));
Chris Lattner938d6652009-03-13 05:22:11 +00008250 }
Chris Lattnera054e842009-03-13 05:53:31 +00008251
8252 // Optimize cases that will turn into an LEA instruction. This requires
8253 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
8254 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
8255 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
8256 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
8257
8258 bool isFastMultiplier = false;
8259 if (Diff < 10) {
8260 switch ((unsigned char)Diff) {
8261 default: break;
8262 case 1: // result = add base, cond
8263 case 2: // result = lea base( , cond*2)
8264 case 3: // result = lea base(cond, cond*2)
8265 case 4: // result = lea base( , cond*4)
8266 case 5: // result = lea base(cond, cond*4)
8267 case 8: // result = lea base( , cond*8)
8268 case 9: // result = lea base(cond, cond*8)
8269 isFastMultiplier = true;
8270 break;
8271 }
8272 }
8273
8274 if (isFastMultiplier) {
8275 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
8276 if (NeedsCondInvert) // Invert the condition if needed.
8277 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
8278 DAG.getConstant(1, Cond.getValueType()));
8279
8280 // Zero extend the condition if needed.
8281 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
8282 Cond);
8283 // Scale the condition by the difference.
8284 if (Diff != 1)
8285 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
8286 DAG.getConstant(Diff, Cond.getValueType()));
8287
8288 // Add the base if non-zero.
8289 if (FalseC->getAPIntValue() != 0)
8290 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
8291 SDValue(FalseC, 0));
8292 return Cond;
8293 }
8294 }
Chris Lattnere4577dc2009-03-12 06:52:53 +00008295 }
8296 }
8297
Dan Gohman8181bd12008-07-27 21:46:04 +00008298 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008299}
8300
Chris Lattnere4577dc2009-03-12 06:52:53 +00008301/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
8302static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
8303 TargetLowering::DAGCombinerInfo &DCI) {
8304 DebugLoc DL = N->getDebugLoc();
8305
8306 // If the flag operand isn't dead, don't touch this CMOV.
8307 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
8308 return SDValue();
8309
8310 // If this is a select between two integer constants, try to do some
8311 // optimizations. Note that the operands are ordered the opposite of SELECT
8312 // operands.
8313 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
8314 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
8315 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
8316 // larger than FalseC (the false value).
8317 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
8318
8319 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
8320 CC = X86::GetOppositeBranchCondition(CC);
8321 std::swap(TrueC, FalseC);
8322 }
8323
8324 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnera054e842009-03-13 05:53:31 +00008325 // This is efficient for any integer data type (including i8/i16) and
8326 // shift amount.
Chris Lattnere4577dc2009-03-12 06:52:53 +00008327 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
8328 SDValue Cond = N->getOperand(3);
8329 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8330 DAG.getConstant(CC, MVT::i8), Cond);
8331
8332 // Zero extend the condition if needed.
8333 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
8334
8335 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
8336 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
8337 DAG.getConstant(ShAmt, MVT::i8));
8338 if (N->getNumValues() == 2) // Dead flag value?
8339 return DCI.CombineTo(N, Cond, SDValue());
8340 return Cond;
8341 }
Chris Lattnera054e842009-03-13 05:53:31 +00008342
8343 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
8344 // for any integer data type, including i8/i16.
Chris Lattner938d6652009-03-13 05:22:11 +00008345 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
8346 SDValue Cond = N->getOperand(3);
8347 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8348 DAG.getConstant(CC, MVT::i8), Cond);
8349
8350 // Zero extend the condition if needed.
Chris Lattnera054e842009-03-13 05:53:31 +00008351 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
8352 FalseC->getValueType(0), Cond);
Chris Lattner938d6652009-03-13 05:22:11 +00008353 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
8354 SDValue(FalseC, 0));
Chris Lattnera054e842009-03-13 05:53:31 +00008355
Chris Lattner938d6652009-03-13 05:22:11 +00008356 if (N->getNumValues() == 2) // Dead flag value?
8357 return DCI.CombineTo(N, Cond, SDValue());
8358 return Cond;
8359 }
Chris Lattnera054e842009-03-13 05:53:31 +00008360
8361 // Optimize cases that will turn into an LEA instruction. This requires
8362 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
8363 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
8364 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
8365 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
8366
8367 bool isFastMultiplier = false;
8368 if (Diff < 10) {
8369 switch ((unsigned char)Diff) {
8370 default: break;
8371 case 1: // result = add base, cond
8372 case 2: // result = lea base( , cond*2)
8373 case 3: // result = lea base(cond, cond*2)
8374 case 4: // result = lea base( , cond*4)
8375 case 5: // result = lea base(cond, cond*4)
8376 case 8: // result = lea base( , cond*8)
8377 case 9: // result = lea base(cond, cond*8)
8378 isFastMultiplier = true;
8379 break;
8380 }
8381 }
8382
8383 if (isFastMultiplier) {
8384 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
8385 SDValue Cond = N->getOperand(3);
8386 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8387 DAG.getConstant(CC, MVT::i8), Cond);
8388 // Zero extend the condition if needed.
8389 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
8390 Cond);
8391 // Scale the condition by the difference.
8392 if (Diff != 1)
8393 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
8394 DAG.getConstant(Diff, Cond.getValueType()));
8395
8396 // Add the base if non-zero.
8397 if (FalseC->getAPIntValue() != 0)
8398 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
8399 SDValue(FalseC, 0));
8400 if (N->getNumValues() == 2) // Dead flag value?
8401 return DCI.CombineTo(N, Cond, SDValue());
8402 return Cond;
8403 }
8404 }
Chris Lattnere4577dc2009-03-12 06:52:53 +00008405 }
8406 }
8407 return SDValue();
8408}
8409
8410
Evan Cheng04ecee12009-03-28 05:57:29 +00008411/// PerformMulCombine - Optimize a single multiply with constant into two
8412/// in order to implement it with two cheaper instructions, e.g.
8413/// LEA + SHL, LEA + LEA.
8414static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
8415 TargetLowering::DAGCombinerInfo &DCI) {
8416 if (DAG.getMachineFunction().
8417 getFunction()->hasFnAttr(Attribute::OptimizeForSize))
8418 return SDValue();
8419
8420 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
8421 return SDValue();
8422
8423 MVT VT = N->getValueType(0);
8424 if (VT != MVT::i64)
8425 return SDValue();
8426
8427 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
8428 if (!C)
8429 return SDValue();
8430 uint64_t MulAmt = C->getZExtValue();
8431 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
8432 return SDValue();
8433
8434 uint64_t MulAmt1 = 0;
8435 uint64_t MulAmt2 = 0;
8436 if ((MulAmt % 9) == 0) {
8437 MulAmt1 = 9;
8438 MulAmt2 = MulAmt / 9;
8439 } else if ((MulAmt % 5) == 0) {
8440 MulAmt1 = 5;
8441 MulAmt2 = MulAmt / 5;
8442 } else if ((MulAmt % 3) == 0) {
8443 MulAmt1 = 3;
8444 MulAmt2 = MulAmt / 3;
8445 }
8446 if (MulAmt2 &&
8447 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
8448 DebugLoc DL = N->getDebugLoc();
8449
8450 if (isPowerOf2_64(MulAmt2) &&
8451 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
8452 // If second multiplifer is pow2, issue it first. We want the multiply by
8453 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
8454 // is an add.
8455 std::swap(MulAmt1, MulAmt2);
8456
8457 SDValue NewMul;
8458 if (isPowerOf2_64(MulAmt1))
8459 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
8460 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
8461 else
Evan Chengc3495762009-03-30 21:36:47 +00008462 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng04ecee12009-03-28 05:57:29 +00008463 DAG.getConstant(MulAmt1, VT));
8464
8465 if (isPowerOf2_64(MulAmt2))
8466 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
8467 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
8468 else
Evan Chengc3495762009-03-30 21:36:47 +00008469 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng04ecee12009-03-28 05:57:29 +00008470 DAG.getConstant(MulAmt2, VT));
8471
8472 // Do not add new nodes to DAG combiner worklist.
8473 DCI.CombineTo(N, NewMul, false);
8474 }
8475 return SDValue();
8476}
8477
8478
sampo025b75c2009-01-26 00:52:55 +00008479/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
8480/// when possible.
8481static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
8482 const X86Subtarget *Subtarget) {
8483 // On X86 with SSE2 support, we can transform this to a vector shift if
8484 // all elements are shifted by the same amount. We can't do this in legalize
8485 // because the a constant vector is typically transformed to a constant pool
8486 // so we have no knowledge of the shift amount.
sampo087d53c2009-01-26 03:15:31 +00008487 if (!Subtarget->hasSSE2())
8488 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00008489
sampo025b75c2009-01-26 00:52:55 +00008490 MVT VT = N->getValueType(0);
sampo087d53c2009-01-26 03:15:31 +00008491 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
8492 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00008493
Mon P Wanga91e9642009-01-28 08:12:05 +00008494 SDValue ShAmtOp = N->getOperand(1);
8495 MVT EltVT = VT.getVectorElementType();
Chris Lattner472f1d52009-03-11 05:48:52 +00008496 DebugLoc DL = N->getDebugLoc();
Mon P Wanga91e9642009-01-28 08:12:05 +00008497 SDValue BaseShAmt;
8498 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
8499 unsigned NumElts = VT.getVectorNumElements();
8500 unsigned i = 0;
8501 for (; i != NumElts; ++i) {
8502 SDValue Arg = ShAmtOp.getOperand(i);
8503 if (Arg.getOpcode() == ISD::UNDEF) continue;
8504 BaseShAmt = Arg;
8505 break;
8506 }
8507 for (; i != NumElts; ++i) {
8508 SDValue Arg = ShAmtOp.getOperand(i);
8509 if (Arg.getOpcode() == ISD::UNDEF) continue;
8510 if (Arg != BaseShAmt) {
8511 return SDValue();
8512 }
8513 }
8514 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
8515 isSplatMask(ShAmtOp.getOperand(2).getNode())) {
Chris Lattner472f1d52009-03-11 05:48:52 +00008516 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
Mon P Wanga91e9642009-01-28 08:12:05 +00008517 DAG.getIntPtrConstant(0));
8518 } else
sampo087d53c2009-01-26 03:15:31 +00008519 return SDValue();
sampo025b75c2009-01-26 00:52:55 +00008520
sampo087d53c2009-01-26 03:15:31 +00008521 if (EltVT.bitsGT(MVT::i32))
Chris Lattner472f1d52009-03-11 05:48:52 +00008522 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008523 else if (EltVT.bitsLT(MVT::i32))
Chris Lattner472f1d52009-03-11 05:48:52 +00008524 BaseShAmt = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, BaseShAmt);
sampo025b75c2009-01-26 00:52:55 +00008525
sampo087d53c2009-01-26 03:15:31 +00008526 // The shift amount is identical so we can do a vector shift.
8527 SDValue ValOp = N->getOperand(0);
8528 switch (N->getOpcode()) {
8529 default:
8530 assert(0 && "Unknown shift opcode!");
8531 break;
8532 case ISD::SHL:
8533 if (VT == MVT::v2i64)
Chris Lattner472f1d52009-03-11 05:48:52 +00008534 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008535 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8536 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008537 if (VT == MVT::v4i32)
Chris Lattner472f1d52009-03-11 05:48:52 +00008538 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008539 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8540 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008541 if (VT == MVT::v8i16)
Chris Lattner472f1d52009-03-11 05:48:52 +00008542 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008543 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8544 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008545 break;
8546 case ISD::SRA:
8547 if (VT == MVT::v4i32)
Chris Lattner472f1d52009-03-11 05:48:52 +00008548 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008549 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
8550 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008551 if (VT == MVT::v8i16)
Chris Lattner472f1d52009-03-11 05:48:52 +00008552 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008553 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
8554 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008555 break;
8556 case ISD::SRL:
8557 if (VT == MVT::v2i64)
Chris Lattner472f1d52009-03-11 05:48:52 +00008558 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008559 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8560 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008561 if (VT == MVT::v4i32)
Chris Lattner472f1d52009-03-11 05:48:52 +00008562 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008563 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
8564 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008565 if (VT == MVT::v8i16)
Chris Lattner472f1d52009-03-11 05:48:52 +00008566 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
sampo025b75c2009-01-26 00:52:55 +00008567 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
8568 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00008569 break;
sampo025b75c2009-01-26 00:52:55 +00008570 }
8571 return SDValue();
8572}
8573
Chris Lattnerce84ae42008-02-22 02:09:43 +00008574/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008575static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Chengc944c5d2009-03-12 05:59:15 +00008576 const X86Subtarget *Subtarget) {
Chris Lattnerce84ae42008-02-22 02:09:43 +00008577 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
8578 // the FP state in cases where an emms may be missing.
Dale Johannesend112b802008-02-25 19:20:14 +00008579 // A preferable solution to the general problem is to figure out the right
8580 // places to insert EMMS. This qualifies as a quick hack.
Evan Chengc944c5d2009-03-12 05:59:15 +00008581
8582 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng40ee6e52008-05-08 00:57:18 +00008583 StoreSDNode *St = cast<StoreSDNode>(N);
Evan Chengc944c5d2009-03-12 05:59:15 +00008584 MVT VT = St->getValue().getValueType();
8585 if (VT.getSizeInBits() != 64)
8586 return SDValue();
8587
8588 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloat && Subtarget->hasSSE2();
8589 if ((VT.isVector() ||
8590 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesend112b802008-02-25 19:20:14 +00008591 isa<LoadSDNode>(St->getValue()) &&
8592 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
8593 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greif1c80d112008-08-28 21:40:38 +00008594 SDNode* LdVal = St->getValue().getNode();
Dale Johannesend112b802008-02-25 19:20:14 +00008595 LoadSDNode *Ld = 0;
8596 int TokenFactorIndex = -1;
Dan Gohman8181bd12008-07-27 21:46:04 +00008597 SmallVector<SDValue, 8> Ops;
Gabor Greif1c80d112008-08-28 21:40:38 +00008598 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesend112b802008-02-25 19:20:14 +00008599 // Must be a store of a load. We currently handle two cases: the load
8600 // is a direct child, and it's under an intervening TokenFactor. It is
8601 // possible to dig deeper under nested TokenFactors.
Dale Johannesen49151bc2008-02-25 22:29:22 +00008602 if (ChainVal == LdVal)
Dale Johannesend112b802008-02-25 19:20:14 +00008603 Ld = cast<LoadSDNode>(St->getChain());
8604 else if (St->getValue().hasOneUse() &&
8605 ChainVal->getOpcode() == ISD::TokenFactor) {
8606 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greif1c80d112008-08-28 21:40:38 +00008607 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesend112b802008-02-25 19:20:14 +00008608 TokenFactorIndex = i;
8609 Ld = cast<LoadSDNode>(St->getValue());
8610 } else
8611 Ops.push_back(ChainVal->getOperand(i));
8612 }
8613 }
Dale Johannesend112b802008-02-25 19:20:14 +00008614
Evan Chengc944c5d2009-03-12 05:59:15 +00008615 if (!Ld || !ISD::isNormalLoad(Ld))
8616 return SDValue();
Dale Johannesend112b802008-02-25 19:20:14 +00008617
Evan Chengc944c5d2009-03-12 05:59:15 +00008618 // If this is not the MMX case, i.e. we are just turning i64 load/store
8619 // into f64 load/store, avoid the transformation if there are multiple
8620 // uses of the loaded value.
8621 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
8622 return SDValue();
Dale Johannesend112b802008-02-25 19:20:14 +00008623
Evan Chengc944c5d2009-03-12 05:59:15 +00008624 DebugLoc LdDL = Ld->getDebugLoc();
8625 DebugLoc StDL = N->getDebugLoc();
8626 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
8627 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
8628 // pair instead.
8629 if (Subtarget->is64Bit() || F64IsLegal) {
8630 MVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
8631 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(),
8632 Ld->getBasePtr(), Ld->getSrcValue(),
8633 Ld->getSrcValueOffset(), Ld->isVolatile(),
8634 Ld->getAlignment());
8635 SDValue NewChain = NewLd.getValue(1);
Dale Johannesend112b802008-02-25 19:20:14 +00008636 if (TokenFactorIndex != -1) {
Evan Chengc944c5d2009-03-12 05:59:15 +00008637 Ops.push_back(NewChain);
8638 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesend112b802008-02-25 19:20:14 +00008639 Ops.size());
8640 }
Evan Chengc944c5d2009-03-12 05:59:15 +00008641 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattnerce84ae42008-02-22 02:09:43 +00008642 St->getSrcValue(), St->getSrcValueOffset(),
8643 St->isVolatile(), St->getAlignment());
8644 }
Evan Chengc944c5d2009-03-12 05:59:15 +00008645
8646 // Otherwise, lower to two pairs of 32-bit loads / stores.
8647 SDValue LoAddr = Ld->getBasePtr();
8648 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
8649 DAG.getConstant(4, MVT::i32));
8650
8651 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
8652 Ld->getSrcValue(), Ld->getSrcValueOffset(),
8653 Ld->isVolatile(), Ld->getAlignment());
8654 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
8655 Ld->getSrcValue(), Ld->getSrcValueOffset()+4,
8656 Ld->isVolatile(),
8657 MinAlign(Ld->getAlignment(), 4));
8658
8659 SDValue NewChain = LoLd.getValue(1);
8660 if (TokenFactorIndex != -1) {
8661 Ops.push_back(LoLd);
8662 Ops.push_back(HiLd);
8663 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
8664 Ops.size());
8665 }
8666
8667 LoAddr = St->getBasePtr();
8668 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
8669 DAG.getConstant(4, MVT::i32));
8670
8671 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
8672 St->getSrcValue(), St->getSrcValueOffset(),
8673 St->isVolatile(), St->getAlignment());
8674 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
8675 St->getSrcValue(),
8676 St->getSrcValueOffset() + 4,
8677 St->isVolatile(),
8678 MinAlign(St->getAlignment(), 4));
8679 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattnerce84ae42008-02-22 02:09:43 +00008680 }
Dan Gohman8181bd12008-07-27 21:46:04 +00008681 return SDValue();
Chris Lattnerce84ae42008-02-22 02:09:43 +00008682}
8683
Chris Lattner470d5dc2008-01-25 06:14:17 +00008684/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
8685/// X86ISD::FXOR nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008686static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner470d5dc2008-01-25 06:14:17 +00008687 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
8688 // F[X]OR(0.0, x) -> x
8689 // F[X]OR(x, 0.0) -> x
Chris Lattnerf82998f2008-01-25 05:46:26 +00008690 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8691 if (C->getValueAPF().isPosZero())
8692 return N->getOperand(1);
8693 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8694 if (C->getValueAPF().isPosZero())
8695 return N->getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +00008696 return SDValue();
Chris Lattnerf82998f2008-01-25 05:46:26 +00008697}
8698
8699/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00008700static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattnerf82998f2008-01-25 05:46:26 +00008701 // FAND(0.0, x) -> 0.0
8702 // FAND(x, 0.0) -> 0.0
8703 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8704 if (C->getValueAPF().isPosZero())
8705 return N->getOperand(0);
8706 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8707 if (C->getValueAPF().isPosZero())
8708 return N->getOperand(1);
Dan Gohman8181bd12008-07-27 21:46:04 +00008709 return SDValue();
Chris Lattnerf82998f2008-01-25 05:46:26 +00008710}
8711
Dan Gohman22cefb02009-01-29 01:59:02 +00008712static SDValue PerformBTCombine(SDNode *N,
8713 SelectionDAG &DAG,
8714 TargetLowering::DAGCombinerInfo &DCI) {
8715 // BT ignores high bits in the bit index operand.
8716 SDValue Op1 = N->getOperand(1);
8717 if (Op1.hasOneUse()) {
8718 unsigned BitWidth = Op1.getValueSizeInBits();
8719 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
8720 APInt KnownZero, KnownOne;
8721 TargetLowering::TargetLoweringOpt TLO(DAG);
8722 TargetLowering &TLI = DAG.getTargetLoweringInfo();
8723 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
8724 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
8725 DCI.CommitTargetLoweringOpt(TLO);
8726 }
8727 return SDValue();
8728}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008729
Dan Gohman8181bd12008-07-27 21:46:04 +00008730SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng62370f32008-11-05 06:03:38 +00008731 DAGCombinerInfo &DCI) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008732 SelectionDAG &DAG = DCI.DAG;
8733 switch (N->getOpcode()) {
8734 default: break;
Evan Chengef7be082008-05-12 19:56:52 +00008735 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
8736 case ISD::BUILD_VECTOR:
Dan Gohman22cefb02009-01-29 01:59:02 +00008737 return PerformBuildVectorCombine(N, DAG, DCI, Subtarget, *this);
Chris Lattnerf82998f2008-01-25 05:46:26 +00008738 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnere4577dc2009-03-12 06:52:53 +00008739 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Evan Cheng04ecee12009-03-28 05:57:29 +00008740 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
sampo025b75c2009-01-26 00:52:55 +00008741 case ISD::SHL:
8742 case ISD::SRA:
8743 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng40ee6e52008-05-08 00:57:18 +00008744 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner470d5dc2008-01-25 06:14:17 +00008745 case X86ISD::FXOR:
Chris Lattnerf82998f2008-01-25 05:46:26 +00008746 case X86ISD::FOR: return PerformFORCombine(N, DAG);
8747 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohman22cefb02009-01-29 01:59:02 +00008748 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008749 }
8750
Dan Gohman8181bd12008-07-27 21:46:04 +00008751 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008752}
8753
8754//===----------------------------------------------------------------------===//
8755// X86 Inline Assembly Support
8756//===----------------------------------------------------------------------===//
8757
8758/// getConstraintType - Given a constraint letter, return the type of
8759/// constraint it is for this target.
8760X86TargetLowering::ConstraintType
8761X86TargetLowering::getConstraintType(const std::string &Constraint) const {
8762 if (Constraint.size() == 1) {
8763 switch (Constraint[0]) {
8764 case 'A':
Dale Johannesen73920c02008-11-13 21:52:36 +00008765 return C_Register;
Chris Lattner267805f2008-03-11 19:06:29 +00008766 case 'f':
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008767 case 'r':
8768 case 'R':
8769 case 'l':
8770 case 'q':
8771 case 'Q':
8772 case 'x':
Dale Johannesen9ab553f2008-04-01 00:57:48 +00008773 case 'y':
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008774 case 'Y':
8775 return C_RegisterClass;
Dale Johannesenf190a032009-02-12 20:58:09 +00008776 case 'e':
8777 case 'Z':
8778 return C_Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008779 default:
8780 break;
8781 }
8782 }
8783 return TargetLowering::getConstraintType(Constraint);
8784}
8785
Dale Johannesene99fc902008-01-29 02:21:21 +00008786/// LowerXConstraint - try to replace an X constraint, which matches anything,
8787/// with another that has more specific requirements based on the type of the
8788/// corresponding operand.
Chris Lattnereca405c2008-04-26 23:02:14 +00008789const char *X86TargetLowering::
Duncan Sands92c43912008-06-06 12:08:01 +00008790LowerXConstraint(MVT ConstraintVT) const {
Chris Lattnereca405c2008-04-26 23:02:14 +00008791 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
8792 // 'f' like normal targets.
Duncan Sands92c43912008-06-06 12:08:01 +00008793 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesene99fc902008-01-29 02:21:21 +00008794 if (Subtarget->hasSSE2())
Chris Lattnereca405c2008-04-26 23:02:14 +00008795 return "Y";
8796 if (Subtarget->hasSSE1())
8797 return "x";
8798 }
Scott Michel91099d62009-02-17 22:15:04 +00008799
Chris Lattnereca405c2008-04-26 23:02:14 +00008800 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesene99fc902008-01-29 02:21:21 +00008801}
8802
Chris Lattnera531abc2007-08-25 00:47:38 +00008803/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
8804/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman8181bd12008-07-27 21:46:04 +00008805void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattnera531abc2007-08-25 00:47:38 +00008806 char Constraint,
Evan Cheng7f250d62008-09-24 00:05:32 +00008807 bool hasMemory,
Dan Gohman8181bd12008-07-27 21:46:04 +00008808 std::vector<SDValue>&Ops,
Chris Lattnereca405c2008-04-26 23:02:14 +00008809 SelectionDAG &DAG) const {
Dan Gohman8181bd12008-07-27 21:46:04 +00008810 SDValue Result(0, 0);
Scott Michel91099d62009-02-17 22:15:04 +00008811
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008812 switch (Constraint) {
8813 default: break;
8814 case 'I':
8815 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008816 if (C->getZExtValue() <= 31) {
8817 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattnera531abc2007-08-25 00:47:38 +00008818 break;
8819 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008820 }
Chris Lattnera531abc2007-08-25 00:47:38 +00008821 return;
Evan Cheng4fb2c0f2008-09-22 23:57:37 +00008822 case 'J':
8823 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8824 if (C->getZExtValue() <= 63) {
8825 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8826 break;
8827 }
8828 }
8829 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008830 case 'N':
8831 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008832 if (C->getZExtValue() <= 255) {
8833 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattnera531abc2007-08-25 00:47:38 +00008834 break;
8835 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008836 }
Chris Lattnera531abc2007-08-25 00:47:38 +00008837 return;
Dale Johannesenf190a032009-02-12 20:58:09 +00008838 case 'e': {
8839 // 32-bit signed value
8840 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8841 const ConstantInt *CI = C->getConstantIntValue();
8842 if (CI->isValueValidForType(Type::Int32Ty, C->getSExtValue())) {
8843 // Widen to 64 bits here to get it sign extended.
8844 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
8845 break;
8846 }
8847 // FIXME gcc accepts some relocatable values here too, but only in certain
8848 // memory models; it's complicated.
8849 }
8850 return;
8851 }
8852 case 'Z': {
8853 // 32-bit unsigned value
8854 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8855 const ConstantInt *CI = C->getConstantIntValue();
8856 if (CI->isValueValidForType(Type::Int32Ty, C->getZExtValue())) {
8857 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8858 break;
8859 }
8860 }
8861 // FIXME gcc accepts some relocatable values here too, but only in certain
8862 // memory models; it's complicated.
8863 return;
8864 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008865 case 'i': {
8866 // Literal immediates are always ok.
Chris Lattnera531abc2007-08-25 00:47:38 +00008867 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesenf190a032009-02-12 20:58:09 +00008868 // Widen to 64 bits here to get it sign extended.
8869 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattnera531abc2007-08-25 00:47:38 +00008870 break;
8871 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008872
8873 // If we are in non-pic codegen mode, we allow the address of a global (with
8874 // an optional displacement) to be used with 'i'.
8875 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
8876 int64_t Offset = 0;
Scott Michel91099d62009-02-17 22:15:04 +00008877
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008878 // Match either (GA) or (GA+C)
8879 if (GA) {
8880 Offset = GA->getOffset();
8881 } else if (Op.getOpcode() == ISD::ADD) {
8882 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8883 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
8884 if (C && GA) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008885 Offset = GA->getOffset()+C->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008886 } else {
8887 C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8888 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
8889 if (C && GA)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00008890 Offset = GA->getOffset()+C->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008891 else
8892 C = 0, GA = 0;
8893 }
8894 }
Scott Michel91099d62009-02-17 22:15:04 +00008895
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008896 if (GA) {
Scott Michel91099d62009-02-17 22:15:04 +00008897 if (hasMemory)
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00008898 Op = LowerGlobalAddress(GA->getGlobal(), Op.getDebugLoc(),
Dale Johannesenea996922009-02-04 20:06:27 +00008899 Offset, DAG);
Evan Cheng7f250d62008-09-24 00:05:32 +00008900 else
8901 Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
8902 Offset);
Chris Lattnera531abc2007-08-25 00:47:38 +00008903 Result = Op;
8904 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008905 }
8906
8907 // Otherwise, not valid for this mode.
Chris Lattnera531abc2007-08-25 00:47:38 +00008908 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008909 }
8910 }
Scott Michel91099d62009-02-17 22:15:04 +00008911
Gabor Greif1c80d112008-08-28 21:40:38 +00008912 if (Result.getNode()) {
Chris Lattnera531abc2007-08-25 00:47:38 +00008913 Ops.push_back(Result);
8914 return;
8915 }
Evan Cheng7f250d62008-09-24 00:05:32 +00008916 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, hasMemory,
8917 Ops, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008918}
8919
8920std::vector<unsigned> X86TargetLowering::
8921getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +00008922 MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008923 if (Constraint.size() == 1) {
8924 // FIXME: not handling fp-stack yet!
8925 switch (Constraint[0]) { // GCC X86 Constraint Letters
8926 default: break; // Unknown constraint letter
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008927 case 'q': // Q_REGS (GENERAL_REGS in 64-bit mode)
8928 case 'Q': // Q_REGS
8929 if (VT == MVT::i32)
8930 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
8931 else if (VT == MVT::i16)
8932 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
8933 else if (VT == MVT::i8)
Evan Chengf85c10f2007-08-13 23:27:11 +00008934 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Chris Lattner35032592007-11-04 06:51:12 +00008935 else if (VT == MVT::i64)
8936 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
8937 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008938 }
8939 }
8940
8941 return std::vector<unsigned>();
8942}
8943
8944std::pair<unsigned, const TargetRegisterClass*>
8945X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +00008946 MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008947 // First, see if this is a constraint that directly corresponds to an LLVM
8948 // register class.
8949 if (Constraint.size() == 1) {
8950 // GCC Constraint Letters
8951 switch (Constraint[0]) {
8952 default: break;
8953 case 'r': // GENERAL_REGS
8954 case 'R': // LEGACY_REGS
8955 case 'l': // INDEX_REGS
Chris Lattnerbbfea052008-10-17 18:15:05 +00008956 if (VT == MVT::i8)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008957 return std::make_pair(0U, X86::GR8RegisterClass);
Chris Lattnerbbfea052008-10-17 18:15:05 +00008958 if (VT == MVT::i16)
8959 return std::make_pair(0U, X86::GR16RegisterClass);
8960 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michel91099d62009-02-17 22:15:04 +00008961 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattnerbbfea052008-10-17 18:15:05 +00008962 return std::make_pair(0U, X86::GR64RegisterClass);
Chris Lattner267805f2008-03-11 19:06:29 +00008963 case 'f': // FP Stack registers.
8964 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
8965 // value to the correct fpstack register class.
8966 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
8967 return std::make_pair(0U, X86::RFP32RegisterClass);
8968 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
8969 return std::make_pair(0U, X86::RFP64RegisterClass);
8970 return std::make_pair(0U, X86::RFP80RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008971 case 'y': // MMX_REGS if MMX allowed.
8972 if (!Subtarget->hasMMX()) break;
8973 return std::make_pair(0U, X86::VR64RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008974 case 'Y': // SSE_REGS if SSE2 allowed
8975 if (!Subtarget->hasSSE2()) break;
8976 // FALL THROUGH.
8977 case 'x': // SSE_REGS if SSE1 allowed
8978 if (!Subtarget->hasSSE1()) break;
Duncan Sands92c43912008-06-06 12:08:01 +00008979
8980 switch (VT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008981 default: break;
8982 // Scalar SSE types.
8983 case MVT::f32:
8984 case MVT::i32:
8985 return std::make_pair(0U, X86::FR32RegisterClass);
8986 case MVT::f64:
8987 case MVT::i64:
8988 return std::make_pair(0U, X86::FR64RegisterClass);
8989 // Vector types.
8990 case MVT::v16i8:
8991 case MVT::v8i16:
8992 case MVT::v4i32:
8993 case MVT::v2i64:
8994 case MVT::v4f32:
8995 case MVT::v2f64:
8996 return std::make_pair(0U, X86::VR128RegisterClass);
8997 }
8998 break;
8999 }
9000 }
Scott Michel91099d62009-02-17 22:15:04 +00009001
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009002 // Use the default implementation in TargetLowering to convert the register
9003 // constraint into a member of a register class.
9004 std::pair<unsigned, const TargetRegisterClass*> Res;
9005 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
9006
9007 // Not found as a standard register?
9008 if (Res.second == 0) {
9009 // GCC calls "st(0)" just plain "st".
9010 if (StringsEqualNoCase("{st}", Constraint)) {
9011 Res.first = X86::ST0;
Chris Lattner3cfe51b2007-09-24 05:27:37 +00009012 Res.second = X86::RFP80RegisterClass;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009013 }
Dale Johannesen73920c02008-11-13 21:52:36 +00009014 // 'A' means EAX + EDX.
9015 if (Constraint == "A") {
9016 Res.first = X86::EAX;
9017 Res.second = X86::GRADRegisterClass;
9018 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009019 return Res;
9020 }
9021
9022 // Otherwise, check to see if this is a register class of the wrong value
9023 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
9024 // turn into {ax},{dx}.
9025 if (Res.second->hasType(VT))
9026 return Res; // Correct type already, nothing to do.
9027
9028 // All of the single-register GCC register classes map their values onto
9029 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
9030 // really want an 8-bit or 32-bit register, map to the appropriate register
9031 // class and return the appropriate register.
Chris Lattnere9d7f792008-08-26 06:19:02 +00009032 if (Res.second == X86::GR16RegisterClass) {
9033 if (VT == MVT::i8) {
9034 unsigned DestReg = 0;
9035 switch (Res.first) {
9036 default: break;
9037 case X86::AX: DestReg = X86::AL; break;
9038 case X86::DX: DestReg = X86::DL; break;
9039 case X86::CX: DestReg = X86::CL; break;
9040 case X86::BX: DestReg = X86::BL; break;
9041 }
9042 if (DestReg) {
9043 Res.first = DestReg;
9044 Res.second = Res.second = X86::GR8RegisterClass;
9045 }
9046 } else if (VT == MVT::i32) {
9047 unsigned DestReg = 0;
9048 switch (Res.first) {
9049 default: break;
9050 case X86::AX: DestReg = X86::EAX; break;
9051 case X86::DX: DestReg = X86::EDX; break;
9052 case X86::CX: DestReg = X86::ECX; break;
9053 case X86::BX: DestReg = X86::EBX; break;
9054 case X86::SI: DestReg = X86::ESI; break;
9055 case X86::DI: DestReg = X86::EDI; break;
9056 case X86::BP: DestReg = X86::EBP; break;
9057 case X86::SP: DestReg = X86::ESP; break;
9058 }
9059 if (DestReg) {
9060 Res.first = DestReg;
9061 Res.second = Res.second = X86::GR32RegisterClass;
9062 }
9063 } else if (VT == MVT::i64) {
9064 unsigned DestReg = 0;
9065 switch (Res.first) {
9066 default: break;
9067 case X86::AX: DestReg = X86::RAX; break;
9068 case X86::DX: DestReg = X86::RDX; break;
9069 case X86::CX: DestReg = X86::RCX; break;
9070 case X86::BX: DestReg = X86::RBX; break;
9071 case X86::SI: DestReg = X86::RSI; break;
9072 case X86::DI: DestReg = X86::RDI; break;
9073 case X86::BP: DestReg = X86::RBP; break;
9074 case X86::SP: DestReg = X86::RSP; break;
9075 }
9076 if (DestReg) {
9077 Res.first = DestReg;
9078 Res.second = Res.second = X86::GR64RegisterClass;
9079 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009080 }
Chris Lattnere9d7f792008-08-26 06:19:02 +00009081 } else if (Res.second == X86::FR32RegisterClass ||
9082 Res.second == X86::FR64RegisterClass ||
9083 Res.second == X86::VR128RegisterClass) {
9084 // Handle references to XMM physical registers that got mapped into the
9085 // wrong class. This can happen with constraints like {xmm0} where the
9086 // target independent register mapper will just pick the first match it can
9087 // find, ignoring the required type.
9088 if (VT == MVT::f32)
9089 Res.second = X86::FR32RegisterClass;
9090 else if (VT == MVT::f64)
9091 Res.second = X86::FR64RegisterClass;
9092 else if (X86::VR128RegisterClass->hasType(VT))
9093 Res.second = X86::VR128RegisterClass;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009094 }
9095
9096 return Res;
9097}
Mon P Wang1448aad2008-10-30 08:01:45 +00009098
9099//===----------------------------------------------------------------------===//
9100// X86 Widen vector type
9101//===----------------------------------------------------------------------===//
9102
9103/// getWidenVectorType: given a vector type, returns the type to widen
9104/// to (e.g., v7i8 to v8i8). If the vector type is legal, it returns itself.
9105/// If there is no vector type that we want to widen to, returns MVT::Other
Mon P Wanga5a239f2008-11-06 05:31:54 +00009106/// When and where to widen is target dependent based on the cost of
Mon P Wang1448aad2008-10-30 08:01:45 +00009107/// scalarizing vs using the wider vector type.
9108
Dan Gohman0fe66c92009-01-15 17:34:08 +00009109MVT X86TargetLowering::getWidenVectorType(MVT VT) const {
Mon P Wang1448aad2008-10-30 08:01:45 +00009110 assert(VT.isVector());
9111 if (isTypeLegal(VT))
9112 return VT;
Scott Michel91099d62009-02-17 22:15:04 +00009113
Mon P Wang1448aad2008-10-30 08:01:45 +00009114 // TODO: In computeRegisterProperty, we can compute the list of legal vector
9115 // type based on element type. This would speed up our search (though
9116 // it may not be worth it since the size of the list is relatively
9117 // small).
9118 MVT EltVT = VT.getVectorElementType();
9119 unsigned NElts = VT.getVectorNumElements();
Scott Michel91099d62009-02-17 22:15:04 +00009120
Mon P Wang1448aad2008-10-30 08:01:45 +00009121 // On X86, it make sense to widen any vector wider than 1
9122 if (NElts <= 1)
9123 return MVT::Other;
Scott Michel91099d62009-02-17 22:15:04 +00009124
9125 for (unsigned nVT = MVT::FIRST_VECTOR_VALUETYPE;
Mon P Wang1448aad2008-10-30 08:01:45 +00009126 nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
9127 MVT SVT = (MVT::SimpleValueType)nVT;
Scott Michel91099d62009-02-17 22:15:04 +00009128
9129 if (isTypeLegal(SVT) &&
9130 SVT.getVectorElementType() == EltVT &&
Mon P Wang1448aad2008-10-30 08:01:45 +00009131 SVT.getVectorNumElements() > NElts)
9132 return SVT;
9133 }
9134 return MVT::Other;
9135}