blob: 2f94b67849ea80e09101a2364c532eca7095fc00 [file] [log] [blame]
Arnold Schwaighofer92226dd2007-10-12 21:53:12 +00001//===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +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"
Evan Cheng0cc39452006-01-16 21:21:29 +000016#include "X86InstrBuilder.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000017#include "X86ISelLowering.h"
18#include "X86TargetMachine.h"
19#include "llvm/CallingConv.h"
Evan Cheng223547a2006-01-31 22:28:30 +000020#include "llvm/Constants.h"
Evan Cheng347d5f72006-04-28 21:29:37 +000021#include "llvm/DerivedTypes.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000022#include "llvm/GlobalVariable.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000023#include "llvm/Function.h"
Evan Cheng6be2c582006-04-05 23:38:46 +000024#include "llvm/Intrinsics.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000025#include "llvm/ADT/BitVector.h"
Evan Cheng30b37b52006-03-13 23:18:16 +000026#include "llvm/ADT/VectorExtras.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000027#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng4a460802006-01-11 00:33:36 +000028#include "llvm/CodeGen/MachineFunction.h"
29#include "llvm/CodeGen/MachineInstrBuilder.h"
Evan Chenga844bde2008-02-02 04:07:54 +000030#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000031#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000032#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Chengef6ffb12006-01-31 03:14:29 +000033#include "llvm/Support/MathExtras.h"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000034#include "llvm/Support/Debug.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000035#include "llvm/Target/TargetOptions.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000036#include "llvm/ADT/SmallSet.h"
Chris Lattner1a60aa72006-10-31 19:42:44 +000037#include "llvm/ADT/StringExtras.h"
Mon P Wang3c81d352008-11-23 04:37:22 +000038#include "llvm/Support/CommandLine.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000039using namespace llvm;
40
Mon P Wang3c81d352008-11-23 04:37:22 +000041static cl::opt<bool>
Mon P Wang9f22a4a2008-11-24 02:10:43 +000042DisableMMX("disable-mmx", cl::Hidden, cl::desc("Disable use of MMX"));
Mon P Wang3c81d352008-11-23 04:37:22 +000043
Evan Cheng10e86422008-04-25 19:11:04 +000044// Forward declarations.
Nate Begeman9008ca62009-04-27 18:41:29 +000045static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, MVT VT, SDValue V1,
46 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000047
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +000048X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000049 : TargetLowering(TM) {
Evan Cheng559806f2006-01-27 08:10:46 +000050 Subtarget = &TM.getSubtarget<X86Subtarget>();
Dale Johannesenf1fc3a82007-09-23 14:52:20 +000051 X86ScalarSSEf64 = Subtarget->hasSSE2();
52 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng25ab6902006-09-08 06:48:29 +000053 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000054
Anton Korobeynikov2365f512007-07-14 14:06:15 +000055 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000056 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +000057
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000058 // Set up the TargetLowering object.
59
60 // X86 is weird, it always uses i8 for shift amounts and setcc results.
61 setShiftAmountType(MVT::i8);
Duncan Sands03228082008-11-23 15:47:28 +000062 setBooleanContents(ZeroOrOneBooleanContent);
Evan Cheng0b2afbd2006-01-25 09:15:17 +000063 setSchedulingPreference(SchedulingForRegPressure);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000064 setShiftAmountFlavor(Mask); // shl X, 32 == shl X, 0
Evan Cheng25ab6902006-09-08 06:48:29 +000065 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +000066
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000067 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +000068 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000069 setUseUnderscoreSetJmp(false);
70 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +000071 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000072 // MS runtime is weird: it exports _setjmp, but longjmp!
73 setUseUnderscoreSetJmp(true);
74 setUseUnderscoreLongJmp(false);
75 } else {
76 setUseUnderscoreSetJmp(true);
77 setUseUnderscoreLongJmp(true);
78 }
Scott Michelfdc40a02009-02-17 22:15:04 +000079
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000080 // Set up the register classes.
Evan Cheng069287d2006-05-16 07:21:53 +000081 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
82 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
83 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +000084 if (Subtarget->is64Bit())
85 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000086
Evan Cheng03294662008-10-14 21:26:46 +000087 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +000088
Scott Michelfdc40a02009-02-17 22:15:04 +000089 // We don't accept any truncstore of integer registers.
Chris Lattnerddf89562008-01-17 19:59:44 +000090 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
91 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
92 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
93 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
94 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
Evan Cheng7f042682008-10-15 02:05:31 +000095 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
96
97 // SETOEQ and SETUNE require checking two conditions.
98 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
99 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
100 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
101 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
102 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
103 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000104
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000105 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
106 // operation.
107 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
108 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
109 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000110
Evan Cheng25ab6902006-09-08 06:48:29 +0000111 if (Subtarget->is64Bit()) {
Evan Cheng6892f282006-01-17 02:32:49 +0000112 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000113 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Eli Friedman948e95a2009-05-23 09:59:16 +0000114 } else if (!UseSoftFloat) {
115 if (X86ScalarSSEf64) {
Dale Johannesen1c15bf52008-10-21 20:50:01 +0000116 // We have an impenetrably clever algorithm for ui64->double only.
117 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000118 }
Eli Friedman948e95a2009-05-23 09:59:16 +0000119 // We have an algorithm for SSE2, and we turn this into a 64-bit
120 // FILD for other targets.
121 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000122 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000123
124 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
125 // this operation.
126 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
127 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000128
Devang Patel6a784892009-06-05 18:48:29 +0000129 if (!UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000130 // SSE has no i16 to fp conversion, only i32
131 if (X86ScalarSSEf32) {
132 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
133 // f32 and f64 cases are Legal, f80 case is not
134 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
135 } else {
136 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
137 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
138 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000139 } else {
Bill Wendling105be5a2009-03-13 08:41:47 +0000140 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
141 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000142 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000143
Dale Johannesen73328d12007-09-19 23:55:34 +0000144 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
145 // are Legal, f80 is custom lowered.
146 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
147 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000148
Evan Cheng02568ff2006-01-30 22:13:22 +0000149 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
150 // this operation.
151 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
152 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
153
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000154 if (X86ScalarSSEf32) {
Evan Cheng02568ff2006-01-30 22:13:22 +0000155 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000156 // f32 and f64 cases are Legal, f80 case is not
157 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000158 } else {
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000159 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000160 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000161 }
162
163 // Handle FP_TO_UINT by promoting the destination to a larger signed
164 // conversion.
165 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
166 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
167 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
168
Evan Cheng25ab6902006-09-08 06:48:29 +0000169 if (Subtarget->is64Bit()) {
170 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000171 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Eli Friedman948e95a2009-05-23 09:59:16 +0000172 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000173 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000174 // Expand FP_TO_UINT into a select.
175 // FIXME: We would like to use a Custom expander here eventually to do
176 // the optimal thing for SSE vs. the default expansion in the legalizer.
177 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
178 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000179 // With SSE3 we can use fisttpll to convert to a signed i64; without
180 // SSE, we're stuck with a fistpll.
181 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000182 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000183
Chris Lattner399610a2006-12-05 18:22:22 +0000184 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000185 if (!X86ScalarSSEf64) {
Chris Lattnerf3597a12006-12-05 18:45:06 +0000186 setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand);
187 setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand);
188 }
Chris Lattner21f66852005-12-23 05:15:23 +0000189
Dan Gohmanb00ee212008-02-18 19:34:53 +0000190 // Scalar integer divide and remainder are lowered to use operations that
191 // produce two results, to match the available instructions. This exposes
192 // the two-result form to trivial CSE, which is able to combine x/y and x%y
193 // into a single instruction.
194 //
195 // Scalar integer multiply-high is also lowered to use two-result
196 // operations, to match the available instructions. However, plain multiply
197 // (low) operations are left as Legal, as there are single-result
198 // instructions for this in x86. Using the two-result multiply instructions
199 // when both high and low results are needed must be arranged by dagcombine.
Dan Gohman525178c2007-10-08 18:33:35 +0000200 setOperationAction(ISD::MULHS , MVT::i8 , Expand);
201 setOperationAction(ISD::MULHU , MVT::i8 , Expand);
202 setOperationAction(ISD::SDIV , MVT::i8 , Expand);
203 setOperationAction(ISD::UDIV , MVT::i8 , Expand);
204 setOperationAction(ISD::SREM , MVT::i8 , Expand);
205 setOperationAction(ISD::UREM , MVT::i8 , Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000206 setOperationAction(ISD::MULHS , MVT::i16 , Expand);
207 setOperationAction(ISD::MULHU , MVT::i16 , Expand);
208 setOperationAction(ISD::SDIV , MVT::i16 , Expand);
209 setOperationAction(ISD::UDIV , MVT::i16 , Expand);
210 setOperationAction(ISD::SREM , MVT::i16 , Expand);
211 setOperationAction(ISD::UREM , MVT::i16 , Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000212 setOperationAction(ISD::MULHS , MVT::i32 , Expand);
213 setOperationAction(ISD::MULHU , MVT::i32 , Expand);
214 setOperationAction(ISD::SDIV , MVT::i32 , Expand);
215 setOperationAction(ISD::UDIV , MVT::i32 , Expand);
216 setOperationAction(ISD::SREM , MVT::i32 , Expand);
217 setOperationAction(ISD::UREM , MVT::i32 , Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000218 setOperationAction(ISD::MULHS , MVT::i64 , Expand);
219 setOperationAction(ISD::MULHU , MVT::i64 , Expand);
220 setOperationAction(ISD::SDIV , MVT::i64 , Expand);
221 setOperationAction(ISD::UDIV , MVT::i64 , Expand);
222 setOperationAction(ISD::SREM , MVT::i64 , Expand);
223 setOperationAction(ISD::UREM , MVT::i64 , Expand);
Dan Gohmana37c9f72007-09-25 18:23:27 +0000224
Evan Chengc35497f2006-10-30 08:02:39 +0000225 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000226 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
Nate Begeman750ac1b2006-02-01 07:19:44 +0000227 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
228 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000229 if (Subtarget->is64Bit())
Christopher Lambc59e5212007-08-10 21:48:46 +0000230 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
231 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
232 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000233 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
234 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
Chris Lattnerd1108222008-03-07 06:36:32 +0000235 setOperationAction(ISD::FREM , MVT::f32 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000236 setOperationAction(ISD::FREM , MVT::f64 , Expand);
Chris Lattnerd1108222008-03-07 06:36:32 +0000237 setOperationAction(ISD::FREM , MVT::f80 , Expand);
Dan Gohman1a024862008-01-31 00:41:03 +0000238 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000239
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000240 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000241 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
242 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000243 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000244 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
245 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000246 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000247 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
248 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000249 if (Subtarget->is64Bit()) {
250 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000251 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
252 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000253 }
254
Andrew Lenharthb873ff32005-11-20 21:41:10 +0000255 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
Nate Begemand88fc032006-01-14 03:14:10 +0000256 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000257
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000258 // These should be promoted to a larger select which is supported.
259 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
260 setOperationAction(ISD::SELECT , MVT::i8 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000261 // X86 wants to expand cmov itself.
Evan Cheng5298bcc2006-02-17 07:01:52 +0000262 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
263 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
264 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
265 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000266 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000267 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
268 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
269 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
270 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
271 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000272 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000273 if (Subtarget->is64Bit()) {
274 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
275 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
276 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000277 // X86 ret instruction may pop stack.
Evan Cheng5298bcc2006-02-17 07:01:52 +0000278 setOperationAction(ISD::RET , MVT::Other, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000279 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000280
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000281 // Darwin ABI issue.
Evan Cheng7ccced62006-02-18 00:15:05 +0000282 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
Nate Begeman37efe672006-04-22 18:53:45 +0000283 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000284 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000285 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000286 if (Subtarget->is64Bit())
287 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Bill Wendling056292f2008-09-16 21:48:12 +0000288 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000289 if (Subtarget->is64Bit()) {
290 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
291 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
292 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
Bill Wendling056292f2008-09-16 21:48:12 +0000293 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000294 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000295 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Evan Cheng5298bcc2006-02-17 07:01:52 +0000296 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
297 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
298 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000299 if (Subtarget->is64Bit()) {
300 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
301 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
302 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
303 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000304
Evan Chengd2cde682008-03-10 19:38:10 +0000305 if (Subtarget->hasSSE1())
306 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000307
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000308 if (!Subtarget->hasSSE2())
309 setOperationAction(ISD::MEMBARRIER , MVT::Other, Expand);
310
Mon P Wang63307c32008-05-05 19:05:59 +0000311 // Expand certain atomics
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000312 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
313 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
314 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
315 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendling5bf1b4e2008-08-20 00:28:16 +0000316
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000317 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
318 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
319 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
320 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000321
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000322 if (!Subtarget->is64Bit()) {
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000323 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
324 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
325 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
326 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
327 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
328 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
329 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000330 }
331
Dan Gohman7f460202008-06-30 20:59:49 +0000332 // Use the default ISD::DBG_STOPPOINT, ISD::DECLARE expansion.
333 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
Evan Cheng3c992d22006-03-07 02:02:57 +0000334 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000335 if (!Subtarget->isTargetDarwin() &&
336 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000337 !Subtarget->isTargetCygMing()) {
338 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
339 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
340 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000341
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000342 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
343 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
344 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
345 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
346 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000347 setExceptionPointerRegister(X86::RAX);
348 setExceptionSelectorRegister(X86::RDX);
349 } else {
350 setExceptionPointerRegister(X86::EAX);
351 setExceptionSelectorRegister(X86::EDX);
352 }
Anton Korobeynikov38252622007-09-03 00:36:06 +0000353 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000354 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
355
Duncan Sandsf7331b32007-09-11 14:10:23 +0000356 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000357
Chris Lattnerda68d302008-01-15 21:58:22 +0000358 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000359
Nate Begemanacc398c2006-01-25 18:21:52 +0000360 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
361 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Nate Begemanacc398c2006-01-25 18:21:52 +0000362 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000363 if (Subtarget->is64Bit()) {
364 setOperationAction(ISD::VAARG , MVT::Other, Custom);
Evan Chengae642192007-03-02 23:16:35 +0000365 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000366 } else {
367 setOperationAction(ISD::VAARG , MVT::Other, Expand);
Evan Chengae642192007-03-02 23:16:35 +0000368 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000369 }
Evan Chengae642192007-03-02 23:16:35 +0000370
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000371 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
Chris Lattnere1125522006-01-15 09:00:21 +0000372 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000373 if (Subtarget->is64Bit())
374 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000375 if (Subtarget->isTargetCygMing())
376 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
377 else
378 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000379
Evan Chengc7ce29b2009-02-13 22:36:38 +0000380 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000381 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000382 // Set up the FP register classes.
Evan Cheng5ee4ccc2006-01-12 08:27:59 +0000383 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
384 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000385
Evan Cheng223547a2006-01-31 22:28:30 +0000386 // Use ANDPD to simulate FABS.
387 setOperationAction(ISD::FABS , MVT::f64, Custom);
388 setOperationAction(ISD::FABS , MVT::f32, Custom);
389
390 // Use XORP to simulate FNEG.
391 setOperationAction(ISD::FNEG , MVT::f64, Custom);
392 setOperationAction(ISD::FNEG , MVT::f32, Custom);
393
Evan Cheng68c47cb2007-01-05 07:55:56 +0000394 // Use ANDPD and ORPD to simulate FCOPYSIGN.
395 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
396 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
397
Evan Chengd25e9e82006-02-02 00:28:23 +0000398 // We don't support sin/cos/fmod
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000399 setOperationAction(ISD::FSIN , MVT::f64, Expand);
400 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000401 setOperationAction(ISD::FSIN , MVT::f32, Expand);
402 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000403
Chris Lattnera54aa942006-01-29 06:26:08 +0000404 // Expand FP immediates into loads from the stack, except for the special
405 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000406 addLegalFPImmediate(APFloat(+0.0)); // xorpd
407 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000408 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000409 // Use SSE for f32, x87 for f64.
410 // Set up the FP register classes.
411 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
412 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
413
414 // Use ANDPS to simulate FABS.
415 setOperationAction(ISD::FABS , MVT::f32, Custom);
416
417 // Use XORP to simulate FNEG.
418 setOperationAction(ISD::FNEG , MVT::f32, Custom);
419
420 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
421
422 // Use ANDPS and ORPS to simulate FCOPYSIGN.
423 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
424 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
425
426 // We don't support sin/cos/fmod
427 setOperationAction(ISD::FSIN , MVT::f32, Expand);
428 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000429
Nate Begemane1795842008-02-14 08:57:00 +0000430 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000431 addLegalFPImmediate(APFloat(+0.0f)); // xorps
432 addLegalFPImmediate(APFloat(+0.0)); // FLD0
433 addLegalFPImmediate(APFloat(+1.0)); // FLD1
434 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
435 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
436
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000437 if (!UnsafeFPMath) {
438 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
439 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
440 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000441 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000442 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000443 // Set up the FP register classes.
Dale Johannesen849f2142007-07-03 00:53:03 +0000444 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
445 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000446
Evan Cheng68c47cb2007-01-05 07:55:56 +0000447 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesen849f2142007-07-03 00:53:03 +0000448 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000449 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
450 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000451
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000452 if (!UnsafeFPMath) {
453 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
454 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
455 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000456 addLegalFPImmediate(APFloat(+0.0)); // FLD0
457 addLegalFPImmediate(APFloat(+1.0)); // FLD1
458 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
459 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000460 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
461 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
462 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
463 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000464 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000465
Dale Johannesen59a58732007-08-05 18:49:15 +0000466 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000467 if (!UseSoftFloat) {
Evan Chengc7ce29b2009-02-13 22:36:38 +0000468 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
469 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
470 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
471 {
472 bool ignored;
473 APFloat TmpFlt(+0.0);
474 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
475 &ignored);
476 addLegalFPImmediate(TmpFlt); // FLD0
477 TmpFlt.changeSign();
478 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
479 APFloat TmpFlt2(+1.0);
480 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
481 &ignored);
482 addLegalFPImmediate(TmpFlt2); // FLD1
483 TmpFlt2.changeSign();
484 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
485 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000486
Evan Chengc7ce29b2009-02-13 22:36:38 +0000487 if (!UnsafeFPMath) {
488 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
489 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
490 }
Dale Johannesen2f429012007-09-26 21:10:55 +0000491 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000492
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000493 // Always use a library call for pow.
494 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
495 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
496 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
497
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000498 setOperationAction(ISD::FLOG, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000499 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000500 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000501 setOperationAction(ISD::FEXP, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000502 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
503
Mon P Wangf007a8b2008-11-06 05:31:54 +0000504 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000505 // (for widening) or expand (for scalarization). Then we will selectively
506 // turn on ones that can be effectively codegen'd.
Dan Gohmanfa0f77d2007-05-18 18:44:07 +0000507 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
508 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000509 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
510 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
511 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
512 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
513 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
514 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
515 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
516 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
517 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
518 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
519 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
520 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
521 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
Gabor Greif327ef032008-08-28 23:19:51 +0000522 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
523 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
Eli Friedman108b5192009-05-23 22:44:52 +0000524 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
Gabor Greif327ef032008-08-28 23:19:51 +0000525 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000526 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
527 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
528 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
529 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
530 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
531 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
532 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
533 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
534 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
535 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
536 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
537 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
538 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
539 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
540 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
541 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
542 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
543 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
544 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
545 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
546 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
547 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
Dale Johannesenfb0e1322008-09-10 17:31:40 +0000548 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
549 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
550 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
551 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
552 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
Eli Friedman23ef1052009-06-06 03:57:58 +0000553 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
554 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
555 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
556 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000557 }
558
Evan Chengc7ce29b2009-02-13 22:36:38 +0000559 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
560 // with -msoft-float, disable use of MMX as well.
Evan Cheng92722532009-03-26 23:06:32 +0000561 if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000562 addRegisterClass(MVT::v8i8, X86::VR64RegisterClass);
563 addRegisterClass(MVT::v4i16, X86::VR64RegisterClass);
564 addRegisterClass(MVT::v2i32, X86::VR64RegisterClass);
Dale Johannesena68f9012008-06-24 22:01:44 +0000565 addRegisterClass(MVT::v2f32, X86::VR64RegisterClass);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000566 addRegisterClass(MVT::v1i64, X86::VR64RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000567
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000568 setOperationAction(ISD::ADD, MVT::v8i8, Legal);
569 setOperationAction(ISD::ADD, MVT::v4i16, Legal);
570 setOperationAction(ISD::ADD, MVT::v2i32, Legal);
Chris Lattner6c284d72007-04-12 04:14:49 +0000571 setOperationAction(ISD::ADD, MVT::v1i64, Legal);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000572
Bill Wendlingc1fb0472007-03-10 09:57:05 +0000573 setOperationAction(ISD::SUB, MVT::v8i8, Legal);
574 setOperationAction(ISD::SUB, MVT::v4i16, Legal);
575 setOperationAction(ISD::SUB, MVT::v2i32, Legal);
Dale Johannesen8d26e592007-10-30 01:18:38 +0000576 setOperationAction(ISD::SUB, MVT::v1i64, Legal);
Bill Wendlingc1fb0472007-03-10 09:57:05 +0000577
Bill Wendling74027e92007-03-15 21:24:36 +0000578 setOperationAction(ISD::MULHS, MVT::v4i16, Legal);
579 setOperationAction(ISD::MUL, MVT::v4i16, Legal);
580
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000581 setOperationAction(ISD::AND, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000582 AddPromotedToType (ISD::AND, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000583 setOperationAction(ISD::AND, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000584 AddPromotedToType (ISD::AND, MVT::v4i16, MVT::v1i64);
585 setOperationAction(ISD::AND, MVT::v2i32, Promote);
586 AddPromotedToType (ISD::AND, MVT::v2i32, MVT::v1i64);
587 setOperationAction(ISD::AND, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000588
589 setOperationAction(ISD::OR, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000590 AddPromotedToType (ISD::OR, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000591 setOperationAction(ISD::OR, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000592 AddPromotedToType (ISD::OR, MVT::v4i16, MVT::v1i64);
593 setOperationAction(ISD::OR, MVT::v2i32, Promote);
594 AddPromotedToType (ISD::OR, MVT::v2i32, MVT::v1i64);
595 setOperationAction(ISD::OR, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000596
597 setOperationAction(ISD::XOR, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000598 AddPromotedToType (ISD::XOR, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000599 setOperationAction(ISD::XOR, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000600 AddPromotedToType (ISD::XOR, MVT::v4i16, MVT::v1i64);
601 setOperationAction(ISD::XOR, MVT::v2i32, Promote);
602 AddPromotedToType (ISD::XOR, MVT::v2i32, MVT::v1i64);
603 setOperationAction(ISD::XOR, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000604
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000605 setOperationAction(ISD::LOAD, MVT::v8i8, Promote);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000606 AddPromotedToType (ISD::LOAD, MVT::v8i8, MVT::v1i64);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000607 setOperationAction(ISD::LOAD, MVT::v4i16, Promote);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000608 AddPromotedToType (ISD::LOAD, MVT::v4i16, MVT::v1i64);
609 setOperationAction(ISD::LOAD, MVT::v2i32, Promote);
610 AddPromotedToType (ISD::LOAD, MVT::v2i32, MVT::v1i64);
Dale Johannesena68f9012008-06-24 22:01:44 +0000611 setOperationAction(ISD::LOAD, MVT::v2f32, Promote);
612 AddPromotedToType (ISD::LOAD, MVT::v2f32, MVT::v1i64);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000613 setOperationAction(ISD::LOAD, MVT::v1i64, Legal);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000614
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000615 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i8, Custom);
616 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i16, Custom);
617 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i32, Custom);
Dale Johannesena68f9012008-06-24 22:01:44 +0000618 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f32, Custom);
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000619 setOperationAction(ISD::BUILD_VECTOR, MVT::v1i64, Custom);
Bill Wendlinga348c562007-03-22 18:42:45 +0000620
621 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
622 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
623 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i32, Custom);
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000624 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v1i64, Custom);
Bill Wendling826f36f2007-03-28 00:57:11 +0000625
Evan Cheng52672b82008-07-22 18:39:19 +0000626 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f32, Custom);
Bill Wendling826f36f2007-03-28 00:57:11 +0000627 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Custom);
628 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Custom);
Bill Wendling2f9bb1a2007-04-24 21:16:55 +0000629 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Custom);
Bill Wendling3180e202008-07-20 02:32:23 +0000630
631 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i16, Custom);
Mon P Wang9e5ecb82008-12-12 01:25:51 +0000632
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000633 setTruncStoreAction(MVT::v8i16, MVT::v8i8, Expand);
Mon P Wang9e5ecb82008-12-12 01:25:51 +0000634 setOperationAction(ISD::TRUNCATE, MVT::v8i8, Expand);
635 setOperationAction(ISD::SELECT, MVT::v8i8, Promote);
636 setOperationAction(ISD::SELECT, MVT::v4i16, Promote);
637 setOperationAction(ISD::SELECT, MVT::v2i32, Promote);
638 setOperationAction(ISD::SELECT, MVT::v1i64, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000639 }
640
Evan Cheng92722532009-03-26 23:06:32 +0000641 if (!UseSoftFloat && Subtarget->hasSSE1()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000642 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
643
Evan Cheng6bdb3f62006-10-27 18:49:08 +0000644 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
645 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
646 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
647 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
Dan Gohman20382522007-07-10 00:05:58 +0000648 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
649 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000650 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
651 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
652 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
Evan Cheng11e15b32006-04-03 20:53:28 +0000653 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000654 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Nate Begeman30a0de92008-07-17 16:51:19 +0000655 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000656 }
657
Evan Cheng92722532009-03-26 23:06:32 +0000658 if (!UseSoftFloat && Subtarget->hasSSE2()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000659 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000660
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000661 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
662 // registers cannot be used even for integer operations.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000663 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
664 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
665 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
666 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
667
Evan Chengf7c378e2006-04-10 07:23:14 +0000668 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
669 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
670 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
Evan Cheng37e88562007-03-12 22:58:52 +0000671 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Mon P Wangaf9b9522008-12-18 21:42:19 +0000672 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000673 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
674 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
675 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
Evan Cheng37e88562007-03-12 22:58:52 +0000676 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
Evan Chengf9989842006-04-13 05:10:25 +0000677 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
Evan Cheng6bdb3f62006-10-27 18:49:08 +0000678 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
679 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
680 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
681 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
Dan Gohman20382522007-07-10 00:05:58 +0000682 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
683 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000684
Nate Begeman30a0de92008-07-17 16:51:19 +0000685 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
686 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
687 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
688 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000689
Evan Chengf7c378e2006-04-10 07:23:14 +0000690 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
691 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
Evan Chengb067a1e2006-03-31 19:22:53 +0000692 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
Evan Cheng5edb8d22006-04-17 22:04:06 +0000693 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Evan Cheng5edb8d22006-04-17 22:04:06 +0000694 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000695
Evan Cheng2c3ae372006-04-12 21:21:57 +0000696 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000697 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
698 MVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000699 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000700 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000701 continue;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000702 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
703 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
704 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000705 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000706
Evan Cheng2c3ae372006-04-12 21:21:57 +0000707 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
708 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
709 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
710 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000711 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000712 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000713
Nate Begemancdd1eec2008-02-12 22:51:28 +0000714 if (Subtarget->is64Bit()) {
715 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
Dale Johannesen25f1d082007-10-31 00:32:36 +0000716 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000717 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000718
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000719 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Evan Cheng2c3ae372006-04-12 21:21:57 +0000720 for (unsigned VT = (unsigned)MVT::v16i8; VT != (unsigned)MVT::v2i64; VT++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000721 setOperationAction(ISD::AND, (MVT::SimpleValueType)VT, Promote);
722 AddPromotedToType (ISD::AND, (MVT::SimpleValueType)VT, MVT::v2i64);
723 setOperationAction(ISD::OR, (MVT::SimpleValueType)VT, Promote);
724 AddPromotedToType (ISD::OR, (MVT::SimpleValueType)VT, MVT::v2i64);
725 setOperationAction(ISD::XOR, (MVT::SimpleValueType)VT, Promote);
726 AddPromotedToType (ISD::XOR, (MVT::SimpleValueType)VT, MVT::v2i64);
727 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Promote);
728 AddPromotedToType (ISD::LOAD, (MVT::SimpleValueType)VT, MVT::v2i64);
729 setOperationAction(ISD::SELECT, (MVT::SimpleValueType)VT, Promote);
730 AddPromotedToType (ISD::SELECT, (MVT::SimpleValueType)VT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000731 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000732
Chris Lattnerddf89562008-01-17 19:59:44 +0000733 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000734
Evan Cheng2c3ae372006-04-12 21:21:57 +0000735 // Custom lower v2i64 and v2f64 selects.
736 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
Evan Cheng91b740d2006-04-12 17:12:36 +0000737 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
Evan Chengf7c378e2006-04-10 07:23:14 +0000738 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000739 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000740
Eli Friedman23ef1052009-06-06 03:57:58 +0000741 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
742 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
743 if (!DisableMMX && Subtarget->hasMMX()) {
744 setOperationAction(ISD::FP_TO_SINT, MVT::v2i32, Custom);
745 setOperationAction(ISD::SINT_TO_FP, MVT::v2i32, Custom);
746 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000747 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000748
Nate Begeman14d12ca2008-02-11 04:19:36 +0000749 if (Subtarget->hasSSE41()) {
750 // FIXME: Do we need to handle scalar-to-vector here?
751 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
752
753 // i8 and i16 vectors are custom , because the source register and source
754 // source memory operand types are not the same width. f32 vectors are
755 // custom since the immediate controlling the insert encodes additional
756 // information.
757 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
758 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangf0fcdd82009-01-15 21:10:20 +0000759 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000760 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
761
762 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
763 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangf0fcdd82009-01-15 21:10:20 +0000764 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
Evan Cheng62a3f152008-03-24 21:52:23 +0000765 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000766
767 if (Subtarget->is64Bit()) {
Nate Begemancdd1eec2008-02-12 22:51:28 +0000768 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
769 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000770 }
771 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000772
Nate Begeman30a0de92008-07-17 16:51:19 +0000773 if (Subtarget->hasSSE42()) {
774 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
775 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000776
Evan Cheng6be2c582006-04-05 23:38:46 +0000777 // We want to custom lower some of our intrinsics.
778 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
779
Bill Wendling74c37652008-12-09 22:08:41 +0000780 // Add/Sub/Mul with overflow operations are custom lowered.
Bill Wendling41ea7e72008-11-24 19:21:46 +0000781 setOperationAction(ISD::SADDO, MVT::i32, Custom);
782 setOperationAction(ISD::SADDO, MVT::i64, Custom);
783 setOperationAction(ISD::UADDO, MVT::i32, Custom);
784 setOperationAction(ISD::UADDO, MVT::i64, Custom);
Bill Wendling74c37652008-12-09 22:08:41 +0000785 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
786 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
787 setOperationAction(ISD::USUBO, MVT::i32, Custom);
788 setOperationAction(ISD::USUBO, MVT::i64, Custom);
789 setOperationAction(ISD::SMULO, MVT::i32, Custom);
790 setOperationAction(ISD::SMULO, MVT::i64, Custom);
791 setOperationAction(ISD::UMULO, MVT::i32, Custom);
792 setOperationAction(ISD::UMULO, MVT::i64, Custom);
Bill Wendling41ea7e72008-11-24 19:21:46 +0000793
Evan Chengd54f2d52009-03-31 19:38:51 +0000794 if (!Subtarget->is64Bit()) {
795 // These libcalls are not available in 32-bit.
796 setLibcallName(RTLIB::SHL_I128, 0);
797 setLibcallName(RTLIB::SRL_I128, 0);
798 setLibcallName(RTLIB::SRA_I128, 0);
799 }
800
Evan Cheng206ee9d2006-07-07 08:33:52 +0000801 // We have target-specific dag combine patterns for the following nodes:
802 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Evan Chengd880b972008-05-09 21:53:03 +0000803 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +0000804 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +0000805 setTargetDAGCombine(ISD::SHL);
806 setTargetDAGCombine(ISD::SRA);
807 setTargetDAGCombine(ISD::SRL);
Chris Lattner149a4e52008-02-22 02:09:43 +0000808 setTargetDAGCombine(ISD::STORE);
Evan Cheng0b0cd912009-03-28 05:57:29 +0000809 if (Subtarget->is64Bit())
810 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +0000811
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000812 computeRegisterProperties();
813
Evan Cheng87ed7162006-02-14 08:25:08 +0000814 // FIXME: These should be based on subtarget info. Plus, the values should
815 // be smaller when we are in optimizing for size mode.
Dan Gohman87060f52008-06-30 21:00:56 +0000816 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
817 maxStoresPerMemcpy = 16; // For @llvm.memcpy -> sequence of stores
818 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000819 allowUnalignedMemoryAccesses = true; // x86 supports it!
Evan Chengfb8075d2008-02-28 00:43:03 +0000820 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +0000821 benefitFromCodePlacementOpt = true;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000822}
823
Scott Michel5b8f82e2008-03-10 15:42:14 +0000824
Duncan Sands5480c042009-01-01 15:52:00 +0000825MVT X86TargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel5b8f82e2008-03-10 15:42:14 +0000826 return MVT::i8;
827}
828
829
Evan Cheng29286502008-01-23 23:17:41 +0000830/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
831/// the desired ByVal argument alignment.
832static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
833 if (MaxAlign == 16)
834 return;
835 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
836 if (VTy->getBitWidth() == 128)
837 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +0000838 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
839 unsigned EltAlign = 0;
840 getMaxByValAlign(ATy->getElementType(), EltAlign);
841 if (EltAlign > MaxAlign)
842 MaxAlign = EltAlign;
843 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
844 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
845 unsigned EltAlign = 0;
846 getMaxByValAlign(STy->getElementType(i), EltAlign);
847 if (EltAlign > MaxAlign)
848 MaxAlign = EltAlign;
849 if (MaxAlign == 16)
850 break;
851 }
852 }
853 return;
854}
855
856/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
857/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +0000858/// that contain SSE vectors are placed at 16-byte boundaries while the rest
859/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +0000860unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +0000861 if (Subtarget->is64Bit()) {
862 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000863 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +0000864 if (TyAlign > 8)
865 return TyAlign;
866 return 8;
867 }
868
Evan Cheng29286502008-01-23 23:17:41 +0000869 unsigned Align = 4;
Dale Johannesen0c191872008-02-08 19:48:20 +0000870 if (Subtarget->hasSSE1())
871 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +0000872 return Align;
873}
Chris Lattner2b02a442007-02-25 08:29:00 +0000874
Evan Chengf0df0312008-05-15 08:39:06 +0000875/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng0ef8de32008-05-15 22:13:02 +0000876/// and store operations as a result of memset, memcpy, and memmove
877/// lowering. It returns MVT::iAny if SelectionDAG should be responsible for
Evan Chengf0df0312008-05-15 08:39:06 +0000878/// determining it.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000879MVT
Evan Chengf0df0312008-05-15 08:39:06 +0000880X86TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned Align,
Devang Patel578efa92009-06-05 21:57:13 +0000881 bool isSrcConst, bool isSrcStr,
882 SelectionDAG &DAG) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +0000883 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
884 // linux. This is because the stack realignment code can't handle certain
885 // cases like PR2962. This should be removed when PR2962 is fixed.
Devang Patel578efa92009-06-05 21:57:13 +0000886 const Function *F = DAG.getMachineFunction().getFunction();
887 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
888 if (!NoImplicitFloatOps && Subtarget->getStackAlignment() >= 16) {
Chris Lattner4002a1b2008-10-28 05:49:35 +0000889 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE2() && Size >= 16)
890 return MVT::v4i32;
891 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE1() && Size >= 16)
892 return MVT::v4f32;
893 }
Evan Chengf0df0312008-05-15 08:39:06 +0000894 if (Subtarget->is64Bit() && Size >= 8)
895 return MVT::i64;
896 return MVT::i32;
897}
898
Evan Chengcc415862007-11-09 01:32:10 +0000899/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
900/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +0000901SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Evan Chengcc415862007-11-09 01:32:10 +0000902 SelectionDAG &DAG) const {
903 if (usesGlobalOffsetTable())
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000904 return DAG.getGLOBAL_OFFSET_TABLE(getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +0000905 if (!Subtarget->isPICStyleRIPRel())
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000906 // This doesn't have DebugLoc associated with it, but is not really the
907 // same as a Register.
908 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc::getUnknownLoc(),
909 getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +0000910 return Table;
911}
912
Chris Lattner2b02a442007-02-25 08:29:00 +0000913//===----------------------------------------------------------------------===//
914// Return Value Calling Convention Implementation
915//===----------------------------------------------------------------------===//
916
Chris Lattner59ed56b2007-02-28 04:55:35 +0000917#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000918
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000919/// LowerRET - Lower an ISD::RET node.
Dan Gohman475871a2008-07-27 21:46:04 +0000920SDValue X86TargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000921 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000922 assert((Op.getNumOperands() & 1) == 1 && "ISD::RET should have odd # args");
Scott Michelfdc40a02009-02-17 22:15:04 +0000923
Chris Lattner9774c912007-02-27 05:28:59 +0000924 SmallVector<CCValAssign, 16> RVLocs;
925 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
Chris Lattner52387be2007-06-19 00:13:10 +0000926 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
927 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Gabor Greifba36cb52008-08-28 21:40:38 +0000928 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +0000929
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000930 // If this is the first return lowered for this function, add the regs to the
931 // liveout set for the function.
Chris Lattner84bc5422007-12-31 04:13:23 +0000932 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Chris Lattner9774c912007-02-27 05:28:59 +0000933 for (unsigned i = 0; i != RVLocs.size(); ++i)
934 if (RVLocs[i].isRegLoc())
Chris Lattner84bc5422007-12-31 04:13:23 +0000935 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000936 }
Dan Gohman475871a2008-07-27 21:46:04 +0000937 SDValue Chain = Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000938
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000939 // Handle tail call return.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000940 Chain = GetPossiblePreceedingTailCall(Chain, X86ISD::TAILCALL);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000941 if (Chain.getOpcode() == X86ISD::TAILCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +0000942 SDValue TailCall = Chain;
943 SDValue TargetAddress = TailCall.getOperand(1);
944 SDValue StackAdjustment = TailCall.getOperand(2);
Chris Lattnerb4a6eaa2008-01-16 05:52:18 +0000945 assert(((TargetAddress.getOpcode() == ISD::Register &&
Arnold Schwaighofer290ae032008-09-22 14:50:07 +0000946 (cast<RegisterSDNode>(TargetAddress)->getReg() == X86::EAX ||
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000947 cast<RegisterSDNode>(TargetAddress)->getReg() == X86::R9)) ||
Bill Wendling056292f2008-09-16 21:48:12 +0000948 TargetAddress.getOpcode() == ISD::TargetExternalSymbol ||
Scott Michelfdc40a02009-02-17 22:15:04 +0000949 TargetAddress.getOpcode() == ISD::TargetGlobalAddress) &&
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000950 "Expecting an global address, external symbol, or register");
Chris Lattnerb4a6eaa2008-01-16 05:52:18 +0000951 assert(StackAdjustment.getOpcode() == ISD::Constant &&
952 "Expecting a const value");
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000953
Dan Gohman475871a2008-07-27 21:46:04 +0000954 SmallVector<SDValue,8> Operands;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000955 Operands.push_back(Chain.getOperand(0));
956 Operands.push_back(TargetAddress);
957 Operands.push_back(StackAdjustment);
958 // Copy registers used by the call. Last operand is a flag so it is not
959 // copied.
Arnold Schwaighofer448175f2007-10-16 09:05:00 +0000960 for (unsigned i=3; i < TailCall.getNumOperands()-1; i++) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000961 Operands.push_back(Chain.getOperand(i));
962 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000963 return DAG.getNode(X86ISD::TC_RETURN, dl, MVT::Other, &Operands[0],
Arnold Schwaighofer448175f2007-10-16 09:05:00 +0000964 Operands.size());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000965 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000966
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000967 // Regular return.
Dan Gohman475871a2008-07-27 21:46:04 +0000968 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000969
Dan Gohman475871a2008-07-27 21:46:04 +0000970 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +0000971 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
972 // Operand #1 = Bytes To Pop
973 RetOps.push_back(DAG.getConstant(getBytesToPopOnReturn(), MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +0000974
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000975 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +0000976 for (unsigned i = 0; i != RVLocs.size(); ++i) {
977 CCValAssign &VA = RVLocs[i];
978 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohman475871a2008-07-27 21:46:04 +0000979 SDValue ValToCopy = Op.getOperand(i*2+1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000980
Chris Lattner447ff682008-03-11 03:23:40 +0000981 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
982 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +0000983 if (VA.getLocReg() == X86::ST0 ||
984 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +0000985 // If this is a copy from an xmm register to ST(0), use an FPExtend to
986 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +0000987 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Dale Johannesenace16102009-02-03 19:33:06 +0000988 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +0000989 RetOps.push_back(ValToCopy);
990 // Don't emit a copytoreg.
991 continue;
992 }
Dale Johannesena68f9012008-06-24 22:01:44 +0000993
Evan Cheng242b38b2009-02-23 09:03:22 +0000994 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
995 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +0000996 if (Subtarget->is64Bit()) {
997 MVT ValVT = ValToCopy.getValueType();
Evan Cheng242b38b2009-02-23 09:03:22 +0000998 if (ValVT.isVector() && ValVT.getSizeInBits() == 64) {
Evan Cheng6140a8b2009-02-22 08:05:12 +0000999 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy);
Evan Cheng242b38b2009-02-23 09:03:22 +00001000 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1)
1001 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, ValToCopy);
1002 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001003 }
1004
Dale Johannesendd64c412009-02-04 00:33:20 +00001005 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001006 Flag = Chain.getValue(1);
1007 }
Dan Gohman61a92132008-04-21 23:59:07 +00001008
1009 // The x86-64 ABI for returning structs by value requires that we copy
1010 // the sret argument into %rax for the return. We saved the argument into
1011 // a virtual register in the entry block, so now we copy the value out
1012 // and into %rax.
1013 if (Subtarget->is64Bit() &&
1014 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1015 MachineFunction &MF = DAG.getMachineFunction();
1016 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1017 unsigned Reg = FuncInfo->getSRetReturnReg();
1018 if (!Reg) {
1019 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1020 FuncInfo->setSRetReturnReg(Reg);
1021 }
Dale Johannesendd64c412009-02-04 00:33:20 +00001022 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001023
Dale Johannesendd64c412009-02-04 00:33:20 +00001024 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001025 Flag = Chain.getValue(1);
1026 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001027
Chris Lattner447ff682008-03-11 03:23:40 +00001028 RetOps[0] = Chain; // Update chain.
1029
1030 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001031 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001032 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001033
1034 return DAG.getNode(X86ISD::RET_FLAG, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00001035 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001036}
1037
1038
Chris Lattner3085e152007-02-25 08:59:22 +00001039/// LowerCallResult - Lower the result values of an ISD::CALL into the
1040/// appropriate copies out of appropriate physical registers. This assumes that
1041/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
1042/// being lowered. The returns a SDNode with the same number of values as the
1043/// ISD::CALL.
1044SDNode *X86TargetLowering::
Scott Michelfdc40a02009-02-17 22:15:04 +00001045LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
Chris Lattner3085e152007-02-25 08:59:22 +00001046 unsigned CallingConv, SelectionDAG &DAG) {
Dale Johannesenace16102009-02-03 19:33:06 +00001047
Scott Michelfdc40a02009-02-17 22:15:04 +00001048 DebugLoc dl = TheCall->getDebugLoc();
Chris Lattnere32bbf62007-02-28 07:09:55 +00001049 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001050 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman095cc292008-09-13 01:54:27 +00001051 bool isVarArg = TheCall->isVarArg();
Torok Edwin3f142c32009-02-01 18:15:56 +00001052 bool Is64Bit = Subtarget->is64Bit();
Chris Lattner52387be2007-06-19 00:13:10 +00001053 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
Chris Lattnere32bbf62007-02-28 07:09:55 +00001054 CCInfo.AnalyzeCallResult(TheCall, RetCC_X86);
1055
Dan Gohman475871a2008-07-27 21:46:04 +00001056 SmallVector<SDValue, 8> ResultVals;
Scott Michelfdc40a02009-02-17 22:15:04 +00001057
Chris Lattner3085e152007-02-25 08:59:22 +00001058 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001059 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001060 CCValAssign &VA = RVLocs[i];
1061 MVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001062
Torok Edwin3f142c32009-02-01 18:15:56 +00001063 // If this is x86-64, and we disabled SSE, we can't return FP values
Scott Michelfdc40a02009-02-17 22:15:04 +00001064 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001065 ((Is64Bit || TheCall->isInreg()) && !Subtarget->hasSSE1())) {
1066 cerr << "SSE register return with SSE disabled\n";
1067 exit(1);
1068 }
1069
Chris Lattner8e6da152008-03-10 21:08:41 +00001070 // If this is a call to a function that returns an fp value on the floating
1071 // point stack, but where we prefer to use the value in xmm registers, copy
1072 // it out as F80 and use a truncate to move it from fp stack reg to xmm reg.
Dan Gohman37eed792009-02-04 17:28:58 +00001073 if ((VA.getLocReg() == X86::ST0 ||
1074 VA.getLocReg() == X86::ST1) &&
1075 isScalarFPTypeInSSEReg(VA.getValVT())) {
Chris Lattner8e6da152008-03-10 21:08:41 +00001076 CopyVT = MVT::f80;
Chris Lattner3085e152007-02-25 08:59:22 +00001077 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001078
Evan Cheng79fb3b42009-02-20 20:43:02 +00001079 SDValue Val;
1080 if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Cheng242b38b2009-02-23 09:03:22 +00001081 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1082 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1083 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1084 MVT::v2i64, InFlag).getValue(1);
1085 Val = Chain.getValue(0);
1086 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1087 Val, DAG.getConstant(0, MVT::i64));
1088 } else {
1089 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1090 MVT::i64, InFlag).getValue(1);
1091 Val = Chain.getValue(0);
1092 }
Evan Cheng79fb3b42009-02-20 20:43:02 +00001093 Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val);
1094 } else {
1095 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1096 CopyVT, InFlag).getValue(1);
1097 Val = Chain.getValue(0);
1098 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001099 InFlag = Chain.getValue(2);
Chris Lattner112dedc2007-12-29 06:41:28 +00001100
Dan Gohman37eed792009-02-04 17:28:58 +00001101 if (CopyVT != VA.getValVT()) {
Chris Lattner8e6da152008-03-10 21:08:41 +00001102 // Round the F80 the right size, which also moves to the appropriate xmm
1103 // register.
Dan Gohman37eed792009-02-04 17:28:58 +00001104 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
Chris Lattner8e6da152008-03-10 21:08:41 +00001105 // This truncation won't change the value.
1106 DAG.getIntPtrConstant(1));
1107 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001108
Chris Lattner8e6da152008-03-10 21:08:41 +00001109 ResultVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001110 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001111
Chris Lattner3085e152007-02-25 08:59:22 +00001112 // Merge everything together with a MERGE_VALUES node.
1113 ResultVals.push_back(Chain);
Dale Johannesenace16102009-02-03 19:33:06 +00001114 return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(),
1115 &ResultVals[0], ResultVals.size()).getNode();
Chris Lattner2b02a442007-02-25 08:29:00 +00001116}
1117
1118
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001119//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001120// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001121//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001122// StdCall calling convention seems to be standard for many Windows' API
1123// routines and around. It differs from C calling convention just a little:
1124// callee should clean up the stack, not caller. Symbols should be also
1125// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001126// For info on fast calling convention see Fast Calling Convention (tail call)
1127// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001128
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001129/// CallIsStructReturn - Determines whether a CALL node uses struct return
1130/// semantics.
Dan Gohman095cc292008-09-13 01:54:27 +00001131static bool CallIsStructReturn(CallSDNode *TheCall) {
1132 unsigned NumOps = TheCall->getNumArgs();
Gordon Henriksen86737662008-01-05 16:56:59 +00001133 if (!NumOps)
1134 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001135
Dan Gohman095cc292008-09-13 01:54:27 +00001136 return TheCall->getArgFlags(0).isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001137}
1138
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001139/// ArgsAreStructReturn - Determines whether a FORMAL_ARGUMENTS node uses struct
1140/// return semantics.
Dan Gohman475871a2008-07-27 21:46:04 +00001141static bool ArgsAreStructReturn(SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001142 unsigned NumArgs = Op.getNode()->getNumValues() - 1;
Gordon Henriksen86737662008-01-05 16:56:59 +00001143 if (!NumArgs)
1144 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001145
1146 return cast<ARG_FLAGSSDNode>(Op.getOperand(3))->getArgFlags().isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001147}
1148
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001149/// IsCalleePop - Determines whether a CALL or FORMAL_ARGUMENTS node requires
1150/// the callee to pop its own arguments. Callee pop is necessary to support tail
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001151/// calls.
Dan Gohman095cc292008-09-13 01:54:27 +00001152bool X86TargetLowering::IsCalleePop(bool IsVarArg, unsigned CallingConv) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001153 if (IsVarArg)
1154 return false;
1155
Dan Gohman095cc292008-09-13 01:54:27 +00001156 switch (CallingConv) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001157 default:
1158 return false;
1159 case CallingConv::X86_StdCall:
1160 return !Subtarget->is64Bit();
1161 case CallingConv::X86_FastCall:
1162 return !Subtarget->is64Bit();
1163 case CallingConv::Fast:
1164 return PerformTailCallOpt;
1165 }
1166}
1167
Dan Gohman095cc292008-09-13 01:54:27 +00001168/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1169/// given CallingConvention value.
1170CCAssignFn *X86TargetLowering::CCAssignFnForNode(unsigned CC) const {
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00001171 if (Subtarget->is64Bit()) {
Anton Korobeynikov1a979d92008-03-22 20:57:27 +00001172 if (Subtarget->isTargetWin64())
Anton Korobeynikov8f88cb02008-03-22 20:37:30 +00001173 return CC_X86_Win64_C;
Evan Chenge9ac9e62008-09-07 09:07:23 +00001174 else if (CC == CallingConv::Fast && PerformTailCallOpt)
1175 return CC_X86_64_TailCall;
1176 else
1177 return CC_X86_64_C;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00001178 }
1179
Gordon Henriksen86737662008-01-05 16:56:59 +00001180 if (CC == CallingConv::X86_FastCall)
1181 return CC_X86_32_FastCall;
Evan Chengb188dd92008-09-10 18:25:29 +00001182 else if (CC == CallingConv::Fast)
1183 return CC_X86_32_FastCC;
Gordon Henriksen86737662008-01-05 16:56:59 +00001184 else
1185 return CC_X86_32_C;
1186}
1187
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001188/// NameDecorationForFORMAL_ARGUMENTS - Selects the appropriate decoration to
1189/// apply to a MachineFunction containing a given FORMAL_ARGUMENTS node.
Gordon Henriksen86737662008-01-05 16:56:59 +00001190NameDecorationStyle
Dan Gohman475871a2008-07-27 21:46:04 +00001191X86TargetLowering::NameDecorationForFORMAL_ARGUMENTS(SDValue Op) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001192 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Gordon Henriksen86737662008-01-05 16:56:59 +00001193 if (CC == CallingConv::X86_FastCall)
1194 return FastCall;
1195 else if (CC == CallingConv::X86_StdCall)
1196 return StdCall;
1197 return None;
1198}
1199
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001200
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001201/// CallRequiresGOTInRegister - Check whether the call requires the GOT pointer
1202/// in a register before calling.
1203bool X86TargetLowering::CallRequiresGOTPtrInReg(bool Is64Bit, bool IsTailCall) {
1204 return !IsTailCall && !Is64Bit &&
1205 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1206 Subtarget->isPICStyleGOT();
1207}
1208
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001209/// CallRequiresFnAddressInReg - Check whether the call requires the function
1210/// address to be loaded in a register.
Scott Michelfdc40a02009-02-17 22:15:04 +00001211bool
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001212X86TargetLowering::CallRequiresFnAddressInReg(bool Is64Bit, bool IsTailCall) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001213 return !Is64Bit && IsTailCall &&
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001214 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1215 Subtarget->isPICStyleGOT();
1216}
1217
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001218/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1219/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001220/// the specific parameter attribute. The copy will be passed as a byval
1221/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001222static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001223CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001224 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1225 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +00001226 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesendd64c412009-02-04 00:33:20 +00001227 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001228 /*AlwaysInline=*/true, NULL, 0, NULL, 0);
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001229}
1230
Dan Gohman475871a2008-07-27 21:46:04 +00001231SDValue X86TargetLowering::LowerMemArgument(SDValue Op, SelectionDAG &DAG,
Rafael Espindola7effac52007-09-14 15:48:13 +00001232 const CCValAssign &VA,
1233 MachineFrameInfo *MFI,
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001234 unsigned CC,
Dan Gohman475871a2008-07-27 21:46:04 +00001235 SDValue Root, unsigned i) {
Rafael Espindola7effac52007-09-14 15:48:13 +00001236 // Create the nodes corresponding to a load from this parameter slot.
Duncan Sands276dcbd2008-03-21 09:14:45 +00001237 ISD::ArgFlagsTy Flags =
1238 cast<ARG_FLAGSSDNode>(Op.getOperand(3 + i))->getArgFlags();
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001239 bool AlwaysUseMutable = (CC==CallingConv::Fast) && PerformTailCallOpt;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001240 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Evan Chenge70bb592008-01-10 02:24:25 +00001241
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001242 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001243 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001244 // In case of tail call optimization mark all arguments mutable. Since they
1245 // could be overwritten by lowering of arguments in case of a tail call.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001246 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001247 VA.getLocMemOffset(), isImmutable);
Dan Gohman475871a2008-07-27 21:46:04 +00001248 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Duncan Sands276dcbd2008-03-21 09:14:45 +00001249 if (Flags.isByVal())
Rafael Espindola7effac52007-09-14 15:48:13 +00001250 return FIN;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00001251 return DAG.getLoad(VA.getValVT(), Op.getDebugLoc(), Root, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001252 PseudoSourceValue::getFixedStack(FI), 0);
Rafael Espindola7effac52007-09-14 15:48:13 +00001253}
1254
Dan Gohman475871a2008-07-27 21:46:04 +00001255SDValue
1256X86TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) {
Evan Cheng1bc78042006-04-26 01:20:17 +00001257 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001258 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00001259 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00001260
Gordon Henriksen86737662008-01-05 16:56:59 +00001261 const Function* Fn = MF.getFunction();
1262 if (Fn->hasExternalLinkage() &&
1263 Subtarget->isTargetCygMing() &&
1264 Fn->getName() == "main")
1265 FuncInfo->setForceFramePointer(true);
1266
1267 // Decorate the function name.
1268 FuncInfo->setDecorationStyle(NameDecorationForFORMAL_ARGUMENTS(Op));
Scott Michelfdc40a02009-02-17 22:15:04 +00001269
Evan Cheng1bc78042006-04-26 01:20:17 +00001270 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman475871a2008-07-27 21:46:04 +00001271 SDValue Root = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001272 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001273 unsigned CC = MF.getFunction()->getCallingConv();
Gordon Henriksen86737662008-01-05 16:56:59 +00001274 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001275 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001276
1277 assert(!(isVarArg && CC == CallingConv::Fast) &&
1278 "Var args not supported with calling convention fastcc");
1279
Chris Lattner638402b2007-02-28 07:00:42 +00001280 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001281 SmallVector<CCValAssign, 16> ArgLocs;
Gordon Henriksenae636f82008-01-03 16:47:34 +00001282 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman095cc292008-09-13 01:54:27 +00001283 CCInfo.AnalyzeFormalArguments(Op.getNode(), CCAssignFnForNode(CC));
Scott Michelfdc40a02009-02-17 22:15:04 +00001284
Dan Gohman475871a2008-07-27 21:46:04 +00001285 SmallVector<SDValue, 8> ArgValues;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001286 unsigned LastVal = ~0U;
1287 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1288 CCValAssign &VA = ArgLocs[i];
1289 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1290 // places.
1291 assert(VA.getValNo() != LastVal &&
1292 "Don't support value assigned to multiple locs yet");
1293 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001294
Chris Lattnerf39f7712007-02-28 05:46:49 +00001295 if (VA.isRegLoc()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001296 MVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001297 TargetRegisterClass *RC = NULL;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001298 if (RegVT == MVT::i32)
1299 RC = X86::GR32RegisterClass;
Gordon Henriksen86737662008-01-05 16:56:59 +00001300 else if (Is64Bit && RegVT == MVT::i64)
1301 RC = X86::GR64RegisterClass;
Dale Johannesene672af12008-02-05 20:46:33 +00001302 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001303 RC = X86::FR32RegisterClass;
Dale Johannesene672af12008-02-05 20:46:33 +00001304 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001305 RC = X86::FR64RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001306 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001307 RC = X86::VR128RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001308 else if (RegVT.isVector()) {
1309 assert(RegVT.getSizeInBits() == 64);
Evan Chengee472b12008-04-25 07:56:45 +00001310 if (!Is64Bit)
1311 RC = X86::VR64RegisterClass; // MMX values are passed in MMXs.
1312 else {
1313 // Darwin calling convention passes MMX values in either GPRs or
1314 // XMMs in x86-64. Other targets pass them in memory.
1315 if (RegVT != MVT::v1i64 && Subtarget->hasSSE2()) {
1316 RC = X86::VR128RegisterClass; // MMX values are passed in XMMs.
1317 RegVT = MVT::v2i64;
1318 } else {
1319 RC = X86::GR64RegisterClass; // v1i64 values are passed in GPRs.
1320 RegVT = MVT::i64;
1321 }
1322 }
1323 } else {
1324 assert(0 && "Unknown argument type!");
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001325 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001326
Bob Wilson998e1252009-04-20 18:36:57 +00001327 unsigned Reg = DAG.getMachineFunction().addLiveIn(VA.getLocReg(), RC);
Dale Johannesendd64c412009-02-04 00:33:20 +00001328 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001329
Chris Lattnerf39f7712007-02-28 05:46:49 +00001330 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1331 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1332 // right size.
1333 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001334 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001335 DAG.getValueType(VA.getValVT()));
1336 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001337 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001338 DAG.getValueType(VA.getValVT()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001339
Chris Lattnerf39f7712007-02-28 05:46:49 +00001340 if (VA.getLocInfo() != CCValAssign::Full)
Dale Johannesenace16102009-02-03 19:33:06 +00001341 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001342
Gordon Henriksen86737662008-01-05 16:56:59 +00001343 // Handle MMX values passed in GPRs.
Evan Cheng44c0fd12008-04-25 20:13:28 +00001344 if (Is64Bit && RegVT != VA.getLocVT()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001345 if (RegVT.getSizeInBits() == 64 && RC == X86::GR64RegisterClass)
Dale Johannesenace16102009-02-03 19:33:06 +00001346 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001347 else if (RC == X86::VR128RegisterClass) {
Dale Johannesenace16102009-02-03 19:33:06 +00001348 ArgValue = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1349 ArgValue, DAG.getConstant(0, MVT::i64));
1350 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001351 }
1352 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001353
Chris Lattnerf39f7712007-02-28 05:46:49 +00001354 ArgValues.push_back(ArgValue);
1355 } else {
1356 assert(VA.isMemLoc());
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001357 ArgValues.push_back(LowerMemArgument(Op, DAG, VA, MFI, CC, Root, i));
Evan Cheng1bc78042006-04-26 01:20:17 +00001358 }
Evan Cheng1bc78042006-04-26 01:20:17 +00001359 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001360
Dan Gohman61a92132008-04-21 23:59:07 +00001361 // The x86-64 ABI for returning structs by value requires that we copy
1362 // the sret argument into %rax for the return. Save the argument into
1363 // a virtual register so that we can access it from the return points.
1364 if (Is64Bit && DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1365 MachineFunction &MF = DAG.getMachineFunction();
1366 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1367 unsigned Reg = FuncInfo->getSRetReturnReg();
1368 if (!Reg) {
1369 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1370 FuncInfo->setSRetReturnReg(Reg);
1371 }
Dale Johannesendd64c412009-02-04 00:33:20 +00001372 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, ArgValues[0]);
Dale Johannesenace16102009-02-03 19:33:06 +00001373 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Root);
Dan Gohman61a92132008-04-21 23:59:07 +00001374 }
1375
Chris Lattnerf39f7712007-02-28 05:46:49 +00001376 unsigned StackSize = CCInfo.getNextStackOffset();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001377 // align stack specially for tail calls
Evan Chenge9ac9e62008-09-07 09:07:23 +00001378 if (PerformTailCallOpt && CC == CallingConv::Fast)
Gordon Henriksenae636f82008-01-03 16:47:34 +00001379 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001380
Evan Cheng1bc78042006-04-26 01:20:17 +00001381 // If the function takes variable number of arguments, make a frame index for
1382 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001383 if (isVarArg) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001384 if (Is64Bit || CC != CallingConv::X86_FastCall) {
1385 VarArgsFrameIndex = MFI->CreateFixedObject(1, StackSize);
1386 }
1387 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001388 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1389
1390 // FIXME: We should really autogenerate these arrays
1391 static const unsigned GPR64ArgRegsWin64[] = {
1392 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001393 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001394 static const unsigned XMMArgRegsWin64[] = {
1395 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3
1396 };
1397 static const unsigned GPR64ArgRegs64Bit[] = {
1398 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1399 };
1400 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001401 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1402 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1403 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001404 const unsigned *GPR64ArgRegs, *XMMArgRegs;
1405
1406 if (IsWin64) {
1407 TotalNumIntRegs = 4; TotalNumXMMRegs = 4;
1408 GPR64ArgRegs = GPR64ArgRegsWin64;
1409 XMMArgRegs = XMMArgRegsWin64;
1410 } else {
1411 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1412 GPR64ArgRegs = GPR64ArgRegs64Bit;
1413 XMMArgRegs = XMMArgRegs64Bit;
1414 }
1415 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1416 TotalNumIntRegs);
1417 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs,
1418 TotalNumXMMRegs);
1419
Devang Patel578efa92009-06-05 21:57:13 +00001420 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Evan Chengc7ce29b2009-02-13 22:36:38 +00001421 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001422 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001423 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001424 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001425 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00001426 // Kernel mode asks for SSE to be disabled, so don't push them
1427 // on the stack.
1428 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001429
Gordon Henriksen86737662008-01-05 16:56:59 +00001430 // For X86-64, if there are vararg parameters that are passed via
1431 // registers, then we must store them to their spots on the stack so they
1432 // may be loaded by deferencing the result of va_next.
1433 VarArgsGPOffset = NumIntRegs * 8;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001434 VarArgsFPOffset = TotalNumIntRegs * 8 + NumXMMRegs * 16;
1435 RegSaveFrameIndex = MFI->CreateStackObject(TotalNumIntRegs * 8 +
1436 TotalNumXMMRegs * 16, 16);
1437
Gordon Henriksen86737662008-01-05 16:56:59 +00001438 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001439 SmallVector<SDValue, 8> MemOps;
1440 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00001441 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001442 DAG.getIntPtrConstant(VarArgsGPOffset));
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001443 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Bob Wilson998e1252009-04-20 18:36:57 +00001444 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1445 X86::GR64RegisterClass);
Dale Johannesendd64c412009-02-04 00:33:20 +00001446 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001447 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001448 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001449 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001450 MemOps.push_back(Store);
Dale Johannesenace16102009-02-03 19:33:06 +00001451 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001452 DAG.getIntPtrConstant(8));
Gordon Henriksen86737662008-01-05 16:56:59 +00001453 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001454
Gordon Henriksen86737662008-01-05 16:56:59 +00001455 // Now store the XMM (fp + vector) parameter registers.
Dale Johannesenace16102009-02-03 19:33:06 +00001456 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001457 DAG.getIntPtrConstant(VarArgsFPOffset));
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001458 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Bob Wilson998e1252009-04-20 18:36:57 +00001459 unsigned VReg = MF.addLiveIn(XMMArgRegs[NumXMMRegs],
1460 X86::VR128RegisterClass);
Dale Johannesendd64c412009-02-04 00:33:20 +00001461 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::v4f32);
Dan Gohman475871a2008-07-27 21:46:04 +00001462 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001463 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001464 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001465 MemOps.push_back(Store);
Dale Johannesenace16102009-02-03 19:33:06 +00001466 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001467 DAG.getIntPtrConstant(16));
Gordon Henriksen86737662008-01-05 16:56:59 +00001468 }
1469 if (!MemOps.empty())
Dale Johannesenace16102009-02-03 19:33:06 +00001470 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Gordon Henriksen86737662008-01-05 16:56:59 +00001471 &MemOps[0], MemOps.size());
1472 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001473 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001474
Gordon Henriksenae636f82008-01-03 16:47:34 +00001475 ArgValues.push_back(Root);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001476
Gordon Henriksen86737662008-01-05 16:56:59 +00001477 // Some CCs need callee pop.
Dan Gohman095cc292008-09-13 01:54:27 +00001478 if (IsCalleePop(isVarArg, CC)) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001479 BytesToPopOnReturn = StackSize; // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001480 BytesCallerReserves = 0;
1481 } else {
Anton Korobeynikov1d9bacc2007-03-06 08:12:33 +00001482 BytesToPopOnReturn = 0; // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001483 // If this is an sret function, the return should pop the hidden pointer.
Evan Chengb188dd92008-09-10 18:25:29 +00001484 if (!Is64Bit && CC != CallingConv::Fast && ArgsAreStructReturn(Op))
Scott Michelfdc40a02009-02-17 22:15:04 +00001485 BytesToPopOnReturn = 4;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001486 BytesCallerReserves = StackSize;
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001487 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001488
Gordon Henriksen86737662008-01-05 16:56:59 +00001489 if (!Is64Bit) {
1490 RegSaveFrameIndex = 0xAAAAAAA; // RegSaveFrameIndex is X86-64 only.
1491 if (CC == CallingConv::X86_FastCall)
1492 VarArgsFrameIndex = 0xAAAAAAA; // fastcc functions can't have varargs.
1493 }
Evan Cheng25caf632006-05-23 21:06:34 +00001494
Anton Korobeynikova2780e12007-08-15 17:12:32 +00001495 FuncInfo->setBytesToPopOnReturn(BytesToPopOnReturn);
Evan Cheng1bc78042006-04-26 01:20:17 +00001496
Evan Cheng25caf632006-05-23 21:06:34 +00001497 // Return the new list of results.
Dale Johannesenace16102009-02-03 19:33:06 +00001498 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00001499 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001500}
1501
Dan Gohman475871a2008-07-27 21:46:04 +00001502SDValue
Dan Gohman095cc292008-09-13 01:54:27 +00001503X86TargetLowering::LowerMemOpCallTo(CallSDNode *TheCall, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00001504 const SDValue &StackPtr,
Evan Chengdffbd832008-01-10 00:09:10 +00001505 const CCValAssign &VA,
Dan Gohman475871a2008-07-27 21:46:04 +00001506 SDValue Chain,
Dan Gohman095cc292008-09-13 01:54:27 +00001507 SDValue Arg, ISD::ArgFlagsTy Flags) {
Dale Johannesenace16102009-02-03 19:33:06 +00001508 DebugLoc dl = TheCall->getDebugLoc();
Dan Gohman4fdad172008-02-07 16:28:05 +00001509 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001510 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001511 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001512 if (Flags.isByVal()) {
Dale Johannesendd64c412009-02-04 00:33:20 +00001513 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Evan Chengdffbd832008-01-10 00:09:10 +00001514 }
Dale Johannesenace16102009-02-03 19:33:06 +00001515 return DAG.getStore(Chain, dl, Arg, PtrOff,
Dan Gohman3069b872008-02-07 18:41:25 +00001516 PseudoSourceValue::getStack(), LocMemOffset);
Evan Chengdffbd832008-01-10 00:09:10 +00001517}
1518
Bill Wendling64e87322009-01-16 19:25:27 +00001519/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001520/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001521SDValue
1522X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00001523 SDValue &OutRetAddr,
Scott Michelfdc40a02009-02-17 22:15:04 +00001524 SDValue Chain,
1525 bool IsTailCall,
1526 bool Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00001527 int FPDiff,
1528 DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001529 if (!IsTailCall || FPDiff==0) return Chain;
1530
1531 // Adjust the Return address stack slot.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001532 MVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001533 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001534
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001535 // Load the "old" Return address.
Dale Johannesenace16102009-02-03 19:33:06 +00001536 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, NULL, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001537 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001538}
1539
1540/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1541/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001542static SDValue
1543EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001544 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001545 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001546 // Store the return address to the appropriate stack slot.
1547 if (!FPDiff) return Chain;
1548 // Calculate the new stack slot for the return address.
1549 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001550 int NewReturnAddrFI =
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001551 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001552 MVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001553 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001554 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Dan Gohmana54cf172008-07-11 22:44:52 +00001555 PseudoSourceValue::getFixedStack(NewReturnAddrFI), 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001556 return Chain;
1557}
1558
Dan Gohman475871a2008-07-27 21:46:04 +00001559SDValue X86TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001560 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman095cc292008-09-13 01:54:27 +00001561 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
1562 SDValue Chain = TheCall->getChain();
1563 unsigned CC = TheCall->getCallingConv();
1564 bool isVarArg = TheCall->isVarArg();
1565 bool IsTailCall = TheCall->isTailCall() &&
1566 CC == CallingConv::Fast && PerformTailCallOpt;
1567 SDValue Callee = TheCall->getCallee();
Gordon Henriksen86737662008-01-05 16:56:59 +00001568 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman095cc292008-09-13 01:54:27 +00001569 bool IsStructRet = CallIsStructReturn(TheCall);
Dale Johannesenace16102009-02-03 19:33:06 +00001570 DebugLoc dl = TheCall->getDebugLoc();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001571
1572 assert(!(isVarArg && CC == CallingConv::Fast) &&
1573 "Var args not supported with calling convention fastcc");
1574
Chris Lattner638402b2007-02-28 07:00:42 +00001575 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001576 SmallVector<CCValAssign, 16> ArgLocs;
Chris Lattner52387be2007-06-19 00:13:10 +00001577 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman095cc292008-09-13 01:54:27 +00001578 CCInfo.AnalyzeCallOperands(TheCall, CCAssignFnForNode(CC));
Scott Michelfdc40a02009-02-17 22:15:04 +00001579
Chris Lattner423c5f42007-02-28 05:31:48 +00001580 // Get a count of how many bytes are to be pushed on the stack.
1581 unsigned NumBytes = CCInfo.getNextStackOffset();
Arnold Schwaighofer1fdc40f2008-09-11 20:28:43 +00001582 if (PerformTailCallOpt && CC == CallingConv::Fast)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001583 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001584
Gordon Henriksen86737662008-01-05 16:56:59 +00001585 int FPDiff = 0;
1586 if (IsTailCall) {
1587 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001588 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001589 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1590 FPDiff = NumBytesCallerPushed - NumBytes;
1591
1592 // Set the delta of movement of the returnaddr stackslot.
1593 // But only set if delta is greater than previous delta.
1594 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1595 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1596 }
1597
Chris Lattnere563bbc2008-10-11 22:08:30 +00001598 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001599
Dan Gohman475871a2008-07-27 21:46:04 +00001600 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001601 // Load return adress for tail calls.
1602 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, IsTailCall, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00001603 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001604
Dan Gohman475871a2008-07-27 21:46:04 +00001605 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1606 SmallVector<SDValue, 8> MemOpChains;
1607 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00001608
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001609 // Walk the register/memloc assignments, inserting copies/loads. In the case
1610 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00001611 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1612 CCValAssign &VA = ArgLocs[i];
Dan Gohman095cc292008-09-13 01:54:27 +00001613 SDValue Arg = TheCall->getArg(i);
1614 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
1615 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00001616
Chris Lattner423c5f42007-02-28 05:31:48 +00001617 // Promote the value if needed.
1618 switch (VA.getLocInfo()) {
1619 default: assert(0 && "Unknown loc info!");
1620 case CCValAssign::Full: break;
1621 case CCValAssign::SExt:
Dale Johannesenace16102009-02-03 19:33:06 +00001622 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001623 break;
1624 case CCValAssign::ZExt:
Dale Johannesenace16102009-02-03 19:33:06 +00001625 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001626 break;
1627 case CCValAssign::AExt:
Dale Johannesenace16102009-02-03 19:33:06 +00001628 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001629 break;
Evan Cheng6b5783d2006-05-25 18:56:34 +00001630 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001631
Chris Lattner423c5f42007-02-28 05:31:48 +00001632 if (VA.isRegLoc()) {
Evan Cheng10e86422008-04-25 19:11:04 +00001633 if (Is64Bit) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001634 MVT RegVT = VA.getLocVT();
1635 if (RegVT.isVector() && RegVT.getSizeInBits() == 64)
Evan Cheng10e86422008-04-25 19:11:04 +00001636 switch (VA.getLocReg()) {
1637 default:
1638 break;
1639 case X86::RDI: case X86::RSI: case X86::RDX: case X86::RCX:
1640 case X86::R8: {
1641 // Special case: passing MMX values in GPR registers.
Dale Johannesenace16102009-02-03 19:33:06 +00001642 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
Evan Cheng10e86422008-04-25 19:11:04 +00001643 break;
1644 }
1645 case X86::XMM0: case X86::XMM1: case X86::XMM2: case X86::XMM3:
1646 case X86::XMM4: case X86::XMM5: case X86::XMM6: case X86::XMM7: {
1647 // Special case: passing MMX values in XMM registers.
Dale Johannesenace16102009-02-03 19:33:06 +00001648 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1649 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
Nate Begeman9008ca62009-04-27 18:41:29 +00001650 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Evan Cheng10e86422008-04-25 19:11:04 +00001651 break;
1652 }
1653 }
1654 }
Chris Lattner423c5f42007-02-28 05:31:48 +00001655 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1656 } else {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001657 if (!IsTailCall || (IsTailCall && isByVal)) {
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001658 assert(VA.isMemLoc());
Gabor Greifba36cb52008-08-28 21:40:38 +00001659 if (StackPtr.getNode() == 0)
Dale Johannesendd64c412009-02-04 00:33:20 +00001660 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001661
Dan Gohman095cc292008-09-13 01:54:27 +00001662 MemOpChains.push_back(LowerMemOpCallTo(TheCall, DAG, StackPtr, VA,
1663 Chain, Arg, Flags));
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001664 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001665 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001666 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001667
Evan Cheng32fe1032006-05-25 00:59:30 +00001668 if (!MemOpChains.empty())
Dale Johannesenace16102009-02-03 19:33:06 +00001669 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001670 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001671
Evan Cheng347d5f72006-04-28 21:29:37 +00001672 // Build a sequence of copy-to-reg nodes chained together with token chain
1673 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001674 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001675 // Tail call byval lowering might overwrite argument registers so in case of
1676 // tail call optimization the copies to registers are lowered later.
1677 if (!IsTailCall)
1678 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001679 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00001680 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001681 InFlag = Chain.getValue(1);
1682 }
Gordon Henriksen86737662008-01-05 16:56:59 +00001683
Evan Chengf4684712007-02-21 21:18:14 +00001684 // ELF / PIC requires GOT in the EBX register before function calls via PLT
Scott Michelfdc40a02009-02-17 22:15:04 +00001685 // GOT pointer.
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001686 if (CallRequiresGOTPtrInReg(Is64Bit, IsTailCall)) {
Dale Johannesendd64c412009-02-04 00:33:20 +00001687 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
Scott Michelfdc40a02009-02-17 22:15:04 +00001688 DAG.getNode(X86ISD::GlobalBaseReg,
1689 DebugLoc::getUnknownLoc(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001690 getPointerTy()),
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001691 InFlag);
1692 InFlag = Chain.getValue(1);
1693 }
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001694 // If we are tail calling and generating PIC/GOT style code load the address
1695 // of the callee into ecx. The value in ecx is used as target of the tail
1696 // jump. This is done to circumvent the ebx/callee-saved problem for tail
1697 // calls on PIC/GOT architectures. Normally we would just put the address of
1698 // GOT into ebx and then call target@PLT. But for tail callss ebx would be
1699 // restored (since ebx is callee saved) before jumping to the target@PLT.
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001700 if (CallRequiresFnAddressInReg(Is64Bit, IsTailCall)) {
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001701 // Note: The actual moving to ecx is done further down.
1702 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
Evan Chengda43bcf2008-09-24 00:05:32 +00001703 if (G && !G->getGlobal()->hasHiddenVisibility() &&
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001704 !G->getGlobal()->hasProtectedVisibility())
1705 Callee = LowerGlobalAddress(Callee, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00001706 else if (isa<ExternalSymbolSDNode>(Callee))
1707 Callee = LowerExternalSymbol(Callee,DAG);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001708 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001709
Gordon Henriksen86737662008-01-05 16:56:59 +00001710 if (Is64Bit && isVarArg) {
1711 // From AMD64 ABI document:
1712 // For calls that may call functions that use varargs or stdargs
1713 // (prototype-less calls or calls to functions containing ellipsis (...) in
1714 // the declaration) %al is used as hidden argument to specify the number
1715 // of SSE registers used. The contents of %al do not need to match exactly
1716 // the number of registers, but must be an ubound on the number of SSE
1717 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001718
1719 // FIXME: Verify this on Win64
Gordon Henriksen86737662008-01-05 16:56:59 +00001720 // Count the number of XMM registers allocated.
1721 static const unsigned XMMArgRegs[] = {
1722 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1723 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1724 };
1725 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michelfdc40a02009-02-17 22:15:04 +00001726 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00001727 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001728
Dale Johannesendd64c412009-02-04 00:33:20 +00001729 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Gordon Henriksen86737662008-01-05 16:56:59 +00001730 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
1731 InFlag = Chain.getValue(1);
1732 }
1733
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001734
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001735 // For tail calls lower the arguments to the 'real' stack slot.
Gordon Henriksen86737662008-01-05 16:56:59 +00001736 if (IsTailCall) {
Dan Gohman475871a2008-07-27 21:46:04 +00001737 SmallVector<SDValue, 8> MemOpChains2;
1738 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00001739 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001740 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00001741 InFlag = SDValue();
Gordon Henriksen86737662008-01-05 16:56:59 +00001742 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1743 CCValAssign &VA = ArgLocs[i];
1744 if (!VA.isRegLoc()) {
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001745 assert(VA.isMemLoc());
Dan Gohman095cc292008-09-13 01:54:27 +00001746 SDValue Arg = TheCall->getArg(i);
1747 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
Gordon Henriksen86737662008-01-05 16:56:59 +00001748 // Create frame index.
1749 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001750 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001751 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001752 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001753
Duncan Sands276dcbd2008-03-21 09:14:45 +00001754 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00001755 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00001756 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00001757 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00001758 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00001759 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00001760 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001761
1762 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN, Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001763 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00001764 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00001765 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00001766 MemOpChains2.push_back(
Dale Johannesenace16102009-02-03 19:33:06 +00001767 DAG.getStore(Chain, dl, Arg, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001768 PseudoSourceValue::getFixedStack(FI), 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001769 }
Gordon Henriksen86737662008-01-05 16:56:59 +00001770 }
1771 }
1772
1773 if (!MemOpChains2.empty())
Dale Johannesenace16102009-02-03 19:33:06 +00001774 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00001775 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001776
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001777 // Copy arguments to their registers.
1778 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001779 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00001780 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001781 InFlag = Chain.getValue(1);
1782 }
Dan Gohman475871a2008-07-27 21:46:04 +00001783 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001784
Gordon Henriksen86737662008-01-05 16:56:59 +00001785 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001786 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00001787 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001788 }
1789
Evan Cheng32fe1032006-05-25 00:59:30 +00001790 // If the callee is a GlobalAddress node (quite common, every direct call is)
1791 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Anton Korobeynikova5986852006-11-20 10:46:14 +00001792 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00001793 // We should use extra load for direct calls to dllimported functions in
1794 // non-JIT mode.
Evan Cheng817a6a92008-07-16 01:34:02 +00001795 if (!Subtarget->GVRequiresExtraLoad(G->getGlobal(),
1796 getTargetMachine(), true))
Dan Gohman6520e202008-10-18 02:06:02 +00001797 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy(),
1798 G->getOffset());
Bill Wendling056292f2008-09-16 21:48:12 +00001799 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1800 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
Gordon Henriksen86737662008-01-05 16:56:59 +00001801 } else if (IsTailCall) {
Arnold Schwaighofer290ae032008-09-22 14:50:07 +00001802 unsigned Opc = Is64Bit ? X86::R9 : X86::EAX;
Gordon Henriksen86737662008-01-05 16:56:59 +00001803
Dale Johannesendd64c412009-02-04 00:33:20 +00001804 Chain = DAG.getCopyToReg(Chain, dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00001805 DAG.getRegister(Opc, getPointerTy()),
Gordon Henriksen86737662008-01-05 16:56:59 +00001806 Callee,InFlag);
1807 Callee = DAG.getRegister(Opc, getPointerTy());
1808 // Add register as live out.
1809 DAG.getMachineFunction().getRegInfo().addLiveOut(Opc);
Gordon Henriksenae636f82008-01-03 16:47:34 +00001810 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001811
Chris Lattnerd96d0722007-02-25 06:40:16 +00001812 // Returns a chain & a flag for retval copy to use.
1813 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00001814 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00001815
1816 if (IsTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00001817 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1818 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00001819 InFlag = Chain.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001820
Gordon Henriksen86737662008-01-05 16:56:59 +00001821 // Returns a chain & a flag for retval copy to use.
1822 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1823 Ops.clear();
1824 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001825
Nate Begeman4c5dcf52006-02-17 00:03:04 +00001826 Ops.push_back(Chain);
1827 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00001828
Gordon Henriksen86737662008-01-05 16:56:59 +00001829 if (IsTailCall)
1830 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00001831
Gordon Henriksen86737662008-01-05 16:56:59 +00001832 // Add argument registers to the end of the list so that they are known live
1833 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00001834 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1835 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1836 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001837
Evan Cheng586ccac2008-03-18 23:36:35 +00001838 // Add an implicit use GOT pointer in EBX.
1839 if (!IsTailCall && !Is64Bit &&
1840 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1841 Subtarget->isPICStyleGOT())
1842 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
1843
1844 // Add an implicit use of AL for x86 vararg functions.
1845 if (Is64Bit && isVarArg)
1846 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
1847
Gabor Greifba36cb52008-08-28 21:40:38 +00001848 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00001849 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00001850
Gordon Henriksen86737662008-01-05 16:56:59 +00001851 if (IsTailCall) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001852 assert(InFlag.getNode() &&
Gordon Henriksen86737662008-01-05 16:56:59 +00001853 "Flag must be set. Depend on flag being set in LowerRET");
Dale Johannesenace16102009-02-03 19:33:06 +00001854 Chain = DAG.getNode(X86ISD::TAILCALL, dl,
Dan Gohman095cc292008-09-13 01:54:27 +00001855 TheCall->getVTList(), &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001856
Gabor Greifba36cb52008-08-28 21:40:38 +00001857 return SDValue(Chain.getNode(), Op.getResNo());
Gordon Henriksen86737662008-01-05 16:56:59 +00001858 }
1859
Dale Johannesenace16102009-02-03 19:33:06 +00001860 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00001861 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00001862
Chris Lattner2d297092006-05-23 18:50:38 +00001863 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00001864 unsigned NumBytesForCalleeToPush;
Dan Gohman095cc292008-09-13 01:54:27 +00001865 if (IsCalleePop(isVarArg, CC))
Gordon Henriksen86737662008-01-05 16:56:59 +00001866 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Evan Chengb188dd92008-09-10 18:25:29 +00001867 else if (!Is64Bit && CC != CallingConv::Fast && IsStructRet)
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001868 // If this is is a call to a struct-return function, the callee
1869 // pops the hidden struct pointer, so we have to push it back.
1870 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001871 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00001872 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00001873 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00001874
Gordon Henriksenae636f82008-01-03 16:47:34 +00001875 // Returns a flag for retval copy to use.
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001876 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnere563bbc2008-10-11 22:08:30 +00001877 DAG.getIntPtrConstant(NumBytes, true),
1878 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
1879 true),
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001880 InFlag);
Chris Lattner3085e152007-02-25 08:59:22 +00001881 InFlag = Chain.getValue(1);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00001882
Chris Lattner3085e152007-02-25 08:59:22 +00001883 // Handle result values, copying them out of physregs into vregs that we
1884 // return.
Dan Gohman095cc292008-09-13 01:54:27 +00001885 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG),
Gabor Greif327ef032008-08-28 23:19:51 +00001886 Op.getResNo());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001887}
1888
Evan Cheng25ab6902006-09-08 06:48:29 +00001889
1890//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001891// Fast Calling Convention (tail call) implementation
1892//===----------------------------------------------------------------------===//
1893
1894// Like std call, callee cleans arguments, convention except that ECX is
1895// reserved for storing the tail called function address. Only 2 registers are
1896// free for argument passing (inreg). Tail call optimization is performed
1897// provided:
1898// * tailcallopt is enabled
1899// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001900// On X86_64 architecture with GOT-style position independent code only local
1901// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00001902// To keep the stack aligned according to platform abi the function
1903// GetAlignedArgumentStackSize ensures that argument delta is always multiples
1904// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001905// If a tail called function callee has more arguments than the caller the
1906// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00001907// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001908// original REtADDR, but before the saved framepointer or the spilled registers
1909// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
1910// stack layout:
1911// arg1
1912// arg2
1913// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00001914// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001915// move area ]
1916// (possible EBP)
1917// ESI
1918// EDI
1919// local1 ..
1920
1921/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
1922/// for a 16 byte align requirement.
Scott Michelfdc40a02009-02-17 22:15:04 +00001923unsigned X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001924 SelectionDAG& DAG) {
Evan Chenge9ac9e62008-09-07 09:07:23 +00001925 MachineFunction &MF = DAG.getMachineFunction();
1926 const TargetMachine &TM = MF.getTarget();
1927 const TargetFrameInfo &TFI = *TM.getFrameInfo();
1928 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00001929 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00001930 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001931 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00001932 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
1933 // Number smaller than 12 so just add the difference.
1934 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
1935 } else {
1936 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00001937 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00001938 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001939 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00001940 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001941}
1942
1943/// IsEligibleForTailCallElimination - Check to see whether the next instruction
Evan Cheng9df7dc52007-11-02 01:26:22 +00001944/// following the call is a return. A function is eligible if caller/callee
1945/// calling conventions match, currently only fastcc supports tail calls, and
1946/// the function CALL is immediatly followed by a RET.
Dan Gohman095cc292008-09-13 01:54:27 +00001947bool X86TargetLowering::IsEligibleForTailCallOptimization(CallSDNode *TheCall,
Dan Gohman475871a2008-07-27 21:46:04 +00001948 SDValue Ret,
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001949 SelectionDAG& DAG) const {
Evan Cheng9df7dc52007-11-02 01:26:22 +00001950 if (!PerformTailCallOpt)
1951 return false;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001952
Dan Gohman095cc292008-09-13 01:54:27 +00001953 if (CheckTailCallReturnConstraints(TheCall, Ret)) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001954 MachineFunction &MF = DAG.getMachineFunction();
1955 unsigned CallerCC = MF.getFunction()->getCallingConv();
Dan Gohman095cc292008-09-13 01:54:27 +00001956 unsigned CalleeCC= TheCall->getCallingConv();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001957 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
Dan Gohman095cc292008-09-13 01:54:27 +00001958 SDValue Callee = TheCall->getCallee();
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001959 // On x86/32Bit PIC/GOT tail calls are supported.
Evan Cheng9df7dc52007-11-02 01:26:22 +00001960 if (getTargetMachine().getRelocationModel() != Reloc::PIC_ ||
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001961 !Subtarget->isPICStyleGOT()|| !Subtarget->is64Bit())
Evan Cheng9df7dc52007-11-02 01:26:22 +00001962 return true;
1963
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001964 // Can only do local tail calls (in same module, hidden or protected) on
1965 // x86_64 PIC/GOT at the moment.
Gordon Henriksen86737662008-01-05 16:56:59 +00001966 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1967 return G->getGlobal()->hasHiddenVisibility()
1968 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001969 }
1970 }
Evan Cheng9df7dc52007-11-02 01:26:22 +00001971
1972 return false;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001973}
1974
Dan Gohman3df24e62008-09-03 23:12:08 +00001975FastISel *
1976X86TargetLowering::createFastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +00001977 MachineModuleInfo *mmo,
Devang Patel83489bb2009-01-13 00:35:13 +00001978 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +00001979 DenseMap<const Value *, unsigned> &vm,
1980 DenseMap<const BasicBlock *,
Dan Gohman0586d912008-09-10 20:11:02 +00001981 MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001982 DenseMap<const AllocaInst *, int> &am
1983#ifndef NDEBUG
1984 , SmallSet<Instruction*, 8> &cil
1985#endif
1986 ) {
Devang Patel83489bb2009-01-13 00:35:13 +00001987 return X86::createFastISel(mf, mmo, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001988#ifndef NDEBUG
1989 , cil
1990#endif
1991 );
Dan Gohmand9f3c482008-08-19 21:32:53 +00001992}
1993
1994
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001995//===----------------------------------------------------------------------===//
1996// Other Lowering Hooks
1997//===----------------------------------------------------------------------===//
1998
1999
Dan Gohman475871a2008-07-27 21:46:04 +00002000SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002001 MachineFunction &MF = DAG.getMachineFunction();
2002 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2003 int ReturnAddrIndex = FuncInfo->getRAIndex();
2004
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002005 if (ReturnAddrIndex == 0) {
2006 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002007 uint64_t SlotSize = TD->getPointerSize();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002008 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002009 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002010 }
2011
Evan Cheng25ab6902006-09-08 06:48:29 +00002012 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002013}
2014
2015
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002016/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2017/// specific condition code, returning the condition code and the LHS/RHS of the
2018/// comparison to make.
2019static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2020 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002021 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002022 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2023 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2024 // X > -1 -> X == 0, jump !sign.
2025 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002026 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002027 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2028 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002029 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002030 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002031 // X < 1 -> X <= 0
2032 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002033 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002034 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002035 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002036
Evan Chengd9558e02006-01-06 00:43:03 +00002037 switch (SetCCOpcode) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002038 default: assert(0 && "Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002039 case ISD::SETEQ: return X86::COND_E;
2040 case ISD::SETGT: return X86::COND_G;
2041 case ISD::SETGE: return X86::COND_GE;
2042 case ISD::SETLT: return X86::COND_L;
2043 case ISD::SETLE: return X86::COND_LE;
2044 case ISD::SETNE: return X86::COND_NE;
2045 case ISD::SETULT: return X86::COND_B;
2046 case ISD::SETUGT: return X86::COND_A;
2047 case ISD::SETULE: return X86::COND_BE;
2048 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002049 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002050 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002051
Chris Lattner4c78e022008-12-23 23:42:27 +00002052 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002053
Chris Lattner4c78e022008-12-23 23:42:27 +00002054 // If LHS is a foldable load, but RHS is not, flip the condition.
2055 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2056 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2057 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2058 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002059 }
2060
Chris Lattner4c78e022008-12-23 23:42:27 +00002061 switch (SetCCOpcode) {
2062 default: break;
2063 case ISD::SETOLT:
2064 case ISD::SETOLE:
2065 case ISD::SETUGT:
2066 case ISD::SETUGE:
2067 std::swap(LHS, RHS);
2068 break;
2069 }
2070
2071 // On a floating point condition, the flags are set as follows:
2072 // ZF PF CF op
2073 // 0 | 0 | 0 | X > Y
2074 // 0 | 0 | 1 | X < Y
2075 // 1 | 0 | 0 | X == Y
2076 // 1 | 1 | 1 | unordered
2077 switch (SetCCOpcode) {
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002078 default: assert(0 && "Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002079 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002080 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002081 case ISD::SETOLT: // flipped
2082 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002083 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002084 case ISD::SETOLE: // flipped
2085 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002086 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002087 case ISD::SETUGT: // flipped
2088 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002089 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002090 case ISD::SETUGE: // flipped
2091 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002092 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002093 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002094 case ISD::SETNE: return X86::COND_NE;
2095 case ISD::SETUO: return X86::COND_P;
2096 case ISD::SETO: return X86::COND_NP;
Chris Lattner4c78e022008-12-23 23:42:27 +00002097 }
Evan Chengd9558e02006-01-06 00:43:03 +00002098}
2099
Evan Cheng4a460802006-01-11 00:33:36 +00002100/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2101/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002102/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002103static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002104 switch (X86CC) {
2105 default:
2106 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002107 case X86::COND_B:
2108 case X86::COND_BE:
2109 case X86::COND_E:
2110 case X86::COND_P:
2111 case X86::COND_A:
2112 case X86::COND_AE:
2113 case X86::COND_NE:
2114 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002115 return true;
2116 }
2117}
2118
Nate Begeman9008ca62009-04-27 18:41:29 +00002119/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2120/// the specified range (L, H].
2121static bool isUndefOrInRange(int Val, int Low, int Hi) {
2122 return (Val < 0) || (Val >= Low && Val < Hi);
2123}
2124
2125/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2126/// specified value.
2127static bool isUndefOrEqual(int Val, int CmpVal) {
2128 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002129 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002130 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002131}
2132
Nate Begeman9008ca62009-04-27 18:41:29 +00002133/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2134/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2135/// the second operand.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002136static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, MVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002137 if (VT == MVT::v4f32 || VT == MVT::v4i32 || VT == MVT::v4i16)
2138 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
2139 if (VT == MVT::v2f64 || VT == MVT::v2i64)
2140 return (Mask[0] < 2 && Mask[1] < 2);
2141 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002142}
2143
Nate Begeman9008ca62009-04-27 18:41:29 +00002144bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
2145 SmallVector<int, 8> M;
2146 N->getMask(M);
2147 return ::isPSHUFDMask(M, N->getValueType(0));
2148}
Evan Cheng0188ecb2006-03-22 18:59:22 +00002149
Nate Begeman9008ca62009-04-27 18:41:29 +00002150/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
2151/// is suitable for input to PSHUFHW.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002152static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, MVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002153 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002154 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002155
2156 // Lower quadword copied in order or undef.
2157 for (int i = 0; i != 4; ++i)
2158 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002159 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002160
Evan Cheng506d3df2006-03-29 23:07:14 +00002161 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002162 for (int i = 4; i != 8; ++i)
2163 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00002164 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002165
Evan Cheng506d3df2006-03-29 23:07:14 +00002166 return true;
2167}
2168
Nate Begeman9008ca62009-04-27 18:41:29 +00002169bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
2170 SmallVector<int, 8> M;
2171 N->getMask(M);
2172 return ::isPSHUFHWMask(M, N->getValueType(0));
2173}
Evan Cheng506d3df2006-03-29 23:07:14 +00002174
Nate Begeman9008ca62009-04-27 18:41:29 +00002175/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
2176/// is suitable for input to PSHUFLW.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002177static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, MVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002178 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00002179 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002180
Rafael Espindola15684b22009-04-24 12:40:33 +00002181 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00002182 for (int i = 4; i != 8; ++i)
2183 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00002184 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002185
Rafael Espindola15684b22009-04-24 12:40:33 +00002186 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002187 for (int i = 0; i != 4; ++i)
2188 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00002189 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002190
Rafael Espindola15684b22009-04-24 12:40:33 +00002191 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00002192}
2193
Nate Begeman9008ca62009-04-27 18:41:29 +00002194bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
2195 SmallVector<int, 8> M;
2196 N->getMask(M);
2197 return ::isPSHUFLWMask(M, N->getValueType(0));
2198}
2199
Evan Cheng14aed5e2006-03-24 01:18:28 +00002200/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2201/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002202static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, MVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002203 int NumElems = VT.getVectorNumElements();
2204 if (NumElems != 2 && NumElems != 4)
2205 return false;
2206
2207 int Half = NumElems / 2;
2208 for (int i = 0; i < Half; ++i)
2209 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002210 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002211 for (int i = Half; i < NumElems; ++i)
2212 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002213 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002214
Evan Cheng14aed5e2006-03-24 01:18:28 +00002215 return true;
2216}
2217
Nate Begeman9008ca62009-04-27 18:41:29 +00002218bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
2219 SmallVector<int, 8> M;
2220 N->getMask(M);
2221 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002222}
2223
Evan Cheng213d2cf2007-05-17 18:45:50 +00002224/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00002225/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2226/// half elements to come from vector 1 (which would equal the dest.) and
2227/// the upper half to come from vector 2.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002228static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, MVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002229 int NumElems = VT.getVectorNumElements();
2230
2231 if (NumElems != 2 && NumElems != 4)
2232 return false;
2233
2234 int Half = NumElems / 2;
2235 for (int i = 0; i < Half; ++i)
2236 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002237 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002238 for (int i = Half; i < NumElems; ++i)
2239 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002240 return false;
2241 return true;
2242}
2243
Nate Begeman9008ca62009-04-27 18:41:29 +00002244static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
2245 SmallVector<int, 8> M;
2246 N->getMask(M);
2247 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002248}
2249
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002250/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2251/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00002252bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
2253 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002254 return false;
2255
Evan Cheng2064a2b2006-03-28 06:50:32 +00002256 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00002257 return isUndefOrEqual(N->getMaskElt(0), 6) &&
2258 isUndefOrEqual(N->getMaskElt(1), 7) &&
2259 isUndefOrEqual(N->getMaskElt(2), 2) &&
2260 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00002261}
2262
Evan Cheng5ced1d82006-04-06 23:23:56 +00002263/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
2264/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00002265bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
2266 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00002267
Evan Cheng5ced1d82006-04-06 23:23:56 +00002268 if (NumElems != 2 && NumElems != 4)
2269 return false;
2270
Evan Chengc5cdff22006-04-07 21:53:05 +00002271 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00002272 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00002273 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002274
Evan Chengc5cdff22006-04-07 21:53:05 +00002275 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00002276 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00002277 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002278
2279 return true;
2280}
2281
2282/// isMOVHPMask - Return true if the specified VECTOR_SHUFFLE operand
Evan Cheng533a0aa2006-04-19 20:35:22 +00002283/// specifies a shuffle of elements that is suitable for input to MOVHP{S|D}
2284/// and MOVLHPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00002285bool X86::isMOVHPMask(ShuffleVectorSDNode *N) {
2286 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00002287
Evan Cheng5ced1d82006-04-06 23:23:56 +00002288 if (NumElems != 2 && NumElems != 4)
2289 return false;
2290
Evan Chengc5cdff22006-04-07 21:53:05 +00002291 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00002292 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00002293 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002294
Nate Begeman9008ca62009-04-27 18:41:29 +00002295 for (unsigned i = 0; i < NumElems/2; ++i)
2296 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00002297 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002298
2299 return true;
2300}
2301
Nate Begeman9008ca62009-04-27 18:41:29 +00002302/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2303/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2304/// <2, 3, 2, 3>
2305bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
2306 unsigned NumElems = N->getValueType(0).getVectorNumElements();
2307
2308 if (NumElems != 4)
2309 return false;
2310
2311 return isUndefOrEqual(N->getMaskElt(0), 2) &&
2312 isUndefOrEqual(N->getMaskElt(1), 3) &&
2313 isUndefOrEqual(N->getMaskElt(2), 2) &&
2314 isUndefOrEqual(N->getMaskElt(3), 3);
2315}
2316
Evan Cheng0038e592006-03-28 00:39:58 +00002317/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
2318/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002319static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, MVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00002320 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002321 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00002322 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00002323 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002324
2325 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
2326 int BitI = Mask[i];
2327 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00002328 if (!isUndefOrEqual(BitI, j))
2329 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00002330 if (V2IsSplat) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00002331 if (!isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00002332 return false;
2333 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00002334 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00002335 return false;
2336 }
Evan Cheng0038e592006-03-28 00:39:58 +00002337 }
Evan Cheng0038e592006-03-28 00:39:58 +00002338 return true;
2339}
2340
Nate Begeman9008ca62009-04-27 18:41:29 +00002341bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
2342 SmallVector<int, 8> M;
2343 N->getMask(M);
2344 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00002345}
2346
Evan Cheng4fcb9222006-03-28 02:43:26 +00002347/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
2348/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002349static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, MVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00002350 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002351 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00002352 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00002353 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002354
2355 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
2356 int BitI = Mask[i];
2357 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00002358 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00002359 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00002360 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00002361 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00002362 return false;
2363 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00002364 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00002365 return false;
2366 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00002367 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00002368 return true;
2369}
2370
Nate Begeman9008ca62009-04-27 18:41:29 +00002371bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
2372 SmallVector<int, 8> M;
2373 N->getMask(M);
2374 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00002375}
2376
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002377/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
2378/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
2379/// <0, 0, 1, 1>
Nate Begeman5a5ca152009-04-29 05:20:52 +00002380static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, MVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002381 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002382 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002383 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002384
2385 for (int i = 0, j = 0; i != NumElems; i += 2, ++j) {
2386 int BitI = Mask[i];
2387 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00002388 if (!isUndefOrEqual(BitI, j))
2389 return false;
2390 if (!isUndefOrEqual(BitI1, j))
2391 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002392 }
Rafael Espindola15684b22009-04-24 12:40:33 +00002393 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00002394}
2395
Nate Begeman9008ca62009-04-27 18:41:29 +00002396bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
2397 SmallVector<int, 8> M;
2398 N->getMask(M);
2399 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
2400}
2401
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002402/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
2403/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
2404/// <2, 2, 3, 3>
Nate Begeman5a5ca152009-04-29 05:20:52 +00002405static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, MVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002406 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002407 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2408 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002409
2410 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
2411 int BitI = Mask[i];
2412 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002413 if (!isUndefOrEqual(BitI, j))
2414 return false;
2415 if (!isUndefOrEqual(BitI1, j))
2416 return false;
2417 }
Rafael Espindola15684b22009-04-24 12:40:33 +00002418 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00002419}
2420
Nate Begeman9008ca62009-04-27 18:41:29 +00002421bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
2422 SmallVector<int, 8> M;
2423 N->getMask(M);
2424 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
2425}
2426
Evan Cheng017dcc62006-04-21 01:05:10 +00002427/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
2428/// specifies a shuffle of elements that is suitable for input to MOVSS,
2429/// MOVSD, and MOVD, i.e. setting the lowest element.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002430static bool isMOVLMask(const SmallVectorImpl<int> &Mask, MVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00002431 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00002432 return false;
Eli Friedman10415532009-06-06 06:05:10 +00002433
2434 int NumElts = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00002435
2436 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00002437 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002438
2439 for (int i = 1; i < NumElts; ++i)
2440 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00002441 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002442
Evan Chengd6d1cbd2006-04-11 00:19:04 +00002443 return true;
2444}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002445
Nate Begeman9008ca62009-04-27 18:41:29 +00002446bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
2447 SmallVector<int, 8> M;
2448 N->getMask(M);
2449 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002450}
2451
Evan Cheng017dcc62006-04-21 01:05:10 +00002452/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
2453/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00002454/// element of vector 2 and the other elements to come from vector 1 in order.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002455static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, MVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00002456 bool V2IsSplat = false, bool V2IsUndef = false) {
2457 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00002458 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00002459 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002460
2461 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00002462 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002463
2464 for (int i = 1; i < NumOps; ++i)
2465 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
2466 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
2467 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00002468 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002469
Evan Cheng39623da2006-04-20 08:58:49 +00002470 return true;
2471}
2472
Nate Begeman9008ca62009-04-27 18:41:29 +00002473static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00002474 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002475 SmallVector<int, 8> M;
2476 N->getMask(M);
2477 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00002478}
2479
Evan Chengd9539472006-04-14 21:59:03 +00002480/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2481/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00002482bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
2483 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00002484 return false;
2485
2486 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00002487 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002488 int Elt = N->getMaskElt(i);
2489 if (Elt >= 0 && Elt != 1)
2490 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00002491 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002492
2493 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00002494 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002495 int Elt = N->getMaskElt(i);
2496 if (Elt >= 0 && Elt != 3)
2497 return false;
2498 if (Elt == 3)
2499 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00002500 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002501 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00002502 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002503 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00002504}
2505
2506/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2507/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00002508bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
2509 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00002510 return false;
2511
2512 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00002513 for (unsigned i = 0; i < 2; ++i)
2514 if (N->getMaskElt(i) > 0)
2515 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002516
2517 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00002518 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002519 int Elt = N->getMaskElt(i);
2520 if (Elt >= 0 && Elt != 2)
2521 return false;
2522 if (Elt == 2)
2523 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00002524 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002525 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002526 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00002527}
2528
Evan Cheng0b457f02008-09-25 20:50:48 +00002529/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2530/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00002531bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
2532 int e = N->getValueType(0).getVectorNumElements() / 2;
2533
2534 for (int i = 0; i < e; ++i)
2535 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00002536 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002537 for (int i = 0; i < e; ++i)
2538 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00002539 return false;
2540 return true;
2541}
2542
Evan Cheng63d33002006-03-22 08:01:21 +00002543/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
2544/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUF* and SHUFP*
2545/// instructions.
2546unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002547 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
2548 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
2549
Evan Chengb9df0ca2006-03-22 02:53:00 +00002550 unsigned Shift = (NumOperands == 4) ? 2 : 1;
2551 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00002552 for (int i = 0; i < NumOperands; ++i) {
2553 int Val = SVOp->getMaskElt(NumOperands-i-1);
2554 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00002555 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00002556 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00002557 if (i != NumOperands - 1)
2558 Mask <<= Shift;
2559 }
Evan Cheng63d33002006-03-22 08:01:21 +00002560 return Mask;
2561}
2562
Evan Cheng506d3df2006-03-29 23:07:14 +00002563/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
2564/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFHW
2565/// instructions.
2566unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002567 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00002568 unsigned Mask = 0;
2569 // 8 nodes, but we only care about the last 4.
2570 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002571 int Val = SVOp->getMaskElt(i);
2572 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00002573 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00002574 if (i != 4)
2575 Mask <<= 2;
2576 }
Evan Cheng506d3df2006-03-29 23:07:14 +00002577 return Mask;
2578}
2579
2580/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
2581/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFLW
2582/// instructions.
2583unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002584 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00002585 unsigned Mask = 0;
2586 // 8 nodes, but we only care about the first 4.
2587 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002588 int Val = SVOp->getMaskElt(i);
2589 if (Val >= 0)
2590 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00002591 if (i != 0)
2592 Mask <<= 2;
2593 }
Evan Cheng506d3df2006-03-29 23:07:14 +00002594 return Mask;
2595}
2596
Nate Begeman9008ca62009-04-27 18:41:29 +00002597/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
2598/// their permute mask.
2599static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
2600 SelectionDAG &DAG) {
2601 MVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002602 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00002603 SmallVector<int, 8> MaskVec;
2604
Nate Begeman5a5ca152009-04-29 05:20:52 +00002605 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002606 int idx = SVOp->getMaskElt(i);
2607 if (idx < 0)
2608 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002609 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00002610 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00002611 else
Nate Begeman9008ca62009-04-27 18:41:29 +00002612 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00002613 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002614 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
2615 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00002616}
2617
Evan Cheng779ccea2007-12-07 21:30:01 +00002618/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
2619/// the two vector operands have swapped position.
Nate Begeman9008ca62009-04-27 18:41:29 +00002620static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, MVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00002621 unsigned NumElems = VT.getVectorNumElements();
2622 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002623 int idx = Mask[i];
2624 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002625 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002626 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00002627 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002628 else
Nate Begeman9008ca62009-04-27 18:41:29 +00002629 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002630 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002631}
2632
Evan Cheng533a0aa2006-04-19 20:35:22 +00002633/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
2634/// match movhlps. The lower half elements should come from upper half of
2635/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002636/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00002637static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
2638 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00002639 return false;
2640 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00002641 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00002642 return false;
2643 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00002644 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00002645 return false;
2646 return true;
2647}
2648
Evan Cheng5ced1d82006-04-06 23:23:56 +00002649/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00002650/// is promoted to a vector. It also returns the LoadSDNode by reference if
2651/// required.
2652static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00002653 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
2654 return false;
2655 N = N->getOperand(0).getNode();
2656 if (!ISD::isNON_EXTLoad(N))
2657 return false;
2658 if (LD)
2659 *LD = cast<LoadSDNode>(N);
2660 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002661}
2662
Evan Cheng533a0aa2006-04-19 20:35:22 +00002663/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
2664/// match movlp{s|d}. The lower half elements should come from lower half of
2665/// V1 (and in order), and the upper half elements should come from the upper
2666/// half of V2 (and in order). And since V1 will become the source of the
2667/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00002668static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
2669 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00002670 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00002671 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00002672 // Is V2 is a vector load, don't do this transformation. We will try to use
2673 // load folding shufps op.
2674 if (ISD::isNON_EXTLoad(V2))
2675 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002676
Nate Begeman5a5ca152009-04-29 05:20:52 +00002677 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00002678
Evan Cheng533a0aa2006-04-19 20:35:22 +00002679 if (NumElems != 2 && NumElems != 4)
2680 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002681 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00002682 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00002683 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00002684 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00002685 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00002686 return false;
2687 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002688}
2689
Evan Cheng39623da2006-04-20 08:58:49 +00002690/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
2691/// all the same.
2692static bool isSplatVector(SDNode *N) {
2693 if (N->getOpcode() != ISD::BUILD_VECTOR)
2694 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002695
Dan Gohman475871a2008-07-27 21:46:04 +00002696 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00002697 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
2698 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002699 return false;
2700 return true;
2701}
2702
Evan Cheng213d2cf2007-05-17 18:45:50 +00002703/// isZeroNode - Returns true if Elt is a constant zero or a floating point
2704/// constant +0.0.
Dan Gohman475871a2008-07-27 21:46:04 +00002705static inline bool isZeroNode(SDValue Elt) {
Evan Cheng213d2cf2007-05-17 18:45:50 +00002706 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002707 cast<ConstantSDNode>(Elt)->getZExtValue() == 0) ||
Evan Cheng213d2cf2007-05-17 18:45:50 +00002708 (isa<ConstantFPSDNode>(Elt) &&
Dale Johanneseneaf08942007-08-31 04:03:46 +00002709 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
Evan Cheng213d2cf2007-05-17 18:45:50 +00002710}
2711
2712/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Nate Begeman9008ca62009-04-27 18:41:29 +00002713/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00002714/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00002715static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00002716 SDValue V1 = N->getOperand(0);
2717 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002718 unsigned NumElems = N->getValueType(0).getVectorNumElements();
2719 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002720 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002721 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002722 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00002723 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
2724 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00002725 if (Opc != ISD::BUILD_VECTOR || !isZeroNode(V2.getOperand(Idx-NumElems)))
2726 return false;
2727 } else if (Idx >= 0) {
2728 unsigned Opc = V1.getOpcode();
2729 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
2730 continue;
2731 if (Opc != ISD::BUILD_VECTOR || !isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00002732 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00002733 }
2734 }
2735 return true;
2736}
2737
2738/// getZeroVector - Returns a vector of specified type with all zero elements.
2739///
Dale Johannesenace16102009-02-03 19:33:06 +00002740static SDValue getZeroVector(MVT VT, bool HasSSE2, SelectionDAG &DAG,
2741 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002742 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00002743
Chris Lattner8a594482007-11-25 00:24:49 +00002744 // Always build zero vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2745 // type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00002746 SDValue Vec;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002747 if (VT.getSizeInBits() == 64) { // MMX
Dan Gohman475871a2008-07-27 21:46:04 +00002748 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Chenga87008d2009-02-25 22:49:59 +00002749 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Chengf0df0312008-05-15 08:39:06 +00002750 } else if (HasSSE2) { // SSE2
Dan Gohman475871a2008-07-27 21:46:04 +00002751 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Chenga87008d2009-02-25 22:49:59 +00002752 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Chengf0df0312008-05-15 08:39:06 +00002753 } else { // SSE1
Dan Gohman475871a2008-07-27 21:46:04 +00002754 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Evan Chenga87008d2009-02-25 22:49:59 +00002755 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
Evan Chengf0df0312008-05-15 08:39:06 +00002756 }
Dale Johannesenace16102009-02-03 19:33:06 +00002757 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00002758}
2759
Chris Lattner8a594482007-11-25 00:24:49 +00002760/// getOnesVector - Returns a vector of specified type with all bits set.
2761///
Dale Johannesenace16102009-02-03 19:33:06 +00002762static SDValue getOnesVector(MVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002763 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00002764
Chris Lattner8a594482007-11-25 00:24:49 +00002765 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2766 // type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00002767 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
2768 SDValue Vec;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002769 if (VT.getSizeInBits() == 64) // MMX
Evan Chenga87008d2009-02-25 22:49:59 +00002770 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Chris Lattner8a594482007-11-25 00:24:49 +00002771 else // SSE
Evan Chenga87008d2009-02-25 22:49:59 +00002772 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dale Johannesenace16102009-02-03 19:33:06 +00002773 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00002774}
2775
2776
Evan Cheng39623da2006-04-20 08:58:49 +00002777/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
2778/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00002779static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
2780 MVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00002781 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00002782
Evan Cheng39623da2006-04-20 08:58:49 +00002783 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002784 SmallVector<int, 8> MaskVec;
2785 SVOp->getMask(MaskVec);
2786
Nate Begeman5a5ca152009-04-29 05:20:52 +00002787 for (unsigned i = 0; i != NumElems; ++i) {
2788 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002789 MaskVec[i] = NumElems;
2790 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00002791 }
Evan Cheng39623da2006-04-20 08:58:49 +00002792 }
Evan Cheng39623da2006-04-20 08:58:49 +00002793 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00002794 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
2795 SVOp->getOperand(1), &MaskVec[0]);
2796 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00002797}
2798
Evan Cheng017dcc62006-04-21 01:05:10 +00002799/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
2800/// operation of specified width.
Nate Begeman9008ca62009-04-27 18:41:29 +00002801static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, MVT VT, SDValue V1,
2802 SDValue V2) {
2803 unsigned NumElems = VT.getVectorNumElements();
2804 SmallVector<int, 8> Mask;
2805 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00002806 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00002807 Mask.push_back(i);
2808 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00002809}
2810
Nate Begeman9008ca62009-04-27 18:41:29 +00002811/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
2812static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, MVT VT, SDValue V1,
2813 SDValue V2) {
2814 unsigned NumElems = VT.getVectorNumElements();
2815 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00002816 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002817 Mask.push_back(i);
2818 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00002819 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002820 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00002821}
2822
Nate Begeman9008ca62009-04-27 18:41:29 +00002823/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
2824static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, MVT VT, SDValue V1,
2825 SDValue V2) {
2826 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00002827 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00002828 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00002829 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002830 Mask.push_back(i + Half);
2831 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00002832 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002833 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00002834}
2835
Evan Cheng0c0f83f2008-04-05 00:30:36 +00002836/// PromoteSplat - Promote a splat of v4f32, v8i16 or v16i8 to v4i32.
Nate Begeman9008ca62009-04-27 18:41:29 +00002837static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG,
2838 bool HasSSE2) {
2839 if (SV->getValueType(0).getVectorNumElements() <= 4)
2840 return SDValue(SV, 0);
2841
2842 MVT PVT = MVT::v4f32;
2843 MVT VT = SV->getValueType(0);
2844 DebugLoc dl = SV->getDebugLoc();
2845 SDValue V1 = SV->getOperand(0);
2846 int NumElems = VT.getVectorNumElements();
2847 int EltNo = SV->getSplatIndex();
Rafael Espindola15684b22009-04-24 12:40:33 +00002848
Nate Begeman9008ca62009-04-27 18:41:29 +00002849 // unpack elements to the correct location
2850 while (NumElems > 4) {
2851 if (EltNo < NumElems/2) {
2852 V1 = getUnpackl(DAG, dl, VT, V1, V1);
2853 } else {
2854 V1 = getUnpackh(DAG, dl, VT, V1, V1);
2855 EltNo -= NumElems/2;
2856 }
2857 NumElems >>= 1;
2858 }
2859
2860 // Perform the splat.
2861 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Dale Johannesenace16102009-02-03 19:33:06 +00002862 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
Nate Begeman9008ca62009-04-27 18:41:29 +00002863 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
2864 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, V1);
Evan Chengc575ca22006-04-17 20:43:08 +00002865}
2866
Evan Chengba05f722006-04-21 23:03:30 +00002867/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00002868/// vector of zero or undef vector. This produces a shuffle where the low
2869/// element of V2 is swizzled into the zero/undef vector, landing at element
2870/// Idx. This produces a shuffle mask like 4,1,2,3 (idx=0) or 0,1,2,4 (idx=3).
Dan Gohman475871a2008-07-27 21:46:04 +00002871static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00002872 bool isZero, bool HasSSE2,
2873 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002874 MVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00002875 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00002876 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
2877 unsigned NumElems = VT.getVectorNumElements();
2878 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00002879 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00002880 // If this is the insertion idx, put the low elt of V2 here.
2881 MaskVec.push_back(i == Idx ? NumElems : i);
2882 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00002883}
2884
Evan Chengf26ffe92008-05-29 08:22:04 +00002885/// getNumOfConsecutiveZeros - Return the number of elements in a result of
2886/// a shuffle that is zero.
2887static
Nate Begeman9008ca62009-04-27 18:41:29 +00002888unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp, int NumElems,
2889 bool Low, SelectionDAG &DAG) {
Evan Chengf26ffe92008-05-29 08:22:04 +00002890 unsigned NumZeros = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00002891 for (int i = 0; i < NumElems; ++i) {
Evan Chengab262272008-06-25 20:52:59 +00002892 unsigned Index = Low ? i : NumElems-i-1;
Nate Begeman9008ca62009-04-27 18:41:29 +00002893 int Idx = SVOp->getMaskElt(Index);
2894 if (Idx < 0) {
Evan Chengf26ffe92008-05-29 08:22:04 +00002895 ++NumZeros;
2896 continue;
2897 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002898 SDValue Elt = DAG.getShuffleScalarElt(SVOp, Index);
Gabor Greifba36cb52008-08-28 21:40:38 +00002899 if (Elt.getNode() && isZeroNode(Elt))
Evan Chengf26ffe92008-05-29 08:22:04 +00002900 ++NumZeros;
2901 else
2902 break;
2903 }
2904 return NumZeros;
2905}
2906
2907/// isVectorShift - Returns true if the shuffle can be implemented as a
2908/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00002909/// FIXME: split into pslldqi, psrldqi, palignr variants.
2910static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00002911 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002912 int NumElems = SVOp->getValueType(0).getVectorNumElements();
Evan Chengf26ffe92008-05-29 08:22:04 +00002913
2914 isLeft = true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002915 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems, true, DAG);
Evan Chengf26ffe92008-05-29 08:22:04 +00002916 if (!NumZeros) {
2917 isLeft = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002918 NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems, false, DAG);
Evan Chengf26ffe92008-05-29 08:22:04 +00002919 if (!NumZeros)
2920 return false;
2921 }
Evan Chengf26ffe92008-05-29 08:22:04 +00002922 bool SeenV1 = false;
2923 bool SeenV2 = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002924 for (int i = NumZeros; i < NumElems; ++i) {
2925 int Val = isLeft ? (i - NumZeros) : i;
2926 int Idx = SVOp->getMaskElt(isLeft ? i : (i - NumZeros));
2927 if (Idx < 0)
Evan Chengf26ffe92008-05-29 08:22:04 +00002928 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00002929 if (Idx < NumElems)
Evan Chengf26ffe92008-05-29 08:22:04 +00002930 SeenV1 = true;
2931 else {
Nate Begeman9008ca62009-04-27 18:41:29 +00002932 Idx -= NumElems;
Evan Chengf26ffe92008-05-29 08:22:04 +00002933 SeenV2 = true;
2934 }
Nate Begeman9008ca62009-04-27 18:41:29 +00002935 if (Idx != Val)
Evan Chengf26ffe92008-05-29 08:22:04 +00002936 return false;
2937 }
2938 if (SeenV1 && SeenV2)
2939 return false;
2940
Nate Begeman9008ca62009-04-27 18:41:29 +00002941 ShVal = SeenV1 ? SVOp->getOperand(0) : SVOp->getOperand(1);
Evan Chengf26ffe92008-05-29 08:22:04 +00002942 ShAmt = NumZeros;
2943 return true;
2944}
2945
2946
Evan Chengc78d3b42006-04-24 18:01:45 +00002947/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
2948///
Dan Gohman475871a2008-07-27 21:46:04 +00002949static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00002950 unsigned NumNonZero, unsigned NumZero,
Evan Cheng25ab6902006-09-08 06:48:29 +00002951 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00002952 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00002953 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00002954
Dale Johannesen6f38cb62009-02-07 19:59:05 +00002955 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00002956 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00002957 bool First = true;
2958 for (unsigned i = 0; i < 16; ++i) {
2959 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
2960 if (ThisIsNonZero && First) {
2961 if (NumZero)
Dale Johannesenace16102009-02-03 19:33:06 +00002962 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00002963 else
Dale Johannesene8d72302009-02-06 23:05:02 +00002964 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00002965 First = false;
2966 }
2967
2968 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00002969 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00002970 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
2971 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002972 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00002973 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00002974 }
2975 if (ThisIsNonZero) {
Dale Johannesenace16102009-02-03 19:33:06 +00002976 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
2977 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
Evan Chengc78d3b42006-04-24 18:01:45 +00002978 ThisElt, DAG.getConstant(8, MVT::i8));
2979 if (LastIsNonZero)
Dale Johannesenace16102009-02-03 19:33:06 +00002980 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00002981 } else
2982 ThisElt = LastElt;
2983
Gabor Greifba36cb52008-08-28 21:40:38 +00002984 if (ThisElt.getNode())
Dale Johannesenace16102009-02-03 19:33:06 +00002985 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00002986 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00002987 }
2988 }
2989
Dale Johannesenace16102009-02-03 19:33:06 +00002990 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00002991}
2992
Bill Wendlinga348c562007-03-22 18:42:45 +00002993/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00002994///
Dan Gohman475871a2008-07-27 21:46:04 +00002995static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00002996 unsigned NumNonZero, unsigned NumZero,
Evan Cheng25ab6902006-09-08 06:48:29 +00002997 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00002998 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00002999 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003000
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003001 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003002 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003003 bool First = true;
3004 for (unsigned i = 0; i < 8; ++i) {
3005 bool isNonZero = (NonZeros & (1 << i)) != 0;
3006 if (isNonZero) {
3007 if (First) {
3008 if (NumZero)
Dale Johannesenace16102009-02-03 19:33:06 +00003009 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003010 else
Dale Johannesene8d72302009-02-06 23:05:02 +00003011 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003012 First = false;
3013 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003014 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00003015 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00003016 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00003017 }
3018 }
3019
3020 return V;
3021}
3022
Evan Chengf26ffe92008-05-29 08:22:04 +00003023/// getVShift - Return a vector logical shift node.
3024///
Dan Gohman475871a2008-07-27 21:46:04 +00003025static SDValue getVShift(bool isLeft, MVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00003026 unsigned NumBits, SelectionDAG &DAG,
3027 const TargetLowering &TLI, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003028 bool isMMX = VT.getSizeInBits() == 64;
3029 MVT ShVT = isMMX ? MVT::v1i64 : MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00003030 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Dale Johannesenace16102009-02-03 19:33:06 +00003031 SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp);
3032 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3033 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00003034 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00003035}
3036
Dan Gohman475871a2008-07-27 21:46:04 +00003037SDValue
3038X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003039 DebugLoc dl = Op.getDebugLoc();
Chris Lattner8a594482007-11-25 00:24:49 +00003040 // All zero's are handled with pxor, all one's are handled with pcmpeqd.
Gabor Greif327ef032008-08-28 23:19:51 +00003041 if (ISD::isBuildVectorAllZeros(Op.getNode())
3042 || ISD::isBuildVectorAllOnes(Op.getNode())) {
Chris Lattner8a594482007-11-25 00:24:49 +00003043 // Canonicalize this to either <4 x i32> or <2 x i32> (SSE vs MMX) to
3044 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
3045 // eliminated on x86-32 hosts.
3046 if (Op.getValueType() == MVT::v4i32 || Op.getValueType() == MVT::v2i32)
3047 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003048
Gabor Greifba36cb52008-08-28 21:40:38 +00003049 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00003050 return getOnesVector(Op.getValueType(), DAG, dl);
3051 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00003052 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003053
Duncan Sands83ec4b62008-06-06 12:08:01 +00003054 MVT VT = Op.getValueType();
3055 MVT EVT = VT.getVectorElementType();
3056 unsigned EVTBits = EVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003057
3058 unsigned NumElems = Op.getNumOperands();
3059 unsigned NumZero = 0;
3060 unsigned NumNonZero = 0;
3061 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003062 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00003063 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003064 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003065 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00003066 if (Elt.getOpcode() == ISD::UNDEF)
3067 continue;
3068 Values.insert(Elt);
3069 if (Elt.getOpcode() != ISD::Constant &&
3070 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003071 IsAllConstants = false;
Evan Chengdb2d5242007-12-12 06:45:40 +00003072 if (isZeroNode(Elt))
3073 NumZero++;
3074 else {
3075 NonZeros |= (1 << i);
3076 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003077 }
3078 }
3079
Dan Gohman7f321562007-06-25 16:23:39 +00003080 if (NumNonZero == 0) {
Chris Lattner8a594482007-11-25 00:24:49 +00003081 // All undef vector. Return an UNDEF. All zero vectors were handled above.
Dale Johannesene8d72302009-02-06 23:05:02 +00003082 return DAG.getUNDEF(VT);
Dan Gohman7f321562007-06-25 16:23:39 +00003083 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003084
Chris Lattner67f453a2008-03-09 05:42:06 +00003085 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00003086 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00003087 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00003088 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00003089
Chris Lattner62098042008-03-09 01:05:04 +00003090 // If this is an insertion of an i64 value on x86-32, and if the top bits of
3091 // the value are obviously zero, truncate the value to i32 and do the
3092 // insertion that way. Only do this if the value is non-constant or if the
3093 // value is a constant being inserted into element 0. It is cheaper to do
3094 // a constant pool load than it is to do a movd + shuffle.
3095 if (EVT == MVT::i64 && !Subtarget->is64Bit() &&
3096 (!IsAllConstants || Idx == 0)) {
3097 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
3098 // Handle MMX and SSE both.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003099 MVT VecVT = VT == MVT::v2i64 ? MVT::v4i32 : MVT::v2i32;
3100 unsigned VecElts = VT == MVT::v2i64 ? 4 : 2;
Scott Michelfdc40a02009-02-17 22:15:04 +00003101
Chris Lattner62098042008-03-09 01:05:04 +00003102 // Truncate the value (which may itself be a constant) to i32, and
3103 // convert it to a vector with movd (S2V+shuffle to zero extend).
Dale Johannesenace16102009-02-03 19:33:06 +00003104 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
3105 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00003106 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3107 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00003108
Chris Lattner62098042008-03-09 01:05:04 +00003109 // Now we have our 32-bit value zero extended in the low element of
3110 // a vector. If Idx != 0, swizzle it into place.
3111 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003112 SmallVector<int, 4> Mask;
3113 Mask.push_back(Idx);
3114 for (unsigned i = 1; i != VecElts; ++i)
3115 Mask.push_back(i);
3116 Item = DAG.getVectorShuffle(VecVT, dl, Item,
3117 DAG.getUNDEF(Item.getValueType()),
3118 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003119 }
Dale Johannesenace16102009-02-03 19:33:06 +00003120 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00003121 }
3122 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003123
Chris Lattner19f79692008-03-08 22:59:52 +00003124 // If we have a constant or non-constant insertion into the low element of
3125 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
3126 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00003127 // depending on what the source datatype is.
3128 if (Idx == 0) {
3129 if (NumZero == 0) {
3130 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
3131 } else if (EVT == MVT::i32 || EVT == MVT::f32 || EVT == MVT::f64 ||
3132 (EVT == MVT::i64 && Subtarget->is64Bit())) {
3133 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
3134 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
3135 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
3136 DAG);
3137 } else if (EVT == MVT::i16 || EVT == MVT::i8) {
3138 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
3139 MVT MiddleVT = VT.getSizeInBits() == 64 ? MVT::v2i32 : MVT::v4i32;
3140 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
3141 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3142 Subtarget->hasSSE2(), DAG);
3143 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Item);
3144 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003145 }
Evan Chengf26ffe92008-05-29 08:22:04 +00003146
3147 // Is it a vector logical left shift?
3148 if (NumElems == 2 && Idx == 1 &&
3149 isZeroNode(Op.getOperand(0)) && !isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003150 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00003151 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00003152 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00003153 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00003154 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00003155 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003156
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003157 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00003158 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003159
Chris Lattner19f79692008-03-08 22:59:52 +00003160 // Otherwise, if this is a vector with i32 or f32 elements, and the element
3161 // is a non-constant being inserted into an element other than the low one,
3162 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
3163 // movd/movss) to move this into the low element, then shuffle it into
3164 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00003165 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00003166 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00003167
Evan Cheng0db9fe62006-04-25 20:13:52 +00003168 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00003169 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3170 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00003171 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003172 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00003173 MaskVec.push_back(i == Idx ? 0 : 1);
3174 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003175 }
3176 }
3177
Chris Lattner67f453a2008-03-09 05:42:06 +00003178 // Splat is obviously ok. Let legalizer expand it to a shuffle.
3179 if (Values.size() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00003180 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003181
Dan Gohmana3941172007-07-24 22:55:08 +00003182 // A vector full of immediates; various special cases are already
3183 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003184 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00003185 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00003186
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003187 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00003188 if (EVTBits == 64) {
3189 if (NumNonZero == 1) {
3190 // One half is zero or undef.
3191 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00003192 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00003193 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00003194 return getShuffleVectorZeroOrUndef(V2, Idx, true,
3195 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00003196 }
Dan Gohman475871a2008-07-27 21:46:04 +00003197 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00003198 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003199
3200 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00003201 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00003202 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00003203 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00003204 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003205 }
3206
Bill Wendling826f36f2007-03-28 00:57:11 +00003207 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00003208 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00003209 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00003210 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003211 }
3212
3213 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00003214 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00003215 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003216 if (NumElems == 4 && NumZero > 0) {
3217 for (unsigned i = 0; i < 4; ++i) {
3218 bool isZero = !(NonZeros & (1 << i));
3219 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00003220 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003221 else
Dale Johannesenace16102009-02-03 19:33:06 +00003222 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003223 }
3224
3225 for (unsigned i = 0; i < 2; ++i) {
3226 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
3227 default: break;
3228 case 0:
3229 V[i] = V[i*2]; // Must be a zero vector.
3230 break;
3231 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00003232 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003233 break;
3234 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00003235 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003236 break;
3237 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00003238 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003239 break;
3240 }
3241 }
3242
Nate Begeman9008ca62009-04-27 18:41:29 +00003243 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003244 bool Reverse = (NonZeros & 0x3) == 2;
3245 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003246 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003247 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
3248 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003249 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
3250 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003251 }
3252
3253 if (Values.size() > 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003254 // If we have SSE 4.1, Expand into a number of inserts unless the number of
3255 // values to be inserted is equal to the number of elements, in which case
3256 // use the unpack code below in the hopes of matching the consecutive elts
3257 // load merge pattern for shuffles.
3258 // FIXME: We could probably just check that here directly.
3259 if (Values.size() < NumElems && VT.getSizeInBits() == 128 &&
3260 getSubtarget()->hasSSE41()) {
3261 V[0] = DAG.getUNDEF(VT);
3262 for (unsigned i = 0; i < NumElems; ++i)
3263 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
3264 V[0] = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, V[0],
3265 Op.getOperand(i), DAG.getIntPtrConstant(i));
3266 return V[0];
3267 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003268 // Expand into a number of unpckl*.
3269 // e.g. for v4f32
3270 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
3271 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
3272 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Evan Cheng0db9fe62006-04-25 20:13:52 +00003273 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesenace16102009-02-03 19:33:06 +00003274 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003275 NumElems >>= 1;
3276 while (NumElems != 0) {
3277 for (unsigned i = 0; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003278 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + NumElems]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003279 NumElems >>= 1;
3280 }
3281 return V[0];
3282 }
3283
Dan Gohman475871a2008-07-27 21:46:04 +00003284 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003285}
3286
Nate Begemanb9a47b82009-02-23 08:49:38 +00003287// v8i16 shuffles - Prefer shuffles in the following order:
3288// 1. [all] pshuflw, pshufhw, optional move
3289// 2. [ssse3] 1 x pshufb
3290// 3. [ssse3] 2 x pshufb + 1 x por
3291// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003292static
Nate Begeman9008ca62009-04-27 18:41:29 +00003293SDValue LowerVECTOR_SHUFFLEv8i16(ShuffleVectorSDNode *SVOp,
3294 SelectionDAG &DAG, X86TargetLowering &TLI) {
3295 SDValue V1 = SVOp->getOperand(0);
3296 SDValue V2 = SVOp->getOperand(1);
3297 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00003298 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00003299
Nate Begemanb9a47b82009-02-23 08:49:38 +00003300 // Determine if more than 1 of the words in each of the low and high quadwords
3301 // of the result come from the same quadword of one of the two inputs. Undef
3302 // mask values count as coming from any quadword, for better codegen.
3303 SmallVector<unsigned, 4> LoQuad(4);
3304 SmallVector<unsigned, 4> HiQuad(4);
3305 BitVector InputQuads(4);
3306 for (unsigned i = 0; i < 8; ++i) {
3307 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00003308 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00003309 MaskVals.push_back(EltIdx);
3310 if (EltIdx < 0) {
3311 ++Quad[0];
3312 ++Quad[1];
3313 ++Quad[2];
3314 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00003315 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00003316 }
3317 ++Quad[EltIdx / 4];
3318 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00003319 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003320
Nate Begemanb9a47b82009-02-23 08:49:38 +00003321 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00003322 unsigned MaxQuad = 1;
3323 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00003324 if (LoQuad[i] > MaxQuad) {
3325 BestLoQuad = i;
3326 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003327 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003328 }
3329
Nate Begemanb9a47b82009-02-23 08:49:38 +00003330 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00003331 MaxQuad = 1;
3332 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00003333 if (HiQuad[i] > MaxQuad) {
3334 BestHiQuad = i;
3335 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003336 }
3337 }
3338
Nate Begemanb9a47b82009-02-23 08:49:38 +00003339 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
3340 // of the two input vectors, shuffle them into one input vector so only a
3341 // single pshufb instruction is necessary. If There are more than 2 input
3342 // quads, disable the next transformation since it does not help SSSE3.
3343 bool V1Used = InputQuads[0] || InputQuads[1];
3344 bool V2Used = InputQuads[2] || InputQuads[3];
3345 if (TLI.getSubtarget()->hasSSSE3()) {
3346 if (InputQuads.count() == 2 && V1Used && V2Used) {
3347 BestLoQuad = InputQuads.find_first();
3348 BestHiQuad = InputQuads.find_next(BestLoQuad);
3349 }
3350 if (InputQuads.count() > 2) {
3351 BestLoQuad = -1;
3352 BestHiQuad = -1;
3353 }
3354 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003355
Nate Begemanb9a47b82009-02-23 08:49:38 +00003356 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
3357 // the shuffle mask. If a quad is scored as -1, that means that it contains
3358 // words from all 4 input quadwords.
3359 SDValue NewV;
3360 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003361 SmallVector<int, 8> MaskV;
3362 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
3363 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
3364 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
3365 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1),
3366 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), &MaskV[0]);
Dale Johannesenace16102009-02-03 19:33:06 +00003367 NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00003368
Nate Begemanb9a47b82009-02-23 08:49:38 +00003369 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
3370 // source words for the shuffle, to aid later transformations.
3371 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00003372 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00003373 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00003374 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00003375 if (idx != (int)i)
3376 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00003377 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00003378 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00003379 AllWordsInNewV = false;
3380 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00003381 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003382
Nate Begemanb9a47b82009-02-23 08:49:38 +00003383 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
3384 if (AllWordsInNewV) {
3385 for (int i = 0; i != 8; ++i) {
3386 int idx = MaskVals[i];
3387 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00003388 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00003389 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
3390 if ((idx != i) && idx < 4)
3391 pshufhw = false;
3392 if ((idx != i) && idx > 3)
3393 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00003394 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00003395 V1 = NewV;
3396 V2Used = false;
3397 BestLoQuad = 0;
3398 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003399 }
Evan Cheng14b32e12007-12-11 01:46:18 +00003400
Nate Begemanb9a47b82009-02-23 08:49:38 +00003401 // If we've eliminated the use of V2, and the new mask is a pshuflw or
3402 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00003403 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003404 return DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
3405 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Evan Cheng14b32e12007-12-11 01:46:18 +00003406 }
Evan Cheng14b32e12007-12-11 01:46:18 +00003407 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00003408
3409 // If we have SSSE3, and all words of the result are from 1 input vector,
3410 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
3411 // is present, fall back to case 4.
3412 if (TLI.getSubtarget()->hasSSSE3()) {
3413 SmallVector<SDValue,16> pshufbMask;
3414
3415 // If we have elements from both input vectors, set the high bit of the
3416 // shuffle mask element to zero out elements that come from V2 in the V1
3417 // mask, and elements that come from V1 in the V2 mask, so that the two
3418 // results can be OR'd together.
3419 bool TwoInputs = V1Used && V2Used;
3420 for (unsigned i = 0; i != 8; ++i) {
3421 int EltIdx = MaskVals[i] * 2;
3422 if (TwoInputs && (EltIdx >= 16)) {
3423 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3424 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3425 continue;
3426 }
3427 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
3428 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
3429 }
3430 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V1);
3431 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00003432 DAG.getNode(ISD::BUILD_VECTOR, dl,
3433 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003434 if (!TwoInputs)
3435 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3436
3437 // Calculate the shuffle mask for the second input, shuffle it, and
3438 // OR it with the first shuffled input.
3439 pshufbMask.clear();
3440 for (unsigned i = 0; i != 8; ++i) {
3441 int EltIdx = MaskVals[i] * 2;
3442 if (EltIdx < 16) {
3443 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3444 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3445 continue;
3446 }
3447 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
3448 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
3449 }
3450 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V2);
3451 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00003452 DAG.getNode(ISD::BUILD_VECTOR, dl,
3453 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003454 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
3455 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3456 }
3457
3458 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
3459 // and update MaskVals with new element order.
3460 BitVector InOrder(8);
3461 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003462 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00003463 for (int i = 0; i != 4; ++i) {
3464 int idx = MaskVals[i];
3465 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003466 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00003467 InOrder.set(i);
3468 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003469 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00003470 InOrder.set(i);
3471 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00003472 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00003473 }
3474 }
3475 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003476 MaskV.push_back(i);
3477 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
3478 &MaskV[0]);
Nate Begemanb9a47b82009-02-23 08:49:38 +00003479 }
3480
3481 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
3482 // and update MaskVals with the new element order.
3483 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003484 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00003485 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003486 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00003487 for (unsigned i = 4; i != 8; ++i) {
3488 int idx = MaskVals[i];
3489 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003490 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00003491 InOrder.set(i);
3492 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003493 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00003494 InOrder.set(i);
3495 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00003496 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00003497 }
3498 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003499 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
3500 &MaskV[0]);
Nate Begemanb9a47b82009-02-23 08:49:38 +00003501 }
3502
3503 // In case BestHi & BestLo were both -1, which means each quadword has a word
3504 // from each of the four input quadwords, calculate the InOrder bitvector now
3505 // before falling through to the insert/extract cleanup.
3506 if (BestLoQuad == -1 && BestHiQuad == -1) {
3507 NewV = V1;
3508 for (int i = 0; i != 8; ++i)
3509 if (MaskVals[i] < 0 || MaskVals[i] == i)
3510 InOrder.set(i);
3511 }
3512
3513 // The other elements are put in the right place using pextrw and pinsrw.
3514 for (unsigned i = 0; i != 8; ++i) {
3515 if (InOrder[i])
3516 continue;
3517 int EltIdx = MaskVals[i];
3518 if (EltIdx < 0)
3519 continue;
3520 SDValue ExtOp = (EltIdx < 8)
3521 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
3522 DAG.getIntPtrConstant(EltIdx))
3523 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
3524 DAG.getIntPtrConstant(EltIdx - 8));
3525 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
3526 DAG.getIntPtrConstant(i));
3527 }
3528 return NewV;
3529}
3530
3531// v16i8 shuffles - Prefer shuffles in the following order:
3532// 1. [ssse3] 1 x pshufb
3533// 2. [ssse3] 2 x pshufb + 1 x por
3534// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
3535static
Nate Begeman9008ca62009-04-27 18:41:29 +00003536SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
3537 SelectionDAG &DAG, X86TargetLowering &TLI) {
3538 SDValue V1 = SVOp->getOperand(0);
3539 SDValue V2 = SVOp->getOperand(1);
3540 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00003541 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00003542 SVOp->getMask(MaskVals);
Nate Begemanb9a47b82009-02-23 08:49:38 +00003543
3544 // If we have SSSE3, case 1 is generated when all result bytes come from
3545 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
3546 // present, fall back to case 3.
3547 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
3548 bool V1Only = true;
3549 bool V2Only = true;
3550 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003551 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00003552 if (EltIdx < 0)
3553 continue;
3554 if (EltIdx < 16)
3555 V2Only = false;
3556 else
3557 V1Only = false;
3558 }
3559
3560 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
3561 if (TLI.getSubtarget()->hasSSSE3()) {
3562 SmallVector<SDValue,16> pshufbMask;
3563
3564 // If all result elements are from one input vector, then only translate
3565 // undef mask values to 0x80 (zero out result) in the pshufb mask.
3566 //
3567 // Otherwise, we have elements from both input vectors, and must zero out
3568 // elements that come from V2 in the first mask, and V1 in the second mask
3569 // so that we can OR them together.
3570 bool TwoInputs = !(V1Only || V2Only);
3571 for (unsigned i = 0; i != 16; ++i) {
3572 int EltIdx = MaskVals[i];
3573 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
3574 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3575 continue;
3576 }
3577 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
3578 }
3579 // If all the elements are from V2, assign it to V1 and return after
3580 // building the first pshufb.
3581 if (V2Only)
3582 V1 = V2;
3583 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00003584 DAG.getNode(ISD::BUILD_VECTOR, dl,
3585 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003586 if (!TwoInputs)
3587 return V1;
3588
3589 // Calculate the shuffle mask for the second input, shuffle it, and
3590 // OR it with the first shuffled input.
3591 pshufbMask.clear();
3592 for (unsigned i = 0; i != 16; ++i) {
3593 int EltIdx = MaskVals[i];
3594 if (EltIdx < 16) {
3595 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3596 continue;
3597 }
3598 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
3599 }
3600 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00003601 DAG.getNode(ISD::BUILD_VECTOR, dl,
3602 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003603 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
3604 }
3605
3606 // No SSSE3 - Calculate in place words and then fix all out of place words
3607 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
3608 // the 16 different words that comprise the two doublequadword input vectors.
3609 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3610 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V2);
3611 SDValue NewV = V2Only ? V2 : V1;
3612 for (int i = 0; i != 8; ++i) {
3613 int Elt0 = MaskVals[i*2];
3614 int Elt1 = MaskVals[i*2+1];
3615
3616 // This word of the result is all undef, skip it.
3617 if (Elt0 < 0 && Elt1 < 0)
3618 continue;
3619
3620 // This word of the result is already in the correct place, skip it.
3621 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
3622 continue;
3623 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
3624 continue;
3625
3626 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
3627 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
3628 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00003629
3630 // If Elt0 and Elt1 are defined, are consecutive, and can be load
3631 // using a single extract together, load it and store it.
3632 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
3633 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
3634 DAG.getIntPtrConstant(Elt1 / 2));
3635 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
3636 DAG.getIntPtrConstant(i));
3637 continue;
3638 }
3639
Nate Begemanb9a47b82009-02-23 08:49:38 +00003640 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00003641 // source byte is not also odd, shift the extracted word left 8 bits
3642 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00003643 if (Elt1 >= 0) {
3644 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
3645 DAG.getIntPtrConstant(Elt1 / 2));
3646 if ((Elt1 & 1) == 0)
3647 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
3648 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00003649 else if (Elt0 >= 0)
3650 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
3651 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003652 }
3653 // If Elt0 is defined, extract it from the appropriate source. If the
3654 // source byte is not also even, shift the extracted word right 8 bits. If
3655 // Elt1 was also defined, OR the extracted values together before
3656 // inserting them in the result.
3657 if (Elt0 >= 0) {
3658 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
3659 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
3660 if ((Elt0 & 1) != 0)
3661 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
3662 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00003663 else if (Elt1 >= 0)
3664 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
3665 DAG.getConstant(0x00FF, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003666 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
3667 : InsElt0;
3668 }
3669 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
3670 DAG.getIntPtrConstant(i));
3671 }
3672 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00003673}
3674
Evan Cheng7a831ce2007-12-15 03:00:47 +00003675/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
3676/// ones, or rewriting v4i32 / v2f32 as 2 wide ones if possible. This can be
3677/// done when every pair / quad of shuffle mask elements point to elements in
3678/// the right sequence. e.g.
Evan Cheng14b32e12007-12-11 01:46:18 +00003679/// vector_shuffle <>, <>, < 3, 4, | 10, 11, | 0, 1, | 14, 15>
3680static
Nate Begeman9008ca62009-04-27 18:41:29 +00003681SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
3682 SelectionDAG &DAG,
3683 TargetLowering &TLI, DebugLoc dl) {
3684 MVT VT = SVOp->getValueType(0);
3685 SDValue V1 = SVOp->getOperand(0);
3686 SDValue V2 = SVOp->getOperand(1);
3687 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00003688 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003689 MVT MaskVT = MVT::getIntVectorWithNumElements(NewWidth);
Duncan Sandsd038e042008-07-21 10:20:31 +00003690 MVT MaskEltVT = MaskVT.getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003691 MVT NewVT = MaskVT;
3692 switch (VT.getSimpleVT()) {
3693 default: assert(false && "Unexpected!");
Evan Cheng7a831ce2007-12-15 03:00:47 +00003694 case MVT::v4f32: NewVT = MVT::v2f64; break;
3695 case MVT::v4i32: NewVT = MVT::v2i64; break;
3696 case MVT::v8i16: NewVT = MVT::v4i32; break;
3697 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00003698 }
3699
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00003700 if (NewWidth == 2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003701 if (VT.isInteger())
Evan Cheng7a831ce2007-12-15 03:00:47 +00003702 NewVT = MVT::v2i64;
3703 else
3704 NewVT = MVT::v2f64;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00003705 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003706 int Scale = NumElems / NewWidth;
3707 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00003708 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003709 int StartIdx = -1;
3710 for (int j = 0; j < Scale; ++j) {
3711 int EltIdx = SVOp->getMaskElt(i+j);
3712 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00003713 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00003714 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00003715 StartIdx = EltIdx - (EltIdx % Scale);
3716 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00003717 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003718 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003719 if (StartIdx == -1)
3720 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00003721 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003722 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003723 }
3724
Dale Johannesenace16102009-02-03 19:33:06 +00003725 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1);
3726 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00003727 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003728}
3729
Evan Chengd880b972008-05-09 21:53:03 +00003730/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00003731///
Dan Gohman475871a2008-07-27 21:46:04 +00003732static SDValue getVZextMovL(MVT VT, MVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003733 SDValue SrcOp, SelectionDAG &DAG,
3734 const X86Subtarget *Subtarget, DebugLoc dl) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00003735 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
3736 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00003737 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00003738 LD = dyn_cast<LoadSDNode>(SrcOp);
3739 if (!LD) {
3740 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
3741 // instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003742 MVT EVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Evan Cheng7e2ff772008-05-08 00:57:18 +00003743 if ((EVT != MVT::i64 || Subtarget->is64Bit()) &&
3744 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
3745 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
3746 SrcOp.getOperand(0).getOperand(0).getValueType() == EVT) {
3747 // PR2108
3748 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Dale Johannesenace16102009-02-03 19:33:06 +00003749 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3750 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
3751 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
3752 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00003753 SrcOp.getOperand(0)
3754 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00003755 }
3756 }
3757 }
3758
Dale Johannesenace16102009-02-03 19:33:06 +00003759 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3760 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00003761 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00003762 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00003763}
3764
Evan Chengace3c172008-07-22 21:13:36 +00003765/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
3766/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00003767static SDValue
Nate Begeman9008ca62009-04-27 18:41:29 +00003768LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
3769 SDValue V1 = SVOp->getOperand(0);
3770 SDValue V2 = SVOp->getOperand(1);
3771 DebugLoc dl = SVOp->getDebugLoc();
3772 MVT VT = SVOp->getValueType(0);
3773
Evan Chengace3c172008-07-22 21:13:36 +00003774 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00003775 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00003776 SmallVector<int, 8> Mask1(4U, -1);
3777 SmallVector<int, 8> PermMask;
3778 SVOp->getMask(PermMask);
3779
Evan Chengace3c172008-07-22 21:13:36 +00003780 unsigned NumHi = 0;
3781 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00003782 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003783 int Idx = PermMask[i];
3784 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00003785 Locs[i] = std::make_pair(-1, -1);
3786 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00003787 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
3788 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00003789 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00003790 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00003791 NumLo++;
3792 } else {
3793 Locs[i] = std::make_pair(1, NumHi);
3794 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003795 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00003796 NumHi++;
3797 }
3798 }
3799 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003800
Evan Chengace3c172008-07-22 21:13:36 +00003801 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003802 // If no more than two elements come from either vector. This can be
3803 // implemented with two shuffles. First shuffle gather the elements.
3804 // The second shuffle, which takes the first shuffle as both of its
3805 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003806 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003807
Nate Begeman9008ca62009-04-27 18:41:29 +00003808 SmallVector<int, 8> Mask2(4U, -1);
3809
Evan Chengace3c172008-07-22 21:13:36 +00003810 for (unsigned i = 0; i != 4; ++i) {
3811 if (Locs[i].first == -1)
3812 continue;
3813 else {
3814 unsigned Idx = (i < 2) ? 0 : 4;
3815 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00003816 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00003817 }
3818 }
3819
Nate Begeman9008ca62009-04-27 18:41:29 +00003820 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003821 } else if (NumLo == 3 || NumHi == 3) {
3822 // Otherwise, we must have three elements from one vector, call it X, and
3823 // one element from the other, call it Y. First, use a shufps to build an
3824 // intermediate vector with the one element from Y and the element from X
3825 // that will be in the same half in the final destination (the indexes don't
3826 // matter). Then, use a shufps to build the final vector, taking the half
3827 // containing the element from Y from the intermediate, and the other half
3828 // from X.
3829 if (NumHi == 3) {
3830 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00003831 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003832 std::swap(V1, V2);
3833 }
3834
3835 // Find the element from V2.
3836 unsigned HiIndex;
3837 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003838 int Val = PermMask[HiIndex];
3839 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003840 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003841 if (Val >= 4)
3842 break;
3843 }
3844
Nate Begeman9008ca62009-04-27 18:41:29 +00003845 Mask1[0] = PermMask[HiIndex];
3846 Mask1[1] = -1;
3847 Mask1[2] = PermMask[HiIndex^1];
3848 Mask1[3] = -1;
3849 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003850
3851 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003852 Mask1[0] = PermMask[0];
3853 Mask1[1] = PermMask[1];
3854 Mask1[2] = HiIndex & 1 ? 6 : 4;
3855 Mask1[3] = HiIndex & 1 ? 4 : 6;
3856 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003857 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00003858 Mask1[0] = HiIndex & 1 ? 2 : 0;
3859 Mask1[1] = HiIndex & 1 ? 0 : 2;
3860 Mask1[2] = PermMask[2];
3861 Mask1[3] = PermMask[3];
3862 if (Mask1[2] >= 0)
3863 Mask1[2] += 4;
3864 if (Mask1[3] >= 0)
3865 Mask1[3] += 4;
3866 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003867 }
Evan Chengace3c172008-07-22 21:13:36 +00003868 }
3869
3870 // Break it into (shuffle shuffle_hi, shuffle_lo).
3871 Locs.clear();
Nate Begeman9008ca62009-04-27 18:41:29 +00003872 SmallVector<int,8> LoMask(4U, -1);
3873 SmallVector<int,8> HiMask(4U, -1);
3874
3875 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00003876 unsigned MaskIdx = 0;
3877 unsigned LoIdx = 0;
3878 unsigned HiIdx = 2;
3879 for (unsigned i = 0; i != 4; ++i) {
3880 if (i == 2) {
3881 MaskPtr = &HiMask;
3882 MaskIdx = 1;
3883 LoIdx = 0;
3884 HiIdx = 2;
3885 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003886 int Idx = PermMask[i];
3887 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00003888 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003889 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00003890 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00003891 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00003892 LoIdx++;
3893 } else {
3894 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00003895 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00003896 HiIdx++;
3897 }
3898 }
3899
Nate Begeman9008ca62009-04-27 18:41:29 +00003900 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
3901 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
3902 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00003903 for (unsigned i = 0; i != 4; ++i) {
3904 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003905 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00003906 } else {
3907 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00003908 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00003909 }
3910 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003911 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00003912}
3913
Dan Gohman475871a2008-07-27 21:46:04 +00003914SDValue
3915X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003916 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00003917 SDValue V1 = Op.getOperand(0);
3918 SDValue V2 = Op.getOperand(1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003919 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003920 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00003921 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003922 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003923 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
3924 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00003925 bool V1IsSplat = false;
3926 bool V2IsSplat = false;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003927
Nate Begeman9008ca62009-04-27 18:41:29 +00003928 if (isZeroShuffle(SVOp))
Dale Johannesenace16102009-02-03 19:33:06 +00003929 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003930
Nate Begeman9008ca62009-04-27 18:41:29 +00003931 // Promote splats to v4f32.
3932 if (SVOp->isSplat()) {
3933 if (isMMX || NumElems < 4)
3934 return Op;
3935 return PromoteSplat(SVOp, DAG, Subtarget->hasSSE2());
Evan Cheng0db9fe62006-04-25 20:13:52 +00003936 }
3937
Evan Cheng7a831ce2007-12-15 03:00:47 +00003938 // If the shuffle can be profitably rewritten as a narrower shuffle, then
3939 // do it!
3940 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003941 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, *this, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00003942 if (NewOp.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00003943 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00003944 LowerVECTOR_SHUFFLE(NewOp, DAG));
Evan Cheng7a831ce2007-12-15 03:00:47 +00003945 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
3946 // FIXME: Figure out a cleaner way to do this.
3947 // Try to make use of movq to zero out the top part.
Gabor Greifba36cb52008-08-28 21:40:38 +00003948 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003949 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, *this, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00003950 if (NewOp.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003951 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
3952 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
3953 DAG, Subtarget, dl);
Evan Cheng7a831ce2007-12-15 03:00:47 +00003954 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003955 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003956 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, *this, dl);
3957 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
Evan Chengd880b972008-05-09 21:53:03 +00003958 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
Nate Begeman9008ca62009-04-27 18:41:29 +00003959 DAG, Subtarget, dl);
Evan Cheng7a831ce2007-12-15 03:00:47 +00003960 }
3961 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003962
3963 if (X86::isPSHUFDMask(SVOp))
3964 return Op;
3965
Evan Chengf26ffe92008-05-29 08:22:04 +00003966 // Check if this can be converted into a logical shift.
3967 bool isLeft = false;
3968 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00003969 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00003970 bool isShift = getSubtarget()->hasSSE2() &&
3971 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00003972 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003973 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00003974 // v_set0 + movlhps or movhlps, etc.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003975 MVT EVT = VT.getVectorElementType();
3976 ShAmt *= EVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00003977 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00003978 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003979
3980 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00003981 if (V1IsUndef)
3982 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00003983 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00003984 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Nate Begemanfb8ead02008-07-25 19:05:58 +00003985 if (!isMMX)
3986 return Op;
Evan Cheng7e2ff772008-05-08 00:57:18 +00003987 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003988
3989 // FIXME: fold these into legal mask.
3990 if (!isMMX && (X86::isMOVSHDUPMask(SVOp) ||
3991 X86::isMOVSLDUPMask(SVOp) ||
3992 X86::isMOVHLPSMask(SVOp) ||
3993 X86::isMOVHPMask(SVOp) ||
3994 X86::isMOVLPMask(SVOp)))
Evan Cheng9bbbb982006-10-25 20:48:19 +00003995 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003996
Nate Begeman9008ca62009-04-27 18:41:29 +00003997 if (ShouldXformToMOVHLPS(SVOp) ||
3998 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
3999 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004000
Evan Chengf26ffe92008-05-29 08:22:04 +00004001 if (isShift) {
4002 // No better options. Use a vshl / vsrl.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004003 MVT EVT = VT.getVectorElementType();
4004 ShAmt *= EVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00004005 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004006 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004007
Evan Cheng9eca5e82006-10-25 21:49:50 +00004008 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00004009 // FIXME: This should also accept a bitcast of a splat? Be careful, not
4010 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00004011 V1IsSplat = isSplatVector(V1.getNode());
4012 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00004013
Chris Lattner8a594482007-11-25 00:24:49 +00004014 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00004015 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004016 Op = CommuteVectorShuffle(SVOp, DAG);
4017 SVOp = cast<ShuffleVectorSDNode>(Op);
4018 V1 = SVOp->getOperand(0);
4019 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00004020 std::swap(V1IsSplat, V2IsSplat);
4021 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00004022 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00004023 }
4024
Nate Begeman9008ca62009-04-27 18:41:29 +00004025 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
4026 // Shuffling low element of v1 into undef, just return v1.
4027 if (V2IsUndef)
4028 return V1;
4029 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
4030 // the instruction selector will not match, so get a canonical MOVL with
4031 // swapped operands to undo the commute.
4032 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00004033 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004034
Nate Begeman9008ca62009-04-27 18:41:29 +00004035 if (X86::isUNPCKL_v_undef_Mask(SVOp) ||
4036 X86::isUNPCKH_v_undef_Mask(SVOp) ||
4037 X86::isUNPCKLMask(SVOp) ||
4038 X86::isUNPCKHMask(SVOp))
Evan Chengd9b8e402006-10-16 06:36:00 +00004039 return Op;
Evan Chenge1113032006-10-04 18:33:38 +00004040
Evan Cheng9bbbb982006-10-25 20:48:19 +00004041 if (V2IsSplat) {
4042 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004043 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00004044 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00004045 SDValue NewMask = NormalizeMask(SVOp, DAG);
4046 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
4047 if (NSVOp != SVOp) {
4048 if (X86::isUNPCKLMask(NSVOp, true)) {
4049 return NewMask;
4050 } else if (X86::isUNPCKHMask(NSVOp, true)) {
4051 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004052 }
4053 }
4054 }
4055
Evan Cheng9eca5e82006-10-25 21:49:50 +00004056 if (Commuted) {
4057 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00004058 // FIXME: this seems wrong.
4059 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
4060 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
4061 if (X86::isUNPCKL_v_undef_Mask(NewSVOp) ||
4062 X86::isUNPCKH_v_undef_Mask(NewSVOp) ||
4063 X86::isUNPCKLMask(NewSVOp) ||
4064 X86::isUNPCKHMask(NewSVOp))
4065 return NewOp;
Evan Cheng9eca5e82006-10-25 21:49:50 +00004066 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004067
Nate Begemanb9a47b82009-02-23 08:49:38 +00004068 // FIXME: for mmx, bitcast v2i32 to v4i16 for shuffle.
Nate Begeman9008ca62009-04-27 18:41:29 +00004069
4070 // Normalize the node to match x86 shuffle ops if needed
4071 if (!isMMX && V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
4072 return CommuteVectorShuffle(SVOp, DAG);
4073
4074 // Check for legal shuffle and return?
4075 SmallVector<int, 16> PermMask;
4076 SVOp->getMask(PermMask);
4077 if (isShuffleMaskLegal(PermMask, VT))
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004078 return Op;
Nate Begeman9008ca62009-04-27 18:41:29 +00004079
Evan Cheng14b32e12007-12-11 01:46:18 +00004080 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
4081 if (VT == MVT::v8i16) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004082 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(SVOp, DAG, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004083 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00004084 return NewOp;
4085 }
4086
Nate Begemanb9a47b82009-02-23 08:49:38 +00004087 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004088 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004089 if (NewOp.getNode())
4090 return NewOp;
4091 }
4092
Evan Chengace3c172008-07-22 21:13:36 +00004093 // Handle all 4 wide cases with a number of shuffles except for MMX.
4094 if (NumElems == 4 && !isMMX)
Nate Begeman9008ca62009-04-27 18:41:29 +00004095 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004096
Dan Gohman475871a2008-07-27 21:46:04 +00004097 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004098}
4099
Dan Gohman475871a2008-07-27 21:46:04 +00004100SDValue
4101X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004102 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004103 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004104 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004105 if (VT.getSizeInBits() == 8) {
Dale Johannesenace16102009-02-03 19:33:06 +00004106 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004107 Op.getOperand(0), Op.getOperand(1));
Dale Johannesenace16102009-02-03 19:33:06 +00004108 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004109 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00004110 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004111 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00004112 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
4113 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
4114 if (Idx == 0)
Dale Johannesenace16102009-02-03 19:33:06 +00004115 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4116 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
4117 DAG.getNode(ISD::BIT_CONVERT, dl,
4118 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00004119 Op.getOperand(0)),
4120 Op.getOperand(1)));
Dale Johannesenace16102009-02-03 19:33:06 +00004121 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004122 Op.getOperand(0), Op.getOperand(1));
Dale Johannesenace16102009-02-03 19:33:06 +00004123 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004124 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00004125 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Evan Cheng62a3f152008-03-24 21:52:23 +00004126 } else if (VT == MVT::f32) {
4127 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
4128 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00004129 // result has a single use which is a store or a bitcast to i32. And in
4130 // the case of a store, it's not worth it if the index is a constant 0,
4131 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00004132 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00004133 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00004134 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00004135 if ((User->getOpcode() != ISD::STORE ||
4136 (isa<ConstantSDNode>(Op.getOperand(1)) &&
4137 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman171c11e2008-04-16 02:32:24 +00004138 (User->getOpcode() != ISD::BIT_CONVERT ||
4139 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00004140 return SDValue();
Dale Johannesenace16102009-02-03 19:33:06 +00004141 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michelfdc40a02009-02-17 22:15:04 +00004142 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00004143 Op.getOperand(0)),
4144 Op.getOperand(1));
4145 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract);
Mon P Wangf0fcdd82009-01-15 21:10:20 +00004146 } else if (VT == MVT::i32) {
4147 // ExtractPS works with constant index.
4148 if (isa<ConstantSDNode>(Op.getOperand(1)))
4149 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00004150 }
Dan Gohman475871a2008-07-27 21:46:04 +00004151 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004152}
4153
4154
Dan Gohman475871a2008-07-27 21:46:04 +00004155SDValue
4156X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004157 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00004158 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004159
Evan Cheng62a3f152008-03-24 21:52:23 +00004160 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00004161 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004162 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00004163 return Res;
4164 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00004165
Duncan Sands83ec4b62008-06-06 12:08:01 +00004166 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004167 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004168 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004169 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004170 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004171 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004172 if (Idx == 0)
Dale Johannesenace16102009-02-03 19:33:06 +00004173 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4174 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michelfdc40a02009-02-17 22:15:04 +00004175 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004176 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00004177 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004178 // Transform it so it match pextrw which produces a 32-bit result.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004179 MVT EVT = (MVT::SimpleValueType)(VT.getSimpleVT()+1);
Dale Johannesenace16102009-02-03 19:33:06 +00004180 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00004181 Op.getOperand(0), Op.getOperand(1));
Dale Johannesenace16102009-02-03 19:33:06 +00004182 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00004183 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00004184 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004185 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004186 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004187 if (Idx == 0)
4188 return Op;
Nate Begeman9008ca62009-04-27 18:41:29 +00004189
Evan Cheng0db9fe62006-04-25 20:13:52 +00004190 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00004191 int Mask[4] = { Idx, -1, -1, -1 };
4192 MVT VVT = Op.getOperand(0).getValueType();
4193 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
4194 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00004195 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00004196 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004197 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00004198 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
4199 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
4200 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004201 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004202 if (Idx == 0)
4203 return Op;
4204
4205 // UNPCKHPD the element to the lowest double word, then movsd.
4206 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
4207 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00004208 int Mask[2] = { 1, -1 };
4209 MVT VVT = Op.getOperand(0).getValueType();
4210 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
4211 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00004212 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00004213 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004214 }
4215
Dan Gohman475871a2008-07-27 21:46:04 +00004216 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004217}
4218
Dan Gohman475871a2008-07-27 21:46:04 +00004219SDValue
4220X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG){
Duncan Sands83ec4b62008-06-06 12:08:01 +00004221 MVT VT = Op.getValueType();
4222 MVT EVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004223 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004224
Dan Gohman475871a2008-07-27 21:46:04 +00004225 SDValue N0 = Op.getOperand(0);
4226 SDValue N1 = Op.getOperand(1);
4227 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00004228
Dan Gohmanef521f12008-08-14 22:53:18 +00004229 if ((EVT.getSizeInBits() == 8 || EVT.getSizeInBits() == 16) &&
4230 isa<ConstantSDNode>(N2)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004231 unsigned Opc = (EVT.getSizeInBits() == 8) ? X86ISD::PINSRB
Nate Begemanb9a47b82009-02-23 08:49:38 +00004232 : X86ISD::PINSRW;
Nate Begeman14d12ca2008-02-11 04:19:36 +00004233 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
4234 // argument.
4235 if (N1.getValueType() != MVT::i32)
Dale Johannesenace16102009-02-03 19:33:06 +00004236 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Nate Begeman14d12ca2008-02-11 04:19:36 +00004237 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004238 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00004239 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohmanc0573b12008-08-14 22:43:26 +00004240 } else if (EVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00004241 // Bits [7:6] of the constant are the source select. This will always be
4242 // zero here. The DAG Combiner may combine an extract_elt index into these
4243 // bits. For example (insert (extract, 3), 2) could be matched by putting
4244 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00004245 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00004246 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00004247 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00004248 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004249 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Dale Johannesenace16102009-02-03 19:33:06 +00004250 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Mon P Wangf0fcdd82009-01-15 21:10:20 +00004251 } else if (EVT == MVT::i32) {
4252 // InsertPS works with constant index.
4253 if (isa<ConstantSDNode>(N2))
4254 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00004255 }
Dan Gohman475871a2008-07-27 21:46:04 +00004256 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004257}
4258
Dan Gohman475871a2008-07-27 21:46:04 +00004259SDValue
4260X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004261 MVT VT = Op.getValueType();
4262 MVT EVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004263
4264 if (Subtarget->hasSSE41())
4265 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
4266
Evan Cheng794405e2007-12-12 07:55:34 +00004267 if (EVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00004268 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00004269
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004270 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004271 SDValue N0 = Op.getOperand(0);
4272 SDValue N1 = Op.getOperand(1);
4273 SDValue N2 = Op.getOperand(2);
Evan Cheng794405e2007-12-12 07:55:34 +00004274
Eli Friedman30e71eb2009-06-06 06:32:50 +00004275 if (EVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00004276 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
4277 // as its second argument.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004278 if (N1.getValueType() != MVT::i32)
Dale Johannesenace16102009-02-03 19:33:06 +00004279 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004280 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004281 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00004282 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004283 }
Dan Gohman475871a2008-07-27 21:46:04 +00004284 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004285}
4286
Dan Gohman475871a2008-07-27 21:46:04 +00004287SDValue
4288X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004289 DebugLoc dl = Op.getDebugLoc();
Evan Cheng52672b82008-07-22 18:39:19 +00004290 if (Op.getValueType() == MVT::v2f32)
Dale Johannesenace16102009-02-03 19:33:06 +00004291 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f32,
4292 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i32,
4293 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32,
Evan Cheng52672b82008-07-22 18:39:19 +00004294 Op.getOperand(0))));
4295
Dale Johannesenace16102009-02-03 19:33:06 +00004296 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004297 MVT VT = MVT::v2i32;
4298 switch (Op.getValueType().getSimpleVT()) {
Evan Chengefec7512008-02-18 23:04:32 +00004299 default: break;
4300 case MVT::v16i8:
4301 case MVT::v8i16:
4302 VT = MVT::v4i32;
4303 break;
4304 }
Dale Johannesenace16102009-02-03 19:33:06 +00004305 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(),
4306 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004307}
4308
Bill Wendling056292f2008-09-16 21:48:12 +00004309// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
4310// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
4311// one of the above mentioned nodes. It has to be wrapped because otherwise
4312// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
4313// be used to form addressing mode. These wrapped nodes will be selected
4314// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00004315SDValue
4316X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004317 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dale Johannesende064702009-02-06 21:50:26 +00004318 // FIXME there isn't really any debug info here, should come from the parent
4319 DebugLoc dl = CP->getDebugLoc();
Evan Cheng1606e8e2009-03-13 07:51:59 +00004320 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
4321 CP->getAlignment());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004322 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004323 // With PIC, the address is actually $g + Offset.
4324 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4325 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesende064702009-02-06 21:50:26 +00004326 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004327 DAG.getNode(X86ISD::GlobalBaseReg,
4328 DebugLoc::getUnknownLoc(),
4329 getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004330 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004331 }
4332
4333 return Result;
4334}
4335
Dan Gohman475871a2008-07-27 21:46:04 +00004336SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00004337X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00004338 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00004339 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00004340 bool IsPic = getTargetMachine().getRelocationModel() == Reloc::PIC_;
4341 bool ExtraLoadRequired =
4342 Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false);
4343
4344 // Create the TargetGlobalAddress node, folding in the constant
4345 // offset if it is legal.
4346 SDValue Result;
Dan Gohman44013612008-10-21 03:38:42 +00004347 if (!IsPic && !ExtraLoadRequired && isInt32(Offset)) {
Dan Gohman6520e202008-10-18 02:06:02 +00004348 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
4349 Offset = 0;
4350 } else
4351 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), 0);
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004352 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00004353
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004354 // With PIC, the address is actually $g + Offset.
Dan Gohman6520e202008-10-18 02:06:02 +00004355 if (IsPic && !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00004356 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
4357 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004358 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004359 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004360
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00004361 // For Darwin & Mingw32, external and weak symbols are indirect, so we want to
4362 // load the value at address GV, not the value of GV itself. This means that
4363 // the GlobalAddress must be in the base or index register of the address, not
4364 // the GV offset field. Platform check is inside GVRequiresExtraLoad() call
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004365 // The same applies for external symbols during PIC codegen
Dan Gohman6520e202008-10-18 02:06:02 +00004366 if (ExtraLoadRequired)
Dale Johannesen33c960f2009-02-04 20:06:27 +00004367 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Dan Gohman3069b872008-02-07 18:41:25 +00004368 PseudoSourceValue::getGOT(), 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004369
Dan Gohman6520e202008-10-18 02:06:02 +00004370 // If there was a non-zero offset that we didn't fold, create an explicit
4371 // addition for it.
4372 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00004373 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00004374 DAG.getConstant(Offset, getPointerTy()));
4375
Evan Cheng0db9fe62006-04-25 20:13:52 +00004376 return Result;
4377}
4378
Evan Chengda43bcf2008-09-24 00:05:32 +00004379SDValue
4380X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) {
4381 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00004382 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004383 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00004384}
4385
Rafael Espindola2ee3db32009-04-17 14:35:58 +00004386static SDValue
4387GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Rafael Espindola15f1b662009-04-24 12:59:40 +00004388 SDValue *InFlag, const MVT PtrVT, unsigned ReturnReg) {
Rafael Espindola2ee3db32009-04-17 14:35:58 +00004389 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
4390 DebugLoc dl = GA->getDebugLoc();
4391 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
4392 GA->getValueType(0),
4393 GA->getOffset());
4394 if (InFlag) {
4395 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00004396 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00004397 } else {
4398 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00004399 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00004400 }
Rafael Espindola15f1b662009-04-24 12:59:40 +00004401 SDValue Flag = Chain.getValue(1);
4402 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00004403}
4404
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004405// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00004406static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004407LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004408 const MVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004409 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00004410 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
4411 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004412 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004413 DebugLoc::getUnknownLoc(),
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004414 PtrVT), InFlag);
4415 InFlag = Chain.getValue(1);
4416
Rafael Espindola15f1b662009-04-24 12:59:40 +00004417 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004418}
4419
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004420// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00004421static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004422LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004423 const MVT PtrVT) {
Rafael Espindola15f1b662009-04-24 12:59:40 +00004424 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004425}
4426
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004427// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
4428// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00004429static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00004430 const MVT PtrVT, TLSModel::Model model,
4431 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00004432 DebugLoc dl = GA->getDebugLoc();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004433 // Get the Thread Pointer
Rafael Espindola094fad32009-04-08 21:14:34 +00004434 SDValue Base = DAG.getNode(X86ISD::SegmentBaseAddress,
4435 DebugLoc::getUnknownLoc(), PtrVT,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00004436 DAG.getRegister(is64Bit? X86::FS : X86::GS,
4437 MVT::i32));
Rafael Espindola094fad32009-04-08 21:14:34 +00004438
4439 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Base,
4440 NULL, 0);
4441
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004442 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
4443 // exec)
Dan Gohman475871a2008-07-27 21:46:04 +00004444 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004445 GA->getValueType(0),
4446 GA->getOffset());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004447 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00004448
Rafael Espindola9a580232009-02-27 13:37:18 +00004449 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00004450 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Dan Gohman3069b872008-02-07 18:41:25 +00004451 PseudoSourceValue::getGOT(), 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00004452
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004453 // The address of the thread local variable is the add of the thread
4454 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00004455 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004456}
4457
Dan Gohman475871a2008-07-27 21:46:04 +00004458SDValue
4459X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004460 // TODO: implement the "local dynamic" model
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004461 // TODO: implement the "initial exec"model for pic executables
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004462 assert(Subtarget->isTargetELF() &&
4463 "TLS not implemented for non-ELF targets");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004464 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Rafael Espindola9a580232009-02-27 13:37:18 +00004465 GlobalValue *GV = GA->getGlobal();
4466 TLSModel::Model model =
4467 getTLSModel (GV, getTargetMachine().getRelocationModel());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004468 if (Subtarget->is64Bit()) {
Rafael Espindola9a580232009-02-27 13:37:18 +00004469 switch (model) {
4470 case TLSModel::GeneralDynamic:
4471 case TLSModel::LocalDynamic: // not implemented
Rafael Espindola9a580232009-02-27 13:37:18 +00004472 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00004473
4474 case TLSModel::InitialExec:
4475 case TLSModel::LocalExec:
4476 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model, true);
Rafael Espindola9a580232009-02-27 13:37:18 +00004477 }
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004478 } else {
Rafael Espindola9a580232009-02-27 13:37:18 +00004479 switch (model) {
4480 case TLSModel::GeneralDynamic:
4481 case TLSModel::LocalDynamic: // not implemented
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004482 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Rafael Espindola9a580232009-02-27 13:37:18 +00004483
4484 case TLSModel::InitialExec:
4485 case TLSModel::LocalExec:
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00004486 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model, false);
Rafael Espindola9a580232009-02-27 13:37:18 +00004487 }
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004488 }
Chris Lattner5867de12009-04-01 22:14:45 +00004489 assert(0 && "Unreachable");
4490 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004491}
4492
Dan Gohman475871a2008-07-27 21:46:04 +00004493SDValue
4494X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) {
Dale Johannesende064702009-02-06 21:50:26 +00004495 // FIXME there isn't really any debug info here
4496 DebugLoc dl = Op.getDebugLoc();
Bill Wendling056292f2008-09-16 21:48:12 +00004497 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
4498 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004499 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004500 // With PIC, the address is actually $g + Offset.
4501 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4502 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesende064702009-02-06 21:50:26 +00004503 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Scott Michelfdc40a02009-02-17 22:15:04 +00004504 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004505 DebugLoc::getUnknownLoc(),
4506 getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004507 Result);
4508 }
4509
4510 return Result;
4511}
4512
Dan Gohman475871a2008-07-27 21:46:04 +00004513SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004514 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dale Johannesende064702009-02-06 21:50:26 +00004515 // FIXME there isn't really any debug into here
4516 DebugLoc dl = JT->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004517 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004518 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004519 // With PIC, the address is actually $g + Offset.
4520 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4521 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesende064702009-02-06 21:50:26 +00004522 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004523 DAG.getNode(X86ISD::GlobalBaseReg,
4524 DebugLoc::getUnknownLoc(),
4525 getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004526 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004527 }
4528
4529 return Result;
4530}
4531
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004532/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00004533/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohman475871a2008-07-27 21:46:04 +00004534SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) {
Dan Gohman4c1fa612008-03-03 22:22:09 +00004535 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00004536 MVT VT = Op.getValueType();
4537 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004538 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004539 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00004540 SDValue ShOpLo = Op.getOperand(0);
4541 SDValue ShOpHi = Op.getOperand(1);
4542 SDValue ShAmt = Op.getOperand(2);
4543 SDValue Tmp1 = isSRA ?
Scott Michelfdc40a02009-02-17 22:15:04 +00004544 DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Dale Johannesenace16102009-02-03 19:33:06 +00004545 DAG.getConstant(VTBits - 1, MVT::i8)) :
Dan Gohman4c1fa612008-03-03 22:22:09 +00004546 DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00004547
Dan Gohman475871a2008-07-27 21:46:04 +00004548 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004549 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00004550 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
4551 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004552 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00004553 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
4554 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004555 }
Evan Chenge3413162006-01-09 18:33:28 +00004556
Dale Johannesenace16102009-02-03 19:33:06 +00004557 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
Dan Gohman4c1fa612008-03-03 22:22:09 +00004558 DAG.getConstant(VTBits, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00004559 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, VT,
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004560 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00004561
Dan Gohman475871a2008-07-27 21:46:04 +00004562 SDValue Hi, Lo;
4563 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
4564 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
4565 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00004566
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004567 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00004568 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4569 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004570 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00004571 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4572 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004573 }
4574
Dan Gohman475871a2008-07-27 21:46:04 +00004575 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00004576 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004577}
Evan Chenga3195e82006-01-12 22:54:21 +00004578
Dan Gohman475871a2008-07-27 21:46:04 +00004579SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004580 MVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00004581
4582 if (SrcVT.isVector()) {
4583 if (SrcVT == MVT::v2i32 && Op.getValueType() == MVT::v2f64) {
4584 return Op;
4585 }
4586 return SDValue();
4587 }
4588
Duncan Sands8e4eb092008-06-08 20:54:56 +00004589 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00004590 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00004591
Eli Friedman36df4992009-05-27 00:47:34 +00004592 // These are really Legal; return the operand so the caller accepts it as
4593 // Legal.
Chris Lattnerb09916b2008-02-27 05:57:41 +00004594 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00004595 return Op;
4596 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
4597 Subtarget->is64Bit()) {
4598 return Op;
4599 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004600
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004601 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004602 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004603 MachineFunction &MF = DAG.getMachineFunction();
4604 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
Dan Gohman475871a2008-07-27 21:46:04 +00004605 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00004606 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00004607 StackSlot,
4608 PseudoSourceValue::getFixedStack(SSFI), 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00004609 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
4610}
Evan Cheng0db9fe62006-04-25 20:13:52 +00004611
Eli Friedman948e95a2009-05-23 09:59:16 +00004612SDValue X86TargetLowering::BuildFILD(SDValue Op, MVT SrcVT, SDValue Chain,
4613 SDValue StackSlot,
4614 SelectionDAG &DAG) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004615 // Build the FILD
Eli Friedman948e95a2009-05-23 09:59:16 +00004616 DebugLoc dl = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00004617 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00004618 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004619 if (useSSE)
Chris Lattner5a88b832007-02-25 07:10:00 +00004620 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
4621 else
Dale Johannesen849f2142007-07-03 00:53:03 +00004622 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00004623 SmallVector<SDValue, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004624 Ops.push_back(Chain);
4625 Ops.push_back(StackSlot);
4626 Ops.push_back(DAG.getValueType(SrcVT));
Dale Johannesenace16102009-02-03 19:33:06 +00004627 SDValue Result = DAG.getNode(useSSE ? X86ISD::FILD_FLAG : X86ISD::FILD, dl,
Chris Lattnerb09916b2008-02-27 05:57:41 +00004628 Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00004629
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004630 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004631 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00004632 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004633
4634 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
4635 // shouldn't be necessary except that RFP cannot be live across
4636 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004637 MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004638 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
Dan Gohman475871a2008-07-27 21:46:04 +00004639 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Chris Lattner5a88b832007-02-25 07:10:00 +00004640 Tys = DAG.getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00004641 SmallVector<SDValue, 8> Ops;
Evan Chenga3195e82006-01-12 22:54:21 +00004642 Ops.push_back(Chain);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004643 Ops.push_back(Result);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004644 Ops.push_back(StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004645 Ops.push_back(DAG.getValueType(Op.getValueType()));
4646 Ops.push_back(InFlag);
Dale Johannesenace16102009-02-03 19:33:06 +00004647 Chain = DAG.getNode(X86ISD::FST, dl, Tys, &Ops[0], Ops.size());
4648 Result = DAG.getLoad(Op.getValueType(), dl, Chain, StackSlot,
Dan Gohmana54cf172008-07-11 22:44:52 +00004649 PseudoSourceValue::getFixedStack(SSFI), 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004650 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004651
Evan Cheng0db9fe62006-04-25 20:13:52 +00004652 return Result;
4653}
4654
Bill Wendling8b8a6362009-01-17 03:56:04 +00004655// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
4656SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op, SelectionDAG &DAG) {
4657 // This algorithm is not obvious. Here it is in C code, more or less:
4658 /*
4659 double uint64_to_double( uint32_t hi, uint32_t lo ) {
4660 static const __m128i exp = { 0x4330000045300000ULL, 0 };
4661 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00004662
Bill Wendling8b8a6362009-01-17 03:56:04 +00004663 // Copy ints to xmm registers.
4664 __m128i xh = _mm_cvtsi32_si128( hi );
4665 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00004666
Bill Wendling8b8a6362009-01-17 03:56:04 +00004667 // Combine into low half of a single xmm register.
4668 __m128i x = _mm_unpacklo_epi32( xh, xl );
4669 __m128d d;
4670 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00004671
Bill Wendling8b8a6362009-01-17 03:56:04 +00004672 // Merge in appropriate exponents to give the integer bits the right
4673 // magnitude.
4674 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00004675
Bill Wendling8b8a6362009-01-17 03:56:04 +00004676 // Subtract away the biases to deal with the IEEE-754 double precision
4677 // implicit 1.
4678 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00004679
Bill Wendling8b8a6362009-01-17 03:56:04 +00004680 // All conversions up to here are exact. The correctly rounded result is
4681 // calculated using the current rounding mode using the following
4682 // horizontal add.
4683 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
4684 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
4685 // store doesn't really need to be here (except
4686 // maybe to zero the other double)
4687 return sd;
4688 }
4689 */
Dale Johannesen040225f2008-10-21 23:07:49 +00004690
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004691 DebugLoc dl = Op.getDebugLoc();
Dale Johannesenace16102009-02-03 19:33:06 +00004692
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004693 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00004694 std::vector<Constant*> CV0;
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004695 CV0.push_back(ConstantInt::get(APInt(32, 0x45300000)));
4696 CV0.push_back(ConstantInt::get(APInt(32, 0x43300000)));
4697 CV0.push_back(ConstantInt::get(APInt(32, 0)));
4698 CV0.push_back(ConstantInt::get(APInt(32, 0)));
4699 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00004700 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004701
Bill Wendling8b8a6362009-01-17 03:56:04 +00004702 std::vector<Constant*> CV1;
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004703 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4530000000000000ULL))));
4704 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4330000000000000ULL))));
4705 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00004706 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004707
Dale Johannesenace16102009-02-03 19:33:06 +00004708 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
4709 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00004710 Op.getOperand(0),
4711 DAG.getIntPtrConstant(1)));
Dale Johannesenace16102009-02-03 19:33:06 +00004712 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
4713 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00004714 Op.getOperand(0),
4715 DAG.getIntPtrConstant(0)));
Nate Begeman9008ca62009-04-27 18:41:29 +00004716 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
Dale Johannesenace16102009-02-03 19:33:06 +00004717 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Bill Wendling8b8a6362009-01-17 03:56:04 +00004718 PseudoSourceValue::getConstantPool(), 0,
4719 false, 16);
Nate Begeman9008ca62009-04-27 18:41:29 +00004720 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Dale Johannesenace16102009-02-03 19:33:06 +00004721 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2);
4722 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Bill Wendling8b8a6362009-01-17 03:56:04 +00004723 PseudoSourceValue::getConstantPool(), 0,
4724 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00004725 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00004726
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004727 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00004728 int ShufMask[2] = { 1, -1 };
4729 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
4730 DAG.getUNDEF(MVT::v2f64), ShufMask);
Dale Johannesenace16102009-02-03 19:33:06 +00004731 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
4732 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004733 DAG.getIntPtrConstant(0));
4734}
4735
Bill Wendling8b8a6362009-01-17 03:56:04 +00004736// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
4737SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004738 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00004739 // FP constant to bias correct the final result.
4740 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
4741 MVT::f64);
4742
4743 // Load the 32-bit value into an XMM register.
Dale Johannesenace16102009-02-03 19:33:06 +00004744 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
4745 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00004746 Op.getOperand(0),
4747 DAG.getIntPtrConstant(0)));
4748
Dale Johannesenace16102009-02-03 19:33:06 +00004749 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
4750 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00004751 DAG.getIntPtrConstant(0));
4752
4753 // Or the load with the bias.
Dale Johannesenace16102009-02-03 19:33:06 +00004754 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
4755 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
4756 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Cheng50c3dfe2009-01-19 08:19:57 +00004757 MVT::v2f64, Load)),
Dale Johannesenace16102009-02-03 19:33:06 +00004758 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
4759 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Cheng50c3dfe2009-01-19 08:19:57 +00004760 MVT::v2f64, Bias)));
Dale Johannesenace16102009-02-03 19:33:06 +00004761 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
4762 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00004763 DAG.getIntPtrConstant(0));
4764
4765 // Subtract the bias.
Dale Johannesenace16102009-02-03 19:33:06 +00004766 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00004767
4768 // Handle final rounding.
Bill Wendling030939c2009-01-17 07:40:19 +00004769 MVT DestVT = Op.getValueType();
4770
4771 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00004772 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00004773 DAG.getIntPtrConstant(0));
4774 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00004775 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00004776 }
4777
4778 // Handle final rounding.
4779 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00004780}
4781
4782SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Evan Chenga06ec9e2009-01-19 08:08:22 +00004783 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004784 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00004785
Evan Chenga06ec9e2009-01-19 08:08:22 +00004786 // Now not UINT_TO_FP is legal (it's marked custom), dag combiner won't
4787 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
4788 // the optimization here.
4789 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00004790 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00004791
4792 MVT SrcVT = N0.getValueType();
Bill Wendling8b8a6362009-01-17 03:56:04 +00004793 if (SrcVT == MVT::i64) {
Eli Friedman36df4992009-05-27 00:47:34 +00004794 // We only handle SSE2 f64 target here; caller can expand the rest.
Bill Wendling8b8a6362009-01-17 03:56:04 +00004795 if (Op.getValueType() != MVT::f64 || !X86ScalarSSEf64)
Daniel Dunbar82205572009-05-26 21:27:02 +00004796 return SDValue();
Bill Wendling030939c2009-01-17 07:40:19 +00004797
Bill Wendling8b8a6362009-01-17 03:56:04 +00004798 return LowerUINT_TO_FP_i64(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00004799 } else if (SrcVT == MVT::i32 && X86ScalarSSEf64) {
Bill Wendling8b8a6362009-01-17 03:56:04 +00004800 return LowerUINT_TO_FP_i32(Op, DAG);
4801 }
4802
Eli Friedman948e95a2009-05-23 09:59:16 +00004803 assert(SrcVT == MVT::i32 && "Unknown UINT_TO_FP to lower!");
4804
4805 // Make a 64-bit buffer, and use it to build an FILD.
4806 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
4807 SDValue WordOff = DAG.getConstant(4, getPointerTy());
4808 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
4809 getPointerTy(), StackSlot, WordOff);
4810 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
4811 StackSlot, NULL, 0);
4812 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
4813 OffsetSlot, NULL, 0);
4814 return BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
Bill Wendling8b8a6362009-01-17 03:56:04 +00004815}
4816
Dan Gohman475871a2008-07-27 21:46:04 +00004817std::pair<SDValue,SDValue> X86TargetLowering::
Eli Friedman948e95a2009-05-23 09:59:16 +00004818FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004819 DebugLoc dl = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00004820
4821 MVT DstTy = Op.getValueType();
4822
4823 if (!IsSigned) {
4824 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
4825 DstTy = MVT::i64;
4826 }
4827
4828 assert(DstTy.getSimpleVT() <= MVT::i64 &&
4829 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00004830 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00004831
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004832 // These are really Legal.
Eli Friedman948e95a2009-05-23 09:59:16 +00004833 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00004834 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00004835 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00004836 if (Subtarget->is64Bit() &&
Eli Friedman948e95a2009-05-23 09:59:16 +00004837 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00004838 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00004839 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004840
Evan Cheng87c89352007-10-15 20:11:21 +00004841 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
4842 // stack slot.
4843 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00004844 unsigned MemSize = DstTy.getSizeInBits()/8;
Evan Cheng87c89352007-10-15 20:11:21 +00004845 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
Dan Gohman475871a2008-07-27 21:46:04 +00004846 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eli Friedman948e95a2009-05-23 09:59:16 +00004847
Evan Cheng0db9fe62006-04-25 20:13:52 +00004848 unsigned Opc;
Eli Friedman948e95a2009-05-23 09:59:16 +00004849 switch (DstTy.getSimpleVT()) {
Chris Lattner27a6c732007-11-24 07:07:01 +00004850 default: assert(0 && "Invalid FP_TO_SINT to lower!");
4851 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
4852 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
4853 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004854 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004855
Dan Gohman475871a2008-07-27 21:46:04 +00004856 SDValue Chain = DAG.getEntryNode();
4857 SDValue Value = Op.getOperand(0);
Chris Lattner78631162008-01-16 06:24:21 +00004858 if (isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) {
Eli Friedman948e95a2009-05-23 09:59:16 +00004859 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Dale Johannesenace16102009-02-03 19:33:06 +00004860 Chain = DAG.getStore(Chain, dl, Value, StackSlot,
Dan Gohmana54cf172008-07-11 22:44:52 +00004861 PseudoSourceValue::getFixedStack(SSFI), 0);
Dale Johannesen849f2142007-07-03 00:53:03 +00004862 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00004863 SDValue Ops[] = {
Chris Lattner5a88b832007-02-25 07:10:00 +00004864 Chain, StackSlot, DAG.getValueType(Op.getOperand(0).getValueType())
4865 };
Dale Johannesenace16102009-02-03 19:33:06 +00004866 Value = DAG.getNode(X86ISD::FLD, dl, Tys, Ops, 3);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004867 Chain = Value.getValue(1);
4868 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
4869 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
4870 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004871
Evan Cheng0db9fe62006-04-25 20:13:52 +00004872 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00004873 SDValue Ops[] = { Chain, Value, StackSlot };
Dale Johannesenace16102009-02-03 19:33:06 +00004874 SDValue FIST = DAG.getNode(Opc, dl, MVT::Other, Ops, 3);
Evan Chengd9558e02006-01-06 00:43:03 +00004875
Chris Lattner27a6c732007-11-24 07:07:01 +00004876 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004877}
4878
Dan Gohman475871a2008-07-27 21:46:04 +00004879SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) {
Eli Friedman23ef1052009-06-06 03:57:58 +00004880 if (Op.getValueType().isVector()) {
4881 if (Op.getValueType() == MVT::v2i32 &&
4882 Op.getOperand(0).getValueType() == MVT::v2f64) {
4883 return Op;
4884 }
4885 return SDValue();
4886 }
4887
Eli Friedman948e95a2009-05-23 09:59:16 +00004888 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00004889 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00004890 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
4891 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00004892
Chris Lattner27a6c732007-11-24 07:07:01 +00004893 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004894 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Dale Johannesenace16102009-02-03 19:33:06 +00004895 FIST, StackSlot, NULL, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00004896}
4897
Eli Friedman948e95a2009-05-23 09:59:16 +00004898SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op, SelectionDAG &DAG) {
4899 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
4900 SDValue FIST = Vals.first, StackSlot = Vals.second;
4901 assert(FIST.getNode() && "Unexpected failure");
4902
4903 // Load the result.
4904 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
4905 FIST, StackSlot, NULL, 0);
4906}
4907
Dan Gohman475871a2008-07-27 21:46:04 +00004908SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004909 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004910 MVT VT = Op.getValueType();
4911 MVT EltVT = VT;
4912 if (VT.isVector())
4913 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004914 std::vector<Constant*> CV;
Dan Gohman20382522007-07-10 00:05:58 +00004915 if (EltVT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004916 Constant *C = ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00004917 CV.push_back(C);
4918 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004919 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00004920 Constant *C = ConstantFP::get(APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00004921 CV.push_back(C);
4922 CV.push_back(C);
4923 CV.push_back(C);
4924 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004925 }
Dan Gohmand3006222007-07-27 17:16:43 +00004926 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00004927 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00004928 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004929 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00004930 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00004931 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004932}
4933
Dan Gohman475871a2008-07-27 21:46:04 +00004934SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004935 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004936 MVT VT = Op.getValueType();
4937 MVT EltVT = VT;
Evan Chengd4d01b72007-07-19 23:36:01 +00004938 unsigned EltNum = 1;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004939 if (VT.isVector()) {
4940 EltVT = VT.getVectorElementType();
4941 EltNum = VT.getVectorNumElements();
Evan Chengd4d01b72007-07-19 23:36:01 +00004942 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004943 std::vector<Constant*> CV;
Dan Gohman20382522007-07-10 00:05:58 +00004944 if (EltVT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004945 Constant *C = ConstantFP::get(APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00004946 CV.push_back(C);
4947 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004948 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00004949 Constant *C = ConstantFP::get(APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00004950 CV.push_back(C);
4951 CV.push_back(C);
4952 CV.push_back(C);
4953 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004954 }
Dan Gohmand3006222007-07-27 17:16:43 +00004955 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00004956 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00004957 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004958 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00004959 false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004960 if (VT.isVector()) {
Dale Johannesenace16102009-02-03 19:33:06 +00004961 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4962 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Scott Michelfdc40a02009-02-17 22:15:04 +00004963 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00004964 Op.getOperand(0)),
4965 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00004966 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00004967 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00004968 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004969}
4970
Dan Gohman475871a2008-07-27 21:46:04 +00004971SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
4972 SDValue Op0 = Op.getOperand(0);
4973 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004974 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004975 MVT VT = Op.getValueType();
4976 MVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00004977
4978 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004979 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00004980 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00004981 SrcVT = VT;
4982 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00004983 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004984 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00004985 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00004986 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00004987 }
4988
4989 // At this point the operands and the result should have the same
4990 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00004991
Evan Cheng68c47cb2007-01-05 07:55:56 +00004992 // First get the sign bit of second operand.
4993 std::vector<Constant*> CV;
4994 if (SrcVT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004995 CV.push_back(ConstantFP::get(APFloat(APInt(64, 1ULL << 63))));
4996 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00004997 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00004998 CV.push_back(ConstantFP::get(APFloat(APInt(32, 1U << 31))));
4999 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5000 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5001 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00005002 }
Dan Gohmand3006222007-07-27 17:16:43 +00005003 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00005004 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005005 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005006 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00005007 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005008 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00005009
5010 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00005011 if (SrcVT.bitsGT(VT)) {
Evan Cheng68c47cb2007-01-05 07:55:56 +00005012 // Op0 is MVT::f32, Op1 is MVT::f64.
Dale Johannesenace16102009-02-03 19:33:06 +00005013 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
5014 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
Evan Cheng68c47cb2007-01-05 07:55:56 +00005015 DAG.getConstant(32, MVT::i32));
Dale Johannesenace16102009-02-03 19:33:06 +00005016 SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit);
5017 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00005018 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00005019 }
5020
Evan Cheng73d6cf12007-01-05 21:37:56 +00005021 // Clear first operand sign bit.
5022 CV.clear();
5023 if (VT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00005024 CV.push_back(ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63)))));
5025 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00005026 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00005027 CV.push_back(ConstantFP::get(APFloat(APInt(32, ~(1U << 31)))));
5028 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5029 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5030 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00005031 }
Dan Gohmand3006222007-07-27 17:16:43 +00005032 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00005033 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005034 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005035 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00005036 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005037 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00005038
5039 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00005040 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00005041}
5042
Dan Gohman076aee32009-03-04 19:44:21 +00005043/// Emit nodes that will be selected as "test Op0,Op0", or something
5044/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00005045SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
5046 SelectionDAG &DAG) {
Dan Gohman076aee32009-03-04 19:44:21 +00005047 DebugLoc dl = Op.getDebugLoc();
5048
Dan Gohman31125812009-03-07 01:58:32 +00005049 // CF and OF aren't always set the way we want. Determine which
5050 // of these we need.
5051 bool NeedCF = false;
5052 bool NeedOF = false;
5053 switch (X86CC) {
5054 case X86::COND_A: case X86::COND_AE:
5055 case X86::COND_B: case X86::COND_BE:
5056 NeedCF = true;
5057 break;
5058 case X86::COND_G: case X86::COND_GE:
5059 case X86::COND_L: case X86::COND_LE:
5060 case X86::COND_O: case X86::COND_NO:
5061 NeedOF = true;
5062 break;
5063 default: break;
5064 }
5065
Dan Gohman076aee32009-03-04 19:44:21 +00005066 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00005067 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
5068 // we prove that the arithmetic won't overflow, we can't use OF or CF.
5069 if (Op.getResNo() == 0 && !NeedOF && !NeedCF) {
Dan Gohman076aee32009-03-04 19:44:21 +00005070 unsigned Opcode = 0;
Dan Gohman51bb4742009-03-05 21:29:28 +00005071 unsigned NumOperands = 0;
Dan Gohman076aee32009-03-04 19:44:21 +00005072 switch (Op.getNode()->getOpcode()) {
5073 case ISD::ADD:
5074 // Due to an isel shortcoming, be conservative if this add is likely to
5075 // be selected as part of a load-modify-store instruction. When the root
5076 // node in a match is a store, isel doesn't know how to remap non-chain
5077 // non-flag uses of other nodes in the match, such as the ADD in this
5078 // case. This leads to the ADD being left around and reselected, with
5079 // the result being two adds in the output.
5080 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
5081 UE = Op.getNode()->use_end(); UI != UE; ++UI)
5082 if (UI->getOpcode() == ISD::STORE)
5083 goto default_case;
Dan Gohman076aee32009-03-04 19:44:21 +00005084 if (ConstantSDNode *C =
Dan Gohman4bfcf2a2009-03-05 19:32:48 +00005085 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
5086 // An add of one will be selected as an INC.
Dan Gohman076aee32009-03-04 19:44:21 +00005087 if (C->getAPIntValue() == 1) {
5088 Opcode = X86ISD::INC;
Dan Gohman51bb4742009-03-05 21:29:28 +00005089 NumOperands = 1;
Dan Gohman076aee32009-03-04 19:44:21 +00005090 break;
5091 }
Dan Gohman4bfcf2a2009-03-05 19:32:48 +00005092 // An add of negative one (subtract of one) will be selected as a DEC.
5093 if (C->getAPIntValue().isAllOnesValue()) {
5094 Opcode = X86ISD::DEC;
Dan Gohman51bb4742009-03-05 21:29:28 +00005095 NumOperands = 1;
Dan Gohman4bfcf2a2009-03-05 19:32:48 +00005096 break;
5097 }
5098 }
Dan Gohman076aee32009-03-04 19:44:21 +00005099 // Otherwise use a regular EFLAGS-setting add.
5100 Opcode = X86ISD::ADD;
Dan Gohman51bb4742009-03-05 21:29:28 +00005101 NumOperands = 2;
Dan Gohman076aee32009-03-04 19:44:21 +00005102 break;
5103 case ISD::SUB:
5104 // Due to the ISEL shortcoming noted above, be conservative if this sub is
5105 // likely to be selected as part of a load-modify-store instruction.
5106 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
5107 UE = Op.getNode()->use_end(); UI != UE; ++UI)
5108 if (UI->getOpcode() == ISD::STORE)
5109 goto default_case;
Dan Gohman076aee32009-03-04 19:44:21 +00005110 // Otherwise use a regular EFLAGS-setting sub.
5111 Opcode = X86ISD::SUB;
Dan Gohman51bb4742009-03-05 21:29:28 +00005112 NumOperands = 2;
Dan Gohman076aee32009-03-04 19:44:21 +00005113 break;
5114 case X86ISD::ADD:
5115 case X86ISD::SUB:
5116 case X86ISD::INC:
5117 case X86ISD::DEC:
5118 return SDValue(Op.getNode(), 1);
5119 default:
5120 default_case:
5121 break;
5122 }
5123 if (Opcode != 0) {
Dan Gohmanfc166572009-04-09 23:54:40 +00005124 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
Dan Gohman076aee32009-03-04 19:44:21 +00005125 SmallVector<SDValue, 4> Ops;
Dan Gohman31125812009-03-07 01:58:32 +00005126 for (unsigned i = 0; i != NumOperands; ++i)
Dan Gohman076aee32009-03-04 19:44:21 +00005127 Ops.push_back(Op.getOperand(i));
Dan Gohmanfc166572009-04-09 23:54:40 +00005128 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
Dan Gohman076aee32009-03-04 19:44:21 +00005129 DAG.ReplaceAllUsesWith(Op, New);
5130 return SDValue(New.getNode(), 1);
5131 }
5132 }
5133
5134 // Otherwise just emit a CMP with 0, which is the TEST pattern.
5135 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
5136 DAG.getConstant(0, Op.getValueType()));
5137}
5138
5139/// Emit nodes that will be selected as "cmp Op0,Op1", or something
5140/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00005141SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
5142 SelectionDAG &DAG) {
Dan Gohman076aee32009-03-04 19:44:21 +00005143 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
5144 if (C->getAPIntValue() == 0)
Dan Gohman31125812009-03-07 01:58:32 +00005145 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00005146
5147 DebugLoc dl = Op0.getDebugLoc();
5148 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
5149}
5150
Dan Gohman475871a2008-07-27 21:46:04 +00005151SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0488db92007-09-25 01:57:46 +00005152 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
Dan Gohman475871a2008-07-27 21:46:04 +00005153 SDValue Op0 = Op.getOperand(0);
5154 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005155 DebugLoc dl = Op.getDebugLoc();
Chris Lattnere55484e2008-12-25 05:34:37 +00005156 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00005157
Dan Gohmane5af2d32009-01-29 01:59:02 +00005158 // Lower (X & (1 << N)) == 0 to BT(X, N).
5159 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
5160 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Dan Gohman286575c2009-01-13 23:25:30 +00005161 if (Op0.getOpcode() == ISD::AND &&
5162 Op0.hasOneUse() &&
5163 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane5af2d32009-01-29 01:59:02 +00005164 cast<ConstantSDNode>(Op1)->getZExtValue() == 0 &&
Chris Lattnere55484e2008-12-25 05:34:37 +00005165 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Dan Gohmane5af2d32009-01-29 01:59:02 +00005166 SDValue LHS, RHS;
5167 if (Op0.getOperand(1).getOpcode() == ISD::SHL) {
5168 if (ConstantSDNode *Op010C =
5169 dyn_cast<ConstantSDNode>(Op0.getOperand(1).getOperand(0)))
5170 if (Op010C->getZExtValue() == 1) {
5171 LHS = Op0.getOperand(0);
5172 RHS = Op0.getOperand(1).getOperand(1);
5173 }
5174 } else if (Op0.getOperand(0).getOpcode() == ISD::SHL) {
5175 if (ConstantSDNode *Op000C =
5176 dyn_cast<ConstantSDNode>(Op0.getOperand(0).getOperand(0)))
5177 if (Op000C->getZExtValue() == 1) {
5178 LHS = Op0.getOperand(1);
5179 RHS = Op0.getOperand(0).getOperand(1);
5180 }
5181 } else if (Op0.getOperand(1).getOpcode() == ISD::Constant) {
5182 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op0.getOperand(1));
5183 SDValue AndLHS = Op0.getOperand(0);
5184 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
5185 LHS = AndLHS.getOperand(0);
5186 RHS = AndLHS.getOperand(1);
5187 }
5188 }
Evan Cheng0488db92007-09-25 01:57:46 +00005189
Dan Gohmane5af2d32009-01-29 01:59:02 +00005190 if (LHS.getNode()) {
Chris Lattnere55484e2008-12-25 05:34:37 +00005191 // If LHS is i8, promote it to i16 with any_extend. There is no i8 BT
5192 // instruction. Since the shift amount is in-range-or-undefined, we know
5193 // that doing a bittest on the i16 value is ok. We extend to i32 because
5194 // the encoding for the i16 version is larger than the i32 version.
5195 if (LHS.getValueType() == MVT::i8)
Dale Johannesenace16102009-02-03 19:33:06 +00005196 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00005197
5198 // If the operand types disagree, extend the shift amount to match. Since
5199 // BT ignores high bits (like shifts) we can use anyextend.
5200 if (LHS.getValueType() != RHS.getValueType())
Dale Johannesenace16102009-02-03 19:33:06 +00005201 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00005202
Dale Johannesenace16102009-02-03 19:33:06 +00005203 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Dan Gohman653456c2009-01-07 00:15:08 +00005204 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Dale Johannesenace16102009-02-03 19:33:06 +00005205 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnere55484e2008-12-25 05:34:37 +00005206 DAG.getConstant(Cond, MVT::i8), BT);
5207 }
5208 }
5209
5210 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
5211 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005212
Dan Gohman31125812009-03-07 01:58:32 +00005213 SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
Dale Johannesenace16102009-02-03 19:33:06 +00005214 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattner43287082008-12-24 00:11:37 +00005215 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00005216}
5217
Dan Gohman475871a2008-07-27 21:46:04 +00005218SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
5219 SDValue Cond;
5220 SDValue Op0 = Op.getOperand(0);
5221 SDValue Op1 = Op.getOperand(1);
5222 SDValue CC = Op.getOperand(2);
Nate Begeman30a0de92008-07-17 16:51:19 +00005223 MVT VT = Op.getValueType();
5224 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
5225 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005226 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00005227
5228 if (isFP) {
5229 unsigned SSECC = 8;
Evan Chenge9d50352008-08-05 22:19:15 +00005230 MVT VT0 = Op0.getValueType();
5231 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
5232 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00005233 bool Swap = false;
5234
5235 switch (SetCCOpcode) {
5236 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00005237 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00005238 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00005239 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00005240 case ISD::SETGT: Swap = true; // Fallthrough
5241 case ISD::SETLT:
5242 case ISD::SETOLT: SSECC = 1; break;
5243 case ISD::SETOGE:
5244 case ISD::SETGE: Swap = true; // Fallthrough
5245 case ISD::SETLE:
5246 case ISD::SETOLE: SSECC = 2; break;
5247 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00005248 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00005249 case ISD::SETNE: SSECC = 4; break;
5250 case ISD::SETULE: Swap = true;
5251 case ISD::SETUGE: SSECC = 5; break;
5252 case ISD::SETULT: Swap = true;
5253 case ISD::SETUGT: SSECC = 6; break;
5254 case ISD::SETO: SSECC = 7; break;
5255 }
5256 if (Swap)
5257 std::swap(Op0, Op1);
5258
Nate Begemanfb8ead02008-07-25 19:05:58 +00005259 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00005260 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00005261 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00005262 SDValue UNORD, EQ;
Dale Johannesenace16102009-02-03 19:33:06 +00005263 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
5264 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
5265 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00005266 }
5267 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00005268 SDValue ORD, NEQ;
Dale Johannesenace16102009-02-03 19:33:06 +00005269 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
5270 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
5271 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00005272 }
5273 assert(0 && "Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00005274 }
5275 // Handle all other FP comparisons here.
Dale Johannesenace16102009-02-03 19:33:06 +00005276 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00005277 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005278
Nate Begeman30a0de92008-07-17 16:51:19 +00005279 // We are handling one of the integer comparisons here. Since SSE only has
5280 // GT and EQ comparisons for integer, swapping operands and multiple
5281 // operations may be required for some comparisons.
5282 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
5283 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005284
Nate Begeman30a0de92008-07-17 16:51:19 +00005285 switch (VT.getSimpleVT()) {
5286 default: break;
5287 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
5288 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
5289 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
5290 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
5291 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005292
Nate Begeman30a0de92008-07-17 16:51:19 +00005293 switch (SetCCOpcode) {
5294 default: break;
5295 case ISD::SETNE: Invert = true;
5296 case ISD::SETEQ: Opc = EQOpc; break;
5297 case ISD::SETLT: Swap = true;
5298 case ISD::SETGT: Opc = GTOpc; break;
5299 case ISD::SETGE: Swap = true;
5300 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
5301 case ISD::SETULT: Swap = true;
5302 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
5303 case ISD::SETUGE: Swap = true;
5304 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
5305 }
5306 if (Swap)
5307 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005308
Nate Begeman30a0de92008-07-17 16:51:19 +00005309 // Since SSE has no unsigned integer comparisons, we need to flip the sign
5310 // bits of the inputs before performing those operations.
5311 if (FlipSigns) {
5312 MVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00005313 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
5314 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00005315 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00005316 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
5317 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00005318 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
5319 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00005320 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005321
Dale Johannesenace16102009-02-03 19:33:06 +00005322 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00005323
5324 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00005325 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00005326 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00005327
Nate Begeman30a0de92008-07-17 16:51:19 +00005328 return Result;
5329}
Evan Cheng0488db92007-09-25 01:57:46 +00005330
Evan Cheng370e5342008-12-03 08:38:43 +00005331// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00005332static bool isX86LogicalCmp(SDValue Op) {
5333 unsigned Opc = Op.getNode()->getOpcode();
5334 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
5335 return true;
5336 if (Op.getResNo() == 1 &&
5337 (Opc == X86ISD::ADD ||
5338 Opc == X86ISD::SUB ||
5339 Opc == X86ISD::SMUL ||
5340 Opc == X86ISD::UMUL ||
5341 Opc == X86ISD::INC ||
5342 Opc == X86ISD::DEC))
5343 return true;
5344
5345 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00005346}
5347
Dan Gohman475871a2008-07-27 21:46:04 +00005348SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) {
Evan Cheng734503b2006-09-11 02:19:56 +00005349 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005350 SDValue Cond = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005351 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005352 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00005353
Evan Cheng734503b2006-09-11 02:19:56 +00005354 if (Cond.getOpcode() == ISD::SETCC)
Evan Chenge5f62042007-09-29 00:00:36 +00005355 Cond = LowerSETCC(Cond, DAG);
Evan Cheng734503b2006-09-11 02:19:56 +00005356
Evan Cheng3f41d662007-10-08 22:16:29 +00005357 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5358 // setting operand in place of the X86ISD::SETCC.
Evan Cheng734503b2006-09-11 02:19:56 +00005359 if (Cond.getOpcode() == X86ISD::SETCC) {
5360 CC = Cond.getOperand(0);
5361
Dan Gohman475871a2008-07-27 21:46:04 +00005362 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00005363 unsigned Opc = Cmp.getOpcode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005364 MVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005365
Evan Cheng3f41d662007-10-08 22:16:29 +00005366 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005367 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00005368 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00005369 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00005370
Chris Lattnerd1980a52009-03-12 06:52:53 +00005371 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
5372 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00005373 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00005374 addTest = false;
5375 }
5376 }
5377
5378 if (addTest) {
5379 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman31125812009-03-07 01:58:32 +00005380 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00005381 }
5382
Dan Gohmanfc166572009-04-09 23:54:40 +00005383 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005384 SmallVector<SDValue, 4> Ops;
Evan Cheng0488db92007-09-25 01:57:46 +00005385 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
5386 // condition is true.
5387 Ops.push_back(Op.getOperand(2));
5388 Ops.push_back(Op.getOperand(1));
5389 Ops.push_back(CC);
5390 Ops.push_back(Cond);
Dan Gohmanfc166572009-04-09 23:54:40 +00005391 return DAG.getNode(X86ISD::CMOV, dl, VTs, &Ops[0], Ops.size());
Evan Cheng0488db92007-09-25 01:57:46 +00005392}
5393
Evan Cheng370e5342008-12-03 08:38:43 +00005394// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
5395// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
5396// from the AND / OR.
5397static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
5398 Opc = Op.getOpcode();
5399 if (Opc != ISD::OR && Opc != ISD::AND)
5400 return false;
5401 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5402 Op.getOperand(0).hasOneUse() &&
5403 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
5404 Op.getOperand(1).hasOneUse());
5405}
5406
Evan Cheng961d6d42009-02-02 08:19:07 +00005407// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
5408// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00005409static bool isXor1OfSetCC(SDValue Op) {
5410 if (Op.getOpcode() != ISD::XOR)
5411 return false;
5412 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
5413 if (N1C && N1C->getAPIntValue() == 1) {
5414 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5415 Op.getOperand(0).hasOneUse();
5416 }
5417 return false;
5418}
5419
Dan Gohman475871a2008-07-27 21:46:04 +00005420SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) {
Evan Cheng734503b2006-09-11 02:19:56 +00005421 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005422 SDValue Chain = Op.getOperand(0);
5423 SDValue Cond = Op.getOperand(1);
5424 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005425 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005426 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00005427
Evan Cheng0db9fe62006-04-25 20:13:52 +00005428 if (Cond.getOpcode() == ISD::SETCC)
Evan Chenge5f62042007-09-29 00:00:36 +00005429 Cond = LowerSETCC(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00005430#if 0
5431 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00005432 else if (Cond.getOpcode() == X86ISD::ADD ||
5433 Cond.getOpcode() == X86ISD::SUB ||
5434 Cond.getOpcode() == X86ISD::SMUL ||
5435 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00005436 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00005437#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00005438
Evan Cheng3f41d662007-10-08 22:16:29 +00005439 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5440 // setting operand in place of the X86ISD::SETCC.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005441 if (Cond.getOpcode() == X86ISD::SETCC) {
Evan Cheng734503b2006-09-11 02:19:56 +00005442 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005443
Dan Gohman475871a2008-07-27 21:46:04 +00005444 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00005445 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00005446 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00005447 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00005448 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00005449 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00005450 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00005451 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00005452 default: break;
5453 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00005454 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00005455 // These can only come from an arithmetic instruction with overflow,
5456 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00005457 Cond = Cond.getNode()->getOperand(1);
5458 addTest = false;
5459 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00005460 }
Evan Cheng0488db92007-09-25 01:57:46 +00005461 }
Evan Cheng370e5342008-12-03 08:38:43 +00005462 } else {
5463 unsigned CondOpc;
5464 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
5465 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00005466 if (CondOpc == ISD::OR) {
5467 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
5468 // two branches instead of an explicit OR instruction with a
5469 // separate test.
5470 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00005471 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00005472 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00005473 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00005474 Chain, Dest, CC, Cmp);
5475 CC = Cond.getOperand(1).getOperand(0);
5476 Cond = Cmp;
5477 addTest = false;
5478 }
5479 } else { // ISD::AND
5480 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
5481 // two branches instead of an explicit AND instruction with a
5482 // separate test. However, we only do this if this block doesn't
5483 // have a fall-through edge, because this requires an explicit
5484 // jmp when the condition is false.
5485 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00005486 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00005487 Op.getNode()->hasOneUse()) {
5488 X86::CondCode CCode =
5489 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5490 CCode = X86::GetOppositeBranchCondition(CCode);
5491 CC = DAG.getConstant(CCode, MVT::i8);
5492 SDValue User = SDValue(*Op.getNode()->use_begin(), 0);
5493 // Look for an unconditional branch following this conditional branch.
5494 // We need this because we need to reverse the successors in order
5495 // to implement FCMP_OEQ.
5496 if (User.getOpcode() == ISD::BR) {
5497 SDValue FalseBB = User.getOperand(1);
5498 SDValue NewBR =
5499 DAG.UpdateNodeOperands(User, User.getOperand(0), Dest);
5500 assert(NewBR == User);
5501 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00005502
Dale Johannesene4d209d2009-02-03 20:21:25 +00005503 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00005504 Chain, Dest, CC, Cmp);
5505 X86::CondCode CCode =
5506 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
5507 CCode = X86::GetOppositeBranchCondition(CCode);
5508 CC = DAG.getConstant(CCode, MVT::i8);
5509 Cond = Cmp;
5510 addTest = false;
5511 }
5512 }
Dan Gohman279c22e2008-10-21 03:29:32 +00005513 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00005514 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
5515 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
5516 // It should be transformed during dag combiner except when the condition
5517 // is set by a arithmetics with overflow node.
5518 X86::CondCode CCode =
5519 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5520 CCode = X86::GetOppositeBranchCondition(CCode);
5521 CC = DAG.getConstant(CCode, MVT::i8);
5522 Cond = Cond.getOperand(0).getOperand(1);
5523 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00005524 }
Evan Cheng0488db92007-09-25 01:57:46 +00005525 }
5526
5527 if (addTest) {
5528 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman31125812009-03-07 01:58:32 +00005529 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00005530 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00005531 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00005532 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00005533}
5534
Anton Korobeynikove060b532007-04-17 19:34:00 +00005535
5536// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
5537// Calls to _alloca is needed to probe the stack when allocating more than 4k
5538// bytes in one go. Touching the stack at 4K increments is necessary to ensure
5539// that the guard pages used by the OS virtual memory manager are allocated in
5540// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00005541SDValue
5542X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005543 SelectionDAG &DAG) {
Anton Korobeynikove060b532007-04-17 19:34:00 +00005544 assert(Subtarget->isTargetCygMing() &&
5545 "This should be used only on Cygwin/Mingw targets");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005546 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005547
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005548 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00005549 SDValue Chain = Op.getOperand(0);
5550 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005551 // FIXME: Ensure alignment here
5552
Dan Gohman475871a2008-07-27 21:46:04 +00005553 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005554
Duncan Sands83ec4b62008-06-06 12:08:01 +00005555 MVT IntPtr = getPointerTy();
5556 MVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005557
Chris Lattnere563bbc2008-10-11 22:08:30 +00005558 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005559
Dale Johannesendd64c412009-02-04 00:33:20 +00005560 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005561 Flag = Chain.getValue(1);
5562
5563 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005564 SDValue Ops[] = { Chain,
Bill Wendling056292f2008-09-16 21:48:12 +00005565 DAG.getTargetExternalSymbol("_alloca", IntPtr),
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005566 DAG.getRegister(X86::EAX, IntPtr),
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005567 DAG.getRegister(X86StackPtr, SPTy),
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005568 Flag };
Dale Johannesene4d209d2009-02-03 20:21:25 +00005569 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops, 5);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005570 Flag = Chain.getValue(1);
5571
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005572 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnere563bbc2008-10-11 22:08:30 +00005573 DAG.getIntPtrConstant(0, true),
5574 DAG.getIntPtrConstant(0, true),
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005575 Flag);
5576
Dale Johannesendd64c412009-02-04 00:33:20 +00005577 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005578
Dan Gohman475871a2008-07-27 21:46:04 +00005579 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00005580 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005581}
5582
Dan Gohman475871a2008-07-27 21:46:04 +00005583SDValue
Dale Johannesen0f502f62009-02-03 22:26:09 +00005584X86TargetLowering::EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl,
Bill Wendling6f287b22008-09-30 21:22:07 +00005585 SDValue Chain,
5586 SDValue Dst, SDValue Src,
5587 SDValue Size, unsigned Align,
5588 const Value *DstSV,
Bill Wendling6158d842008-10-01 00:59:58 +00005589 uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00005590 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005591
Bill Wendling6f287b22008-09-30 21:22:07 +00005592 // If not DWORD aligned or size is more than the threshold, call the library.
5593 // The libc version is likely to be faster for these cases. It can use the
5594 // address value and run time information about the CPU.
Evan Cheng1887c1c2008-08-21 21:00:15 +00005595 if ((Align & 3) != 0 ||
Dan Gohman707e0182008-04-12 04:36:06 +00005596 !ConstantSize ||
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005597 ConstantSize->getZExtValue() >
5598 getSubtarget()->getMaxInlineSizeThreshold()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005599 SDValue InFlag(0, 0);
Dan Gohman68d599d2008-04-01 20:38:36 +00005600
5601 // Check to see if there is a specialized entry-point for memory zeroing.
Dan Gohman707e0182008-04-12 04:36:06 +00005602 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
Bill Wendling6f287b22008-09-30 21:22:07 +00005603
Bill Wendling6158d842008-10-01 00:59:58 +00005604 if (const char *bzeroEntry = V &&
5605 V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
5606 MVT IntPtr = getPointerTy();
5607 const Type *IntPtrTy = TD->getIntPtrType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005608 TargetLowering::ArgListTy Args;
Bill Wendling6158d842008-10-01 00:59:58 +00005609 TargetLowering::ArgListEntry Entry;
5610 Entry.Node = Dst;
5611 Entry.Ty = IntPtrTy;
5612 Args.push_back(Entry);
5613 Entry.Node = Size;
5614 Args.push_back(Entry);
5615 std::pair<SDValue,SDValue> CallResult =
Scott Michelfdc40a02009-02-17 22:15:04 +00005616 LowerCallTo(Chain, Type::VoidTy, false, false, false, false,
5617 CallingConv::C, false,
Dale Johannesen0f502f62009-02-03 22:26:09 +00005618 DAG.getExternalSymbol(bzeroEntry, IntPtr), Args, DAG, dl);
Bill Wendling6158d842008-10-01 00:59:58 +00005619 return CallResult.second;
Dan Gohman68d599d2008-04-01 20:38:36 +00005620 }
5621
Dan Gohman707e0182008-04-12 04:36:06 +00005622 // Otherwise have the target-independent code call memset.
Dan Gohman475871a2008-07-27 21:46:04 +00005623 return SDValue();
Evan Cheng48090aa2006-03-21 23:01:21 +00005624 }
Evan Chengb9df0ca2006-03-22 02:53:00 +00005625
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005626 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00005627 SDValue InFlag(0, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005628 MVT AVT;
Dan Gohman475871a2008-07-27 21:46:04 +00005629 SDValue Count;
Dan Gohman707e0182008-04-12 04:36:06 +00005630 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005631 unsigned BytesLeft = 0;
5632 bool TwoRepStos = false;
5633 if (ValC) {
5634 unsigned ValReg;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005635 uint64_t Val = ValC->getZExtValue() & 255;
Evan Cheng5ced1d82006-04-06 23:23:56 +00005636
Evan Cheng0db9fe62006-04-25 20:13:52 +00005637 // If the value is a constant, then we can potentially use larger sets.
5638 switch (Align & 3) {
Evan Cheng1887c1c2008-08-21 21:00:15 +00005639 case 2: // WORD aligned
5640 AVT = MVT::i16;
5641 ValReg = X86::AX;
5642 Val = (Val << 8) | Val;
5643 break;
5644 case 0: // DWORD aligned
5645 AVT = MVT::i32;
5646 ValReg = X86::EAX;
5647 Val = (Val << 8) | Val;
5648 Val = (Val << 16) | Val;
5649 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
5650 AVT = MVT::i64;
5651 ValReg = X86::RAX;
5652 Val = (Val << 32) | Val;
5653 }
5654 break;
5655 default: // Byte aligned
5656 AVT = MVT::i8;
5657 ValReg = X86::AL;
5658 Count = DAG.getIntPtrConstant(SizeVal);
5659 break;
Evan Cheng80d428c2006-04-19 22:48:17 +00005660 }
5661
Duncan Sands8e4eb092008-06-08 20:54:56 +00005662 if (AVT.bitsGT(MVT::i8)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005663 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00005664 Count = DAG.getIntPtrConstant(SizeVal / UBytes);
5665 BytesLeft = SizeVal % UBytes;
Evan Cheng25ab6902006-09-08 06:48:29 +00005666 }
5667
Dale Johannesen0f502f62009-02-03 22:26:09 +00005668 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, AVT),
Evan Cheng0db9fe62006-04-25 20:13:52 +00005669 InFlag);
5670 InFlag = Chain.getValue(1);
5671 } else {
5672 AVT = MVT::i8;
Dan Gohmanbcda2852008-04-16 01:32:32 +00005673 Count = DAG.getIntPtrConstant(SizeVal);
Dale Johannesen0f502f62009-02-03 22:26:09 +00005674 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005675 InFlag = Chain.getValue(1);
Evan Chengb9df0ca2006-03-22 02:53:00 +00005676 }
Evan Chengc78d3b42006-04-24 18:01:45 +00005677
Scott Michelfdc40a02009-02-17 22:15:04 +00005678 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen0f502f62009-02-03 22:26:09 +00005679 X86::ECX,
Evan Cheng25ab6902006-09-08 06:48:29 +00005680 Count, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005681 InFlag = Chain.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005682 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen0f502f62009-02-03 22:26:09 +00005683 X86::EDI,
Dan Gohman707e0182008-04-12 04:36:06 +00005684 Dst, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005685 InFlag = Chain.getValue(1);
Evan Chenga0b3afb2006-03-27 07:00:16 +00005686
Chris Lattnerd96d0722007-02-25 06:40:16 +00005687 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005688 SmallVector<SDValue, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005689 Ops.push_back(Chain);
5690 Ops.push_back(DAG.getValueType(AVT));
5691 Ops.push_back(InFlag);
Dale Johannesen0f502f62009-02-03 22:26:09 +00005692 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Evan Chengc78d3b42006-04-24 18:01:45 +00005693
Evan Cheng0db9fe62006-04-25 20:13:52 +00005694 if (TwoRepStos) {
5695 InFlag = Chain.getValue(1);
Dan Gohman707e0182008-04-12 04:36:06 +00005696 Count = Size;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005697 MVT CVT = Count.getValueType();
Dale Johannesen0f502f62009-02-03 22:26:09 +00005698 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
Evan Cheng25ab6902006-09-08 06:48:29 +00005699 DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
Scott Michelfdc40a02009-02-17 22:15:04 +00005700 Chain = DAG.getCopyToReg(Chain, dl, (CVT == MVT::i64) ? X86::RCX :
Dale Johannesen0f502f62009-02-03 22:26:09 +00005701 X86::ECX,
Evan Cheng25ab6902006-09-08 06:48:29 +00005702 Left, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005703 InFlag = Chain.getValue(1);
Chris Lattnerd96d0722007-02-25 06:40:16 +00005704 Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005705 Ops.clear();
5706 Ops.push_back(Chain);
5707 Ops.push_back(DAG.getValueType(MVT::i8));
5708 Ops.push_back(InFlag);
Dale Johannesen0f502f62009-02-03 22:26:09 +00005709 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005710 } else if (BytesLeft) {
Dan Gohman707e0182008-04-12 04:36:06 +00005711 // Handle the last 1 - 7 bytes.
5712 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005713 MVT AddrVT = Dst.getValueType();
5714 MVT SizeVT = Size.getValueType();
Dan Gohman707e0182008-04-12 04:36:06 +00005715
Dale Johannesen0f502f62009-02-03 22:26:09 +00005716 Chain = DAG.getMemset(Chain, dl,
5717 DAG.getNode(ISD::ADD, dl, AddrVT, Dst,
Dan Gohman707e0182008-04-12 04:36:06 +00005718 DAG.getConstant(Offset, AddrVT)),
5719 Src,
5720 DAG.getConstant(BytesLeft, SizeVT),
Dan Gohman1f13c682008-04-28 17:15:20 +00005721 Align, DstSV, DstSVOff + Offset);
Evan Cheng386031a2006-03-24 07:29:27 +00005722 }
Evan Cheng11e15b32006-04-03 20:53:28 +00005723
Dan Gohman707e0182008-04-12 04:36:06 +00005724 // TODO: Use a Tokenfactor, as in memcpy, instead of a single chain.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005725 return Chain;
5726}
Evan Cheng11e15b32006-04-03 20:53:28 +00005727
Dan Gohman475871a2008-07-27 21:46:04 +00005728SDValue
Dale Johannesen0f502f62009-02-03 22:26:09 +00005729X86TargetLowering::EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
Evan Cheng1887c1c2008-08-21 21:00:15 +00005730 SDValue Chain, SDValue Dst, SDValue Src,
5731 SDValue Size, unsigned Align,
5732 bool AlwaysInline,
5733 const Value *DstSV, uint64_t DstSVOff,
Scott Michelfdc40a02009-02-17 22:15:04 +00005734 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00005735 // This requires the copy size to be a constant, preferrably
5736 // within a subtarget-specific limit.
5737 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
5738 if (!ConstantSize)
Dan Gohman475871a2008-07-27 21:46:04 +00005739 return SDValue();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005740 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohman707e0182008-04-12 04:36:06 +00005741 if (!AlwaysInline && SizeVal > getSubtarget()->getMaxInlineSizeThreshold())
Dan Gohman475871a2008-07-27 21:46:04 +00005742 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00005743
Evan Cheng1887c1c2008-08-21 21:00:15 +00005744 /// If not DWORD aligned, call the library.
5745 if ((Align & 3) != 0)
5746 return SDValue();
5747
5748 // DWORD aligned
5749 MVT AVT = MVT::i32;
5750 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) // QWORD aligned
Dan Gohman707e0182008-04-12 04:36:06 +00005751 AVT = MVT::i64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005752
Duncan Sands83ec4b62008-06-06 12:08:01 +00005753 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00005754 unsigned CountVal = SizeVal / UBytes;
Dan Gohman475871a2008-07-27 21:46:04 +00005755 SDValue Count = DAG.getIntPtrConstant(CountVal);
Evan Cheng1887c1c2008-08-21 21:00:15 +00005756 unsigned BytesLeft = SizeVal % UBytes;
Evan Cheng25ab6902006-09-08 06:48:29 +00005757
Dan Gohman475871a2008-07-27 21:46:04 +00005758 SDValue InFlag(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005759 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen0f502f62009-02-03 22:26:09 +00005760 X86::ECX,
Evan Cheng25ab6902006-09-08 06:48:29 +00005761 Count, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005762 InFlag = Chain.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005763 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen0f502f62009-02-03 22:26:09 +00005764 X86::EDI,
Dan Gohman707e0182008-04-12 04:36:06 +00005765 Dst, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005766 InFlag = Chain.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005767 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RSI :
Dale Johannesen0f502f62009-02-03 22:26:09 +00005768 X86::ESI,
Dan Gohman707e0182008-04-12 04:36:06 +00005769 Src, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005770 InFlag = Chain.getValue(1);
5771
Chris Lattnerd96d0722007-02-25 06:40:16 +00005772 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005773 SmallVector<SDValue, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005774 Ops.push_back(Chain);
5775 Ops.push_back(DAG.getValueType(AVT));
5776 Ops.push_back(InFlag);
Dale Johannesen0f502f62009-02-03 22:26:09 +00005777 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, dl, Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005778
Dan Gohman475871a2008-07-27 21:46:04 +00005779 SmallVector<SDValue, 4> Results;
Evan Cheng2749c722008-04-25 00:26:43 +00005780 Results.push_back(RepMovs);
Rafael Espindola068317b2007-09-28 12:53:01 +00005781 if (BytesLeft) {
Dan Gohman707e0182008-04-12 04:36:06 +00005782 // Handle the last 1 - 7 bytes.
5783 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005784 MVT DstVT = Dst.getValueType();
5785 MVT SrcVT = Src.getValueType();
5786 MVT SizeVT = Size.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005787 Results.push_back(DAG.getMemcpy(Chain, dl,
Dale Johannesen0f502f62009-02-03 22:26:09 +00005788 DAG.getNode(ISD::ADD, dl, DstVT, Dst,
Evan Cheng2749c722008-04-25 00:26:43 +00005789 DAG.getConstant(Offset, DstVT)),
Dale Johannesen0f502f62009-02-03 22:26:09 +00005790 DAG.getNode(ISD::ADD, dl, SrcVT, Src,
Evan Cheng2749c722008-04-25 00:26:43 +00005791 DAG.getConstant(Offset, SrcVT)),
Dan Gohman707e0182008-04-12 04:36:06 +00005792 DAG.getConstant(BytesLeft, SizeVT),
5793 Align, AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00005794 DstSV, DstSVOff + Offset,
5795 SrcSV, SrcSVOff + Offset));
Evan Chengb067a1e2006-03-31 19:22:53 +00005796 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005797
Scott Michelfdc40a02009-02-17 22:15:04 +00005798 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesen0f502f62009-02-03 22:26:09 +00005799 &Results[0], Results.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005800}
5801
Dan Gohman475871a2008-07-27 21:46:04 +00005802SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) {
Dan Gohman69de1932008-02-06 22:27:42 +00005803 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005804 DebugLoc dl = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00005805
Evan Cheng25ab6902006-09-08 06:48:29 +00005806 if (!Subtarget->is64Bit()) {
5807 // vastart just stores the address of the VarArgsFrameIndex slot into the
5808 // memory location argument.
Dan Gohman475871a2008-07-27 21:46:04 +00005809 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesene4d209d2009-02-03 20:21:25 +00005810 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005811 }
5812
5813 // __va_list_tag:
5814 // gp_offset (0 - 6 * 8)
5815 // fp_offset (48 - 48 + 8 * 16)
5816 // overflow_arg_area (point to parameters coming in memory).
5817 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00005818 SmallVector<SDValue, 8> MemOps;
5819 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00005820 // Store gp_offset
Dale Johannesene4d209d2009-02-03 20:21:25 +00005821 SDValue Store = DAG.getStore(Op.getOperand(0), dl,
Evan Cheng786225a2006-10-05 23:01:46 +00005822 DAG.getConstant(VarArgsGPOffset, MVT::i32),
Dan Gohman69de1932008-02-06 22:27:42 +00005823 FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005824 MemOps.push_back(Store);
5825
5826 // Store fp_offset
Scott Michelfdc40a02009-02-17 22:15:04 +00005827 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00005828 FIN, DAG.getIntPtrConstant(4));
5829 Store = DAG.getStore(Op.getOperand(0), dl,
Evan Cheng786225a2006-10-05 23:01:46 +00005830 DAG.getConstant(VarArgsFPOffset, MVT::i32),
Dan Gohman69de1932008-02-06 22:27:42 +00005831 FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005832 MemOps.push_back(Store);
5833
5834 // Store ptr to overflow_arg_area
Scott Michelfdc40a02009-02-17 22:15:04 +00005835 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00005836 FIN, DAG.getIntPtrConstant(4));
Dan Gohman475871a2008-07-27 21:46:04 +00005837 SDValue OVFIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesene4d209d2009-02-03 20:21:25 +00005838 Store = DAG.getStore(Op.getOperand(0), dl, OVFIN, FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005839 MemOps.push_back(Store);
5840
5841 // Store ptr to reg_save_area.
Scott Michelfdc40a02009-02-17 22:15:04 +00005842 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00005843 FIN, DAG.getIntPtrConstant(8));
Dan Gohman475871a2008-07-27 21:46:04 +00005844 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesene4d209d2009-02-03 20:21:25 +00005845 Store = DAG.getStore(Op.getOperand(0), dl, RSFIN, FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005846 MemOps.push_back(Store);
Scott Michelfdc40a02009-02-17 22:15:04 +00005847 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00005848 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005849}
5850
Dan Gohman475871a2008-07-27 21:46:04 +00005851SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) {
Dan Gohman9018e832008-05-10 01:26:14 +00005852 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
5853 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_arg!");
Dan Gohman475871a2008-07-27 21:46:04 +00005854 SDValue Chain = Op.getOperand(0);
5855 SDValue SrcPtr = Op.getOperand(1);
5856 SDValue SrcSV = Op.getOperand(2);
Dan Gohman9018e832008-05-10 01:26:14 +00005857
5858 assert(0 && "VAArgInst is not yet implemented for x86-64!");
5859 abort();
Dan Gohman475871a2008-07-27 21:46:04 +00005860 return SDValue();
Dan Gohman9018e832008-05-10 01:26:14 +00005861}
5862
Dan Gohman475871a2008-07-27 21:46:04 +00005863SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) {
Evan Chengae642192007-03-02 23:16:35 +00005864 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00005865 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00005866 SDValue Chain = Op.getOperand(0);
5867 SDValue DstPtr = Op.getOperand(1);
5868 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00005869 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
5870 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005871 DebugLoc dl = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00005872
Dale Johannesendd64c412009-02-04 00:33:20 +00005873 return DAG.getMemcpy(Chain, dl, DstPtr, SrcPtr,
Dan Gohman28269132008-04-18 20:55:41 +00005874 DAG.getIntPtrConstant(24), 8, false,
5875 DstSV, 0, SrcSV, 0);
Evan Chengae642192007-03-02 23:16:35 +00005876}
5877
Dan Gohman475871a2008-07-27 21:46:04 +00005878SDValue
5879X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005880 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005881 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005882 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00005883 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00005884 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005885 case Intrinsic::x86_sse_comieq_ss:
5886 case Intrinsic::x86_sse_comilt_ss:
5887 case Intrinsic::x86_sse_comile_ss:
5888 case Intrinsic::x86_sse_comigt_ss:
5889 case Intrinsic::x86_sse_comige_ss:
5890 case Intrinsic::x86_sse_comineq_ss:
5891 case Intrinsic::x86_sse_ucomieq_ss:
5892 case Intrinsic::x86_sse_ucomilt_ss:
5893 case Intrinsic::x86_sse_ucomile_ss:
5894 case Intrinsic::x86_sse_ucomigt_ss:
5895 case Intrinsic::x86_sse_ucomige_ss:
5896 case Intrinsic::x86_sse_ucomineq_ss:
5897 case Intrinsic::x86_sse2_comieq_sd:
5898 case Intrinsic::x86_sse2_comilt_sd:
5899 case Intrinsic::x86_sse2_comile_sd:
5900 case Intrinsic::x86_sse2_comigt_sd:
5901 case Intrinsic::x86_sse2_comige_sd:
5902 case Intrinsic::x86_sse2_comineq_sd:
5903 case Intrinsic::x86_sse2_ucomieq_sd:
5904 case Intrinsic::x86_sse2_ucomilt_sd:
5905 case Intrinsic::x86_sse2_ucomile_sd:
5906 case Intrinsic::x86_sse2_ucomigt_sd:
5907 case Intrinsic::x86_sse2_ucomige_sd:
5908 case Intrinsic::x86_sse2_ucomineq_sd: {
5909 unsigned Opc = 0;
5910 ISD::CondCode CC = ISD::SETCC_INVALID;
5911 switch (IntNo) {
5912 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005913 case Intrinsic::x86_sse_comieq_ss:
5914 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005915 Opc = X86ISD::COMI;
5916 CC = ISD::SETEQ;
5917 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00005918 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005919 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005920 Opc = X86ISD::COMI;
5921 CC = ISD::SETLT;
5922 break;
5923 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005924 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005925 Opc = X86ISD::COMI;
5926 CC = ISD::SETLE;
5927 break;
5928 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005929 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005930 Opc = X86ISD::COMI;
5931 CC = ISD::SETGT;
5932 break;
5933 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005934 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005935 Opc = X86ISD::COMI;
5936 CC = ISD::SETGE;
5937 break;
5938 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005939 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005940 Opc = X86ISD::COMI;
5941 CC = ISD::SETNE;
5942 break;
5943 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005944 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005945 Opc = X86ISD::UCOMI;
5946 CC = ISD::SETEQ;
5947 break;
5948 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005949 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005950 Opc = X86ISD::UCOMI;
5951 CC = ISD::SETLT;
5952 break;
5953 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005954 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005955 Opc = X86ISD::UCOMI;
5956 CC = ISD::SETLE;
5957 break;
5958 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005959 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005960 Opc = X86ISD::UCOMI;
5961 CC = ISD::SETGT;
5962 break;
5963 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005964 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005965 Opc = X86ISD::UCOMI;
5966 CC = ISD::SETGE;
5967 break;
5968 case Intrinsic::x86_sse_ucomineq_ss:
5969 case Intrinsic::x86_sse2_ucomineq_sd:
5970 Opc = X86ISD::UCOMI;
5971 CC = ISD::SETNE;
5972 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00005973 }
Evan Cheng734503b2006-09-11 02:19:56 +00005974
Dan Gohman475871a2008-07-27 21:46:04 +00005975 SDValue LHS = Op.getOperand(1);
5976 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00005977 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dale Johannesene4d209d2009-02-03 20:21:25 +00005978 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
5979 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Evan Cheng0ac3fc22008-08-17 19:22:34 +00005980 DAG.getConstant(X86CC, MVT::i8), Cond);
Dale Johannesene4d209d2009-02-03 20:21:25 +00005981 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00005982 }
Evan Cheng5759f972008-05-04 09:15:50 +00005983
5984 // Fix vector shift instructions where the last operand is a non-immediate
5985 // i32 value.
5986 case Intrinsic::x86_sse2_pslli_w:
5987 case Intrinsic::x86_sse2_pslli_d:
5988 case Intrinsic::x86_sse2_pslli_q:
5989 case Intrinsic::x86_sse2_psrli_w:
5990 case Intrinsic::x86_sse2_psrli_d:
5991 case Intrinsic::x86_sse2_psrli_q:
5992 case Intrinsic::x86_sse2_psrai_w:
5993 case Intrinsic::x86_sse2_psrai_d:
5994 case Intrinsic::x86_mmx_pslli_w:
5995 case Intrinsic::x86_mmx_pslli_d:
5996 case Intrinsic::x86_mmx_pslli_q:
5997 case Intrinsic::x86_mmx_psrli_w:
5998 case Intrinsic::x86_mmx_psrli_d:
5999 case Intrinsic::x86_mmx_psrli_q:
6000 case Intrinsic::x86_mmx_psrai_w:
6001 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00006002 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00006003 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00006004 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00006005
6006 unsigned NewIntNo = 0;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006007 MVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00006008 switch (IntNo) {
6009 case Intrinsic::x86_sse2_pslli_w:
6010 NewIntNo = Intrinsic::x86_sse2_psll_w;
6011 break;
6012 case Intrinsic::x86_sse2_pslli_d:
6013 NewIntNo = Intrinsic::x86_sse2_psll_d;
6014 break;
6015 case Intrinsic::x86_sse2_pslli_q:
6016 NewIntNo = Intrinsic::x86_sse2_psll_q;
6017 break;
6018 case Intrinsic::x86_sse2_psrli_w:
6019 NewIntNo = Intrinsic::x86_sse2_psrl_w;
6020 break;
6021 case Intrinsic::x86_sse2_psrli_d:
6022 NewIntNo = Intrinsic::x86_sse2_psrl_d;
6023 break;
6024 case Intrinsic::x86_sse2_psrli_q:
6025 NewIntNo = Intrinsic::x86_sse2_psrl_q;
6026 break;
6027 case Intrinsic::x86_sse2_psrai_w:
6028 NewIntNo = Intrinsic::x86_sse2_psra_w;
6029 break;
6030 case Intrinsic::x86_sse2_psrai_d:
6031 NewIntNo = Intrinsic::x86_sse2_psra_d;
6032 break;
6033 default: {
6034 ShAmtVT = MVT::v2i32;
6035 switch (IntNo) {
6036 case Intrinsic::x86_mmx_pslli_w:
6037 NewIntNo = Intrinsic::x86_mmx_psll_w;
6038 break;
6039 case Intrinsic::x86_mmx_pslli_d:
6040 NewIntNo = Intrinsic::x86_mmx_psll_d;
6041 break;
6042 case Intrinsic::x86_mmx_pslli_q:
6043 NewIntNo = Intrinsic::x86_mmx_psll_q;
6044 break;
6045 case Intrinsic::x86_mmx_psrli_w:
6046 NewIntNo = Intrinsic::x86_mmx_psrl_w;
6047 break;
6048 case Intrinsic::x86_mmx_psrli_d:
6049 NewIntNo = Intrinsic::x86_mmx_psrl_d;
6050 break;
6051 case Intrinsic::x86_mmx_psrli_q:
6052 NewIntNo = Intrinsic::x86_mmx_psrl_q;
6053 break;
6054 case Intrinsic::x86_mmx_psrai_w:
6055 NewIntNo = Intrinsic::x86_mmx_psra_w;
6056 break;
6057 case Intrinsic::x86_mmx_psrai_d:
6058 NewIntNo = Intrinsic::x86_mmx_psra_d;
6059 break;
6060 default: abort(); // Can't reach here.
6061 }
6062 break;
6063 }
6064 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00006065 MVT VT = Op.getValueType();
Dale Johannesene4d209d2009-02-03 20:21:25 +00006066 ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT,
6067 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, ShAmtVT, ShAmt));
6068 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Evan Cheng5759f972008-05-04 09:15:50 +00006069 DAG.getConstant(NewIntNo, MVT::i32),
6070 Op.getOperand(1), ShAmt);
6071 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00006072 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006073}
Evan Cheng72261582005-12-20 06:22:03 +00006074
Dan Gohman475871a2008-07-27 21:46:04 +00006075SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
Bill Wendling64e87322009-01-16 19:25:27 +00006076 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006077 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00006078
6079 if (Depth > 0) {
6080 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
6081 SDValue Offset =
6082 DAG.getConstant(TD->getPointerSize(),
6083 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006084 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00006085 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00006086 FrameAddr, Offset),
Bill Wendling64e87322009-01-16 19:25:27 +00006087 NULL, 0);
6088 }
6089
6090 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00006091 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00006092 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00006093 RetAddrFI, NULL, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00006094}
6095
Dan Gohman475871a2008-07-27 21:46:04 +00006096SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
Evan Cheng184793f2008-09-27 01:56:22 +00006097 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6098 MFI->setFrameAddressIsTaken(true);
6099 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006100 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00006101 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
6102 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00006103 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00006104 while (Depth--)
Dale Johannesendd64c412009-02-04 00:33:20 +00006105 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, NULL, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00006106 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00006107}
6108
Dan Gohman475871a2008-07-27 21:46:04 +00006109SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Anton Korobeynikov260a6b82008-09-08 21:12:11 +00006110 SelectionDAG &DAG) {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00006111 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006112}
6113
Dan Gohman475871a2008-07-27 21:46:04 +00006114SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG)
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006115{
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006116 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00006117 SDValue Chain = Op.getOperand(0);
6118 SDValue Offset = Op.getOperand(1);
6119 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006120 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006121
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00006122 SDValue Frame = DAG.getRegister(Subtarget->is64Bit() ? X86::RBP : X86::EBP,
6123 getPointerTy());
6124 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006125
Dale Johannesene4d209d2009-02-03 20:21:25 +00006126 SDValue StoreAddr = DAG.getNode(ISD::SUB, dl, getPointerTy(), Frame,
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00006127 DAG.getIntPtrConstant(-TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006128 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
6129 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, NULL, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00006130 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00006131 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006132
Dale Johannesene4d209d2009-02-03 20:21:25 +00006133 return DAG.getNode(X86ISD::EH_RETURN, dl,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00006134 MVT::Other,
6135 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006136}
6137
Dan Gohman475871a2008-07-27 21:46:04 +00006138SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Duncan Sandsb116fac2007-07-27 20:02:49 +00006139 SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00006140 SDValue Root = Op.getOperand(0);
6141 SDValue Trmp = Op.getOperand(1); // trampoline
6142 SDValue FPtr = Op.getOperand(2); // nested function
6143 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006144 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00006145
Dan Gohman69de1932008-02-06 22:27:42 +00006146 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00006147
Duncan Sands339e14f2008-01-16 22:55:25 +00006148 const X86InstrInfo *TII =
6149 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
6150
Duncan Sandsb116fac2007-07-27 20:02:49 +00006151 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006152 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00006153
6154 // Large code-model.
6155
6156 const unsigned char JMP64r = TII->getBaseOpcodeFor(X86::JMP64r);
6157 const unsigned char MOV64ri = TII->getBaseOpcodeFor(X86::MOV64ri);
6158
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00006159 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
6160 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00006161
6162 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
6163
6164 // Load the pointer to the nested function into R11.
6165 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00006166 SDValue Addr = Trmp;
Dale Johannesene4d209d2009-02-03 20:21:25 +00006167 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6168 Addr, TrmpAddr, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00006169
Scott Michelfdc40a02009-02-17 22:15:04 +00006170 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006171 DAG.getConstant(2, MVT::i64));
6172 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr, TrmpAddr, 2, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00006173
6174 // Load the 'nest' parameter value into R10.
6175 // R10 is specified in X86CallingConv.td
6176 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Scott Michelfdc40a02009-02-17 22:15:04 +00006177 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006178 DAG.getConstant(10, MVT::i64));
6179 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6180 Addr, TrmpAddr, 10);
Duncan Sands339e14f2008-01-16 22:55:25 +00006181
Scott Michelfdc40a02009-02-17 22:15:04 +00006182 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006183 DAG.getConstant(12, MVT::i64));
6184 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 12, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00006185
6186 // Jump to the nested function.
6187 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Scott Michelfdc40a02009-02-17 22:15:04 +00006188 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006189 DAG.getConstant(20, MVT::i64));
6190 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6191 Addr, TrmpAddr, 20);
Duncan Sands339e14f2008-01-16 22:55:25 +00006192
6193 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Scott Michelfdc40a02009-02-17 22:15:04 +00006194 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006195 DAG.getConstant(22, MVT::i64));
6196 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Dan Gohman69de1932008-02-06 22:27:42 +00006197 TrmpAddr, 22);
Duncan Sands339e14f2008-01-16 22:55:25 +00006198
Dan Gohman475871a2008-07-27 21:46:04 +00006199 SDValue Ops[] =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006200 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
6201 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006202 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00006203 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00006204 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
6205 unsigned CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00006206 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006207
6208 switch (CC) {
6209 default:
6210 assert(0 && "Unsupported calling convention");
6211 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00006212 case CallingConv::X86_StdCall: {
6213 // Pass 'nest' parameter in ECX.
6214 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00006215 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006216
6217 // Check that ECX wasn't needed by an 'inreg' parameter.
6218 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00006219 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00006220
Chris Lattner58d74912008-03-12 17:45:29 +00006221 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00006222 unsigned InRegCount = 0;
6223 unsigned Idx = 1;
6224
6225 for (FunctionType::param_iterator I = FTy->param_begin(),
6226 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00006227 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00006228 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00006229 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006230
6231 if (InRegCount > 2) {
6232 cerr << "Nest register in use - reduce number of inreg parameters!\n";
6233 abort();
6234 }
6235 }
6236 break;
6237 }
6238 case CallingConv::X86_FastCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00006239 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00006240 // Pass 'nest' parameter in EAX.
6241 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00006242 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006243 break;
6244 }
6245
Dan Gohman475871a2008-07-27 21:46:04 +00006246 SDValue OutChains[4];
6247 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006248
Scott Michelfdc40a02009-02-17 22:15:04 +00006249 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006250 DAG.getConstant(10, MVT::i32));
6251 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006252
Duncan Sands339e14f2008-01-16 22:55:25 +00006253 const unsigned char MOV32ri = TII->getBaseOpcodeFor(X86::MOV32ri);
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00006254 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00006255 OutChains[0] = DAG.getStore(Root, dl,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006256 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Dan Gohman69de1932008-02-06 22:27:42 +00006257 Trmp, TrmpAddr, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006258
Scott Michelfdc40a02009-02-17 22:15:04 +00006259 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006260 DAG.getConstant(1, MVT::i32));
6261 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 1, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006262
Duncan Sands339e14f2008-01-16 22:55:25 +00006263 const unsigned char JMP = TII->getBaseOpcodeFor(X86::JMP);
Scott Michelfdc40a02009-02-17 22:15:04 +00006264 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006265 DAG.getConstant(5, MVT::i32));
6266 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Dan Gohman69de1932008-02-06 22:27:42 +00006267 TrmpAddr, 5, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006268
Scott Michelfdc40a02009-02-17 22:15:04 +00006269 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006270 DAG.getConstant(6, MVT::i32));
6271 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr, TrmpAddr, 6, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006272
Dan Gohman475871a2008-07-27 21:46:04 +00006273 SDValue Ops[] =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006274 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
6275 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006276 }
6277}
6278
Dan Gohman475871a2008-07-27 21:46:04 +00006279SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006280 /*
6281 The rounding mode is in bits 11:10 of FPSR, and has the following
6282 settings:
6283 00 Round to nearest
6284 01 Round to -inf
6285 10 Round to +inf
6286 11 Round to 0
6287
6288 FLT_ROUNDS, on the other hand, expects the following:
6289 -1 Undefined
6290 0 Round to 0
6291 1 Round to nearest
6292 2 Round to +inf
6293 3 Round to -inf
6294
6295 To perform the conversion, we do:
6296 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
6297 */
6298
6299 MachineFunction &MF = DAG.getMachineFunction();
6300 const TargetMachine &TM = MF.getTarget();
6301 const TargetFrameInfo &TFI = *TM.getFrameInfo();
6302 unsigned StackAlignment = TFI.getStackAlignment();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006303 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006304 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006305
6306 // Save FP Control Word to stack slot
6307 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment);
Dan Gohman475871a2008-07-27 21:46:04 +00006308 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006309
Dale Johannesene4d209d2009-02-03 20:21:25 +00006310 SDValue Chain = DAG.getNode(X86ISD::FNSTCW16m, dl, MVT::Other,
Evan Cheng8a186ae2008-09-24 23:26:36 +00006311 DAG.getEntryNode(), StackSlot);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006312
6313 // Load FP Control Word from stack slot
Dale Johannesene4d209d2009-02-03 20:21:25 +00006314 SDValue CWD = DAG.getLoad(MVT::i16, dl, Chain, StackSlot, NULL, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006315
6316 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00006317 SDValue CWD1 =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006318 DAG.getNode(ISD::SRL, dl, MVT::i16,
6319 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006320 CWD, DAG.getConstant(0x800, MVT::i16)),
6321 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00006322 SDValue CWD2 =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006323 DAG.getNode(ISD::SRL, dl, MVT::i16,
6324 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006325 CWD, DAG.getConstant(0x400, MVT::i16)),
6326 DAG.getConstant(9, MVT::i8));
6327
Dan Gohman475871a2008-07-27 21:46:04 +00006328 SDValue RetVal =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006329 DAG.getNode(ISD::AND, dl, MVT::i16,
6330 DAG.getNode(ISD::ADD, dl, MVT::i16,
6331 DAG.getNode(ISD::OR, dl, MVT::i16, CWD1, CWD2),
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006332 DAG.getConstant(1, MVT::i16)),
6333 DAG.getConstant(3, MVT::i16));
6334
6335
Duncan Sands83ec4b62008-06-06 12:08:01 +00006336 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006337 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006338}
6339
Dan Gohman475871a2008-07-27 21:46:04 +00006340SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006341 MVT VT = Op.getValueType();
6342 MVT OpVT = VT;
6343 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006344 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00006345
6346 Op = Op.getOperand(0);
6347 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00006348 // Zero extend to i32 since there is not an i8 bsr.
Evan Cheng18efe262007-12-14 02:13:44 +00006349 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00006350 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00006351 }
Evan Cheng18efe262007-12-14 02:13:44 +00006352
Evan Cheng152804e2007-12-14 08:30:15 +00006353 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
6354 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006355 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00006356
6357 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Dan Gohman475871a2008-07-27 21:46:04 +00006358 SmallVector<SDValue, 4> Ops;
Evan Cheng152804e2007-12-14 08:30:15 +00006359 Ops.push_back(Op);
6360 Ops.push_back(DAG.getConstant(NumBits+NumBits-1, OpVT));
6361 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6362 Ops.push_back(Op.getValue(1));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006363 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng152804e2007-12-14 08:30:15 +00006364
6365 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00006366 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00006367
Evan Cheng18efe262007-12-14 02:13:44 +00006368 if (VT == MVT::i8)
Dale Johannesene4d209d2009-02-03 20:21:25 +00006369 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00006370 return Op;
6371}
6372
Dan Gohman475871a2008-07-27 21:46:04 +00006373SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006374 MVT VT = Op.getValueType();
6375 MVT OpVT = VT;
6376 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006377 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00006378
6379 Op = Op.getOperand(0);
6380 if (VT == MVT::i8) {
6381 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00006382 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00006383 }
Evan Cheng152804e2007-12-14 08:30:15 +00006384
6385 // Issue a bsf (scan bits forward) which also sets EFLAGS.
6386 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006387 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00006388
6389 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Dan Gohman475871a2008-07-27 21:46:04 +00006390 SmallVector<SDValue, 4> Ops;
Evan Cheng152804e2007-12-14 08:30:15 +00006391 Ops.push_back(Op);
6392 Ops.push_back(DAG.getConstant(NumBits, OpVT));
6393 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6394 Ops.push_back(Op.getValue(1));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006395 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng152804e2007-12-14 08:30:15 +00006396
Evan Cheng18efe262007-12-14 02:13:44 +00006397 if (VT == MVT::i8)
Dale Johannesene4d209d2009-02-03 20:21:25 +00006398 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00006399 return Op;
6400}
6401
Mon P Wangaf9b9522008-12-18 21:42:19 +00006402SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) {
6403 MVT VT = Op.getValueType();
6404 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006405 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00006406
Mon P Wangaf9b9522008-12-18 21:42:19 +00006407 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
6408 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
6409 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
6410 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
6411 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
6412 //
6413 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
6414 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
6415 // return AloBlo + AloBhi + AhiBlo;
6416
6417 SDValue A = Op.getOperand(0);
6418 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006419
Dale Johannesene4d209d2009-02-03 20:21:25 +00006420 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006421 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6422 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006423 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006424 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6425 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006426 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006427 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6428 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006429 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006430 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6431 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006432 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006433 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6434 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006435 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006436 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6437 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006438 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006439 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6440 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006441 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
6442 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00006443 return Res;
6444}
6445
6446
Bill Wendling74c37652008-12-09 22:08:41 +00006447SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) {
6448 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
6449 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00006450 // looks for this combo and may remove the "setcc" instruction if the "setcc"
6451 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00006452 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00006453 SDValue LHS = N->getOperand(0);
6454 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00006455 unsigned BaseOp = 0;
6456 unsigned Cond = 0;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006457 DebugLoc dl = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00006458
6459 switch (Op.getOpcode()) {
6460 default: assert(0 && "Unknown ovf instruction!");
6461 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00006462 // A subtract of one will be selected as a INC. Note that INC doesn't
6463 // set CF, so we can't do this for UADDO.
6464 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
6465 if (C->getAPIntValue() == 1) {
6466 BaseOp = X86ISD::INC;
6467 Cond = X86::COND_O;
6468 break;
6469 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006470 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00006471 Cond = X86::COND_O;
6472 break;
6473 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006474 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00006475 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00006476 break;
6477 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00006478 // A subtract of one will be selected as a DEC. Note that DEC doesn't
6479 // set CF, so we can't do this for USUBO.
6480 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
6481 if (C->getAPIntValue() == 1) {
6482 BaseOp = X86ISD::DEC;
6483 Cond = X86::COND_O;
6484 break;
6485 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006486 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00006487 Cond = X86::COND_O;
6488 break;
6489 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006490 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00006491 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00006492 break;
6493 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00006494 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00006495 Cond = X86::COND_O;
6496 break;
6497 case ISD::UMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00006498 BaseOp = X86ISD::UMUL;
Dan Gohman653456c2009-01-07 00:15:08 +00006499 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00006500 break;
6501 }
Bill Wendling3fafd932008-11-26 22:37:40 +00006502
Bill Wendling61edeb52008-12-02 01:06:39 +00006503 // Also sets EFLAGS.
6504 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006505 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00006506
Bill Wendling61edeb52008-12-02 01:06:39 +00006507 SDValue SetCC =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006508 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Bill Wendlingbc5e15e2008-12-10 02:01:32 +00006509 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00006510
Bill Wendling61edeb52008-12-02 01:06:39 +00006511 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
6512 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00006513}
6514
Dan Gohman475871a2008-07-27 21:46:04 +00006515SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanfd4418f2008-06-25 16:07:49 +00006516 MVT T = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006517 DebugLoc dl = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00006518 unsigned Reg = 0;
6519 unsigned size = 0;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006520 switch(T.getSimpleVT()) {
6521 default:
6522 assert(false && "Invalid value type!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00006523 case MVT::i8: Reg = X86::AL; size = 1; break;
6524 case MVT::i16: Reg = X86::AX; size = 2; break;
6525 case MVT::i32: Reg = X86::EAX; size = 4; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006526 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00006527 assert(Subtarget->is64Bit() && "Node not type legal!");
6528 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006529 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00006530 }
Dale Johannesendd64c412009-02-04 00:33:20 +00006531 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), dl, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00006532 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00006533 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00006534 Op.getOperand(1),
6535 Op.getOperand(3),
6536 DAG.getTargetConstant(size, MVT::i8),
6537 cpIn.getValue(1) };
Andrew Lenharth26ed8692008-03-01 21:52:34 +00006538 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006539 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG_DAG, dl, Tys, Ops, 5);
Scott Michelfdc40a02009-02-17 22:15:04 +00006540 SDValue cpOut =
Dale Johannesendd64c412009-02-04 00:33:20 +00006541 DAG.getCopyFromReg(Result.getValue(0), dl, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00006542 return cpOut;
6543}
6544
Duncan Sands1607f052008-12-01 11:39:25 +00006545SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Gabor Greif327ef032008-08-28 23:19:51 +00006546 SelectionDAG &DAG) {
Duncan Sands1607f052008-12-01 11:39:25 +00006547 assert(Subtarget->is64Bit() && "Result not type legalized?");
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006548 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00006549 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006550 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00006551 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Dale Johannesendd64c412009-02-04 00:33:20 +00006552 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
6553 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00006554 rax.getValue(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006555 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
Duncan Sands1607f052008-12-01 11:39:25 +00006556 DAG.getConstant(32, MVT::i8));
6557 SDValue Ops[] = {
Dale Johannesene4d209d2009-02-03 20:21:25 +00006558 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00006559 rdx.getValue(1)
6560 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00006561 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006562}
6563
Dale Johannesen71d1bf52008-09-29 22:25:26 +00006564SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
6565 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00006566 DebugLoc dl = Node->getDebugLoc();
Dale Johannesen71d1bf52008-09-29 22:25:26 +00006567 MVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006568 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00006569 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006570 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006571 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00006572 Node->getOperand(0),
6573 Node->getOperand(1), negOp,
6574 cast<AtomicSDNode>(Node)->getSrcValue(),
6575 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00006576}
6577
Evan Cheng0db9fe62006-04-25 20:13:52 +00006578/// LowerOperation - Provide custom lowering hooks for some operations.
6579///
Dan Gohman475871a2008-07-27 21:46:04 +00006580SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006581 switch (Op.getOpcode()) {
6582 default: assert(0 && "Should not custom lower this!");
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006583 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
6584 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006585 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
6586 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6587 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6588 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
6589 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
6590 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
6591 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006592 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00006593 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006594 case ISD::SHL_PARTS:
6595 case ISD::SRA_PARTS:
6596 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
6597 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006598 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006599 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00006600 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006601 case ISD::FABS: return LowerFABS(Op, DAG);
6602 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006603 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00006604 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00006605 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00006606 case ISD::SELECT: return LowerSELECT(Op, DAG);
6607 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006608 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng32fe1032006-05-25 00:59:30 +00006609 case ISD::CALL: return LowerCALL(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006610 case ISD::RET: return LowerRET(Op, DAG);
Evan Cheng1bc78042006-04-26 01:20:17 +00006611 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006612 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00006613 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00006614 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006615 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00006616 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
6617 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006618 case ISD::FRAME_TO_ARGS_OFFSET:
6619 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00006620 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006621 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006622 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00006623 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00006624 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
6625 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00006626 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00006627 case ISD::SADDO:
6628 case ISD::UADDO:
6629 case ISD::SSUBO:
6630 case ISD::USUBO:
6631 case ISD::SMULO:
6632 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00006633 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006634 }
Chris Lattner27a6c732007-11-24 07:07:01 +00006635}
6636
Duncan Sands1607f052008-12-01 11:39:25 +00006637void X86TargetLowering::
6638ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
6639 SelectionDAG &DAG, unsigned NewOp) {
6640 MVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006641 DebugLoc dl = Node->getDebugLoc();
Duncan Sands1607f052008-12-01 11:39:25 +00006642 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
6643
6644 SDValue Chain = Node->getOperand(0);
6645 SDValue In1 = Node->getOperand(1);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006646 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00006647 Node->getOperand(2), DAG.getIntPtrConstant(0));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006648 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00006649 Node->getOperand(2), DAG.getIntPtrConstant(1));
6650 // This is a generalized SDNode, not an AtomicSDNode, so it doesn't
6651 // have a MemOperand. Pass the info through as a normal operand.
6652 SDValue LSI = DAG.getMemOperand(cast<MemSDNode>(Node)->getMemOperand());
6653 SDValue Ops[] = { Chain, In1, In2L, In2H, LSI };
6654 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006655 SDValue Result = DAG.getNode(NewOp, dl, Tys, Ops, 5);
Duncan Sands1607f052008-12-01 11:39:25 +00006656 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Dale Johannesene4d209d2009-02-03 20:21:25 +00006657 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00006658 Results.push_back(Result.getValue(2));
6659}
6660
Duncan Sands126d9072008-07-04 11:47:58 +00006661/// ReplaceNodeResults - Replace a node with an illegal result type
6662/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00006663void X86TargetLowering::ReplaceNodeResults(SDNode *N,
6664 SmallVectorImpl<SDValue>&Results,
6665 SelectionDAG &DAG) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00006666 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00006667 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00006668 default:
Duncan Sands1607f052008-12-01 11:39:25 +00006669 assert(false && "Do not know how to custom type legalize this operation!");
6670 return;
6671 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00006672 std::pair<SDValue,SDValue> Vals =
6673 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00006674 SDValue FIST = Vals.first, StackSlot = Vals.second;
6675 if (FIST.getNode() != 0) {
6676 MVT VT = N->getValueType(0);
6677 // Return a load from the stack slot.
Dale Johannesene4d209d2009-02-03 20:21:25 +00006678 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot, NULL, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00006679 }
6680 return;
6681 }
6682 case ISD::READCYCLECOUNTER: {
6683 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6684 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006685 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006686 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00006687 rd.getValue(1));
6688 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00006689 eax.getValue(2));
6690 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
6691 SDValue Ops[] = { eax, edx };
Dale Johannesene4d209d2009-02-03 20:21:25 +00006692 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00006693 Results.push_back(edx.getValue(1));
6694 return;
6695 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006696 case ISD::ATOMIC_CMP_SWAP: {
Duncan Sands1607f052008-12-01 11:39:25 +00006697 MVT T = N->getValueType(0);
6698 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
6699 SDValue cpInL, cpInH;
Dale Johannesene4d209d2009-02-03 20:21:25 +00006700 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands1607f052008-12-01 11:39:25 +00006701 DAG.getConstant(0, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006702 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands1607f052008-12-01 11:39:25 +00006703 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00006704 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
6705 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00006706 cpInL.getValue(1));
6707 SDValue swapInL, swapInH;
Dale Johannesene4d209d2009-02-03 20:21:25 +00006708 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands1607f052008-12-01 11:39:25 +00006709 DAG.getConstant(0, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006710 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands1607f052008-12-01 11:39:25 +00006711 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00006712 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00006713 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00006714 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00006715 swapInL.getValue(1));
6716 SDValue Ops[] = { swapInH.getValue(0),
6717 N->getOperand(1),
6718 swapInH.getValue(1) };
6719 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006720 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG8_DAG, dl, Tys, Ops, 3);
Dale Johannesendd64c412009-02-04 00:33:20 +00006721 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
6722 MVT::i32, Result.getValue(1));
6723 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
6724 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00006725 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Dale Johannesene4d209d2009-02-03 20:21:25 +00006726 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00006727 Results.push_back(cpOutH.getValue(1));
6728 return;
6729 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006730 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00006731 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
6732 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006733 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00006734 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
6735 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006736 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00006737 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
6738 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006739 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00006740 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
6741 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006742 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00006743 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
6744 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006745 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00006746 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
6747 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006748 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00006749 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
6750 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00006751 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006752}
6753
Evan Cheng72261582005-12-20 06:22:03 +00006754const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
6755 switch (Opcode) {
6756 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00006757 case X86ISD::BSF: return "X86ISD::BSF";
6758 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00006759 case X86ISD::SHLD: return "X86ISD::SHLD";
6760 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00006761 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00006762 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00006763 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00006764 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00006765 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00006766 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00006767 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
6768 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
6769 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00006770 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00006771 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00006772 case X86ISD::CALL: return "X86ISD::CALL";
6773 case X86ISD::TAILCALL: return "X86ISD::TAILCALL";
6774 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00006775 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00006776 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00006777 case X86ISD::COMI: return "X86ISD::COMI";
6778 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00006779 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Cheng72261582005-12-20 06:22:03 +00006780 case X86ISD::CMOV: return "X86ISD::CMOV";
6781 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00006782 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00006783 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
6784 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00006785 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00006786 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Nate Begeman14d12ca2008-02-11 04:19:36 +00006787 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00006788 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00006789 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
6790 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00006791 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00006792 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Evan Cheng8ca29322006-11-10 21:43:37 +00006793 case X86ISD::FMAX: return "X86ISD::FMAX";
6794 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00006795 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
6796 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006797 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Rafael Espindola094fad32009-04-08 21:14:34 +00006798 case X86ISD::SegmentBaseAddress: return "X86ISD::SegmentBaseAddress";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006799 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00006800 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006801 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00006802 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
6803 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006804 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
6805 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
6806 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
6807 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
6808 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
6809 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00006810 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
6811 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00006812 case X86ISD::VSHL: return "X86ISD::VSHL";
6813 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00006814 case X86ISD::CMPPD: return "X86ISD::CMPPD";
6815 case X86ISD::CMPPS: return "X86ISD::CMPPS";
6816 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
6817 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
6818 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
6819 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
6820 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
6821 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
6822 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
6823 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006824 case X86ISD::ADD: return "X86ISD::ADD";
6825 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingd350e022008-12-12 21:15:41 +00006826 case X86ISD::SMUL: return "X86ISD::SMUL";
6827 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00006828 case X86ISD::INC: return "X86ISD::INC";
6829 case X86ISD::DEC: return "X86ISD::DEC";
Evan Cheng73f24c92009-03-30 21:36:47 +00006830 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Evan Cheng72261582005-12-20 06:22:03 +00006831 }
6832}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00006833
Chris Lattnerc9addb72007-03-30 23:15:24 +00006834// isLegalAddressingMode - Return true if the addressing mode represented
6835// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00006836bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00006837 const Type *Ty) const {
6838 // X86 supports extremely general addressing modes.
Scott Michelfdc40a02009-02-17 22:15:04 +00006839
Chris Lattnerc9addb72007-03-30 23:15:24 +00006840 // X86 allows a sign-extended 32-bit immediate field as a displacement.
6841 if (AM.BaseOffs <= -(1LL << 32) || AM.BaseOffs >= (1LL << 32)-1)
6842 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006843
Chris Lattnerc9addb72007-03-30 23:15:24 +00006844 if (AM.BaseGV) {
Evan Cheng52787842007-08-01 23:46:47 +00006845 // We can only fold this if we don't need an extra load.
Chris Lattnerc9addb72007-03-30 23:15:24 +00006846 if (Subtarget->GVRequiresExtraLoad(AM.BaseGV, getTargetMachine(), false))
6847 return false;
Dale Johannesen203af582008-12-05 21:47:27 +00006848 // If BaseGV requires a register, we cannot also have a BaseReg.
6849 if (Subtarget->GVRequiresRegister(AM.BaseGV, getTargetMachine(), false) &&
6850 AM.HasBaseReg)
6851 return false;
Evan Cheng52787842007-08-01 23:46:47 +00006852
6853 // X86-64 only supports addr of globals in small code model.
6854 if (Subtarget->is64Bit()) {
6855 if (getTargetMachine().getCodeModel() != CodeModel::Small)
6856 return false;
6857 // If lower 4G is not available, then we must use rip-relative addressing.
6858 if (AM.BaseOffs || AM.Scale > 1)
6859 return false;
6860 }
Chris Lattnerc9addb72007-03-30 23:15:24 +00006861 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006862
Chris Lattnerc9addb72007-03-30 23:15:24 +00006863 switch (AM.Scale) {
6864 case 0:
6865 case 1:
6866 case 2:
6867 case 4:
6868 case 8:
6869 // These scales always work.
6870 break;
6871 case 3:
6872 case 5:
6873 case 9:
6874 // These scales are formed with basereg+scalereg. Only accept if there is
6875 // no basereg yet.
6876 if (AM.HasBaseReg)
6877 return false;
6878 break;
6879 default: // Other stuff never works.
6880 return false;
6881 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006882
Chris Lattnerc9addb72007-03-30 23:15:24 +00006883 return true;
6884}
6885
6886
Evan Cheng2bd122c2007-10-26 01:56:11 +00006887bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
6888 if (!Ty1->isInteger() || !Ty2->isInteger())
6889 return false;
Evan Chenge127a732007-10-29 07:57:50 +00006890 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
6891 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00006892 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00006893 return false;
6894 return Subtarget->is64Bit() || NumBits1 < 64;
Evan Cheng2bd122c2007-10-26 01:56:11 +00006895}
6896
Duncan Sands83ec4b62008-06-06 12:08:01 +00006897bool X86TargetLowering::isTruncateFree(MVT VT1, MVT VT2) const {
6898 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00006899 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006900 unsigned NumBits1 = VT1.getSizeInBits();
6901 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00006902 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00006903 return false;
6904 return Subtarget->is64Bit() || NumBits1 < 64;
6905}
Evan Cheng2bd122c2007-10-26 01:56:11 +00006906
Dan Gohman97121ba2009-04-08 00:15:30 +00006907bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00006908 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Dan Gohman97121ba2009-04-08 00:15:30 +00006909 return Ty1 == Type::Int32Ty && Ty2 == Type::Int64Ty && Subtarget->is64Bit();
6910}
6911
6912bool X86TargetLowering::isZExtFree(MVT VT1, MVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00006913 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Dan Gohman97121ba2009-04-08 00:15:30 +00006914 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
6915}
6916
Evan Cheng8b944d32009-05-28 00:35:15 +00006917bool X86TargetLowering::isNarrowingProfitable(MVT VT1, MVT VT2) const {
6918 // i16 instructions are longer (0x66 prefix) and potentially slower.
6919 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
6920}
6921
Evan Cheng60c07e12006-07-05 22:17:51 +00006922/// isShuffleMaskLegal - Targets can use this to indicate that they only
6923/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
6924/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
6925/// are assumed to be legal.
6926bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00006927X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
6928 MVT VT) const {
Evan Cheng60c07e12006-07-05 22:17:51 +00006929 // Only do shuffles on 128-bit vector types for now.
Nate Begeman9008ca62009-04-27 18:41:29 +00006930 if (VT.getSizeInBits() == 64)
6931 return false;
6932
6933 // FIXME: pshufb, blends, palignr, shifts.
6934 return (VT.getVectorNumElements() == 2 ||
6935 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
6936 isMOVLMask(M, VT) ||
6937 isSHUFPMask(M, VT) ||
6938 isPSHUFDMask(M, VT) ||
6939 isPSHUFHWMask(M, VT) ||
6940 isPSHUFLWMask(M, VT) ||
6941 isUNPCKLMask(M, VT) ||
6942 isUNPCKHMask(M, VT) ||
6943 isUNPCKL_v_undef_Mask(M, VT) ||
6944 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00006945}
6946
Dan Gohman7d8143f2008-04-09 20:09:42 +00006947bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00006948X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Nate Begeman9008ca62009-04-27 18:41:29 +00006949 MVT VT) const {
6950 unsigned NumElts = VT.getVectorNumElements();
6951 // FIXME: This collection of masks seems suspect.
6952 if (NumElts == 2)
6953 return true;
6954 if (NumElts == 4 && VT.getSizeInBits() == 128) {
6955 return (isMOVLMask(Mask, VT) ||
6956 isCommutedMOVLMask(Mask, VT, true) ||
6957 isSHUFPMask(Mask, VT) ||
6958 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00006959 }
6960 return false;
6961}
6962
6963//===----------------------------------------------------------------------===//
6964// X86 Scheduler Hooks
6965//===----------------------------------------------------------------------===//
6966
Mon P Wang63307c32008-05-05 19:05:59 +00006967// private utility function
6968MachineBasicBlock *
6969X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
6970 MachineBasicBlock *MBB,
6971 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00006972 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00006973 unsigned LoadOpc,
6974 unsigned CXchgOpc,
6975 unsigned copyOpc,
6976 unsigned notOpc,
6977 unsigned EAXreg,
6978 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00006979 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00006980 // For the atomic bitwise operator, we generate
6981 // thisMBB:
6982 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00006983 // ld t1 = [bitinstr.addr]
6984 // op t2 = t1, [bitinstr.val]
6985 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00006986 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
6987 // bz newMBB
6988 // fallthrough -->nextMBB
6989 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6990 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00006991 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00006992 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00006993
Mon P Wang63307c32008-05-05 19:05:59 +00006994 /// First build the CFG
6995 MachineFunction *F = MBB->getParent();
6996 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00006997 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
6998 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
6999 F->insert(MBBIter, newMBB);
7000 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007001
Mon P Wang63307c32008-05-05 19:05:59 +00007002 // Move all successors to thisMBB to nextMBB
7003 nextMBB->transferSuccessors(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007004
Mon P Wang63307c32008-05-05 19:05:59 +00007005 // Update thisMBB to fall through to newMBB
7006 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007007
Mon P Wang63307c32008-05-05 19:05:59 +00007008 // newMBB jumps to itself and fall through to nextMBB
7009 newMBB->addSuccessor(nextMBB);
7010 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007011
Mon P Wang63307c32008-05-05 19:05:59 +00007012 // Insert instructions into newMBB based on incoming instruction
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007013 assert(bInstr->getNumOperands() < X86AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00007014 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00007015 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00007016 MachineOperand& destOper = bInstr->getOperand(0);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007017 MachineOperand* argOpers[2 + X86AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00007018 int numArgs = bInstr->getNumOperands() - 1;
7019 for (int i=0; i < numArgs; ++i)
7020 argOpers[i] = &bInstr->getOperand(i+1);
7021
7022 // x86 address has 4 operands: base, index, scale, and displacement
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007023 int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
7024 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00007025
Dale Johannesen140be2d2008-08-19 18:47:28 +00007026 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007027 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00007028 for (int i=0; i <= lastAddrIndx; ++i)
7029 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007030
Dale Johannesen140be2d2008-08-19 18:47:28 +00007031 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007032 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00007033 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007034 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007035 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007036 tt = t1;
7037
Dale Johannesen140be2d2008-08-19 18:47:28 +00007038 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00007039 assert((argOpers[valArgIndx]->isReg() ||
7040 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00007041 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00007042 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00007043 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00007044 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00007045 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007046 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00007047 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007048
Dale Johannesene4d209d2009-02-03 20:21:25 +00007049 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00007050 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007051
Dale Johannesene4d209d2009-02-03 20:21:25 +00007052 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00007053 for (int i=0; i <= lastAddrIndx; ++i)
7054 (*MIB).addOperand(*argOpers[i]);
7055 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00007056 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7057 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7058
Dale Johannesene4d209d2009-02-03 20:21:25 +00007059 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00007060 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00007061
Mon P Wang63307c32008-05-05 19:05:59 +00007062 // insert branch
Dale Johannesene4d209d2009-02-03 20:21:25 +00007063 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00007064
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007065 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00007066 return nextMBB;
7067}
7068
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00007069// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00007070MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007071X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
7072 MachineBasicBlock *MBB,
7073 unsigned regOpcL,
7074 unsigned regOpcH,
7075 unsigned immOpcL,
7076 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00007077 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007078 // For the atomic bitwise operator, we generate
7079 // thisMBB (instructions are in pairs, except cmpxchg8b)
7080 // ld t1,t2 = [bitinstr.addr]
7081 // newMBB:
7082 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
7083 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00007084 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007085 // mov ECX, EBX <- t5, t6
7086 // mov EAX, EDX <- t1, t2
7087 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
7088 // mov t3, t4 <- EAX, EDX
7089 // bz newMBB
7090 // result in out1, out2
7091 // fallthrough -->nextMBB
7092
7093 const TargetRegisterClass *RC = X86::GR32RegisterClass;
7094 const unsigned LoadOpc = X86::MOV32rm;
7095 const unsigned copyOpc = X86::MOV32rr;
7096 const unsigned NotOpc = X86::NOT32r;
7097 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7098 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
7099 MachineFunction::iterator MBBIter = MBB;
7100 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00007101
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007102 /// First build the CFG
7103 MachineFunction *F = MBB->getParent();
7104 MachineBasicBlock *thisMBB = MBB;
7105 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7106 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7107 F->insert(MBBIter, newMBB);
7108 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007109
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007110 // Move all successors to thisMBB to nextMBB
7111 nextMBB->transferSuccessors(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007112
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007113 // Update thisMBB to fall through to newMBB
7114 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007115
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007116 // newMBB jumps to itself and fall through to nextMBB
7117 newMBB->addSuccessor(nextMBB);
7118 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007119
Dale Johannesene4d209d2009-02-03 20:21:25 +00007120 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007121 // Insert instructions into newMBB based on incoming instruction
7122 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007123 assert(bInstr->getNumOperands() < X86AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00007124 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007125 MachineOperand& dest1Oper = bInstr->getOperand(0);
7126 MachineOperand& dest2Oper = bInstr->getOperand(1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007127 MachineOperand* argOpers[2 + X86AddrNumOperands];
7128 for (int i=0; i < 2 + X86AddrNumOperands; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007129 argOpers[i] = &bInstr->getOperand(i+2);
7130
7131 // x86 address has 4 operands: base, index, scale, and displacement
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007132 int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00007133
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007134 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007135 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007136 for (int i=0; i <= lastAddrIndx; ++i)
7137 (*MIB).addOperand(*argOpers[i]);
7138 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007139 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00007140 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00007141 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007142 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00007143 MachineOperand newOp3 = *(argOpers[3]);
7144 if (newOp3.isImm())
7145 newOp3.setImm(newOp3.getImm()+4);
7146 else
7147 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007148 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00007149 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007150
7151 // t3/4 are defined later, at the bottom of the loop
7152 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
7153 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007154 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007155 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007156 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007157 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
7158
7159 unsigned tt1 = F->getRegInfo().createVirtualRegister(RC);
7160 unsigned tt2 = F->getRegInfo().createVirtualRegister(RC);
Scott Michelfdc40a02009-02-17 22:15:04 +00007161 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00007162 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt1).addReg(t1);
7163 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt2).addReg(t2);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007164 } else {
7165 tt1 = t1;
7166 tt2 = t2;
7167 }
7168
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007169 int valArgIndx = lastAddrIndx + 1;
7170 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +00007171 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007172 "invalid operand");
7173 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
7174 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007175 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00007176 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007177 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00007178 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00007179 if (regOpcL != X86::MOV32rr)
7180 MIB.addReg(tt1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007181 (*MIB).addOperand(*argOpers[valArgIndx]);
7182 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00007183 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007184 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00007185 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007186 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00007187 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007188 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00007189 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00007190 if (regOpcH != X86::MOV32rr)
7191 MIB.addReg(tt2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007192 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007193
Dale Johannesene4d209d2009-02-03 20:21:25 +00007194 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007195 MIB.addReg(t1);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007196 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007197 MIB.addReg(t2);
7198
Dale Johannesene4d209d2009-02-03 20:21:25 +00007199 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007200 MIB.addReg(t5);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007201 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007202 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00007203
Dale Johannesene4d209d2009-02-03 20:21:25 +00007204 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007205 for (int i=0; i <= lastAddrIndx; ++i)
7206 (*MIB).addOperand(*argOpers[i]);
7207
7208 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7209 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7210
Dale Johannesene4d209d2009-02-03 20:21:25 +00007211 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007212 MIB.addReg(X86::EAX);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007213 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007214 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00007215
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007216 // insert branch
Dale Johannesene4d209d2009-02-03 20:21:25 +00007217 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007218
7219 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
7220 return nextMBB;
7221}
7222
7223// private utility function
7224MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00007225X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
7226 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00007227 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00007228 // For the atomic min/max operator, we generate
7229 // thisMBB:
7230 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00007231 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00007232 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00007233 // cmp t1, t2
7234 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00007235 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00007236 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7237 // bz newMBB
7238 // fallthrough -->nextMBB
7239 //
7240 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7241 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007242 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00007243 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00007244
Mon P Wang63307c32008-05-05 19:05:59 +00007245 /// First build the CFG
7246 MachineFunction *F = MBB->getParent();
7247 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007248 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7249 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7250 F->insert(MBBIter, newMBB);
7251 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007252
Mon P Wang63307c32008-05-05 19:05:59 +00007253 // Move all successors to thisMBB to nextMBB
7254 nextMBB->transferSuccessors(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007255
Mon P Wang63307c32008-05-05 19:05:59 +00007256 // Update thisMBB to fall through to newMBB
7257 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007258
Mon P Wang63307c32008-05-05 19:05:59 +00007259 // newMBB jumps to newMBB and fall through to nextMBB
7260 newMBB->addSuccessor(nextMBB);
7261 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007262
Dale Johannesene4d209d2009-02-03 20:21:25 +00007263 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00007264 // Insert instructions into newMBB based on incoming instruction
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007265 assert(mInstr->getNumOperands() < X86AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00007266 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00007267 MachineOperand& destOper = mInstr->getOperand(0);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007268 MachineOperand* argOpers[2 + X86AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00007269 int numArgs = mInstr->getNumOperands() - 1;
7270 for (int i=0; i < numArgs; ++i)
7271 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007272
Mon P Wang63307c32008-05-05 19:05:59 +00007273 // x86 address has 4 operands: base, index, scale, and displacement
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007274 int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
7275 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00007276
Mon P Wangab3e7472008-05-05 22:56:23 +00007277 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007278 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00007279 for (int i=0; i <= lastAddrIndx; ++i)
7280 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00007281
Mon P Wang63307c32008-05-05 19:05:59 +00007282 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00007283 assert((argOpers[valArgIndx]->isReg() ||
7284 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00007285 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00007286
7287 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00007288 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00007289 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00007290 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00007291 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00007292 (*MIB).addOperand(*argOpers[valArgIndx]);
7293
Dale Johannesene4d209d2009-02-03 20:21:25 +00007294 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00007295 MIB.addReg(t1);
7296
Dale Johannesene4d209d2009-02-03 20:21:25 +00007297 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00007298 MIB.addReg(t1);
7299 MIB.addReg(t2);
7300
7301 // Generate movc
7302 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007303 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00007304 MIB.addReg(t2);
7305 MIB.addReg(t1);
7306
7307 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00007308 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00007309 for (int i=0; i <= lastAddrIndx; ++i)
7310 (*MIB).addOperand(*argOpers[i]);
7311 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00007312 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7313 (*MIB).addMemOperand(*F, *mInstr->memoperands_begin());
Scott Michelfdc40a02009-02-17 22:15:04 +00007314
Dale Johannesene4d209d2009-02-03 20:21:25 +00007315 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +00007316 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +00007317
Mon P Wang63307c32008-05-05 19:05:59 +00007318 // insert branch
Dale Johannesene4d209d2009-02-03 20:21:25 +00007319 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00007320
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007321 F->DeleteMachineInstr(mInstr); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00007322 return nextMBB;
7323}
7324
7325
Evan Cheng60c07e12006-07-05 22:17:51 +00007326MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00007327X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00007328 MachineBasicBlock *BB) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00007329 DebugLoc dl = MI->getDebugLoc();
Evan Chengc0f64ff2006-11-27 23:37:22 +00007330 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Evan Cheng60c07e12006-07-05 22:17:51 +00007331 switch (MI->getOpcode()) {
7332 default: assert(false && "Unexpected instr type to insert");
Mon P Wang9e5ecb82008-12-12 01:25:51 +00007333 case X86::CMOV_V1I64:
Evan Cheng60c07e12006-07-05 22:17:51 +00007334 case X86::CMOV_FR32:
7335 case X86::CMOV_FR64:
7336 case X86::CMOV_V4F32:
7337 case X86::CMOV_V2F64:
Evan Chenge5f62042007-09-29 00:00:36 +00007338 case X86::CMOV_V2I64: {
Evan Cheng60c07e12006-07-05 22:17:51 +00007339 // To "insert" a SELECT_CC instruction, we actually have to insert the
7340 // diamond control-flow pattern. The incoming instruction knows the
7341 // destination vreg to set, the condition code register to branch on, the
7342 // true/false values to select between, and a branch opcode to use.
7343 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007344 MachineFunction::iterator It = BB;
Evan Cheng60c07e12006-07-05 22:17:51 +00007345 ++It;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007346
Evan Cheng60c07e12006-07-05 22:17:51 +00007347 // thisMBB:
7348 // ...
7349 // TrueVal = ...
7350 // cmpTY ccX, r1, r2
7351 // bCC copy1MBB
7352 // fallthrough --> copy0MBB
7353 MachineBasicBlock *thisMBB = BB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007354 MachineFunction *F = BB->getParent();
7355 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7356 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007357 unsigned Opc =
Chris Lattner7fbe9722006-10-20 17:42:20 +00007358 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
Dale Johannesene4d209d2009-02-03 20:21:25 +00007359 BuildMI(BB, dl, TII->get(Opc)).addMBB(sinkMBB);
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007360 F->insert(It, copy0MBB);
7361 F->insert(It, sinkMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00007362 // Update machine-CFG edges by transferring all successors of the current
Evan Cheng60c07e12006-07-05 22:17:51 +00007363 // block to the new block which will contain the Phi node for the select.
Mon P Wang63307c32008-05-05 19:05:59 +00007364 sinkMBB->transferSuccessors(BB);
7365
7366 // Add the true and fallthrough blocks as its successors.
Evan Cheng60c07e12006-07-05 22:17:51 +00007367 BB->addSuccessor(copy0MBB);
7368 BB->addSuccessor(sinkMBB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007369
Evan Cheng60c07e12006-07-05 22:17:51 +00007370 // copy0MBB:
7371 // %FalseValue = ...
7372 // # fallthrough to sinkMBB
7373 BB = copy0MBB;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007374
Evan Cheng60c07e12006-07-05 22:17:51 +00007375 // Update machine-CFG edges
7376 BB->addSuccessor(sinkMBB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007377
Evan Cheng60c07e12006-07-05 22:17:51 +00007378 // sinkMBB:
7379 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7380 // ...
7381 BB = sinkMBB;
Dale Johannesene4d209d2009-02-03 20:21:25 +00007382 BuildMI(BB, dl, TII->get(X86::PHI), MI->getOperand(0).getReg())
Evan Cheng60c07e12006-07-05 22:17:51 +00007383 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7384 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7385
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007386 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +00007387 return BB;
7388 }
7389
Dale Johannesen849f2142007-07-03 00:53:03 +00007390 case X86::FP32_TO_INT16_IN_MEM:
7391 case X86::FP32_TO_INT32_IN_MEM:
7392 case X86::FP32_TO_INT64_IN_MEM:
7393 case X86::FP64_TO_INT16_IN_MEM:
7394 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +00007395 case X86::FP64_TO_INT64_IN_MEM:
7396 case X86::FP80_TO_INT16_IN_MEM:
7397 case X86::FP80_TO_INT32_IN_MEM:
7398 case X86::FP80_TO_INT64_IN_MEM: {
Evan Cheng60c07e12006-07-05 22:17:51 +00007399 // Change the floating point control register to use "round towards zero"
7400 // mode when truncating to an integer value.
7401 MachineFunction *F = BB->getParent();
7402 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007403 addFrameReference(BuildMI(BB, dl, TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007404
7405 // Load the old value of the high byte of the control word...
7406 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +00007407 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Scott Michelfdc40a02009-02-17 22:15:04 +00007408 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007409 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007410
7411 // Set the high part to be round to zero...
Dale Johannesene4d209d2009-02-03 20:21:25 +00007412 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +00007413 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +00007414
7415 // Reload the modified control word now...
Dale Johannesene4d209d2009-02-03 20:21:25 +00007416 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007417
7418 // Restore the memory image of control word to original value
Dale Johannesene4d209d2009-02-03 20:21:25 +00007419 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +00007420 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +00007421
7422 // Get the X86 opcode to use.
7423 unsigned Opc;
7424 switch (MI->getOpcode()) {
7425 default: assert(0 && "illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +00007426 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
7427 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
7428 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
7429 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
7430 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
7431 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +00007432 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
7433 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
7434 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +00007435 }
7436
7437 X86AddressMode AM;
7438 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +00007439 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +00007440 AM.BaseType = X86AddressMode::RegBase;
7441 AM.Base.Reg = Op.getReg();
7442 } else {
7443 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +00007444 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +00007445 }
7446 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +00007447 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +00007448 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00007449 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +00007450 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +00007451 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00007452 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +00007453 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +00007454 AM.GV = Op.getGlobal();
7455 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +00007456 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00007457 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007458 addFullAddress(BuildMI(BB, dl, TII->get(Opc)), AM)
Rafael Espindola8ef2b892009-04-08 08:09:33 +00007459 .addReg(MI->getOperand(X86AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +00007460
7461 // Reload the original control word now.
Dale Johannesene4d209d2009-02-03 20:21:25 +00007462 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007463
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007464 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +00007465 return BB;
7466 }
Mon P Wang63307c32008-05-05 19:05:59 +00007467 case X86::ATOMAND32:
7468 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00007469 X86::AND32ri, X86::MOV32rm,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007470 X86::LCMPXCHG32, X86::MOV32rr,
7471 X86::NOT32r, X86::EAX,
7472 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +00007473 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +00007474 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
7475 X86::OR32ri, X86::MOV32rm,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007476 X86::LCMPXCHG32, X86::MOV32rr,
7477 X86::NOT32r, X86::EAX,
7478 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +00007479 case X86::ATOMXOR32:
7480 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00007481 X86::XOR32ri, X86::MOV32rm,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007482 X86::LCMPXCHG32, X86::MOV32rr,
7483 X86::NOT32r, X86::EAX,
7484 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007485 case X86::ATOMNAND32:
7486 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007487 X86::AND32ri, X86::MOV32rm,
7488 X86::LCMPXCHG32, X86::MOV32rr,
7489 X86::NOT32r, X86::EAX,
7490 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +00007491 case X86::ATOMMIN32:
7492 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
7493 case X86::ATOMMAX32:
7494 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
7495 case X86::ATOMUMIN32:
7496 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
7497 case X86::ATOMUMAX32:
7498 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +00007499
7500 case X86::ATOMAND16:
7501 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7502 X86::AND16ri, X86::MOV16rm,
7503 X86::LCMPXCHG16, X86::MOV16rr,
7504 X86::NOT16r, X86::AX,
7505 X86::GR16RegisterClass);
7506 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +00007507 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007508 X86::OR16ri, X86::MOV16rm,
7509 X86::LCMPXCHG16, X86::MOV16rr,
7510 X86::NOT16r, X86::AX,
7511 X86::GR16RegisterClass);
7512 case X86::ATOMXOR16:
7513 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
7514 X86::XOR16ri, X86::MOV16rm,
7515 X86::LCMPXCHG16, X86::MOV16rr,
7516 X86::NOT16r, X86::AX,
7517 X86::GR16RegisterClass);
7518 case X86::ATOMNAND16:
7519 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7520 X86::AND16ri, X86::MOV16rm,
7521 X86::LCMPXCHG16, X86::MOV16rr,
7522 X86::NOT16r, X86::AX,
7523 X86::GR16RegisterClass, true);
7524 case X86::ATOMMIN16:
7525 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
7526 case X86::ATOMMAX16:
7527 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
7528 case X86::ATOMUMIN16:
7529 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
7530 case X86::ATOMUMAX16:
7531 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
7532
7533 case X86::ATOMAND8:
7534 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7535 X86::AND8ri, X86::MOV8rm,
7536 X86::LCMPXCHG8, X86::MOV8rr,
7537 X86::NOT8r, X86::AL,
7538 X86::GR8RegisterClass);
7539 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +00007540 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007541 X86::OR8ri, X86::MOV8rm,
7542 X86::LCMPXCHG8, X86::MOV8rr,
7543 X86::NOT8r, X86::AL,
7544 X86::GR8RegisterClass);
7545 case X86::ATOMXOR8:
7546 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
7547 X86::XOR8ri, X86::MOV8rm,
7548 X86::LCMPXCHG8, X86::MOV8rr,
7549 X86::NOT8r, X86::AL,
7550 X86::GR8RegisterClass);
7551 case X86::ATOMNAND8:
7552 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7553 X86::AND8ri, X86::MOV8rm,
7554 X86::LCMPXCHG8, X86::MOV8rr,
7555 X86::NOT8r, X86::AL,
7556 X86::GR8RegisterClass, true);
7557 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007558 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +00007559 case X86::ATOMAND64:
7560 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00007561 X86::AND64ri32, X86::MOV64rm,
Dale Johannesena99e3842008-08-20 00:48:50 +00007562 X86::LCMPXCHG64, X86::MOV64rr,
7563 X86::NOT64r, X86::RAX,
7564 X86::GR64RegisterClass);
7565 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +00007566 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
7567 X86::OR64ri32, X86::MOV64rm,
Dale Johannesena99e3842008-08-20 00:48:50 +00007568 X86::LCMPXCHG64, X86::MOV64rr,
7569 X86::NOT64r, X86::RAX,
7570 X86::GR64RegisterClass);
7571 case X86::ATOMXOR64:
7572 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00007573 X86::XOR64ri32, X86::MOV64rm,
Dale Johannesena99e3842008-08-20 00:48:50 +00007574 X86::LCMPXCHG64, X86::MOV64rr,
7575 X86::NOT64r, X86::RAX,
7576 X86::GR64RegisterClass);
7577 case X86::ATOMNAND64:
7578 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
7579 X86::AND64ri32, X86::MOV64rm,
7580 X86::LCMPXCHG64, X86::MOV64rr,
7581 X86::NOT64r, X86::RAX,
7582 X86::GR64RegisterClass, true);
7583 case X86::ATOMMIN64:
7584 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
7585 case X86::ATOMMAX64:
7586 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
7587 case X86::ATOMUMIN64:
7588 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
7589 case X86::ATOMUMAX64:
7590 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007591
7592 // This group does 64-bit operations on a 32-bit host.
7593 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007594 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007595 X86::AND32rr, X86::AND32rr,
7596 X86::AND32ri, X86::AND32ri,
7597 false);
7598 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007599 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007600 X86::OR32rr, X86::OR32rr,
7601 X86::OR32ri, X86::OR32ri,
7602 false);
7603 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007604 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007605 X86::XOR32rr, X86::XOR32rr,
7606 X86::XOR32ri, X86::XOR32ri,
7607 false);
7608 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007609 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007610 X86::AND32rr, X86::AND32rr,
7611 X86::AND32ri, X86::AND32ri,
7612 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007613 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007614 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007615 X86::ADD32rr, X86::ADC32rr,
7616 X86::ADD32ri, X86::ADC32ri,
7617 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007618 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007619 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007620 X86::SUB32rr, X86::SBB32rr,
7621 X86::SUB32ri, X86::SBB32ri,
7622 false);
Dale Johannesen880ae362008-10-03 22:25:52 +00007623 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007624 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +00007625 X86::MOV32rr, X86::MOV32rr,
7626 X86::MOV32ri, X86::MOV32ri,
7627 false);
Evan Cheng60c07e12006-07-05 22:17:51 +00007628 }
7629}
7630
7631//===----------------------------------------------------------------------===//
7632// X86 Optimization Hooks
7633//===----------------------------------------------------------------------===//
7634
Dan Gohman475871a2008-07-27 21:46:04 +00007635void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +00007636 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00007637 APInt &KnownZero,
7638 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00007639 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +00007640 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007641 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +00007642 assert((Opc >= ISD::BUILTIN_OP_END ||
7643 Opc == ISD::INTRINSIC_WO_CHAIN ||
7644 Opc == ISD::INTRINSIC_W_CHAIN ||
7645 Opc == ISD::INTRINSIC_VOID) &&
7646 "Should use MaskedValueIsZero if you don't know whether Op"
7647 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007648
Dan Gohmanf4f92f52008-02-13 23:07:24 +00007649 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007650 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +00007651 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +00007652 case X86ISD::ADD:
7653 case X86ISD::SUB:
7654 case X86ISD::SMUL:
7655 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +00007656 case X86ISD::INC:
7657 case X86ISD::DEC:
Evan Cheng97d0e0e2009-02-02 09:15:04 +00007658 // These nodes' second result is a boolean.
7659 if (Op.getResNo() == 0)
7660 break;
7661 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007662 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00007663 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
7664 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +00007665 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007666 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007667}
Chris Lattner259e97c2006-01-31 19:43:35 +00007668
Evan Cheng206ee9d2006-07-07 08:33:52 +00007669/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +00007670/// node is a GlobalAddress + offset.
7671bool X86TargetLowering::isGAPlusOffset(SDNode *N,
7672 GlobalValue* &GA, int64_t &Offset) const{
7673 if (N->getOpcode() == X86ISD::Wrapper) {
7674 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +00007675 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00007676 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +00007677 return true;
7678 }
Evan Cheng206ee9d2006-07-07 08:33:52 +00007679 }
Evan Chengad4196b2008-05-12 19:56:52 +00007680 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +00007681}
7682
Evan Chengad4196b2008-05-12 19:56:52 +00007683static bool isBaseAlignmentOfN(unsigned N, SDNode *Base,
7684 const TargetLowering &TLI) {
Evan Cheng206ee9d2006-07-07 08:33:52 +00007685 GlobalValue *GV;
Nick Lewycky916a9f02008-02-02 08:29:58 +00007686 int64_t Offset = 0;
Evan Chengad4196b2008-05-12 19:56:52 +00007687 if (TLI.isGAPlusOffset(Base, GV, Offset))
Evan Cheng7e2ff772008-05-08 00:57:18 +00007688 return (GV->getAlignment() >= N && (Offset % N) == 0);
Chris Lattnerba96fbc2008-01-26 20:07:42 +00007689 // DAG combine handles the stack object case.
Evan Cheng206ee9d2006-07-07 08:33:52 +00007690 return false;
7691}
7692
Nate Begeman9008ca62009-04-27 18:41:29 +00007693static bool EltsFromConsecutiveLoads(ShuffleVectorSDNode *N, unsigned NumElems,
Eli Friedman7a5e5552009-06-07 06:52:44 +00007694 MVT EVT, LoadSDNode *&LDBase,
7695 unsigned &LastLoadedElt,
Evan Chengad4196b2008-05-12 19:56:52 +00007696 SelectionDAG &DAG, MachineFrameInfo *MFI,
7697 const TargetLowering &TLI) {
Eli Friedman7a5e5552009-06-07 06:52:44 +00007698 LDBase = NULL;
Anton Korobeynikovb51b6cf2009-06-09 23:00:39 +00007699 LastLoadedElt = -1U;
Evan Cheng7e2ff772008-05-08 00:57:18 +00007700 for (unsigned i = 0; i < NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007701 if (N->getMaskElt(i) < 0) {
Eli Friedman7a5e5552009-06-07 06:52:44 +00007702 if (!LDBase)
Evan Cheng7e2ff772008-05-08 00:57:18 +00007703 return false;
7704 continue;
7705 }
7706
Dan Gohman475871a2008-07-27 21:46:04 +00007707 SDValue Elt = DAG.getShuffleScalarElt(N, i);
Gabor Greifba36cb52008-08-28 21:40:38 +00007708 if (!Elt.getNode() ||
7709 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
Evan Cheng7e2ff772008-05-08 00:57:18 +00007710 return false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00007711 if (!LDBase) {
7712 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
Evan Cheng50d9e722008-05-10 06:46:49 +00007713 return false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00007714 LDBase = cast<LoadSDNode>(Elt.getNode());
7715 LastLoadedElt = i;
Evan Cheng7e2ff772008-05-08 00:57:18 +00007716 continue;
7717 }
7718 if (Elt.getOpcode() == ISD::UNDEF)
7719 continue;
7720
Nate Begemanabc01992009-06-05 21:37:30 +00007721 LoadSDNode *LD = cast<LoadSDNode>(Elt);
Nate Begemanabc01992009-06-05 21:37:30 +00007722 if (!TLI.isConsecutiveLoad(LD, LDBase, EVT.getSizeInBits()/8, i, MFI))
Evan Cheng7e2ff772008-05-08 00:57:18 +00007723 return false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00007724 LastLoadedElt = i;
Evan Cheng7e2ff772008-05-08 00:57:18 +00007725 }
7726 return true;
7727}
Evan Cheng206ee9d2006-07-07 08:33:52 +00007728
7729/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
7730/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
7731/// if the load addresses are consecutive, non-overlapping, and in the right
Mon P Wang1e955802009-04-03 02:43:30 +00007732/// order. In the case of v2i64, it will see if it can rewrite the
7733/// shuffle to be an appropriate build vector so it can take advantage of
7734// performBuildVectorCombine.
Dan Gohman475871a2008-07-27 21:46:04 +00007735static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Nate Begeman9008ca62009-04-27 18:41:29 +00007736 const TargetLowering &TLI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00007737 DebugLoc dl = N->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007738 MVT VT = N->getValueType(0);
7739 MVT EVT = VT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007740 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
7741 unsigned NumElems = VT.getVectorNumElements();
Mon P Wang1e955802009-04-03 02:43:30 +00007742
Eli Friedman7a5e5552009-06-07 06:52:44 +00007743 if (VT.getSizeInBits() != 128)
7744 return SDValue();
7745
Mon P Wang1e955802009-04-03 02:43:30 +00007746 // Try to combine a vector_shuffle into a 128-bit load.
7747 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Eli Friedman7a5e5552009-06-07 06:52:44 +00007748 LoadSDNode *LD = NULL;
7749 unsigned LastLoadedElt;
7750 if (!EltsFromConsecutiveLoads(SVN, NumElems, EVT, LD, LastLoadedElt, DAG,
7751 MFI, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00007752 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +00007753
Eli Friedman7a5e5552009-06-07 06:52:44 +00007754 if (LastLoadedElt == NumElems - 1) {
7755 if (isBaseAlignmentOfN(16, LD->getBasePtr().getNode(), TLI))
7756 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
7757 LD->getSrcValue(), LD->getSrcValueOffset(),
7758 LD->isVolatile());
Dale Johannesene4d209d2009-02-03 20:21:25 +00007759 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007760 LD->getSrcValue(), LD->getSrcValueOffset(),
Eli Friedman7a5e5552009-06-07 06:52:44 +00007761 LD->isVolatile(), LD->getAlignment());
7762 } else if (NumElems == 4 && LastLoadedElt == 1) {
7763 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
Nate Begemanabc01992009-06-05 21:37:30 +00007764 SDValue Ops[] = { LD->getChain(), LD->getBasePtr() };
7765 SDValue ResNode = DAG.getNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2);
Nate Begemanabc01992009-06-05 21:37:30 +00007766 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, ResNode);
7767 }
7768 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007769}
Evan Chengd880b972008-05-09 21:53:03 +00007770
Chris Lattner83e6c992006-10-04 06:57:07 +00007771/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007772static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +00007773 const X86Subtarget *Subtarget) {
7774 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007775 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +00007776 // Get the LHS/RHS of the select.
7777 SDValue LHS = N->getOperand(1);
7778 SDValue RHS = N->getOperand(2);
7779
Chris Lattner83e6c992006-10-04 06:57:07 +00007780 // If we have SSE[12] support, try to form min/max nodes.
7781 if (Subtarget->hasSSE2() &&
Chris Lattner47b4ce82009-03-11 05:48:52 +00007782 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
7783 Cond.getOpcode() == ISD::SETCC) {
7784 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007785
Chris Lattner47b4ce82009-03-11 05:48:52 +00007786 unsigned Opcode = 0;
7787 if (LHS == Cond.getOperand(0) && RHS == Cond.getOperand(1)) {
7788 switch (CC) {
7789 default: break;
7790 case ISD::SETOLE: // (X <= Y) ? X : Y -> min
7791 case ISD::SETULE:
7792 case ISD::SETLE:
7793 if (!UnsafeFPMath) break;
7794 // FALL THROUGH.
7795 case ISD::SETOLT: // (X olt/lt Y) ? X : Y -> min
7796 case ISD::SETLT:
7797 Opcode = X86ISD::FMIN;
7798 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007799
Chris Lattner47b4ce82009-03-11 05:48:52 +00007800 case ISD::SETOGT: // (X > Y) ? X : Y -> max
7801 case ISD::SETUGT:
7802 case ISD::SETGT:
7803 if (!UnsafeFPMath) break;
7804 // FALL THROUGH.
7805 case ISD::SETUGE: // (X uge/ge Y) ? X : Y -> max
7806 case ISD::SETGE:
7807 Opcode = X86ISD::FMAX;
7808 break;
Chris Lattner83e6c992006-10-04 06:57:07 +00007809 }
Chris Lattner47b4ce82009-03-11 05:48:52 +00007810 } else if (LHS == Cond.getOperand(1) && RHS == Cond.getOperand(0)) {
7811 switch (CC) {
7812 default: break;
7813 case ISD::SETOGT: // (X > Y) ? Y : X -> min
7814 case ISD::SETUGT:
7815 case ISD::SETGT:
7816 if (!UnsafeFPMath) break;
7817 // FALL THROUGH.
7818 case ISD::SETUGE: // (X uge/ge Y) ? Y : X -> min
7819 case ISD::SETGE:
7820 Opcode = X86ISD::FMIN;
7821 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007822
Chris Lattner47b4ce82009-03-11 05:48:52 +00007823 case ISD::SETOLE: // (X <= Y) ? Y : X -> max
7824 case ISD::SETULE:
7825 case ISD::SETLE:
7826 if (!UnsafeFPMath) break;
7827 // FALL THROUGH.
7828 case ISD::SETOLT: // (X olt/lt Y) ? Y : X -> max
7829 case ISD::SETLT:
7830 Opcode = X86ISD::FMAX;
7831 break;
7832 }
Chris Lattner83e6c992006-10-04 06:57:07 +00007833 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007834
Chris Lattner47b4ce82009-03-11 05:48:52 +00007835 if (Opcode)
7836 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +00007837 }
Chris Lattner47b4ce82009-03-11 05:48:52 +00007838
Chris Lattnerd1980a52009-03-12 06:52:53 +00007839 // If this is a select between two integer constants, try to do some
7840 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +00007841 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
7842 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +00007843 // Don't do this for crazy integer types.
7844 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
7845 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +00007846 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +00007847 bool NeedsCondInvert = false;
7848
Chris Lattnercee56e72009-03-13 05:53:31 +00007849 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +00007850 // Efficiently invertible.
7851 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
7852 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
7853 isa<ConstantSDNode>(Cond.getOperand(1))))) {
7854 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +00007855 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +00007856 }
7857
7858 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +00007859 if (FalseC->getAPIntValue() == 0 &&
7860 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +00007861 if (NeedsCondInvert) // Invert the condition if needed.
7862 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
7863 DAG.getConstant(1, Cond.getValueType()));
7864
7865 // Zero extend the condition if needed.
7866 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
7867
Chris Lattnercee56e72009-03-13 05:53:31 +00007868 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +00007869 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
7870 DAG.getConstant(ShAmt, MVT::i8));
7871 }
Chris Lattner97a29a52009-03-13 05:22:11 +00007872
7873 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +00007874 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +00007875 if (NeedsCondInvert) // Invert the condition if needed.
7876 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
7877 DAG.getConstant(1, Cond.getValueType()));
7878
7879 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +00007880 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
7881 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +00007882 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +00007883 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +00007884 }
Chris Lattnercee56e72009-03-13 05:53:31 +00007885
7886 // Optimize cases that will turn into an LEA instruction. This requires
7887 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
7888 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
7889 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
7890 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
7891
7892 bool isFastMultiplier = false;
7893 if (Diff < 10) {
7894 switch ((unsigned char)Diff) {
7895 default: break;
7896 case 1: // result = add base, cond
7897 case 2: // result = lea base( , cond*2)
7898 case 3: // result = lea base(cond, cond*2)
7899 case 4: // result = lea base( , cond*4)
7900 case 5: // result = lea base(cond, cond*4)
7901 case 8: // result = lea base( , cond*8)
7902 case 9: // result = lea base(cond, cond*8)
7903 isFastMultiplier = true;
7904 break;
7905 }
7906 }
7907
7908 if (isFastMultiplier) {
7909 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
7910 if (NeedsCondInvert) // Invert the condition if needed.
7911 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
7912 DAG.getConstant(1, Cond.getValueType()));
7913
7914 // Zero extend the condition if needed.
7915 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
7916 Cond);
7917 // Scale the condition by the difference.
7918 if (Diff != 1)
7919 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
7920 DAG.getConstant(Diff, Cond.getValueType()));
7921
7922 // Add the base if non-zero.
7923 if (FalseC->getAPIntValue() != 0)
7924 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
7925 SDValue(FalseC, 0));
7926 return Cond;
7927 }
7928 }
Chris Lattnerd1980a52009-03-12 06:52:53 +00007929 }
7930 }
7931
Dan Gohman475871a2008-07-27 21:46:04 +00007932 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +00007933}
7934
Chris Lattnerd1980a52009-03-12 06:52:53 +00007935/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
7936static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
7937 TargetLowering::DAGCombinerInfo &DCI) {
7938 DebugLoc DL = N->getDebugLoc();
7939
7940 // If the flag operand isn't dead, don't touch this CMOV.
7941 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
7942 return SDValue();
7943
7944 // If this is a select between two integer constants, try to do some
7945 // optimizations. Note that the operands are ordered the opposite of SELECT
7946 // operands.
7947 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
7948 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
7949 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
7950 // larger than FalseC (the false value).
7951 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
7952
7953 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
7954 CC = X86::GetOppositeBranchCondition(CC);
7955 std::swap(TrueC, FalseC);
7956 }
7957
7958 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +00007959 // This is efficient for any integer data type (including i8/i16) and
7960 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +00007961 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
7962 SDValue Cond = N->getOperand(3);
7963 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
7964 DAG.getConstant(CC, MVT::i8), Cond);
7965
7966 // Zero extend the condition if needed.
7967 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
7968
7969 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
7970 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
7971 DAG.getConstant(ShAmt, MVT::i8));
7972 if (N->getNumValues() == 2) // Dead flag value?
7973 return DCI.CombineTo(N, Cond, SDValue());
7974 return Cond;
7975 }
Chris Lattnercee56e72009-03-13 05:53:31 +00007976
7977 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
7978 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +00007979 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
7980 SDValue Cond = N->getOperand(3);
7981 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
7982 DAG.getConstant(CC, MVT::i8), Cond);
7983
7984 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +00007985 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
7986 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +00007987 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
7988 SDValue(FalseC, 0));
Chris Lattnercee56e72009-03-13 05:53:31 +00007989
Chris Lattner97a29a52009-03-13 05:22:11 +00007990 if (N->getNumValues() == 2) // Dead flag value?
7991 return DCI.CombineTo(N, Cond, SDValue());
7992 return Cond;
7993 }
Chris Lattnercee56e72009-03-13 05:53:31 +00007994
7995 // Optimize cases that will turn into an LEA instruction. This requires
7996 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
7997 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
7998 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
7999 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
8000
8001 bool isFastMultiplier = false;
8002 if (Diff < 10) {
8003 switch ((unsigned char)Diff) {
8004 default: break;
8005 case 1: // result = add base, cond
8006 case 2: // result = lea base( , cond*2)
8007 case 3: // result = lea base(cond, cond*2)
8008 case 4: // result = lea base( , cond*4)
8009 case 5: // result = lea base(cond, cond*4)
8010 case 8: // result = lea base( , cond*8)
8011 case 9: // result = lea base(cond, cond*8)
8012 isFastMultiplier = true;
8013 break;
8014 }
8015 }
8016
8017 if (isFastMultiplier) {
8018 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
8019 SDValue Cond = N->getOperand(3);
8020 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8021 DAG.getConstant(CC, MVT::i8), Cond);
8022 // Zero extend the condition if needed.
8023 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
8024 Cond);
8025 // Scale the condition by the difference.
8026 if (Diff != 1)
8027 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
8028 DAG.getConstant(Diff, Cond.getValueType()));
8029
8030 // Add the base if non-zero.
8031 if (FalseC->getAPIntValue() != 0)
8032 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
8033 SDValue(FalseC, 0));
8034 if (N->getNumValues() == 2) // Dead flag value?
8035 return DCI.CombineTo(N, Cond, SDValue());
8036 return Cond;
8037 }
8038 }
Chris Lattnerd1980a52009-03-12 06:52:53 +00008039 }
8040 }
8041 return SDValue();
8042}
8043
8044
Evan Cheng0b0cd912009-03-28 05:57:29 +00008045/// PerformMulCombine - Optimize a single multiply with constant into two
8046/// in order to implement it with two cheaper instructions, e.g.
8047/// LEA + SHL, LEA + LEA.
8048static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
8049 TargetLowering::DAGCombinerInfo &DCI) {
8050 if (DAG.getMachineFunction().
8051 getFunction()->hasFnAttr(Attribute::OptimizeForSize))
8052 return SDValue();
8053
8054 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
8055 return SDValue();
8056
8057 MVT VT = N->getValueType(0);
8058 if (VT != MVT::i64)
8059 return SDValue();
8060
8061 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
8062 if (!C)
8063 return SDValue();
8064 uint64_t MulAmt = C->getZExtValue();
8065 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
8066 return SDValue();
8067
8068 uint64_t MulAmt1 = 0;
8069 uint64_t MulAmt2 = 0;
8070 if ((MulAmt % 9) == 0) {
8071 MulAmt1 = 9;
8072 MulAmt2 = MulAmt / 9;
8073 } else if ((MulAmt % 5) == 0) {
8074 MulAmt1 = 5;
8075 MulAmt2 = MulAmt / 5;
8076 } else if ((MulAmt % 3) == 0) {
8077 MulAmt1 = 3;
8078 MulAmt2 = MulAmt / 3;
8079 }
8080 if (MulAmt2 &&
8081 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
8082 DebugLoc DL = N->getDebugLoc();
8083
8084 if (isPowerOf2_64(MulAmt2) &&
8085 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
8086 // If second multiplifer is pow2, issue it first. We want the multiply by
8087 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
8088 // is an add.
8089 std::swap(MulAmt1, MulAmt2);
8090
8091 SDValue NewMul;
8092 if (isPowerOf2_64(MulAmt1))
8093 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
8094 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
8095 else
Evan Cheng73f24c92009-03-30 21:36:47 +00008096 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +00008097 DAG.getConstant(MulAmt1, VT));
8098
8099 if (isPowerOf2_64(MulAmt2))
8100 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
8101 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
8102 else
Evan Cheng73f24c92009-03-30 21:36:47 +00008103 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +00008104 DAG.getConstant(MulAmt2, VT));
8105
8106 // Do not add new nodes to DAG combiner worklist.
8107 DCI.CombineTo(N, NewMul, false);
8108 }
8109 return SDValue();
8110}
8111
8112
Nate Begeman740ab032009-01-26 00:52:55 +00008113/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
8114/// when possible.
8115static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
8116 const X86Subtarget *Subtarget) {
8117 // On X86 with SSE2 support, we can transform this to a vector shift if
8118 // all elements are shifted by the same amount. We can't do this in legalize
8119 // because the a constant vector is typically transformed to a constant pool
8120 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008121 if (!Subtarget->hasSSE2())
8122 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008123
Nate Begeman740ab032009-01-26 00:52:55 +00008124 MVT VT = N->getValueType(0);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008125 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
8126 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008127
Mon P Wang3becd092009-01-28 08:12:05 +00008128 SDValue ShAmtOp = N->getOperand(1);
8129 MVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +00008130 DebugLoc DL = N->getDebugLoc();
Mon P Wang3becd092009-01-28 08:12:05 +00008131 SDValue BaseShAmt;
8132 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
8133 unsigned NumElts = VT.getVectorNumElements();
8134 unsigned i = 0;
8135 for (; i != NumElts; ++i) {
8136 SDValue Arg = ShAmtOp.getOperand(i);
8137 if (Arg.getOpcode() == ISD::UNDEF) continue;
8138 BaseShAmt = Arg;
8139 break;
8140 }
8141 for (; i != NumElts; ++i) {
8142 SDValue Arg = ShAmtOp.getOperand(i);
8143 if (Arg.getOpcode() == ISD::UNDEF) continue;
8144 if (Arg != BaseShAmt) {
8145 return SDValue();
8146 }
8147 }
8148 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +00008149 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
8150 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
8151 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +00008152 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008153 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +00008154
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008155 if (EltVT.bitsGT(MVT::i32))
Chris Lattner47b4ce82009-03-11 05:48:52 +00008156 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008157 else if (EltVT.bitsLT(MVT::i32))
Chris Lattner47b4ce82009-03-11 05:48:52 +00008158 BaseShAmt = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +00008159
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008160 // The shift amount is identical so we can do a vector shift.
8161 SDValue ValOp = N->getOperand(0);
8162 switch (N->getOpcode()) {
8163 default:
8164 assert(0 && "Unknown shift opcode!");
8165 break;
8166 case ISD::SHL:
8167 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008168 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008169 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8170 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008171 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008172 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008173 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8174 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008175 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008176 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008177 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8178 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008179 break;
8180 case ISD::SRA:
8181 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008182 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008183 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
8184 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008185 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008186 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008187 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
8188 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008189 break;
8190 case ISD::SRL:
8191 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008192 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008193 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8194 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008195 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008196 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008197 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
8198 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008199 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008200 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008201 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
8202 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008203 break;
Nate Begeman740ab032009-01-26 00:52:55 +00008204 }
8205 return SDValue();
8206}
8207
Chris Lattner149a4e52008-02-22 02:09:43 +00008208/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008209static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +00008210 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +00008211 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
8212 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +00008213 // A preferable solution to the general problem is to figure out the right
8214 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +00008215
8216 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +00008217 StoreSDNode *St = cast<StoreSDNode>(N);
Evan Cheng536e6672009-03-12 05:59:15 +00008218 MVT VT = St->getValue().getValueType();
8219 if (VT.getSizeInBits() != 64)
8220 return SDValue();
8221
Devang Patel578efa92009-06-05 21:57:13 +00008222 const Function *F = DAG.getMachineFunction().getFunction();
8223 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
8224 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
8225 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +00008226 if ((VT.isVector() ||
8227 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +00008228 isa<LoadSDNode>(St->getValue()) &&
8229 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
8230 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00008231 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +00008232 LoadSDNode *Ld = 0;
8233 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +00008234 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +00008235 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +00008236 // Must be a store of a load. We currently handle two cases: the load
8237 // is a direct child, and it's under an intervening TokenFactor. It is
8238 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +00008239 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +00008240 Ld = cast<LoadSDNode>(St->getChain());
8241 else if (St->getValue().hasOneUse() &&
8242 ChainVal->getOpcode() == ISD::TokenFactor) {
8243 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +00008244 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +00008245 TokenFactorIndex = i;
8246 Ld = cast<LoadSDNode>(St->getValue());
8247 } else
8248 Ops.push_back(ChainVal->getOperand(i));
8249 }
8250 }
Dale Johannesen079f2a62008-02-25 19:20:14 +00008251
Evan Cheng536e6672009-03-12 05:59:15 +00008252 if (!Ld || !ISD::isNormalLoad(Ld))
8253 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +00008254
Evan Cheng536e6672009-03-12 05:59:15 +00008255 // If this is not the MMX case, i.e. we are just turning i64 load/store
8256 // into f64 load/store, avoid the transformation if there are multiple
8257 // uses of the loaded value.
8258 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
8259 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +00008260
Evan Cheng536e6672009-03-12 05:59:15 +00008261 DebugLoc LdDL = Ld->getDebugLoc();
8262 DebugLoc StDL = N->getDebugLoc();
8263 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
8264 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
8265 // pair instead.
8266 if (Subtarget->is64Bit() || F64IsLegal) {
8267 MVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
8268 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(),
8269 Ld->getBasePtr(), Ld->getSrcValue(),
8270 Ld->getSrcValueOffset(), Ld->isVolatile(),
8271 Ld->getAlignment());
8272 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +00008273 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +00008274 Ops.push_back(NewChain);
8275 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +00008276 Ops.size());
8277 }
Evan Cheng536e6672009-03-12 05:59:15 +00008278 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner149a4e52008-02-22 02:09:43 +00008279 St->getSrcValue(), St->getSrcValueOffset(),
8280 St->isVolatile(), St->getAlignment());
8281 }
Evan Cheng536e6672009-03-12 05:59:15 +00008282
8283 // Otherwise, lower to two pairs of 32-bit loads / stores.
8284 SDValue LoAddr = Ld->getBasePtr();
8285 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
8286 DAG.getConstant(4, MVT::i32));
8287
8288 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
8289 Ld->getSrcValue(), Ld->getSrcValueOffset(),
8290 Ld->isVolatile(), Ld->getAlignment());
8291 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
8292 Ld->getSrcValue(), Ld->getSrcValueOffset()+4,
8293 Ld->isVolatile(),
8294 MinAlign(Ld->getAlignment(), 4));
8295
8296 SDValue NewChain = LoLd.getValue(1);
8297 if (TokenFactorIndex != -1) {
8298 Ops.push_back(LoLd);
8299 Ops.push_back(HiLd);
8300 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
8301 Ops.size());
8302 }
8303
8304 LoAddr = St->getBasePtr();
8305 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
8306 DAG.getConstant(4, MVT::i32));
8307
8308 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
8309 St->getSrcValue(), St->getSrcValueOffset(),
8310 St->isVolatile(), St->getAlignment());
8311 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
8312 St->getSrcValue(),
8313 St->getSrcValueOffset() + 4,
8314 St->isVolatile(),
8315 MinAlign(St->getAlignment(), 4));
8316 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +00008317 }
Dan Gohman475871a2008-07-27 21:46:04 +00008318 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +00008319}
8320
Chris Lattner6cf73262008-01-25 06:14:17 +00008321/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
8322/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008323static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +00008324 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
8325 // F[X]OR(0.0, x) -> x
8326 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +00008327 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8328 if (C->getValueAPF().isPosZero())
8329 return N->getOperand(1);
8330 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8331 if (C->getValueAPF().isPosZero())
8332 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00008333 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +00008334}
8335
8336/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008337static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +00008338 // FAND(0.0, x) -> 0.0
8339 // FAND(x, 0.0) -> 0.0
8340 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8341 if (C->getValueAPF().isPosZero())
8342 return N->getOperand(0);
8343 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8344 if (C->getValueAPF().isPosZero())
8345 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +00008346 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +00008347}
8348
Dan Gohmane5af2d32009-01-29 01:59:02 +00008349static SDValue PerformBTCombine(SDNode *N,
8350 SelectionDAG &DAG,
8351 TargetLowering::DAGCombinerInfo &DCI) {
8352 // BT ignores high bits in the bit index operand.
8353 SDValue Op1 = N->getOperand(1);
8354 if (Op1.hasOneUse()) {
8355 unsigned BitWidth = Op1.getValueSizeInBits();
8356 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
8357 APInt KnownZero, KnownOne;
8358 TargetLowering::TargetLoweringOpt TLO(DAG);
8359 TargetLowering &TLI = DAG.getTargetLoweringInfo();
8360 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
8361 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
8362 DCI.CommitTargetLoweringOpt(TLO);
8363 }
8364 return SDValue();
8365}
Chris Lattner83e6c992006-10-04 06:57:07 +00008366
Eli Friedman7a5e5552009-06-07 06:52:44 +00008367static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
8368 SDValue Op = N->getOperand(0);
8369 if (Op.getOpcode() == ISD::BIT_CONVERT)
8370 Op = Op.getOperand(0);
8371 MVT VT = N->getValueType(0), OpVT = Op.getValueType();
8372 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
8373 VT.getVectorElementType().getSizeInBits() ==
8374 OpVT.getVectorElementType().getSizeInBits()) {
8375 return DAG.getNode(ISD::BIT_CONVERT, N->getDebugLoc(), VT, Op);
8376 }
8377 return SDValue();
8378}
8379
Dan Gohman475871a2008-07-27 21:46:04 +00008380SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +00008381 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +00008382 SelectionDAG &DAG = DCI.DAG;
8383 switch (N->getOpcode()) {
8384 default: break;
Evan Chengad4196b2008-05-12 19:56:52 +00008385 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +00008386 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +00008387 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +00008388 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +00008389 case ISD::SHL:
8390 case ISD::SRA:
8391 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +00008392 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +00008393 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +00008394 case X86ISD::FOR: return PerformFORCombine(N, DAG);
8395 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008396 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +00008397 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng206ee9d2006-07-07 08:33:52 +00008398 }
8399
Dan Gohman475871a2008-07-27 21:46:04 +00008400 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +00008401}
8402
Evan Cheng60c07e12006-07-05 22:17:51 +00008403//===----------------------------------------------------------------------===//
8404// X86 Inline Assembly Support
8405//===----------------------------------------------------------------------===//
8406
Chris Lattnerf4dff842006-07-11 02:54:03 +00008407/// getConstraintType - Given a constraint letter, return the type of
8408/// constraint it is for this target.
8409X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00008410X86TargetLowering::getConstraintType(const std::string &Constraint) const {
8411 if (Constraint.size() == 1) {
8412 switch (Constraint[0]) {
8413 case 'A':
Dale Johannesen330169f2008-11-13 21:52:36 +00008414 return C_Register;
Chris Lattnerfce84ac2008-03-11 19:06:29 +00008415 case 'f':
Chris Lattner4234f572007-03-25 02:14:49 +00008416 case 'r':
8417 case 'R':
8418 case 'l':
8419 case 'q':
8420 case 'Q':
8421 case 'x':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +00008422 case 'y':
Chris Lattner4234f572007-03-25 02:14:49 +00008423 case 'Y':
8424 return C_RegisterClass;
Dale Johannesen78e3e522009-02-12 20:58:09 +00008425 case 'e':
8426 case 'Z':
8427 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +00008428 default:
8429 break;
8430 }
Chris Lattnerf4dff842006-07-11 02:54:03 +00008431 }
Chris Lattner4234f572007-03-25 02:14:49 +00008432 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +00008433}
8434
Dale Johannesenba2a0b92008-01-29 02:21:21 +00008435/// LowerXConstraint - try to replace an X constraint, which matches anything,
8436/// with another that has more specific requirements based on the type of the
8437/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +00008438const char *X86TargetLowering::
Duncan Sands83ec4b62008-06-06 12:08:01 +00008439LowerXConstraint(MVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +00008440 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
8441 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +00008442 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesenba2a0b92008-01-29 02:21:21 +00008443 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +00008444 return "Y";
8445 if (Subtarget->hasSSE1())
8446 return "x";
8447 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008448
Chris Lattner5e764232008-04-26 23:02:14 +00008449 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +00008450}
8451
Chris Lattner48884cd2007-08-25 00:47:38 +00008452/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
8453/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +00008454void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +00008455 char Constraint,
Evan Chengda43bcf2008-09-24 00:05:32 +00008456 bool hasMemory,
Dan Gohman475871a2008-07-27 21:46:04 +00008457 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +00008458 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008459 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008460
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008461 switch (Constraint) {
8462 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +00008463 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +00008464 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008465 if (C->getZExtValue() <= 31) {
8466 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +00008467 break;
8468 }
Devang Patel84f7fd22007-03-17 00:13:28 +00008469 }
Chris Lattner48884cd2007-08-25 00:47:38 +00008470 return;
Evan Cheng364091e2008-09-22 23:57:37 +00008471 case 'J':
8472 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8473 if (C->getZExtValue() <= 63) {
8474 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8475 break;
8476 }
8477 }
8478 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +00008479 case 'N':
8480 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008481 if (C->getZExtValue() <= 255) {
8482 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +00008483 break;
8484 }
Chris Lattner188b9fe2007-03-25 01:57:35 +00008485 }
Chris Lattner48884cd2007-08-25 00:47:38 +00008486 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +00008487 case 'e': {
8488 // 32-bit signed value
8489 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8490 const ConstantInt *CI = C->getConstantIntValue();
8491 if (CI->isValueValidForType(Type::Int32Ty, C->getSExtValue())) {
8492 // Widen to 64 bits here to get it sign extended.
8493 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
8494 break;
8495 }
8496 // FIXME gcc accepts some relocatable values here too, but only in certain
8497 // memory models; it's complicated.
8498 }
8499 return;
8500 }
8501 case 'Z': {
8502 // 32-bit unsigned value
8503 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8504 const ConstantInt *CI = C->getConstantIntValue();
8505 if (CI->isValueValidForType(Type::Int32Ty, C->getZExtValue())) {
8506 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8507 break;
8508 }
8509 }
8510 // FIXME gcc accepts some relocatable values here too, but only in certain
8511 // memory models; it's complicated.
8512 return;
8513 }
Chris Lattnerdc43a882007-05-03 16:52:29 +00008514 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008515 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +00008516 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +00008517 // Widen to 64 bits here to get it sign extended.
8518 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +00008519 break;
8520 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008521
Chris Lattnerdc43a882007-05-03 16:52:29 +00008522 // If we are in non-pic codegen mode, we allow the address of a global (with
8523 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +00008524 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +00008525 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008526
Chris Lattner49921962009-05-08 18:23:14 +00008527 // Match either (GA), (GA+C), (GA+C1+C2), etc.
8528 while (1) {
8529 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
8530 Offset += GA->getOffset();
8531 break;
8532 } else if (Op.getOpcode() == ISD::ADD) {
8533 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
8534 Offset += C->getZExtValue();
8535 Op = Op.getOperand(0);
8536 continue;
8537 }
8538 } else if (Op.getOpcode() == ISD::SUB) {
8539 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
8540 Offset += -C->getZExtValue();
8541 Op = Op.getOperand(0);
8542 continue;
8543 }
Chris Lattnerdc43a882007-05-03 16:52:29 +00008544 }
Chris Lattner49921962009-05-08 18:23:14 +00008545
8546 // Otherwise, this isn't something we can handle, reject it.
8547 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +00008548 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008549
Chris Lattner49921962009-05-08 18:23:14 +00008550 if (hasMemory)
8551 Op = LowerGlobalAddress(GA->getGlobal(), Op.getDebugLoc(), Offset, DAG);
8552 else
8553 Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
8554 Offset);
8555 Result = Op;
8556 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008557 }
Chris Lattnerdc43a882007-05-03 16:52:29 +00008558 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008559
Gabor Greifba36cb52008-08-28 21:40:38 +00008560 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +00008561 Ops.push_back(Result);
8562 return;
8563 }
Evan Chengda43bcf2008-09-24 00:05:32 +00008564 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, hasMemory,
8565 Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008566}
8567
Chris Lattner259e97c2006-01-31 19:43:35 +00008568std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +00008569getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008570 MVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +00008571 if (Constraint.size() == 1) {
8572 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +00008573 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +00008574 default: break; // Unknown constraint letter
Chris Lattner259e97c2006-01-31 19:43:35 +00008575 case 'q': // Q_REGS (GENERAL_REGS in 64-bit mode)
8576 case 'Q': // Q_REGS
Chris Lattner80a7ecc2006-05-06 00:29:37 +00008577 if (VT == MVT::i32)
8578 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
8579 else if (VT == MVT::i16)
8580 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
8581 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +00008582 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Chris Lattner03e6c702007-11-04 06:51:12 +00008583 else if (VT == MVT::i64)
8584 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
8585 break;
Chris Lattner259e97c2006-01-31 19:43:35 +00008586 }
8587 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008588
Chris Lattner1efa40f2006-02-22 00:56:39 +00008589 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +00008590}
Chris Lattnerf76d1802006-07-31 23:26:50 +00008591
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008592std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +00008593X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008594 MVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +00008595 // First, see if this is a constraint that directly corresponds to an LLVM
8596 // register class.
8597 if (Constraint.size() == 1) {
8598 // GCC Constraint Letters
8599 switch (Constraint[0]) {
8600 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +00008601 case 'r': // GENERAL_REGS
8602 case 'R': // LEGACY_REGS
8603 case 'l': // INDEX_REGS
Chris Lattner1fa71982008-10-17 18:15:05 +00008604 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +00008605 return std::make_pair(0U, X86::GR8RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +00008606 if (VT == MVT::i16)
8607 return std::make_pair(0U, X86::GR16RegisterClass);
8608 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +00008609 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +00008610 return std::make_pair(0U, X86::GR64RegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +00008611 case 'f': // FP Stack registers.
8612 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
8613 // value to the correct fpstack register class.
8614 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
8615 return std::make_pair(0U, X86::RFP32RegisterClass);
8616 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
8617 return std::make_pair(0U, X86::RFP64RegisterClass);
8618 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +00008619 case 'y': // MMX_REGS if MMX allowed.
8620 if (!Subtarget->hasMMX()) break;
8621 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00008622 case 'Y': // SSE_REGS if SSE2 allowed
8623 if (!Subtarget->hasSSE2()) break;
8624 // FALL THROUGH.
8625 case 'x': // SSE_REGS if SSE1 allowed
8626 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008627
8628 switch (VT.getSimpleVT()) {
Chris Lattner0f65cad2007-04-09 05:49:22 +00008629 default: break;
8630 // Scalar SSE types.
8631 case MVT::f32:
8632 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +00008633 return std::make_pair(0U, X86::FR32RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00008634 case MVT::f64:
8635 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +00008636 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00008637 // Vector types.
Chris Lattner0f65cad2007-04-09 05:49:22 +00008638 case MVT::v16i8:
8639 case MVT::v8i16:
8640 case MVT::v4i32:
8641 case MVT::v2i64:
8642 case MVT::v4f32:
8643 case MVT::v2f64:
8644 return std::make_pair(0U, X86::VR128RegisterClass);
8645 }
Chris Lattnerad043e82007-04-09 05:11:28 +00008646 break;
8647 }
8648 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008649
Chris Lattnerf76d1802006-07-31 23:26:50 +00008650 // Use the default implementation in TargetLowering to convert the register
8651 // constraint into a member of a register class.
8652 std::pair<unsigned, const TargetRegisterClass*> Res;
8653 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +00008654
8655 // Not found as a standard register?
8656 if (Res.second == 0) {
8657 // GCC calls "st(0)" just plain "st".
8658 if (StringsEqualNoCase("{st}", Constraint)) {
8659 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +00008660 Res.second = X86::RFP80RegisterClass;
Chris Lattner1a60aa72006-10-31 19:42:44 +00008661 }
Dale Johannesen330169f2008-11-13 21:52:36 +00008662 // 'A' means EAX + EDX.
8663 if (Constraint == "A") {
8664 Res.first = X86::EAX;
8665 Res.second = X86::GRADRegisterClass;
8666 }
Chris Lattner1a60aa72006-10-31 19:42:44 +00008667 return Res;
8668 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008669
Chris Lattnerf76d1802006-07-31 23:26:50 +00008670 // Otherwise, check to see if this is a register class of the wrong value
8671 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
8672 // turn into {ax},{dx}.
8673 if (Res.second->hasType(VT))
8674 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008675
Chris Lattnerf76d1802006-07-31 23:26:50 +00008676 // All of the single-register GCC register classes map their values onto
8677 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
8678 // really want an 8-bit or 32-bit register, map to the appropriate register
8679 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +00008680 if (Res.second == X86::GR16RegisterClass) {
8681 if (VT == MVT::i8) {
8682 unsigned DestReg = 0;
8683 switch (Res.first) {
8684 default: break;
8685 case X86::AX: DestReg = X86::AL; break;
8686 case X86::DX: DestReg = X86::DL; break;
8687 case X86::CX: DestReg = X86::CL; break;
8688 case X86::BX: DestReg = X86::BL; break;
8689 }
8690 if (DestReg) {
8691 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +00008692 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +00008693 }
8694 } else if (VT == MVT::i32) {
8695 unsigned DestReg = 0;
8696 switch (Res.first) {
8697 default: break;
8698 case X86::AX: DestReg = X86::EAX; break;
8699 case X86::DX: DestReg = X86::EDX; break;
8700 case X86::CX: DestReg = X86::ECX; break;
8701 case X86::BX: DestReg = X86::EBX; break;
8702 case X86::SI: DestReg = X86::ESI; break;
8703 case X86::DI: DestReg = X86::EDI; break;
8704 case X86::BP: DestReg = X86::EBP; break;
8705 case X86::SP: DestReg = X86::ESP; break;
8706 }
8707 if (DestReg) {
8708 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +00008709 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +00008710 }
8711 } else if (VT == MVT::i64) {
8712 unsigned DestReg = 0;
8713 switch (Res.first) {
8714 default: break;
8715 case X86::AX: DestReg = X86::RAX; break;
8716 case X86::DX: DestReg = X86::RDX; break;
8717 case X86::CX: DestReg = X86::RCX; break;
8718 case X86::BX: DestReg = X86::RBX; break;
8719 case X86::SI: DestReg = X86::RSI; break;
8720 case X86::DI: DestReg = X86::RDI; break;
8721 case X86::BP: DestReg = X86::RBP; break;
8722 case X86::SP: DestReg = X86::RSP; break;
8723 }
8724 if (DestReg) {
8725 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +00008726 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +00008727 }
Chris Lattnerf76d1802006-07-31 23:26:50 +00008728 }
Chris Lattner6ba50a92008-08-26 06:19:02 +00008729 } else if (Res.second == X86::FR32RegisterClass ||
8730 Res.second == X86::FR64RegisterClass ||
8731 Res.second == X86::VR128RegisterClass) {
8732 // Handle references to XMM physical registers that got mapped into the
8733 // wrong class. This can happen with constraints like {xmm0} where the
8734 // target independent register mapper will just pick the first match it can
8735 // find, ignoring the required type.
8736 if (VT == MVT::f32)
8737 Res.second = X86::FR32RegisterClass;
8738 else if (VT == MVT::f64)
8739 Res.second = X86::FR64RegisterClass;
8740 else if (X86::VR128RegisterClass->hasType(VT))
8741 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +00008742 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008743
Chris Lattnerf76d1802006-07-31 23:26:50 +00008744 return Res;
8745}
Mon P Wang0c397192008-10-30 08:01:45 +00008746
8747//===----------------------------------------------------------------------===//
8748// X86 Widen vector type
8749//===----------------------------------------------------------------------===//
8750
8751/// getWidenVectorType: given a vector type, returns the type to widen
8752/// to (e.g., v7i8 to v8i8). If the vector type is legal, it returns itself.
8753/// If there is no vector type that we want to widen to, returns MVT::Other
Mon P Wangf007a8b2008-11-06 05:31:54 +00008754/// When and where to widen is target dependent based on the cost of
Mon P Wang0c397192008-10-30 08:01:45 +00008755/// scalarizing vs using the wider vector type.
8756
Dan Gohmanc13cf132009-01-15 17:34:08 +00008757MVT X86TargetLowering::getWidenVectorType(MVT VT) const {
Mon P Wang0c397192008-10-30 08:01:45 +00008758 assert(VT.isVector());
8759 if (isTypeLegal(VT))
8760 return VT;
Scott Michelfdc40a02009-02-17 22:15:04 +00008761
Mon P Wang0c397192008-10-30 08:01:45 +00008762 // TODO: In computeRegisterProperty, we can compute the list of legal vector
8763 // type based on element type. This would speed up our search (though
8764 // it may not be worth it since the size of the list is relatively
8765 // small).
8766 MVT EltVT = VT.getVectorElementType();
8767 unsigned NElts = VT.getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00008768
Mon P Wang0c397192008-10-30 08:01:45 +00008769 // On X86, it make sense to widen any vector wider than 1
8770 if (NElts <= 1)
8771 return MVT::Other;
Scott Michelfdc40a02009-02-17 22:15:04 +00008772
8773 for (unsigned nVT = MVT::FIRST_VECTOR_VALUETYPE;
Mon P Wang0c397192008-10-30 08:01:45 +00008774 nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
8775 MVT SVT = (MVT::SimpleValueType)nVT;
Scott Michelfdc40a02009-02-17 22:15:04 +00008776
8777 if (isTypeLegal(SVT) &&
8778 SVT.getVectorElementType() == EltVT &&
Mon P Wang0c397192008-10-30 08:01:45 +00008779 SVT.getVectorNumElements() > NElts)
8780 return SVT;
8781 }
8782 return MVT::Other;
8783}