blob: 85a6c0bb9bd5f25ea32b5098f39be233eb1b8bfc [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"
Evan Chenge8bd0a32006-06-06 23:30:24 +000018#include "X86MachineFunctionInfo.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000019#include "X86TargetMachine.h"
20#include "llvm/CallingConv.h"
Evan Cheng223547a2006-01-31 22:28:30 +000021#include "llvm/Constants.h"
Evan Cheng347d5f72006-04-28 21:29:37 +000022#include "llvm/DerivedTypes.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000023#include "llvm/GlobalVariable.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000024#include "llvm/Function.h"
Evan Cheng6be2c582006-04-05 23:38:46 +000025#include "llvm/Intrinsics.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000026#include "llvm/ADT/BitVector.h"
Evan Cheng30b37b52006-03-13 23:18:16 +000027#include "llvm/ADT/VectorExtras.h"
Chris Lattner362e98a2007-02-27 04:43:02 +000028#include "llvm/CodeGen/CallingConvLower.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000029#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng4a460802006-01-11 00:33:36 +000030#include "llvm/CodeGen/MachineFunction.h"
31#include "llvm/CodeGen/MachineInstrBuilder.h"
Evan Chenga844bde2008-02-02 04:07:54 +000032#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000033#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000034#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000035#include "llvm/CodeGen/SelectionDAG.h"
Evan Chengef6ffb12006-01-31 03:14:29 +000036#include "llvm/Support/MathExtras.h"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000037#include "llvm/Support/Debug.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000038#include "llvm/Target/TargetOptions.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000039#include "llvm/ADT/SmallSet.h"
Chris Lattner1a60aa72006-10-31 19:42:44 +000040#include "llvm/ADT/StringExtras.h"
Mon P Wang3c81d352008-11-23 04:37:22 +000041#include "llvm/Support/CommandLine.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000042using namespace llvm;
43
Mon P Wang3c81d352008-11-23 04:37:22 +000044static cl::opt<bool>
Mon P Wang9f22a4a2008-11-24 02:10:43 +000045DisableMMX("disable-mmx", cl::Hidden, cl::desc("Disable use of MMX"));
Mon P Wang3c81d352008-11-23 04:37:22 +000046
Evan Cheng10e86422008-04-25 19:11:04 +000047// Forward declarations.
Dale Johannesenace16102009-02-03 19:33:06 +000048static SDValue getMOVLMask(unsigned NumElems, SelectionDAG &DAG, DebugLoc dl);
Evan Cheng10e86422008-04-25 19:11:04 +000049
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +000050X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000051 : TargetLowering(TM) {
Evan Cheng559806f2006-01-27 08:10:46 +000052 Subtarget = &TM.getSubtarget<X86Subtarget>();
Dale Johannesenf1fc3a82007-09-23 14:52:20 +000053 X86ScalarSSEf64 = Subtarget->hasSSE2();
54 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng25ab6902006-09-08 06:48:29 +000055 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000056
Chris Lattnerd43d00c2008-01-24 08:07:48 +000057 bool Fast = false;
Evan Cheng559806f2006-01-27 08:10:46 +000058
Anton Korobeynikov2365f512007-07-14 14:06:15 +000059 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000060 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +000061
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000062 // Set up the TargetLowering object.
63
64 // X86 is weird, it always uses i8 for shift amounts and setcc results.
65 setShiftAmountType(MVT::i8);
Duncan Sands03228082008-11-23 15:47:28 +000066 setBooleanContents(ZeroOrOneBooleanContent);
Evan Cheng0b2afbd2006-01-25 09:15:17 +000067 setSchedulingPreference(SchedulingForRegPressure);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000068 setShiftAmountFlavor(Mask); // shl X, 32 == shl X, 0
Evan Cheng25ab6902006-09-08 06:48:29 +000069 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +000070
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000071 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +000072 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000073 setUseUnderscoreSetJmp(false);
74 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +000075 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000076 // MS runtime is weird: it exports _setjmp, but longjmp!
77 setUseUnderscoreSetJmp(true);
78 setUseUnderscoreLongJmp(false);
79 } else {
80 setUseUnderscoreSetJmp(true);
81 setUseUnderscoreLongJmp(true);
82 }
Scott Michelfdc40a02009-02-17 22:15:04 +000083
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000084 // Set up the register classes.
Evan Cheng069287d2006-05-16 07:21:53 +000085 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
86 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
87 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +000088 if (Subtarget->is64Bit())
89 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000090
Evan Cheng03294662008-10-14 21:26:46 +000091 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +000092
Scott Michelfdc40a02009-02-17 22:15:04 +000093 // We don't accept any truncstore of integer registers.
Chris Lattnerddf89562008-01-17 19:59:44 +000094 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
95 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
96 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
97 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
98 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
Evan Cheng7f042682008-10-15 02:05:31 +000099 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
100
101 // SETOEQ and SETUNE require checking two conditions.
102 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
103 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
104 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
105 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
106 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
107 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000108
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000109 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
110 // operation.
111 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
112 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
113 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000114
Evan Cheng25ab6902006-09-08 06:48:29 +0000115 if (Subtarget->is64Bit()) {
116 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Evan Cheng6892f282006-01-17 02:32:49 +0000117 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
Evan Cheng25ab6902006-09-08 06:48:29 +0000118 } else {
Dale Johannesen1c15bf52008-10-21 20:50:01 +0000119 if (X86ScalarSSEf64) {
120 // We have an impenetrably clever algorithm for ui64->double only.
121 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Bill Wendling8b8a6362009-01-17 03:56:04 +0000122
123 // We have faster algorithm for ui32->single only.
124 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Dale Johannesen1c15bf52008-10-21 20:50:01 +0000125 } else
Evan Cheng25ab6902006-09-08 06:48:29 +0000126 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
127 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000128
129 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
130 // this operation.
131 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
132 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000133 // SSE has no i16 to fp conversion, only i32
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000134 if (X86ScalarSSEf32) {
Evan Cheng02568ff2006-01-30 22:13:22 +0000135 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000136 // f32 and f64 cases are Legal, f80 case is not
137 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
138 } else {
Evan Cheng5298bcc2006-02-17 07:01:52 +0000139 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
140 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
141 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000142
Dale Johannesen73328d12007-09-19 23:55:34 +0000143 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
144 // are Legal, f80 is custom lowered.
145 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
146 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000147
Evan Cheng02568ff2006-01-30 22:13:22 +0000148 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
149 // this operation.
150 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
151 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
152
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000153 if (X86ScalarSSEf32) {
Evan Cheng02568ff2006-01-30 22:13:22 +0000154 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000155 // f32 and f64 cases are Legal, f80 case is not
156 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000157 } else {
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000158 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000159 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000160 }
161
162 // Handle FP_TO_UINT by promoting the destination to a larger signed
163 // conversion.
164 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
165 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
166 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
167
Evan Cheng25ab6902006-09-08 06:48:29 +0000168 if (Subtarget->is64Bit()) {
169 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000170 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Evan Cheng25ab6902006-09-08 06:48:29 +0000171 } else {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000172 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000173 // Expand FP_TO_UINT into a select.
174 // FIXME: We would like to use a Custom expander here eventually to do
175 // the optimal thing for SSE vs. the default expansion in the legalizer.
176 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
177 else
178 // With SSE3 we can use fisttpll to convert to a signed i64.
179 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
180 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000181
Chris Lattner399610a2006-12-05 18:22:22 +0000182 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000183 if (!X86ScalarSSEf64) {
Chris Lattnerf3597a12006-12-05 18:45:06 +0000184 setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand);
185 setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand);
186 }
Chris Lattner21f66852005-12-23 05:15:23 +0000187
Dan Gohmanb00ee212008-02-18 19:34:53 +0000188 // Scalar integer divide and remainder are lowered to use operations that
189 // produce two results, to match the available instructions. This exposes
190 // the two-result form to trivial CSE, which is able to combine x/y and x%y
191 // into a single instruction.
192 //
193 // Scalar integer multiply-high is also lowered to use two-result
194 // operations, to match the available instructions. However, plain multiply
195 // (low) operations are left as Legal, as there are single-result
196 // instructions for this in x86. Using the two-result multiply instructions
197 // when both high and low results are needed must be arranged by dagcombine.
Dan Gohman525178c2007-10-08 18:33:35 +0000198 setOperationAction(ISD::MULHS , MVT::i8 , Expand);
199 setOperationAction(ISD::MULHU , MVT::i8 , Expand);
200 setOperationAction(ISD::SDIV , MVT::i8 , Expand);
201 setOperationAction(ISD::UDIV , MVT::i8 , Expand);
202 setOperationAction(ISD::SREM , MVT::i8 , Expand);
203 setOperationAction(ISD::UREM , MVT::i8 , Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000204 setOperationAction(ISD::MULHS , MVT::i16 , Expand);
205 setOperationAction(ISD::MULHU , MVT::i16 , Expand);
206 setOperationAction(ISD::SDIV , MVT::i16 , Expand);
207 setOperationAction(ISD::UDIV , MVT::i16 , Expand);
208 setOperationAction(ISD::SREM , MVT::i16 , Expand);
209 setOperationAction(ISD::UREM , MVT::i16 , Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000210 setOperationAction(ISD::MULHS , MVT::i32 , Expand);
211 setOperationAction(ISD::MULHU , MVT::i32 , Expand);
212 setOperationAction(ISD::SDIV , MVT::i32 , Expand);
213 setOperationAction(ISD::UDIV , MVT::i32 , Expand);
214 setOperationAction(ISD::SREM , MVT::i32 , Expand);
215 setOperationAction(ISD::UREM , MVT::i32 , Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000216 setOperationAction(ISD::MULHS , MVT::i64 , Expand);
217 setOperationAction(ISD::MULHU , MVT::i64 , Expand);
218 setOperationAction(ISD::SDIV , MVT::i64 , Expand);
219 setOperationAction(ISD::UDIV , MVT::i64 , Expand);
220 setOperationAction(ISD::SREM , MVT::i64 , Expand);
221 setOperationAction(ISD::UREM , MVT::i64 , Expand);
Dan Gohmana37c9f72007-09-25 18:23:27 +0000222
Evan Chengc35497f2006-10-30 08:02:39 +0000223 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000224 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
Nate Begeman750ac1b2006-02-01 07:19:44 +0000225 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
226 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000227 if (Subtarget->is64Bit())
Christopher Lambc59e5212007-08-10 21:48:46 +0000228 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
229 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
230 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000231 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
232 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
Chris Lattnerd1108222008-03-07 06:36:32 +0000233 setOperationAction(ISD::FREM , MVT::f32 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000234 setOperationAction(ISD::FREM , MVT::f64 , Expand);
Chris Lattnerd1108222008-03-07 06:36:32 +0000235 setOperationAction(ISD::FREM , MVT::f80 , Expand);
Dan Gohman1a024862008-01-31 00:41:03 +0000236 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000237
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000238 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000239 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
240 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000241 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000242 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
243 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000244 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000245 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
246 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000247 if (Subtarget->is64Bit()) {
248 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000249 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
250 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000251 }
252
Andrew Lenharthb873ff32005-11-20 21:41:10 +0000253 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
Nate Begemand88fc032006-01-14 03:14:10 +0000254 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000255
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000256 // These should be promoted to a larger select which is supported.
257 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
258 setOperationAction(ISD::SELECT , MVT::i8 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000259 // X86 wants to expand cmov itself.
Evan Cheng5298bcc2006-02-17 07:01:52 +0000260 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
261 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
262 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
263 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000264 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000265 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
266 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
267 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
268 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
269 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000270 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000271 if (Subtarget->is64Bit()) {
272 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
273 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
274 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000275 // X86 ret instruction may pop stack.
Evan Cheng5298bcc2006-02-17 07:01:52 +0000276 setOperationAction(ISD::RET , MVT::Other, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000277 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000278
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000279 // Darwin ABI issue.
Evan Cheng7ccced62006-02-18 00:15:05 +0000280 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
Nate Begeman37efe672006-04-22 18:53:45 +0000281 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000282 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000283 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000284 if (Subtarget->is64Bit())
285 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Bill Wendling056292f2008-09-16 21:48:12 +0000286 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000287 if (Subtarget->is64Bit()) {
288 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
289 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
290 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
Bill Wendling056292f2008-09-16 21:48:12 +0000291 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000292 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000293 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Evan Cheng5298bcc2006-02-17 07:01:52 +0000294 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
295 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
296 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000297 if (Subtarget->is64Bit()) {
298 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
299 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
300 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
301 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000302
Evan Chengd2cde682008-03-10 19:38:10 +0000303 if (Subtarget->hasSSE1())
304 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000305
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000306 if (!Subtarget->hasSSE2())
307 setOperationAction(ISD::MEMBARRIER , MVT::Other, Expand);
308
Mon P Wang63307c32008-05-05 19:05:59 +0000309 // Expand certain atomics
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000310 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
311 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
312 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
313 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendling5bf1b4e2008-08-20 00:28:16 +0000314
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000315 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
316 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
317 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
318 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000319
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000320 if (!Subtarget->is64Bit()) {
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000321 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
322 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
323 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
324 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
325 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
326 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
327 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000328 }
329
Dan Gohman7f460202008-06-30 20:59:49 +0000330 // Use the default ISD::DBG_STOPPOINT, ISD::DECLARE expansion.
331 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
Evan Cheng3c992d22006-03-07 02:02:57 +0000332 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000333 if (!Subtarget->isTargetDarwin() &&
334 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000335 !Subtarget->isTargetCygMing()) {
336 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
337 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
338 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000339
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000340 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
341 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
342 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
343 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
344 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000345 setExceptionPointerRegister(X86::RAX);
346 setExceptionSelectorRegister(X86::RDX);
347 } else {
348 setExceptionPointerRegister(X86::EAX);
349 setExceptionSelectorRegister(X86::EDX);
350 }
Anton Korobeynikov38252622007-09-03 00:36:06 +0000351 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000352 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
353
Duncan Sandsf7331b32007-09-11 14:10:23 +0000354 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000355
Chris Lattnerda68d302008-01-15 21:58:22 +0000356 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000357
Nate Begemanacc398c2006-01-25 18:21:52 +0000358 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
359 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Nate Begemanacc398c2006-01-25 18:21:52 +0000360 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000361 if (Subtarget->is64Bit()) {
362 setOperationAction(ISD::VAARG , MVT::Other, Custom);
Evan Chengae642192007-03-02 23:16:35 +0000363 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000364 } else {
365 setOperationAction(ISD::VAARG , MVT::Other, Expand);
Evan Chengae642192007-03-02 23:16:35 +0000366 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000367 }
Evan Chengae642192007-03-02 23:16:35 +0000368
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000369 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
Chris Lattnere1125522006-01-15 09:00:21 +0000370 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000371 if (Subtarget->is64Bit())
372 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000373 if (Subtarget->isTargetCygMing())
374 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
375 else
376 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000377
Evan Chengc7ce29b2009-02-13 22:36:38 +0000378 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000379 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000380 // Set up the FP register classes.
Evan Cheng5ee4ccc2006-01-12 08:27:59 +0000381 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
382 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000383
Evan Cheng223547a2006-01-31 22:28:30 +0000384 // Use ANDPD to simulate FABS.
385 setOperationAction(ISD::FABS , MVT::f64, Custom);
386 setOperationAction(ISD::FABS , MVT::f32, Custom);
387
388 // Use XORP to simulate FNEG.
389 setOperationAction(ISD::FNEG , MVT::f64, Custom);
390 setOperationAction(ISD::FNEG , MVT::f32, Custom);
391
Evan Cheng68c47cb2007-01-05 07:55:56 +0000392 // Use ANDPD and ORPD to simulate FCOPYSIGN.
393 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
394 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
395
Evan Chengd25e9e82006-02-02 00:28:23 +0000396 // We don't support sin/cos/fmod
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000397 setOperationAction(ISD::FSIN , MVT::f64, Expand);
398 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000399 setOperationAction(ISD::FSIN , MVT::f32, Expand);
400 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000401
Chris Lattnera54aa942006-01-29 06:26:08 +0000402 // Expand FP immediates into loads from the stack, except for the special
403 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000404 addLegalFPImmediate(APFloat(+0.0)); // xorpd
405 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Dale Johannesen5411a392007-08-09 01:04:01 +0000406
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000407 // Floating truncations from f80 and extensions to f80 go through memory.
408 // If optimizing, we lie about this though and handle it in
409 // InstructionSelectPreprocess so that dagcombine2 can hack on these.
410 if (Fast) {
411 setConvertAction(MVT::f32, MVT::f80, Expand);
412 setConvertAction(MVT::f64, MVT::f80, Expand);
413 setConvertAction(MVT::f80, MVT::f32, Expand);
414 setConvertAction(MVT::f80, MVT::f64, Expand);
415 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000416 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000417 // Use SSE for f32, x87 for f64.
418 // Set up the FP register classes.
419 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
420 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
421
422 // Use ANDPS to simulate FABS.
423 setOperationAction(ISD::FABS , MVT::f32, Custom);
424
425 // Use XORP to simulate FNEG.
426 setOperationAction(ISD::FNEG , MVT::f32, Custom);
427
428 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
429
430 // Use ANDPS and ORPS to simulate FCOPYSIGN.
431 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
432 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
433
434 // We don't support sin/cos/fmod
435 setOperationAction(ISD::FSIN , MVT::f32, Expand);
436 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000437
Nate Begemane1795842008-02-14 08:57:00 +0000438 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000439 addLegalFPImmediate(APFloat(+0.0f)); // xorps
440 addLegalFPImmediate(APFloat(+0.0)); // FLD0
441 addLegalFPImmediate(APFloat(+1.0)); // FLD1
442 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
443 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
444
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000445 // SSE <-> X87 conversions go through memory. If optimizing, we lie about
446 // this though and handle it in InstructionSelectPreprocess so that
447 // dagcombine2 can hack on these.
448 if (Fast) {
449 setConvertAction(MVT::f32, MVT::f64, Expand);
450 setConvertAction(MVT::f32, MVT::f80, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000451 setConvertAction(MVT::f80, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000452 setConvertAction(MVT::f64, MVT::f32, Expand);
453 // And x87->x87 truncations also.
454 setConvertAction(MVT::f80, MVT::f64, Expand);
455 }
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000456
457 if (!UnsafeFPMath) {
458 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
459 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
460 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000461 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000462 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000463 // Set up the FP register classes.
Dale Johannesen849f2142007-07-03 00:53:03 +0000464 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
465 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000466
Evan Cheng68c47cb2007-01-05 07:55:56 +0000467 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesen849f2142007-07-03 00:53:03 +0000468 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000469 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
470 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000471
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000472 // Floating truncations go through memory. If optimizing, we lie about
473 // this though and handle it in InstructionSelectPreprocess so that
474 // dagcombine2 can hack on these.
475 if (Fast) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000476 setConvertAction(MVT::f80, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000477 setConvertAction(MVT::f64, MVT::f32, Expand);
478 setConvertAction(MVT::f80, MVT::f64, Expand);
479 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000480
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000481 if (!UnsafeFPMath) {
482 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
483 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
484 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000485 addLegalFPImmediate(APFloat(+0.0)); // FLD0
486 addLegalFPImmediate(APFloat(+1.0)); // FLD1
487 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
488 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000489 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
490 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
491 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
492 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000493 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000494
Dale Johannesen59a58732007-08-05 18:49:15 +0000495 // Long double always uses X87.
Evan Chengc7ce29b2009-02-13 22:36:38 +0000496 if (!UseSoftFloat) {
497 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
498 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
499 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
500 {
501 bool ignored;
502 APFloat TmpFlt(+0.0);
503 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
504 &ignored);
505 addLegalFPImmediate(TmpFlt); // FLD0
506 TmpFlt.changeSign();
507 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
508 APFloat TmpFlt2(+1.0);
509 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
510 &ignored);
511 addLegalFPImmediate(TmpFlt2); // FLD1
512 TmpFlt2.changeSign();
513 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
514 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000515
Evan Chengc7ce29b2009-02-13 22:36:38 +0000516 if (!UnsafeFPMath) {
517 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
518 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
519 }
Dale Johannesen2f429012007-09-26 21:10:55 +0000520 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000521
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000522 // Always use a library call for pow.
523 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
524 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
525 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
526
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000527 setOperationAction(ISD::FLOG, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000528 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000529 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000530 setOperationAction(ISD::FEXP, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000531 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
532
Mon P Wangf007a8b2008-11-06 05:31:54 +0000533 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000534 // (for widening) or expand (for scalarization). Then we will selectively
535 // turn on ones that can be effectively codegen'd.
Dan Gohmanfa0f77d2007-05-18 18:44:07 +0000536 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
537 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000538 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
539 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
540 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
541 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
542 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
543 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
544 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
545 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
546 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
547 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
548 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
549 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
550 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
Gabor Greif327ef032008-08-28 23:19:51 +0000551 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
552 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
553 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000554 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
555 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
556 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
557 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
558 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
559 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
560 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
561 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
562 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
563 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
564 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
565 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
566 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
567 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
568 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
574 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
Dale Johannesenfb0e1322008-09-10 17:31:40 +0000576 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
577 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
579 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
580 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000581 }
582
Evan Chengc7ce29b2009-02-13 22:36:38 +0000583 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
584 // with -msoft-float, disable use of MMX as well.
585 if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000586 addRegisterClass(MVT::v8i8, X86::VR64RegisterClass);
587 addRegisterClass(MVT::v4i16, X86::VR64RegisterClass);
588 addRegisterClass(MVT::v2i32, X86::VR64RegisterClass);
Dale Johannesena68f9012008-06-24 22:01:44 +0000589 addRegisterClass(MVT::v2f32, X86::VR64RegisterClass);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000590 addRegisterClass(MVT::v1i64, X86::VR64RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000591
Evan Chengd30bf012006-03-01 01:11:20 +0000592 // FIXME: add MMX packed arithmetics
Bill Wendlingbc9bffa2007-03-07 05:43:18 +0000593
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000594 setOperationAction(ISD::ADD, MVT::v8i8, Legal);
595 setOperationAction(ISD::ADD, MVT::v4i16, Legal);
596 setOperationAction(ISD::ADD, MVT::v2i32, Legal);
Chris Lattner6c284d72007-04-12 04:14:49 +0000597 setOperationAction(ISD::ADD, MVT::v1i64, Legal);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000598
Bill Wendlingc1fb0472007-03-10 09:57:05 +0000599 setOperationAction(ISD::SUB, MVT::v8i8, Legal);
600 setOperationAction(ISD::SUB, MVT::v4i16, Legal);
601 setOperationAction(ISD::SUB, MVT::v2i32, Legal);
Dale Johannesen8d26e592007-10-30 01:18:38 +0000602 setOperationAction(ISD::SUB, MVT::v1i64, Legal);
Bill Wendlingc1fb0472007-03-10 09:57:05 +0000603
Bill Wendling74027e92007-03-15 21:24:36 +0000604 setOperationAction(ISD::MULHS, MVT::v4i16, Legal);
605 setOperationAction(ISD::MUL, MVT::v4i16, Legal);
606
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000607 setOperationAction(ISD::AND, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000608 AddPromotedToType (ISD::AND, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000609 setOperationAction(ISD::AND, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000610 AddPromotedToType (ISD::AND, MVT::v4i16, MVT::v1i64);
611 setOperationAction(ISD::AND, MVT::v2i32, Promote);
612 AddPromotedToType (ISD::AND, MVT::v2i32, MVT::v1i64);
613 setOperationAction(ISD::AND, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000614
615 setOperationAction(ISD::OR, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000616 AddPromotedToType (ISD::OR, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000617 setOperationAction(ISD::OR, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000618 AddPromotedToType (ISD::OR, MVT::v4i16, MVT::v1i64);
619 setOperationAction(ISD::OR, MVT::v2i32, Promote);
620 AddPromotedToType (ISD::OR, MVT::v2i32, MVT::v1i64);
621 setOperationAction(ISD::OR, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000622
623 setOperationAction(ISD::XOR, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000624 AddPromotedToType (ISD::XOR, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000625 setOperationAction(ISD::XOR, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000626 AddPromotedToType (ISD::XOR, MVT::v4i16, MVT::v1i64);
627 setOperationAction(ISD::XOR, MVT::v2i32, Promote);
628 AddPromotedToType (ISD::XOR, MVT::v2i32, MVT::v1i64);
629 setOperationAction(ISD::XOR, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000630
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000631 setOperationAction(ISD::LOAD, MVT::v8i8, Promote);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000632 AddPromotedToType (ISD::LOAD, MVT::v8i8, MVT::v1i64);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000633 setOperationAction(ISD::LOAD, MVT::v4i16, Promote);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000634 AddPromotedToType (ISD::LOAD, MVT::v4i16, MVT::v1i64);
635 setOperationAction(ISD::LOAD, MVT::v2i32, Promote);
636 AddPromotedToType (ISD::LOAD, MVT::v2i32, MVT::v1i64);
Dale Johannesena68f9012008-06-24 22:01:44 +0000637 setOperationAction(ISD::LOAD, MVT::v2f32, Promote);
638 AddPromotedToType (ISD::LOAD, MVT::v2f32, MVT::v1i64);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000639 setOperationAction(ISD::LOAD, MVT::v1i64, Legal);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000640
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000641 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i8, Custom);
642 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i16, Custom);
643 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i32, Custom);
Dale Johannesena68f9012008-06-24 22:01:44 +0000644 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f32, Custom);
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000645 setOperationAction(ISD::BUILD_VECTOR, MVT::v1i64, Custom);
Bill Wendlinga348c562007-03-22 18:42:45 +0000646
647 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
648 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
649 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i32, Custom);
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000650 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v1i64, Custom);
Bill Wendling826f36f2007-03-28 00:57:11 +0000651
Evan Cheng52672b82008-07-22 18:39:19 +0000652 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f32, Custom);
Bill Wendling826f36f2007-03-28 00:57:11 +0000653 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Custom);
654 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Custom);
Bill Wendling2f9bb1a2007-04-24 21:16:55 +0000655 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Custom);
Bill Wendling3180e202008-07-20 02:32:23 +0000656
657 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i16, Custom);
Mon P Wang9e5ecb82008-12-12 01:25:51 +0000658
659 setTruncStoreAction(MVT::v8i16, MVT::v8i8, Expand);
660 setOperationAction(ISD::TRUNCATE, MVT::v8i8, Expand);
661 setOperationAction(ISD::SELECT, MVT::v8i8, Promote);
662 setOperationAction(ISD::SELECT, MVT::v4i16, Promote);
663 setOperationAction(ISD::SELECT, MVT::v2i32, Promote);
664 setOperationAction(ISD::SELECT, MVT::v1i64, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000665 }
666
Evan Chengc7ce29b2009-02-13 22:36:38 +0000667 if (!UseSoftFloat && Subtarget->hasSSE1()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000668 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
669
Evan Cheng6bdb3f62006-10-27 18:49:08 +0000670 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
671 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
672 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
673 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
Dan Gohman20382522007-07-10 00:05:58 +0000674 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
675 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000676 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
677 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
678 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
Evan Cheng11e15b32006-04-03 20:53:28 +0000679 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000680 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Nate Begeman30a0de92008-07-17 16:51:19 +0000681 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000682 }
683
Evan Chengc7ce29b2009-02-13 22:36:38 +0000684 if (!UseSoftFloat && Subtarget->hasSSE2()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000685 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000686
687 // FIXME: Unfortunately -soft-float means XMM registers cannot be used even
688 // for integer operations.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000689 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
690 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
691 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
692 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
693
Evan Chengf7c378e2006-04-10 07:23:14 +0000694 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
695 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
696 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
Evan Cheng37e88562007-03-12 22:58:52 +0000697 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Mon P Wangaf9b9522008-12-18 21:42:19 +0000698 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000699 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
700 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
701 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
Evan Cheng37e88562007-03-12 22:58:52 +0000702 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
Evan Chengf9989842006-04-13 05:10:25 +0000703 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
Evan Cheng6bdb3f62006-10-27 18:49:08 +0000704 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
705 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
706 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
707 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
Dan Gohman20382522007-07-10 00:05:58 +0000708 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
709 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000710
Nate Begeman30a0de92008-07-17 16:51:19 +0000711 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
712 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
713 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
714 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000715
Evan Chengf7c378e2006-04-10 07:23:14 +0000716 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
717 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
Evan Chengb067a1e2006-03-31 19:22:53 +0000718 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
Evan Cheng5edb8d22006-04-17 22:04:06 +0000719 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Evan Cheng5edb8d22006-04-17 22:04:06 +0000720 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000721
Evan Cheng2c3ae372006-04-12 21:21:57 +0000722 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000723 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
724 MVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000725 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000726 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000727 continue;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000728 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
729 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
730 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000731 }
732 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
733 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
734 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
735 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000736 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000737 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000738 if (Subtarget->is64Bit()) {
739 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
Dale Johannesen25f1d082007-10-31 00:32:36 +0000740 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000741 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000742
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000743 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Evan Cheng2c3ae372006-04-12 21:21:57 +0000744 for (unsigned VT = (unsigned)MVT::v16i8; VT != (unsigned)MVT::v2i64; VT++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000745 setOperationAction(ISD::AND, (MVT::SimpleValueType)VT, Promote);
746 AddPromotedToType (ISD::AND, (MVT::SimpleValueType)VT, MVT::v2i64);
747 setOperationAction(ISD::OR, (MVT::SimpleValueType)VT, Promote);
748 AddPromotedToType (ISD::OR, (MVT::SimpleValueType)VT, MVT::v2i64);
749 setOperationAction(ISD::XOR, (MVT::SimpleValueType)VT, Promote);
750 AddPromotedToType (ISD::XOR, (MVT::SimpleValueType)VT, MVT::v2i64);
751 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Promote);
752 AddPromotedToType (ISD::LOAD, (MVT::SimpleValueType)VT, MVT::v2i64);
753 setOperationAction(ISD::SELECT, (MVT::SimpleValueType)VT, Promote);
754 AddPromotedToType (ISD::SELECT, (MVT::SimpleValueType)VT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000755 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000756
Chris Lattnerddf89562008-01-17 19:59:44 +0000757 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000758
Evan Cheng2c3ae372006-04-12 21:21:57 +0000759 // Custom lower v2i64 and v2f64 selects.
760 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
Evan Cheng91b740d2006-04-12 17:12:36 +0000761 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
Evan Chengf7c378e2006-04-10 07:23:14 +0000762 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000763 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000764
Evan Cheng470a6ad2006-02-22 02:26:30 +0000765 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000766
Nate Begeman14d12ca2008-02-11 04:19:36 +0000767 if (Subtarget->hasSSE41()) {
768 // FIXME: Do we need to handle scalar-to-vector here?
769 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
770
771 // i8 and i16 vectors are custom , because the source register and source
772 // source memory operand types are not the same width. f32 vectors are
773 // custom since the immediate controlling the insert encodes additional
774 // information.
775 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
776 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangf0fcdd82009-01-15 21:10:20 +0000777 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000778 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
779
780 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
781 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangf0fcdd82009-01-15 21:10:20 +0000782 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
Evan Cheng62a3f152008-03-24 21:52:23 +0000783 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000784
785 if (Subtarget->is64Bit()) {
Nate Begemancdd1eec2008-02-12 22:51:28 +0000786 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
787 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000788 }
789 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000790
Nate Begeman30a0de92008-07-17 16:51:19 +0000791 if (Subtarget->hasSSE42()) {
792 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
793 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000794
Evan Cheng6be2c582006-04-05 23:38:46 +0000795 // We want to custom lower some of our intrinsics.
796 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
797
Bill Wendling74c37652008-12-09 22:08:41 +0000798 // Add/Sub/Mul with overflow operations are custom lowered.
Bill Wendling41ea7e72008-11-24 19:21:46 +0000799 setOperationAction(ISD::SADDO, MVT::i32, Custom);
800 setOperationAction(ISD::SADDO, MVT::i64, Custom);
801 setOperationAction(ISD::UADDO, MVT::i32, Custom);
802 setOperationAction(ISD::UADDO, MVT::i64, Custom);
Bill Wendling74c37652008-12-09 22:08:41 +0000803 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
804 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
805 setOperationAction(ISD::USUBO, MVT::i32, Custom);
806 setOperationAction(ISD::USUBO, MVT::i64, Custom);
807 setOperationAction(ISD::SMULO, MVT::i32, Custom);
808 setOperationAction(ISD::SMULO, MVT::i64, Custom);
809 setOperationAction(ISD::UMULO, MVT::i32, Custom);
810 setOperationAction(ISD::UMULO, MVT::i64, Custom);
Bill Wendling41ea7e72008-11-24 19:21:46 +0000811
Evan Cheng206ee9d2006-07-07 08:33:52 +0000812 // We have target-specific dag combine patterns for the following nodes:
813 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Evan Chengd880b972008-05-09 21:53:03 +0000814 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +0000815 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +0000816 setTargetDAGCombine(ISD::SHL);
817 setTargetDAGCombine(ISD::SRA);
818 setTargetDAGCombine(ISD::SRL);
Chris Lattner149a4e52008-02-22 02:09:43 +0000819 setTargetDAGCombine(ISD::STORE);
Evan Cheng206ee9d2006-07-07 08:33:52 +0000820
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000821 computeRegisterProperties();
822
Evan Cheng87ed7162006-02-14 08:25:08 +0000823 // FIXME: These should be based on subtarget info. Plus, the values should
824 // be smaller when we are in optimizing for size mode.
Dan Gohman87060f52008-06-30 21:00:56 +0000825 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
826 maxStoresPerMemcpy = 16; // For @llvm.memcpy -> sequence of stores
827 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000828 allowUnalignedMemoryAccesses = true; // x86 supports it!
Evan Chengfb8075d2008-02-28 00:43:03 +0000829 setPrefLoopAlignment(16);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000830}
831
Scott Michel5b8f82e2008-03-10 15:42:14 +0000832
Duncan Sands5480c042009-01-01 15:52:00 +0000833MVT X86TargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel5b8f82e2008-03-10 15:42:14 +0000834 return MVT::i8;
835}
836
837
Evan Cheng29286502008-01-23 23:17:41 +0000838/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
839/// the desired ByVal argument alignment.
840static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
841 if (MaxAlign == 16)
842 return;
843 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
844 if (VTy->getBitWidth() == 128)
845 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +0000846 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
847 unsigned EltAlign = 0;
848 getMaxByValAlign(ATy->getElementType(), EltAlign);
849 if (EltAlign > MaxAlign)
850 MaxAlign = EltAlign;
851 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
852 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
853 unsigned EltAlign = 0;
854 getMaxByValAlign(STy->getElementType(i), EltAlign);
855 if (EltAlign > MaxAlign)
856 MaxAlign = EltAlign;
857 if (MaxAlign == 16)
858 break;
859 }
860 }
861 return;
862}
863
864/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
865/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +0000866/// that contain SSE vectors are placed at 16-byte boundaries while the rest
867/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +0000868unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +0000869 if (Subtarget->is64Bit()) {
870 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000871 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +0000872 if (TyAlign > 8)
873 return TyAlign;
874 return 8;
875 }
876
Evan Cheng29286502008-01-23 23:17:41 +0000877 unsigned Align = 4;
Dale Johannesen0c191872008-02-08 19:48:20 +0000878 if (Subtarget->hasSSE1())
879 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +0000880 return Align;
881}
Chris Lattner2b02a442007-02-25 08:29:00 +0000882
Evan Chengf0df0312008-05-15 08:39:06 +0000883/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng0ef8de32008-05-15 22:13:02 +0000884/// and store operations as a result of memset, memcpy, and memmove
885/// lowering. It returns MVT::iAny if SelectionDAG should be responsible for
Evan Chengf0df0312008-05-15 08:39:06 +0000886/// determining it.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000887MVT
Evan Chengf0df0312008-05-15 08:39:06 +0000888X86TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned Align,
889 bool isSrcConst, bool isSrcStr) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +0000890 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
891 // linux. This is because the stack realignment code can't handle certain
892 // cases like PR2962. This should be removed when PR2962 is fixed.
893 if (Subtarget->getStackAlignment() >= 16) {
894 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE2() && Size >= 16)
895 return MVT::v4i32;
896 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE1() && Size >= 16)
897 return MVT::v4f32;
898 }
Evan Chengf0df0312008-05-15 08:39:06 +0000899 if (Subtarget->is64Bit() && Size >= 8)
900 return MVT::i64;
901 return MVT::i32;
902}
903
904
Evan Chengcc415862007-11-09 01:32:10 +0000905/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
906/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +0000907SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Evan Chengcc415862007-11-09 01:32:10 +0000908 SelectionDAG &DAG) const {
909 if (usesGlobalOffsetTable())
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000910 return DAG.getGLOBAL_OFFSET_TABLE(getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +0000911 if (!Subtarget->isPICStyleRIPRel())
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000912 // This doesn't have DebugLoc associated with it, but is not really the
913 // same as a Register.
914 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc::getUnknownLoc(),
915 getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +0000916 return Table;
917}
918
Chris Lattner2b02a442007-02-25 08:29:00 +0000919//===----------------------------------------------------------------------===//
920// Return Value Calling Convention Implementation
921//===----------------------------------------------------------------------===//
922
Chris Lattner59ed56b2007-02-28 04:55:35 +0000923#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000924
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000925/// LowerRET - Lower an ISD::RET node.
Dan Gohman475871a2008-07-27 21:46:04 +0000926SDValue X86TargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000927 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000928 assert((Op.getNumOperands() & 1) == 1 && "ISD::RET should have odd # args");
Scott Michelfdc40a02009-02-17 22:15:04 +0000929
Chris Lattner9774c912007-02-27 05:28:59 +0000930 SmallVector<CCValAssign, 16> RVLocs;
931 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
Chris Lattner52387be2007-06-19 00:13:10 +0000932 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
933 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Gabor Greifba36cb52008-08-28 21:40:38 +0000934 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +0000935
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000936 // If this is the first return lowered for this function, add the regs to the
937 // liveout set for the function.
Chris Lattner84bc5422007-12-31 04:13:23 +0000938 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Chris Lattner9774c912007-02-27 05:28:59 +0000939 for (unsigned i = 0; i != RVLocs.size(); ++i)
940 if (RVLocs[i].isRegLoc())
Chris Lattner84bc5422007-12-31 04:13:23 +0000941 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000942 }
Dan Gohman475871a2008-07-27 21:46:04 +0000943 SDValue Chain = Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000944
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000945 // Handle tail call return.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000946 Chain = GetPossiblePreceedingTailCall(Chain, X86ISD::TAILCALL);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000947 if (Chain.getOpcode() == X86ISD::TAILCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +0000948 SDValue TailCall = Chain;
949 SDValue TargetAddress = TailCall.getOperand(1);
950 SDValue StackAdjustment = TailCall.getOperand(2);
Chris Lattnerb4a6eaa2008-01-16 05:52:18 +0000951 assert(((TargetAddress.getOpcode() == ISD::Register &&
Arnold Schwaighofer290ae032008-09-22 14:50:07 +0000952 (cast<RegisterSDNode>(TargetAddress)->getReg() == X86::EAX ||
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000953 cast<RegisterSDNode>(TargetAddress)->getReg() == X86::R9)) ||
Bill Wendling056292f2008-09-16 21:48:12 +0000954 TargetAddress.getOpcode() == ISD::TargetExternalSymbol ||
Scott Michelfdc40a02009-02-17 22:15:04 +0000955 TargetAddress.getOpcode() == ISD::TargetGlobalAddress) &&
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000956 "Expecting an global address, external symbol, or register");
Chris Lattnerb4a6eaa2008-01-16 05:52:18 +0000957 assert(StackAdjustment.getOpcode() == ISD::Constant &&
958 "Expecting a const value");
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000959
Dan Gohman475871a2008-07-27 21:46:04 +0000960 SmallVector<SDValue,8> Operands;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000961 Operands.push_back(Chain.getOperand(0));
962 Operands.push_back(TargetAddress);
963 Operands.push_back(StackAdjustment);
964 // Copy registers used by the call. Last operand is a flag so it is not
965 // copied.
Arnold Schwaighofer448175f2007-10-16 09:05:00 +0000966 for (unsigned i=3; i < TailCall.getNumOperands()-1; i++) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000967 Operands.push_back(Chain.getOperand(i));
968 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000969 return DAG.getNode(X86ISD::TC_RETURN, dl, MVT::Other, &Operands[0],
Arnold Schwaighofer448175f2007-10-16 09:05:00 +0000970 Operands.size());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000971 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000972
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000973 // Regular return.
Dan Gohman475871a2008-07-27 21:46:04 +0000974 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000975
Dan Gohman475871a2008-07-27 21:46:04 +0000976 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +0000977 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
978 // Operand #1 = Bytes To Pop
979 RetOps.push_back(DAG.getConstant(getBytesToPopOnReturn(), MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +0000980
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000981 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +0000982 for (unsigned i = 0; i != RVLocs.size(); ++i) {
983 CCValAssign &VA = RVLocs[i];
984 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohman475871a2008-07-27 21:46:04 +0000985 SDValue ValToCopy = Op.getOperand(i*2+1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000986
Chris Lattner447ff682008-03-11 03:23:40 +0000987 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
988 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +0000989 if (VA.getLocReg() == X86::ST0 ||
990 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +0000991 // If this is a copy from an xmm register to ST(0), use an FPExtend to
992 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +0000993 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Dale Johannesenace16102009-02-03 19:33:06 +0000994 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +0000995 RetOps.push_back(ValToCopy);
996 // Don't emit a copytoreg.
997 continue;
998 }
Dale Johannesena68f9012008-06-24 22:01:44 +0000999
Dale Johannesendd64c412009-02-04 00:33:20 +00001000 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001001 Flag = Chain.getValue(1);
1002 }
Dan Gohman61a92132008-04-21 23:59:07 +00001003
1004 // The x86-64 ABI for returning structs by value requires that we copy
1005 // the sret argument into %rax for the return. We saved the argument into
1006 // a virtual register in the entry block, so now we copy the value out
1007 // and into %rax.
1008 if (Subtarget->is64Bit() &&
1009 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1010 MachineFunction &MF = DAG.getMachineFunction();
1011 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1012 unsigned Reg = FuncInfo->getSRetReturnReg();
1013 if (!Reg) {
1014 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1015 FuncInfo->setSRetReturnReg(Reg);
1016 }
Dale Johannesendd64c412009-02-04 00:33:20 +00001017 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001018
Dale Johannesendd64c412009-02-04 00:33:20 +00001019 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001020 Flag = Chain.getValue(1);
1021 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001022
Chris Lattner447ff682008-03-11 03:23:40 +00001023 RetOps[0] = Chain; // Update chain.
1024
1025 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001026 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001027 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001028
1029 return DAG.getNode(X86ISD::RET_FLAG, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00001030 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001031}
1032
1033
Chris Lattner3085e152007-02-25 08:59:22 +00001034/// LowerCallResult - Lower the result values of an ISD::CALL into the
1035/// appropriate copies out of appropriate physical registers. This assumes that
1036/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
1037/// being lowered. The returns a SDNode with the same number of values as the
1038/// ISD::CALL.
1039SDNode *X86TargetLowering::
Scott Michelfdc40a02009-02-17 22:15:04 +00001040LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
Chris Lattner3085e152007-02-25 08:59:22 +00001041 unsigned CallingConv, SelectionDAG &DAG) {
Dale Johannesenace16102009-02-03 19:33:06 +00001042
Scott Michelfdc40a02009-02-17 22:15:04 +00001043 DebugLoc dl = TheCall->getDebugLoc();
Chris Lattnere32bbf62007-02-28 07:09:55 +00001044 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001045 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman095cc292008-09-13 01:54:27 +00001046 bool isVarArg = TheCall->isVarArg();
Torok Edwin3f142c32009-02-01 18:15:56 +00001047 bool Is64Bit = Subtarget->is64Bit();
Chris Lattner52387be2007-06-19 00:13:10 +00001048 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
Chris Lattnere32bbf62007-02-28 07:09:55 +00001049 CCInfo.AnalyzeCallResult(TheCall, RetCC_X86);
1050
Dan Gohman475871a2008-07-27 21:46:04 +00001051 SmallVector<SDValue, 8> ResultVals;
Scott Michelfdc40a02009-02-17 22:15:04 +00001052
Chris Lattner3085e152007-02-25 08:59:22 +00001053 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001054 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001055 CCValAssign &VA = RVLocs[i];
1056 MVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001057
Torok Edwin3f142c32009-02-01 18:15:56 +00001058 // If this is x86-64, and we disabled SSE, we can't return FP values
Scott Michelfdc40a02009-02-17 22:15:04 +00001059 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001060 ((Is64Bit || TheCall->isInreg()) && !Subtarget->hasSSE1())) {
1061 cerr << "SSE register return with SSE disabled\n";
1062 exit(1);
1063 }
1064
Chris Lattner8e6da152008-03-10 21:08:41 +00001065 // If this is a call to a function that returns an fp value on the floating
1066 // point stack, but where we prefer to use the value in xmm registers, copy
1067 // 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 +00001068 if ((VA.getLocReg() == X86::ST0 ||
1069 VA.getLocReg() == X86::ST1) &&
1070 isScalarFPTypeInSSEReg(VA.getValVT())) {
Chris Lattner8e6da152008-03-10 21:08:41 +00001071 CopyVT = MVT::f80;
Chris Lattner3085e152007-02-25 08:59:22 +00001072 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001073
Dan Gohman37eed792009-02-04 17:28:58 +00001074 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Chris Lattner8e6da152008-03-10 21:08:41 +00001075 CopyVT, InFlag).getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00001076 SDValue Val = Chain.getValue(0);
Chris Lattner8e6da152008-03-10 21:08:41 +00001077 InFlag = Chain.getValue(2);
Chris Lattner112dedc2007-12-29 06:41:28 +00001078
Dan Gohman37eed792009-02-04 17:28:58 +00001079 if (CopyVT != VA.getValVT()) {
Chris Lattner8e6da152008-03-10 21:08:41 +00001080 // Round the F80 the right size, which also moves to the appropriate xmm
1081 // register.
Dan Gohman37eed792009-02-04 17:28:58 +00001082 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
Chris Lattner8e6da152008-03-10 21:08:41 +00001083 // This truncation won't change the value.
1084 DAG.getIntPtrConstant(1));
1085 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001086
Chris Lattner8e6da152008-03-10 21:08:41 +00001087 ResultVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001088 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001089
Chris Lattner3085e152007-02-25 08:59:22 +00001090 // Merge everything together with a MERGE_VALUES node.
1091 ResultVals.push_back(Chain);
Dale Johannesenace16102009-02-03 19:33:06 +00001092 return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(),
1093 &ResultVals[0], ResultVals.size()).getNode();
Chris Lattner2b02a442007-02-25 08:29:00 +00001094}
1095
1096
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001097//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001098// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001099//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001100// StdCall calling convention seems to be standard for many Windows' API
1101// routines and around. It differs from C calling convention just a little:
1102// callee should clean up the stack, not caller. Symbols should be also
1103// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001104// For info on fast calling convention see Fast Calling Convention (tail call)
1105// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001106
Evan Cheng85e38002006-04-27 05:35:28 +00001107/// AddLiveIn - This helper function adds the specified physical register to the
1108/// MachineFunction as a live in value. It also creates a corresponding virtual
1109/// register for it.
1110static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001111 const TargetRegisterClass *RC) {
Evan Cheng85e38002006-04-27 05:35:28 +00001112 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner84bc5422007-12-31 04:13:23 +00001113 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
1114 MF.getRegInfo().addLiveIn(PReg, VReg);
Evan Cheng85e38002006-04-27 05:35:28 +00001115 return VReg;
1116}
1117
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001118/// CallIsStructReturn - Determines whether a CALL node uses struct return
1119/// semantics.
Dan Gohman095cc292008-09-13 01:54:27 +00001120static bool CallIsStructReturn(CallSDNode *TheCall) {
1121 unsigned NumOps = TheCall->getNumArgs();
Gordon Henriksen86737662008-01-05 16:56:59 +00001122 if (!NumOps)
1123 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001124
Dan Gohman095cc292008-09-13 01:54:27 +00001125 return TheCall->getArgFlags(0).isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001126}
1127
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001128/// ArgsAreStructReturn - Determines whether a FORMAL_ARGUMENTS node uses struct
1129/// return semantics.
Dan Gohman475871a2008-07-27 21:46:04 +00001130static bool ArgsAreStructReturn(SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001131 unsigned NumArgs = Op.getNode()->getNumValues() - 1;
Gordon Henriksen86737662008-01-05 16:56:59 +00001132 if (!NumArgs)
1133 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001134
1135 return cast<ARG_FLAGSSDNode>(Op.getOperand(3))->getArgFlags().isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001136}
1137
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001138/// IsCalleePop - Determines whether a CALL or FORMAL_ARGUMENTS node requires
1139/// the callee to pop its own arguments. Callee pop is necessary to support tail
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001140/// calls.
Dan Gohman095cc292008-09-13 01:54:27 +00001141bool X86TargetLowering::IsCalleePop(bool IsVarArg, unsigned CallingConv) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001142 if (IsVarArg)
1143 return false;
1144
Dan Gohman095cc292008-09-13 01:54:27 +00001145 switch (CallingConv) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001146 default:
1147 return false;
1148 case CallingConv::X86_StdCall:
1149 return !Subtarget->is64Bit();
1150 case CallingConv::X86_FastCall:
1151 return !Subtarget->is64Bit();
1152 case CallingConv::Fast:
1153 return PerformTailCallOpt;
1154 }
1155}
1156
Dan Gohman095cc292008-09-13 01:54:27 +00001157/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1158/// given CallingConvention value.
1159CCAssignFn *X86TargetLowering::CCAssignFnForNode(unsigned CC) const {
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00001160 if (Subtarget->is64Bit()) {
Anton Korobeynikov1a979d92008-03-22 20:57:27 +00001161 if (Subtarget->isTargetWin64())
Anton Korobeynikov8f88cb02008-03-22 20:37:30 +00001162 return CC_X86_Win64_C;
Evan Chenge9ac9e62008-09-07 09:07:23 +00001163 else if (CC == CallingConv::Fast && PerformTailCallOpt)
1164 return CC_X86_64_TailCall;
1165 else
1166 return CC_X86_64_C;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00001167 }
1168
Gordon Henriksen86737662008-01-05 16:56:59 +00001169 if (CC == CallingConv::X86_FastCall)
1170 return CC_X86_32_FastCall;
Evan Chengb188dd92008-09-10 18:25:29 +00001171 else if (CC == CallingConv::Fast)
1172 return CC_X86_32_FastCC;
Gordon Henriksen86737662008-01-05 16:56:59 +00001173 else
1174 return CC_X86_32_C;
1175}
1176
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001177/// NameDecorationForFORMAL_ARGUMENTS - Selects the appropriate decoration to
1178/// apply to a MachineFunction containing a given FORMAL_ARGUMENTS node.
Gordon Henriksen86737662008-01-05 16:56:59 +00001179NameDecorationStyle
Dan Gohman475871a2008-07-27 21:46:04 +00001180X86TargetLowering::NameDecorationForFORMAL_ARGUMENTS(SDValue Op) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001181 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Gordon Henriksen86737662008-01-05 16:56:59 +00001182 if (CC == CallingConv::X86_FastCall)
1183 return FastCall;
1184 else if (CC == CallingConv::X86_StdCall)
1185 return StdCall;
1186 return None;
1187}
1188
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001189
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001190/// CallRequiresGOTInRegister - Check whether the call requires the GOT pointer
1191/// in a register before calling.
1192bool X86TargetLowering::CallRequiresGOTPtrInReg(bool Is64Bit, bool IsTailCall) {
1193 return !IsTailCall && !Is64Bit &&
1194 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1195 Subtarget->isPICStyleGOT();
1196}
1197
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001198/// CallRequiresFnAddressInReg - Check whether the call requires the function
1199/// address to be loaded in a register.
Scott Michelfdc40a02009-02-17 22:15:04 +00001200bool
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001201X86TargetLowering::CallRequiresFnAddressInReg(bool Is64Bit, bool IsTailCall) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001202 return !Is64Bit && IsTailCall &&
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001203 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1204 Subtarget->isPICStyleGOT();
1205}
1206
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001207/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1208/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001209/// the specific parameter attribute. The copy will be passed as a byval
1210/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001211static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001212CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001213 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1214 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +00001215 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesendd64c412009-02-04 00:33:20 +00001216 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001217 /*AlwaysInline=*/true, NULL, 0, NULL, 0);
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001218}
1219
Dan Gohman475871a2008-07-27 21:46:04 +00001220SDValue X86TargetLowering::LowerMemArgument(SDValue Op, SelectionDAG &DAG,
Rafael Espindola7effac52007-09-14 15:48:13 +00001221 const CCValAssign &VA,
1222 MachineFrameInfo *MFI,
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001223 unsigned CC,
Dan Gohman475871a2008-07-27 21:46:04 +00001224 SDValue Root, unsigned i) {
Rafael Espindola7effac52007-09-14 15:48:13 +00001225 // Create the nodes corresponding to a load from this parameter slot.
Duncan Sands276dcbd2008-03-21 09:14:45 +00001226 ISD::ArgFlagsTy Flags =
1227 cast<ARG_FLAGSSDNode>(Op.getOperand(3 + i))->getArgFlags();
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001228 bool AlwaysUseMutable = (CC==CallingConv::Fast) && PerformTailCallOpt;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001229 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Evan Chenge70bb592008-01-10 02:24:25 +00001230
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001231 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001232 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001233 // In case of tail call optimization mark all arguments mutable. Since they
1234 // could be overwritten by lowering of arguments in case of a tail call.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001235 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001236 VA.getLocMemOffset(), isImmutable);
Dan Gohman475871a2008-07-27 21:46:04 +00001237 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Duncan Sands276dcbd2008-03-21 09:14:45 +00001238 if (Flags.isByVal())
Rafael Espindola7effac52007-09-14 15:48:13 +00001239 return FIN;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00001240 return DAG.getLoad(VA.getValVT(), Op.getDebugLoc(), Root, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001241 PseudoSourceValue::getFixedStack(FI), 0);
Rafael Espindola7effac52007-09-14 15:48:13 +00001242}
1243
Dan Gohman475871a2008-07-27 21:46:04 +00001244SDValue
1245X86TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) {
Evan Cheng1bc78042006-04-26 01:20:17 +00001246 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001247 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00001248 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00001249
Gordon Henriksen86737662008-01-05 16:56:59 +00001250 const Function* Fn = MF.getFunction();
1251 if (Fn->hasExternalLinkage() &&
1252 Subtarget->isTargetCygMing() &&
1253 Fn->getName() == "main")
1254 FuncInfo->setForceFramePointer(true);
1255
1256 // Decorate the function name.
1257 FuncInfo->setDecorationStyle(NameDecorationForFORMAL_ARGUMENTS(Op));
Scott Michelfdc40a02009-02-17 22:15:04 +00001258
Evan Cheng1bc78042006-04-26 01:20:17 +00001259 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman475871a2008-07-27 21:46:04 +00001260 SDValue Root = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001261 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001262 unsigned CC = MF.getFunction()->getCallingConv();
Gordon Henriksen86737662008-01-05 16:56:59 +00001263 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001264 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001265
1266 assert(!(isVarArg && CC == CallingConv::Fast) &&
1267 "Var args not supported with calling convention fastcc");
1268
Chris Lattner638402b2007-02-28 07:00:42 +00001269 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001270 SmallVector<CCValAssign, 16> ArgLocs;
Gordon Henriksenae636f82008-01-03 16:47:34 +00001271 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman095cc292008-09-13 01:54:27 +00001272 CCInfo.AnalyzeFormalArguments(Op.getNode(), CCAssignFnForNode(CC));
Scott Michelfdc40a02009-02-17 22:15:04 +00001273
Dan Gohman475871a2008-07-27 21:46:04 +00001274 SmallVector<SDValue, 8> ArgValues;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001275 unsigned LastVal = ~0U;
1276 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1277 CCValAssign &VA = ArgLocs[i];
1278 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1279 // places.
1280 assert(VA.getValNo() != LastVal &&
1281 "Don't support value assigned to multiple locs yet");
1282 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001283
Chris Lattnerf39f7712007-02-28 05:46:49 +00001284 if (VA.isRegLoc()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001285 MVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001286 TargetRegisterClass *RC = NULL;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001287 if (RegVT == MVT::i32)
1288 RC = X86::GR32RegisterClass;
Gordon Henriksen86737662008-01-05 16:56:59 +00001289 else if (Is64Bit && RegVT == MVT::i64)
1290 RC = X86::GR64RegisterClass;
Dale Johannesene672af12008-02-05 20:46:33 +00001291 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001292 RC = X86::FR32RegisterClass;
Dale Johannesene672af12008-02-05 20:46:33 +00001293 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001294 RC = X86::FR64RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001295 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001296 RC = X86::VR128RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001297 else if (RegVT.isVector()) {
1298 assert(RegVT.getSizeInBits() == 64);
Evan Chengee472b12008-04-25 07:56:45 +00001299 if (!Is64Bit)
1300 RC = X86::VR64RegisterClass; // MMX values are passed in MMXs.
1301 else {
1302 // Darwin calling convention passes MMX values in either GPRs or
1303 // XMMs in x86-64. Other targets pass them in memory.
1304 if (RegVT != MVT::v1i64 && Subtarget->hasSSE2()) {
1305 RC = X86::VR128RegisterClass; // MMX values are passed in XMMs.
1306 RegVT = MVT::v2i64;
1307 } else {
1308 RC = X86::GR64RegisterClass; // v1i64 values are passed in GPRs.
1309 RegVT = MVT::i64;
1310 }
1311 }
1312 } else {
1313 assert(0 && "Unknown argument type!");
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001314 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001315
Chris Lattner82932a52007-03-02 05:12:29 +00001316 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
Dale Johannesendd64c412009-02-04 00:33:20 +00001317 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001318
Chris Lattnerf39f7712007-02-28 05:46:49 +00001319 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1320 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1321 // right size.
1322 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001323 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001324 DAG.getValueType(VA.getValVT()));
1325 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001326 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001327 DAG.getValueType(VA.getValVT()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001328
Chris Lattnerf39f7712007-02-28 05:46:49 +00001329 if (VA.getLocInfo() != CCValAssign::Full)
Dale Johannesenace16102009-02-03 19:33:06 +00001330 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001331
Gordon Henriksen86737662008-01-05 16:56:59 +00001332 // Handle MMX values passed in GPRs.
Evan Cheng44c0fd12008-04-25 20:13:28 +00001333 if (Is64Bit && RegVT != VA.getLocVT()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001334 if (RegVT.getSizeInBits() == 64 && RC == X86::GR64RegisterClass)
Dale Johannesenace16102009-02-03 19:33:06 +00001335 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001336 else if (RC == X86::VR128RegisterClass) {
Dale Johannesenace16102009-02-03 19:33:06 +00001337 ArgValue = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1338 ArgValue, DAG.getConstant(0, MVT::i64));
1339 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001340 }
1341 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001342
Chris Lattnerf39f7712007-02-28 05:46:49 +00001343 ArgValues.push_back(ArgValue);
1344 } else {
1345 assert(VA.isMemLoc());
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001346 ArgValues.push_back(LowerMemArgument(Op, DAG, VA, MFI, CC, Root, i));
Evan Cheng1bc78042006-04-26 01:20:17 +00001347 }
Evan Cheng1bc78042006-04-26 01:20:17 +00001348 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001349
Dan Gohman61a92132008-04-21 23:59:07 +00001350 // The x86-64 ABI for returning structs by value requires that we copy
1351 // the sret argument into %rax for the return. Save the argument into
1352 // a virtual register so that we can access it from the return points.
1353 if (Is64Bit && DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1354 MachineFunction &MF = DAG.getMachineFunction();
1355 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1356 unsigned Reg = FuncInfo->getSRetReturnReg();
1357 if (!Reg) {
1358 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1359 FuncInfo->setSRetReturnReg(Reg);
1360 }
Dale Johannesendd64c412009-02-04 00:33:20 +00001361 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, ArgValues[0]);
Dale Johannesenace16102009-02-03 19:33:06 +00001362 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Root);
Dan Gohman61a92132008-04-21 23:59:07 +00001363 }
1364
Chris Lattnerf39f7712007-02-28 05:46:49 +00001365 unsigned StackSize = CCInfo.getNextStackOffset();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001366 // align stack specially for tail calls
Evan Chenge9ac9e62008-09-07 09:07:23 +00001367 if (PerformTailCallOpt && CC == CallingConv::Fast)
Gordon Henriksenae636f82008-01-03 16:47:34 +00001368 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001369
Evan Cheng1bc78042006-04-26 01:20:17 +00001370 // If the function takes variable number of arguments, make a frame index for
1371 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001372 if (isVarArg) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001373 if (Is64Bit || CC != CallingConv::X86_FastCall) {
1374 VarArgsFrameIndex = MFI->CreateFixedObject(1, StackSize);
1375 }
1376 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001377 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1378
1379 // FIXME: We should really autogenerate these arrays
1380 static const unsigned GPR64ArgRegsWin64[] = {
1381 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001382 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001383 static const unsigned XMMArgRegsWin64[] = {
1384 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3
1385 };
1386 static const unsigned GPR64ArgRegs64Bit[] = {
1387 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1388 };
1389 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001390 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1391 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1392 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001393 const unsigned *GPR64ArgRegs, *XMMArgRegs;
1394
1395 if (IsWin64) {
1396 TotalNumIntRegs = 4; TotalNumXMMRegs = 4;
1397 GPR64ArgRegs = GPR64ArgRegsWin64;
1398 XMMArgRegs = XMMArgRegsWin64;
1399 } else {
1400 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1401 GPR64ArgRegs = GPR64ArgRegs64Bit;
1402 XMMArgRegs = XMMArgRegs64Bit;
1403 }
1404 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1405 TotalNumIntRegs);
1406 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs,
1407 TotalNumXMMRegs);
1408
Evan Chengc7ce29b2009-02-13 22:36:38 +00001409 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001410 "SSE register cannot be used when SSE is disabled!");
Evan Chengc7ce29b2009-02-13 22:36:38 +00001411 assert(!(NumXMMRegs && UseSoftFloat) &&
1412 "SSE register cannot be used when SSE is disabled!");
1413 if (UseSoftFloat || !Subtarget->hasSSE1()) {
Torok Edwin3f142c32009-02-01 18:15:56 +00001414 // Kernel mode asks for SSE to be disabled, so don't push them
1415 // on the stack.
1416 TotalNumXMMRegs = 0;
1417 }
Gordon Henriksen86737662008-01-05 16:56:59 +00001418 // For X86-64, if there are vararg parameters that are passed via
1419 // registers, then we must store them to their spots on the stack so they
1420 // may be loaded by deferencing the result of va_next.
1421 VarArgsGPOffset = NumIntRegs * 8;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001422 VarArgsFPOffset = TotalNumIntRegs * 8 + NumXMMRegs * 16;
1423 RegSaveFrameIndex = MFI->CreateStackObject(TotalNumIntRegs * 8 +
1424 TotalNumXMMRegs * 16, 16);
1425
Gordon Henriksen86737662008-01-05 16:56:59 +00001426 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001427 SmallVector<SDValue, 8> MemOps;
1428 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00001429 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001430 DAG.getIntPtrConstant(VarArgsGPOffset));
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001431 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001432 unsigned VReg = AddLiveIn(MF, GPR64ArgRegs[NumIntRegs],
1433 X86::GR64RegisterClass);
Dale Johannesendd64c412009-02-04 00:33:20 +00001434 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001435 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001436 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001437 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001438 MemOps.push_back(Store);
Dale Johannesenace16102009-02-03 19:33:06 +00001439 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001440 DAG.getIntPtrConstant(8));
Gordon Henriksen86737662008-01-05 16:56:59 +00001441 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001442
Gordon Henriksen86737662008-01-05 16:56:59 +00001443 // Now store the XMM (fp + vector) parameter registers.
Dale Johannesenace16102009-02-03 19:33:06 +00001444 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001445 DAG.getIntPtrConstant(VarArgsFPOffset));
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001446 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001447 unsigned VReg = AddLiveIn(MF, XMMArgRegs[NumXMMRegs],
1448 X86::VR128RegisterClass);
Dale Johannesendd64c412009-02-04 00:33:20 +00001449 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::v4f32);
Dan Gohman475871a2008-07-27 21:46:04 +00001450 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001451 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001452 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001453 MemOps.push_back(Store);
Dale Johannesenace16102009-02-03 19:33:06 +00001454 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001455 DAG.getIntPtrConstant(16));
Gordon Henriksen86737662008-01-05 16:56:59 +00001456 }
1457 if (!MemOps.empty())
Dale Johannesenace16102009-02-03 19:33:06 +00001458 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Gordon Henriksen86737662008-01-05 16:56:59 +00001459 &MemOps[0], MemOps.size());
1460 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001461 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001462
Gordon Henriksenae636f82008-01-03 16:47:34 +00001463 ArgValues.push_back(Root);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001464
Gordon Henriksen86737662008-01-05 16:56:59 +00001465 // Some CCs need callee pop.
Dan Gohman095cc292008-09-13 01:54:27 +00001466 if (IsCalleePop(isVarArg, CC)) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001467 BytesToPopOnReturn = StackSize; // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001468 BytesCallerReserves = 0;
1469 } else {
Anton Korobeynikov1d9bacc2007-03-06 08:12:33 +00001470 BytesToPopOnReturn = 0; // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001471 // If this is an sret function, the return should pop the hidden pointer.
Evan Chengb188dd92008-09-10 18:25:29 +00001472 if (!Is64Bit && CC != CallingConv::Fast && ArgsAreStructReturn(Op))
Scott Michelfdc40a02009-02-17 22:15:04 +00001473 BytesToPopOnReturn = 4;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001474 BytesCallerReserves = StackSize;
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001475 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001476
Gordon Henriksen86737662008-01-05 16:56:59 +00001477 if (!Is64Bit) {
1478 RegSaveFrameIndex = 0xAAAAAAA; // RegSaveFrameIndex is X86-64 only.
1479 if (CC == CallingConv::X86_FastCall)
1480 VarArgsFrameIndex = 0xAAAAAAA; // fastcc functions can't have varargs.
1481 }
Evan Cheng25caf632006-05-23 21:06:34 +00001482
Anton Korobeynikova2780e12007-08-15 17:12:32 +00001483 FuncInfo->setBytesToPopOnReturn(BytesToPopOnReturn);
Evan Cheng1bc78042006-04-26 01:20:17 +00001484
Evan Cheng25caf632006-05-23 21:06:34 +00001485 // Return the new list of results.
Dale Johannesenace16102009-02-03 19:33:06 +00001486 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00001487 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001488}
1489
Dan Gohman475871a2008-07-27 21:46:04 +00001490SDValue
Dan Gohman095cc292008-09-13 01:54:27 +00001491X86TargetLowering::LowerMemOpCallTo(CallSDNode *TheCall, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00001492 const SDValue &StackPtr,
Evan Chengdffbd832008-01-10 00:09:10 +00001493 const CCValAssign &VA,
Dan Gohman475871a2008-07-27 21:46:04 +00001494 SDValue Chain,
Dan Gohman095cc292008-09-13 01:54:27 +00001495 SDValue Arg, ISD::ArgFlagsTy Flags) {
Dale Johannesenace16102009-02-03 19:33:06 +00001496 DebugLoc dl = TheCall->getDebugLoc();
Dan Gohman4fdad172008-02-07 16:28:05 +00001497 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001498 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001499 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001500 if (Flags.isByVal()) {
Dale Johannesendd64c412009-02-04 00:33:20 +00001501 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Evan Chengdffbd832008-01-10 00:09:10 +00001502 }
Dale Johannesenace16102009-02-03 19:33:06 +00001503 return DAG.getStore(Chain, dl, Arg, PtrOff,
Dan Gohman3069b872008-02-07 18:41:25 +00001504 PseudoSourceValue::getStack(), LocMemOffset);
Evan Chengdffbd832008-01-10 00:09:10 +00001505}
1506
Bill Wendling64e87322009-01-16 19:25:27 +00001507/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001508/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001509SDValue
1510X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00001511 SDValue &OutRetAddr,
Scott Michelfdc40a02009-02-17 22:15:04 +00001512 SDValue Chain,
1513 bool IsTailCall,
1514 bool Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00001515 int FPDiff,
1516 DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001517 if (!IsTailCall || FPDiff==0) return Chain;
1518
1519 // Adjust the Return address stack slot.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001520 MVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001521 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001522
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001523 // Load the "old" Return address.
Dale Johannesenace16102009-02-03 19:33:06 +00001524 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, NULL, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001525 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001526}
1527
1528/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1529/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001530static SDValue
1531EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001532 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001533 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001534 // Store the return address to the appropriate stack slot.
1535 if (!FPDiff) return Chain;
1536 // Calculate the new stack slot for the return address.
1537 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001538 int NewReturnAddrFI =
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001539 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001540 MVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001541 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001542 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Dan Gohmana54cf172008-07-11 22:44:52 +00001543 PseudoSourceValue::getFixedStack(NewReturnAddrFI), 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001544 return Chain;
1545}
1546
Dan Gohman475871a2008-07-27 21:46:04 +00001547SDValue X86TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001548 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman095cc292008-09-13 01:54:27 +00001549 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
1550 SDValue Chain = TheCall->getChain();
1551 unsigned CC = TheCall->getCallingConv();
1552 bool isVarArg = TheCall->isVarArg();
1553 bool IsTailCall = TheCall->isTailCall() &&
1554 CC == CallingConv::Fast && PerformTailCallOpt;
1555 SDValue Callee = TheCall->getCallee();
Gordon Henriksen86737662008-01-05 16:56:59 +00001556 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman095cc292008-09-13 01:54:27 +00001557 bool IsStructRet = CallIsStructReturn(TheCall);
Dale Johannesenace16102009-02-03 19:33:06 +00001558 DebugLoc dl = TheCall->getDebugLoc();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001559
1560 assert(!(isVarArg && CC == CallingConv::Fast) &&
1561 "Var args not supported with calling convention fastcc");
1562
Chris Lattner638402b2007-02-28 07:00:42 +00001563 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001564 SmallVector<CCValAssign, 16> ArgLocs;
Chris Lattner52387be2007-06-19 00:13:10 +00001565 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman095cc292008-09-13 01:54:27 +00001566 CCInfo.AnalyzeCallOperands(TheCall, CCAssignFnForNode(CC));
Scott Michelfdc40a02009-02-17 22:15:04 +00001567
Chris Lattner423c5f42007-02-28 05:31:48 +00001568 // Get a count of how many bytes are to be pushed on the stack.
1569 unsigned NumBytes = CCInfo.getNextStackOffset();
Arnold Schwaighofer1fdc40f2008-09-11 20:28:43 +00001570 if (PerformTailCallOpt && CC == CallingConv::Fast)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001571 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001572
Gordon Henriksen86737662008-01-05 16:56:59 +00001573 int FPDiff = 0;
1574 if (IsTailCall) {
1575 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001576 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001577 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1578 FPDiff = NumBytesCallerPushed - NumBytes;
1579
1580 // Set the delta of movement of the returnaddr stackslot.
1581 // But only set if delta is greater than previous delta.
1582 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1583 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1584 }
1585
Chris Lattnere563bbc2008-10-11 22:08:30 +00001586 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001587
Dan Gohman475871a2008-07-27 21:46:04 +00001588 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001589 // Load return adress for tail calls.
1590 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, IsTailCall, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00001591 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001592
Dan Gohman475871a2008-07-27 21:46:04 +00001593 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1594 SmallVector<SDValue, 8> MemOpChains;
1595 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00001596
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001597 // Walk the register/memloc assignments, inserting copies/loads. In the case
1598 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00001599 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1600 CCValAssign &VA = ArgLocs[i];
Dan Gohman095cc292008-09-13 01:54:27 +00001601 SDValue Arg = TheCall->getArg(i);
1602 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
1603 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00001604
Chris Lattner423c5f42007-02-28 05:31:48 +00001605 // Promote the value if needed.
1606 switch (VA.getLocInfo()) {
1607 default: assert(0 && "Unknown loc info!");
1608 case CCValAssign::Full: break;
1609 case CCValAssign::SExt:
Dale Johannesenace16102009-02-03 19:33:06 +00001610 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001611 break;
1612 case CCValAssign::ZExt:
Dale Johannesenace16102009-02-03 19:33:06 +00001613 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001614 break;
1615 case CCValAssign::AExt:
Dale Johannesenace16102009-02-03 19:33:06 +00001616 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001617 break;
Evan Cheng6b5783d2006-05-25 18:56:34 +00001618 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001619
Chris Lattner423c5f42007-02-28 05:31:48 +00001620 if (VA.isRegLoc()) {
Evan Cheng10e86422008-04-25 19:11:04 +00001621 if (Is64Bit) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001622 MVT RegVT = VA.getLocVT();
1623 if (RegVT.isVector() && RegVT.getSizeInBits() == 64)
Evan Cheng10e86422008-04-25 19:11:04 +00001624 switch (VA.getLocReg()) {
1625 default:
1626 break;
1627 case X86::RDI: case X86::RSI: case X86::RDX: case X86::RCX:
1628 case X86::R8: {
1629 // Special case: passing MMX values in GPR registers.
Dale Johannesenace16102009-02-03 19:33:06 +00001630 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
Evan Cheng10e86422008-04-25 19:11:04 +00001631 break;
1632 }
1633 case X86::XMM0: case X86::XMM1: case X86::XMM2: case X86::XMM3:
1634 case X86::XMM4: case X86::XMM5: case X86::XMM6: case X86::XMM7: {
1635 // Special case: passing MMX values in XMM registers.
Dale Johannesenace16102009-02-03 19:33:06 +00001636 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1637 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1638 Arg = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2i64,
Dale Johannesene8d72302009-02-06 23:05:02 +00001639 DAG.getUNDEF(MVT::v2i64), Arg,
Dale Johannesenace16102009-02-03 19:33:06 +00001640 getMOVLMask(2, DAG, dl));
Evan Cheng10e86422008-04-25 19:11:04 +00001641 break;
1642 }
1643 }
1644 }
Chris Lattner423c5f42007-02-28 05:31:48 +00001645 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1646 } else {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001647 if (!IsTailCall || (IsTailCall && isByVal)) {
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001648 assert(VA.isMemLoc());
Gabor Greifba36cb52008-08-28 21:40:38 +00001649 if (StackPtr.getNode() == 0)
Dale Johannesendd64c412009-02-04 00:33:20 +00001650 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001651
Dan Gohman095cc292008-09-13 01:54:27 +00001652 MemOpChains.push_back(LowerMemOpCallTo(TheCall, DAG, StackPtr, VA,
1653 Chain, Arg, Flags));
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001654 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001655 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001656 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001657
Evan Cheng32fe1032006-05-25 00:59:30 +00001658 if (!MemOpChains.empty())
Dale Johannesenace16102009-02-03 19:33:06 +00001659 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001660 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001661
Evan Cheng347d5f72006-04-28 21:29:37 +00001662 // Build a sequence of copy-to-reg nodes chained together with token chain
1663 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001664 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001665 // Tail call byval lowering might overwrite argument registers so in case of
1666 // tail call optimization the copies to registers are lowered later.
1667 if (!IsTailCall)
1668 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001669 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00001670 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001671 InFlag = Chain.getValue(1);
1672 }
Gordon Henriksen86737662008-01-05 16:56:59 +00001673
Evan Chengf4684712007-02-21 21:18:14 +00001674 // ELF / PIC requires GOT in the EBX register before function calls via PLT
Scott Michelfdc40a02009-02-17 22:15:04 +00001675 // GOT pointer.
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001676 if (CallRequiresGOTPtrInReg(Is64Bit, IsTailCall)) {
Dale Johannesendd64c412009-02-04 00:33:20 +00001677 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
Scott Michelfdc40a02009-02-17 22:15:04 +00001678 DAG.getNode(X86ISD::GlobalBaseReg,
1679 DebugLoc::getUnknownLoc(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001680 getPointerTy()),
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001681 InFlag);
1682 InFlag = Chain.getValue(1);
1683 }
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001684 // If we are tail calling and generating PIC/GOT style code load the address
1685 // of the callee into ecx. The value in ecx is used as target of the tail
1686 // jump. This is done to circumvent the ebx/callee-saved problem for tail
1687 // calls on PIC/GOT architectures. Normally we would just put the address of
1688 // GOT into ebx and then call target@PLT. But for tail callss ebx would be
1689 // restored (since ebx is callee saved) before jumping to the target@PLT.
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001690 if (CallRequiresFnAddressInReg(Is64Bit, IsTailCall)) {
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001691 // Note: The actual moving to ecx is done further down.
1692 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
Evan Chengda43bcf2008-09-24 00:05:32 +00001693 if (G && !G->getGlobal()->hasHiddenVisibility() &&
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001694 !G->getGlobal()->hasProtectedVisibility())
1695 Callee = LowerGlobalAddress(Callee, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00001696 else if (isa<ExternalSymbolSDNode>(Callee))
1697 Callee = LowerExternalSymbol(Callee,DAG);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001698 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001699
Gordon Henriksen86737662008-01-05 16:56:59 +00001700 if (Is64Bit && isVarArg) {
1701 // From AMD64 ABI document:
1702 // For calls that may call functions that use varargs or stdargs
1703 // (prototype-less calls or calls to functions containing ellipsis (...) in
1704 // the declaration) %al is used as hidden argument to specify the number
1705 // of SSE registers used. The contents of %al do not need to match exactly
1706 // the number of registers, but must be an ubound on the number of SSE
1707 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001708
1709 // FIXME: Verify this on Win64
Gordon Henriksen86737662008-01-05 16:56:59 +00001710 // Count the number of XMM registers allocated.
1711 static const unsigned XMMArgRegs[] = {
1712 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1713 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1714 };
1715 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michelfdc40a02009-02-17 22:15:04 +00001716 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00001717 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001718
Dale Johannesendd64c412009-02-04 00:33:20 +00001719 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Gordon Henriksen86737662008-01-05 16:56:59 +00001720 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
1721 InFlag = Chain.getValue(1);
1722 }
1723
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001724
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001725 // For tail calls lower the arguments to the 'real' stack slot.
Gordon Henriksen86737662008-01-05 16:56:59 +00001726 if (IsTailCall) {
Dan Gohman475871a2008-07-27 21:46:04 +00001727 SmallVector<SDValue, 8> MemOpChains2;
1728 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00001729 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001730 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00001731 InFlag = SDValue();
Gordon Henriksen86737662008-01-05 16:56:59 +00001732 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1733 CCValAssign &VA = ArgLocs[i];
1734 if (!VA.isRegLoc()) {
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001735 assert(VA.isMemLoc());
Dan Gohman095cc292008-09-13 01:54:27 +00001736 SDValue Arg = TheCall->getArg(i);
1737 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
Gordon Henriksen86737662008-01-05 16:56:59 +00001738 // Create frame index.
1739 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001740 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001741 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001742 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001743
Duncan Sands276dcbd2008-03-21 09:14:45 +00001744 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00001745 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00001746 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00001747 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00001748 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00001749 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00001750 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001751
1752 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN, Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001753 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00001754 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00001755 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00001756 MemOpChains2.push_back(
Dale Johannesenace16102009-02-03 19:33:06 +00001757 DAG.getStore(Chain, dl, Arg, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001758 PseudoSourceValue::getFixedStack(FI), 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001759 }
Gordon Henriksen86737662008-01-05 16:56:59 +00001760 }
1761 }
1762
1763 if (!MemOpChains2.empty())
Dale Johannesenace16102009-02-03 19:33:06 +00001764 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00001765 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001766
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001767 // Copy arguments to their registers.
1768 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001769 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00001770 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001771 InFlag = Chain.getValue(1);
1772 }
Dan Gohman475871a2008-07-27 21:46:04 +00001773 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001774
Gordon Henriksen86737662008-01-05 16:56:59 +00001775 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001776 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00001777 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001778 }
1779
Evan Cheng32fe1032006-05-25 00:59:30 +00001780 // If the callee is a GlobalAddress node (quite common, every direct call is)
1781 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Anton Korobeynikova5986852006-11-20 10:46:14 +00001782 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00001783 // We should use extra load for direct calls to dllimported functions in
1784 // non-JIT mode.
Evan Cheng817a6a92008-07-16 01:34:02 +00001785 if (!Subtarget->GVRequiresExtraLoad(G->getGlobal(),
1786 getTargetMachine(), true))
Dan Gohman6520e202008-10-18 02:06:02 +00001787 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy(),
1788 G->getOffset());
Bill Wendling056292f2008-09-16 21:48:12 +00001789 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1790 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
Gordon Henriksen86737662008-01-05 16:56:59 +00001791 } else if (IsTailCall) {
Arnold Schwaighofer290ae032008-09-22 14:50:07 +00001792 unsigned Opc = Is64Bit ? X86::R9 : X86::EAX;
Gordon Henriksen86737662008-01-05 16:56:59 +00001793
Dale Johannesendd64c412009-02-04 00:33:20 +00001794 Chain = DAG.getCopyToReg(Chain, dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00001795 DAG.getRegister(Opc, getPointerTy()),
Gordon Henriksen86737662008-01-05 16:56:59 +00001796 Callee,InFlag);
1797 Callee = DAG.getRegister(Opc, getPointerTy());
1798 // Add register as live out.
1799 DAG.getMachineFunction().getRegInfo().addLiveOut(Opc);
Gordon Henriksenae636f82008-01-03 16:47:34 +00001800 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001801
Chris Lattnerd96d0722007-02-25 06:40:16 +00001802 // Returns a chain & a flag for retval copy to use.
1803 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00001804 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00001805
1806 if (IsTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00001807 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1808 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00001809 InFlag = Chain.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001810
Gordon Henriksen86737662008-01-05 16:56:59 +00001811 // Returns a chain & a flag for retval copy to use.
1812 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1813 Ops.clear();
1814 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001815
Nate Begeman4c5dcf52006-02-17 00:03:04 +00001816 Ops.push_back(Chain);
1817 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00001818
Gordon Henriksen86737662008-01-05 16:56:59 +00001819 if (IsTailCall)
1820 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00001821
Gordon Henriksen86737662008-01-05 16:56:59 +00001822 // Add argument registers to the end of the list so that they are known live
1823 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00001824 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1825 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1826 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001827
Evan Cheng586ccac2008-03-18 23:36:35 +00001828 // Add an implicit use GOT pointer in EBX.
1829 if (!IsTailCall && !Is64Bit &&
1830 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1831 Subtarget->isPICStyleGOT())
1832 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
1833
1834 // Add an implicit use of AL for x86 vararg functions.
1835 if (Is64Bit && isVarArg)
1836 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
1837
Gabor Greifba36cb52008-08-28 21:40:38 +00001838 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00001839 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00001840
Gordon Henriksen86737662008-01-05 16:56:59 +00001841 if (IsTailCall) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001842 assert(InFlag.getNode() &&
Gordon Henriksen86737662008-01-05 16:56:59 +00001843 "Flag must be set. Depend on flag being set in LowerRET");
Dale Johannesenace16102009-02-03 19:33:06 +00001844 Chain = DAG.getNode(X86ISD::TAILCALL, dl,
Dan Gohman095cc292008-09-13 01:54:27 +00001845 TheCall->getVTList(), &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001846
Gabor Greifba36cb52008-08-28 21:40:38 +00001847 return SDValue(Chain.getNode(), Op.getResNo());
Gordon Henriksen86737662008-01-05 16:56:59 +00001848 }
1849
Dale Johannesenace16102009-02-03 19:33:06 +00001850 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00001851 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00001852
Chris Lattner2d297092006-05-23 18:50:38 +00001853 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00001854 unsigned NumBytesForCalleeToPush;
Dan Gohman095cc292008-09-13 01:54:27 +00001855 if (IsCalleePop(isVarArg, CC))
Gordon Henriksen86737662008-01-05 16:56:59 +00001856 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Evan Chengb188dd92008-09-10 18:25:29 +00001857 else if (!Is64Bit && CC != CallingConv::Fast && IsStructRet)
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001858 // If this is is a call to a struct-return function, the callee
1859 // pops the hidden struct pointer, so we have to push it back.
1860 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001861 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00001862 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00001863 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00001864
Gordon Henriksenae636f82008-01-03 16:47:34 +00001865 // Returns a flag for retval copy to use.
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001866 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnere563bbc2008-10-11 22:08:30 +00001867 DAG.getIntPtrConstant(NumBytes, true),
1868 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
1869 true),
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001870 InFlag);
Chris Lattner3085e152007-02-25 08:59:22 +00001871 InFlag = Chain.getValue(1);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00001872
Chris Lattner3085e152007-02-25 08:59:22 +00001873 // Handle result values, copying them out of physregs into vregs that we
1874 // return.
Dan Gohman095cc292008-09-13 01:54:27 +00001875 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG),
Gabor Greif327ef032008-08-28 23:19:51 +00001876 Op.getResNo());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001877}
1878
Evan Cheng25ab6902006-09-08 06:48:29 +00001879
1880//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001881// Fast Calling Convention (tail call) implementation
1882//===----------------------------------------------------------------------===//
1883
1884// Like std call, callee cleans arguments, convention except that ECX is
1885// reserved for storing the tail called function address. Only 2 registers are
1886// free for argument passing (inreg). Tail call optimization is performed
1887// provided:
1888// * tailcallopt is enabled
1889// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001890// On X86_64 architecture with GOT-style position independent code only local
1891// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00001892// To keep the stack aligned according to platform abi the function
1893// GetAlignedArgumentStackSize ensures that argument delta is always multiples
1894// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001895// If a tail called function callee has more arguments than the caller the
1896// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00001897// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001898// original REtADDR, but before the saved framepointer or the spilled registers
1899// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
1900// stack layout:
1901// arg1
1902// arg2
1903// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00001904// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001905// move area ]
1906// (possible EBP)
1907// ESI
1908// EDI
1909// local1 ..
1910
1911/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
1912/// for a 16 byte align requirement.
Scott Michelfdc40a02009-02-17 22:15:04 +00001913unsigned X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001914 SelectionDAG& DAG) {
Evan Chenge9ac9e62008-09-07 09:07:23 +00001915 MachineFunction &MF = DAG.getMachineFunction();
1916 const TargetMachine &TM = MF.getTarget();
1917 const TargetFrameInfo &TFI = *TM.getFrameInfo();
1918 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00001919 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00001920 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001921 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00001922 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
1923 // Number smaller than 12 so just add the difference.
1924 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
1925 } else {
1926 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00001927 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00001928 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001929 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00001930 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001931}
1932
1933/// IsEligibleForTailCallElimination - Check to see whether the next instruction
Evan Cheng9df7dc52007-11-02 01:26:22 +00001934/// following the call is a return. A function is eligible if caller/callee
1935/// calling conventions match, currently only fastcc supports tail calls, and
1936/// the function CALL is immediatly followed by a RET.
Dan Gohman095cc292008-09-13 01:54:27 +00001937bool X86TargetLowering::IsEligibleForTailCallOptimization(CallSDNode *TheCall,
Dan Gohman475871a2008-07-27 21:46:04 +00001938 SDValue Ret,
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001939 SelectionDAG& DAG) const {
Evan Cheng9df7dc52007-11-02 01:26:22 +00001940 if (!PerformTailCallOpt)
1941 return false;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001942
Dan Gohman095cc292008-09-13 01:54:27 +00001943 if (CheckTailCallReturnConstraints(TheCall, Ret)) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001944 MachineFunction &MF = DAG.getMachineFunction();
1945 unsigned CallerCC = MF.getFunction()->getCallingConv();
Dan Gohman095cc292008-09-13 01:54:27 +00001946 unsigned CalleeCC= TheCall->getCallingConv();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001947 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
Dan Gohman095cc292008-09-13 01:54:27 +00001948 SDValue Callee = TheCall->getCallee();
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001949 // On x86/32Bit PIC/GOT tail calls are supported.
Evan Cheng9df7dc52007-11-02 01:26:22 +00001950 if (getTargetMachine().getRelocationModel() != Reloc::PIC_ ||
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001951 !Subtarget->isPICStyleGOT()|| !Subtarget->is64Bit())
Evan Cheng9df7dc52007-11-02 01:26:22 +00001952 return true;
1953
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001954 // Can only do local tail calls (in same module, hidden or protected) on
1955 // x86_64 PIC/GOT at the moment.
Gordon Henriksen86737662008-01-05 16:56:59 +00001956 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1957 return G->getGlobal()->hasHiddenVisibility()
1958 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001959 }
1960 }
Evan Cheng9df7dc52007-11-02 01:26:22 +00001961
1962 return false;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001963}
1964
Dan Gohman3df24e62008-09-03 23:12:08 +00001965FastISel *
1966X86TargetLowering::createFastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +00001967 MachineModuleInfo *mmo,
Devang Patel83489bb2009-01-13 00:35:13 +00001968 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +00001969 DenseMap<const Value *, unsigned> &vm,
1970 DenseMap<const BasicBlock *,
Dan Gohman0586d912008-09-10 20:11:02 +00001971 MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001972 DenseMap<const AllocaInst *, int> &am
1973#ifndef NDEBUG
1974 , SmallSet<Instruction*, 8> &cil
1975#endif
1976 ) {
Devang Patel83489bb2009-01-13 00:35:13 +00001977 return X86::createFastISel(mf, mmo, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001978#ifndef NDEBUG
1979 , cil
1980#endif
1981 );
Dan Gohmand9f3c482008-08-19 21:32:53 +00001982}
1983
1984
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001985//===----------------------------------------------------------------------===//
1986// Other Lowering Hooks
1987//===----------------------------------------------------------------------===//
1988
1989
Dan Gohman475871a2008-07-27 21:46:04 +00001990SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00001991 MachineFunction &MF = DAG.getMachineFunction();
1992 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1993 int ReturnAddrIndex = FuncInfo->getRAIndex();
1994
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001995 if (ReturnAddrIndex == 0) {
1996 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00001997 uint64_t SlotSize = TD->getPointerSize();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001998 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00001999 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002000 }
2001
Evan Cheng25ab6902006-09-08 06:48:29 +00002002 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002003}
2004
2005
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002006/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2007/// specific condition code, returning the condition code and the LHS/RHS of the
2008/// comparison to make.
2009static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2010 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002011 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002012 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2013 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2014 // X > -1 -> X == 0, jump !sign.
2015 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002016 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002017 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2018 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002019 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002020 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002021 // X < 1 -> X <= 0
2022 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002023 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002024 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002025 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002026
Evan Chengd9558e02006-01-06 00:43:03 +00002027 switch (SetCCOpcode) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002028 default: assert(0 && "Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002029 case ISD::SETEQ: return X86::COND_E;
2030 case ISD::SETGT: return X86::COND_G;
2031 case ISD::SETGE: return X86::COND_GE;
2032 case ISD::SETLT: return X86::COND_L;
2033 case ISD::SETLE: return X86::COND_LE;
2034 case ISD::SETNE: return X86::COND_NE;
2035 case ISD::SETULT: return X86::COND_B;
2036 case ISD::SETUGT: return X86::COND_A;
2037 case ISD::SETULE: return X86::COND_BE;
2038 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002039 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002040 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002041
Chris Lattner4c78e022008-12-23 23:42:27 +00002042 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002043
Chris Lattner4c78e022008-12-23 23:42:27 +00002044 // If LHS is a foldable load, but RHS is not, flip the condition.
2045 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2046 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2047 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2048 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002049 }
2050
Chris Lattner4c78e022008-12-23 23:42:27 +00002051 switch (SetCCOpcode) {
2052 default: break;
2053 case ISD::SETOLT:
2054 case ISD::SETOLE:
2055 case ISD::SETUGT:
2056 case ISD::SETUGE:
2057 std::swap(LHS, RHS);
2058 break;
2059 }
2060
2061 // On a floating point condition, the flags are set as follows:
2062 // ZF PF CF op
2063 // 0 | 0 | 0 | X > Y
2064 // 0 | 0 | 1 | X < Y
2065 // 1 | 0 | 0 | X == Y
2066 // 1 | 1 | 1 | unordered
2067 switch (SetCCOpcode) {
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002068 default: assert(0 && "Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002069 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002070 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002071 case ISD::SETOLT: // flipped
2072 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002073 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002074 case ISD::SETOLE: // flipped
2075 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002076 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002077 case ISD::SETUGT: // flipped
2078 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002079 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002080 case ISD::SETUGE: // flipped
2081 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002082 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002083 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002084 case ISD::SETNE: return X86::COND_NE;
2085 case ISD::SETUO: return X86::COND_P;
2086 case ISD::SETO: return X86::COND_NP;
Chris Lattner4c78e022008-12-23 23:42:27 +00002087 }
Evan Chengd9558e02006-01-06 00:43:03 +00002088}
2089
Evan Cheng4a460802006-01-11 00:33:36 +00002090/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2091/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002092/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002093static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002094 switch (X86CC) {
2095 default:
2096 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002097 case X86::COND_B:
2098 case X86::COND_BE:
2099 case X86::COND_E:
2100 case X86::COND_P:
2101 case X86::COND_A:
2102 case X86::COND_AE:
2103 case X86::COND_NE:
2104 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002105 return true;
2106 }
2107}
2108
Evan Cheng5ced1d82006-04-06 23:23:56 +00002109/// isUndefOrInRange - Op is either an undef node or a ConstantSDNode. Return
Evan Chengc5cdff22006-04-07 21:53:05 +00002110/// true if Op is undef or if its value falls within the specified range (L, H].
Dan Gohman475871a2008-07-27 21:46:04 +00002111static bool isUndefOrInRange(SDValue Op, unsigned Low, unsigned Hi) {
Evan Cheng5ced1d82006-04-06 23:23:56 +00002112 if (Op.getOpcode() == ISD::UNDEF)
2113 return true;
2114
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002115 unsigned Val = cast<ConstantSDNode>(Op)->getZExtValue();
Evan Chengc5cdff22006-04-07 21:53:05 +00002116 return (Val >= Low && Val < Hi);
2117}
2118
2119/// isUndefOrEqual - Op is either an undef node or a ConstantSDNode. Return
2120/// true if Op is undef or if its value equal to the specified value.
Dan Gohman475871a2008-07-27 21:46:04 +00002121static bool isUndefOrEqual(SDValue Op, unsigned Val) {
Evan Chengc5cdff22006-04-07 21:53:05 +00002122 if (Op.getOpcode() == ISD::UNDEF)
2123 return true;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002124 return cast<ConstantSDNode>(Op)->getZExtValue() == Val;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002125}
2126
Evan Cheng0188ecb2006-03-22 18:59:22 +00002127/// isPSHUFDMask - Return true if the specified VECTOR_SHUFFLE operand
2128/// specifies a shuffle of elements that is suitable for input to PSHUFD.
2129bool X86::isPSHUFDMask(SDNode *N) {
2130 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2131
Dan Gohman7f55fcb2007-08-02 21:17:01 +00002132 if (N->getNumOperands() != 2 && N->getNumOperands() != 4)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002133 return false;
2134
2135 // Check if the value doesn't reference the second vector.
Evan Cheng506d3df2006-03-29 23:07:14 +00002136 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002137 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002138 if (Arg.getOpcode() == ISD::UNDEF) continue;
2139 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002140 if (cast<ConstantSDNode>(Arg)->getZExtValue() >= e)
Evan Cheng506d3df2006-03-29 23:07:14 +00002141 return false;
2142 }
2143
2144 return true;
2145}
2146
2147/// isPSHUFHWMask - Return true if the specified VECTOR_SHUFFLE operand
Evan Chengc21a0532006-04-05 01:47:37 +00002148/// specifies a shuffle of elements that is suitable for input to PSHUFHW.
Evan Cheng506d3df2006-03-29 23:07:14 +00002149bool X86::isPSHUFHWMask(SDNode *N) {
2150 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2151
2152 if (N->getNumOperands() != 8)
2153 return false;
2154
2155 // Lower quadword copied in order.
2156 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002157 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002158 if (Arg.getOpcode() == ISD::UNDEF) continue;
2159 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002160 if (cast<ConstantSDNode>(Arg)->getZExtValue() != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002161 return false;
2162 }
2163
2164 // Upper quadword shuffled.
2165 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002166 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002167 if (Arg.getOpcode() == ISD::UNDEF) continue;
2168 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002169 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng506d3df2006-03-29 23:07:14 +00002170 if (Val < 4 || Val > 7)
2171 return false;
2172 }
2173
2174 return true;
2175}
2176
2177/// isPSHUFLWMask - Return true if the specified VECTOR_SHUFFLE operand
Evan Chengc21a0532006-04-05 01:47:37 +00002178/// specifies a shuffle of elements that is suitable for input to PSHUFLW.
Evan Cheng506d3df2006-03-29 23:07:14 +00002179bool X86::isPSHUFLWMask(SDNode *N) {
2180 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2181
2182 if (N->getNumOperands() != 8)
2183 return false;
2184
2185 // Upper quadword copied in order.
Evan Chengc5cdff22006-04-07 21:53:05 +00002186 for (unsigned i = 4; i != 8; ++i)
2187 if (!isUndefOrEqual(N->getOperand(i), i))
Evan Cheng506d3df2006-03-29 23:07:14 +00002188 return false;
Evan Cheng506d3df2006-03-29 23:07:14 +00002189
2190 // Lower quadword shuffled.
Evan Chengc5cdff22006-04-07 21:53:05 +00002191 for (unsigned i = 0; i != 4; ++i)
2192 if (!isUndefOrInRange(N->getOperand(i), 0, 4))
Evan Cheng506d3df2006-03-29 23:07:14 +00002193 return false;
Evan Cheng0188ecb2006-03-22 18:59:22 +00002194
2195 return true;
2196}
2197
Evan Cheng14aed5e2006-03-24 01:18:28 +00002198/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2199/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Dan Gohmane7852d02009-01-26 04:35:06 +00002200template<class SDOperand>
2201static bool isSHUFPMask(SDOperand *Elems, unsigned NumElems) {
Evan Cheng39623da2006-04-20 08:58:49 +00002202 if (NumElems != 2 && NumElems != 4) return false;
Evan Cheng14aed5e2006-03-24 01:18:28 +00002203
Evan Cheng39623da2006-04-20 08:58:49 +00002204 unsigned Half = NumElems / 2;
2205 for (unsigned i = 0; i < Half; ++i)
Chris Lattner5a88b832007-02-25 07:10:00 +00002206 if (!isUndefOrInRange(Elems[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002207 return false;
2208 for (unsigned i = Half; i < NumElems; ++i)
Chris Lattner5a88b832007-02-25 07:10:00 +00002209 if (!isUndefOrInRange(Elems[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002210 return false;
Evan Cheng14aed5e2006-03-24 01:18:28 +00002211
2212 return true;
2213}
2214
Evan Cheng39623da2006-04-20 08:58:49 +00002215bool X86::isSHUFPMask(SDNode *N) {
2216 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002217 return ::isSHUFPMask(N->op_begin(), N->getNumOperands());
Evan Cheng39623da2006-04-20 08:58:49 +00002218}
2219
Evan Cheng213d2cf2007-05-17 18:45:50 +00002220/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00002221/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2222/// half elements to come from vector 1 (which would equal the dest.) and
2223/// the upper half to come from vector 2.
Dan Gohmane7852d02009-01-26 04:35:06 +00002224template<class SDOperand>
2225static bool isCommutedSHUFP(SDOperand *Ops, unsigned NumOps) {
Chris Lattner5a88b832007-02-25 07:10:00 +00002226 if (NumOps != 2 && NumOps != 4) return false;
Evan Cheng39623da2006-04-20 08:58:49 +00002227
Chris Lattner5a88b832007-02-25 07:10:00 +00002228 unsigned Half = NumOps / 2;
Evan Cheng39623da2006-04-20 08:58:49 +00002229 for (unsigned i = 0; i < Half; ++i)
Chris Lattner5a88b832007-02-25 07:10:00 +00002230 if (!isUndefOrInRange(Ops[i], NumOps, NumOps*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002231 return false;
Chris Lattner5a88b832007-02-25 07:10:00 +00002232 for (unsigned i = Half; i < NumOps; ++i)
2233 if (!isUndefOrInRange(Ops[i], 0, NumOps))
Evan Cheng39623da2006-04-20 08:58:49 +00002234 return false;
2235 return true;
2236}
2237
2238static bool isCommutedSHUFP(SDNode *N) {
2239 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002240 return isCommutedSHUFP(N->op_begin(), N->getNumOperands());
Evan Cheng39623da2006-04-20 08:58:49 +00002241}
2242
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002243/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2244/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
2245bool X86::isMOVHLPSMask(SDNode *N) {
2246 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2247
Evan Cheng2064a2b2006-03-28 06:50:32 +00002248 if (N->getNumOperands() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002249 return false;
2250
Evan Cheng2064a2b2006-03-28 06:50:32 +00002251 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Evan Chengc5cdff22006-04-07 21:53:05 +00002252 return isUndefOrEqual(N->getOperand(0), 6) &&
2253 isUndefOrEqual(N->getOperand(1), 7) &&
2254 isUndefOrEqual(N->getOperand(2), 2) &&
2255 isUndefOrEqual(N->getOperand(3), 3);
Evan Cheng2064a2b2006-03-28 06:50:32 +00002256}
2257
Evan Cheng6e56e2c2006-11-07 22:14:24 +00002258/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2259/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2260/// <2, 3, 2, 3>
2261bool X86::isMOVHLPS_v_undef_Mask(SDNode *N) {
2262 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2263
2264 if (N->getNumOperands() != 4)
2265 return false;
2266
2267 // Expect bit0 == 2, bit1 == 3, bit2 == 2, bit3 == 3
2268 return isUndefOrEqual(N->getOperand(0), 2) &&
2269 isUndefOrEqual(N->getOperand(1), 3) &&
2270 isUndefOrEqual(N->getOperand(2), 2) &&
2271 isUndefOrEqual(N->getOperand(3), 3);
2272}
2273
Evan Cheng5ced1d82006-04-06 23:23:56 +00002274/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
2275/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
2276bool X86::isMOVLPMask(SDNode *N) {
2277 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2278
2279 unsigned NumElems = N->getNumOperands();
2280 if (NumElems != 2 && NumElems != 4)
2281 return false;
2282
Evan Chengc5cdff22006-04-07 21:53:05 +00002283 for (unsigned i = 0; i < NumElems/2; ++i)
2284 if (!isUndefOrEqual(N->getOperand(i), i + NumElems))
2285 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002286
Evan Chengc5cdff22006-04-07 21:53:05 +00002287 for (unsigned i = NumElems/2; i < NumElems; ++i)
2288 if (!isUndefOrEqual(N->getOperand(i), i))
2289 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002290
2291 return true;
2292}
2293
2294/// isMOVHPMask - Return true if the specified VECTOR_SHUFFLE operand
Evan Cheng533a0aa2006-04-19 20:35:22 +00002295/// specifies a shuffle of elements that is suitable for input to MOVHP{S|D}
2296/// and MOVLHPS.
Evan Cheng5ced1d82006-04-06 23:23:56 +00002297bool X86::isMOVHPMask(SDNode *N) {
2298 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2299
2300 unsigned NumElems = N->getNumOperands();
2301 if (NumElems != 2 && NumElems != 4)
2302 return false;
2303
Evan Chengc5cdff22006-04-07 21:53:05 +00002304 for (unsigned i = 0; i < NumElems/2; ++i)
2305 if (!isUndefOrEqual(N->getOperand(i), i))
2306 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002307
2308 for (unsigned i = 0; i < NumElems/2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002309 SDValue Arg = N->getOperand(i + NumElems/2);
Evan Chengc5cdff22006-04-07 21:53:05 +00002310 if (!isUndefOrEqual(Arg, i + NumElems))
2311 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002312 }
2313
2314 return true;
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.
Dan Gohmane7852d02009-01-26 04:35:06 +00002319template<class SDOperand>
2320bool static isUNPCKLMask(SDOperand *Elts, unsigned NumElts,
Chris Lattner5a88b832007-02-25 07:10:00 +00002321 bool V2IsSplat = false) {
2322 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00002323 return false;
2324
Chris Lattner5a88b832007-02-25 07:10:00 +00002325 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00002326 SDValue BitI = Elts[i];
2327 SDValue BitI1 = Elts[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 }
2338
2339 return true;
2340}
2341
Evan Cheng39623da2006-04-20 08:58:49 +00002342bool X86::isUNPCKLMask(SDNode *N, bool V2IsSplat) {
2343 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002344 return ::isUNPCKLMask(N->op_begin(), N->getNumOperands(), 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.
Dan Gohmane7852d02009-01-26 04:35:06 +00002349template<class SDOperand>
2350bool static isUNPCKHMask(SDOperand *Elts, unsigned NumElts,
Chris Lattner5a88b832007-02-25 07:10:00 +00002351 bool V2IsSplat = false) {
2352 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00002353 return false;
2354
Chris Lattner5a88b832007-02-25 07:10:00 +00002355 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00002356 SDValue BitI = Elts[i];
2357 SDValue BitI1 = Elts[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 }
2368
2369 return true;
2370}
2371
Evan Cheng39623da2006-04-20 08:58:49 +00002372bool X86::isUNPCKHMask(SDNode *N, bool V2IsSplat) {
2373 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002374 return ::isUNPCKHMask(N->op_begin(), N->getNumOperands(), 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>
2380bool X86::isUNPCKL_v_undef_Mask(SDNode *N) {
2381 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2382
2383 unsigned NumElems = N->getNumOperands();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002384 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002385 return false;
2386
2387 for (unsigned i = 0, j = 0; i != NumElems; i += 2, ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00002388 SDValue BitI = N->getOperand(i);
2389 SDValue BitI1 = N->getOperand(i+1);
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002390
Evan Chengc5cdff22006-04-07 21:53:05 +00002391 if (!isUndefOrEqual(BitI, j))
2392 return false;
2393 if (!isUndefOrEqual(BitI1, j))
2394 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002395 }
2396
2397 return true;
2398}
2399
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002400/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
2401/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
2402/// <2, 2, 3, 3>
2403bool X86::isUNPCKH_v_undef_Mask(SDNode *N) {
2404 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2405
2406 unsigned NumElems = N->getNumOperands();
2407 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2408 return false;
2409
2410 for (unsigned i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00002411 SDValue BitI = N->getOperand(i);
2412 SDValue BitI1 = N->getOperand(i + 1);
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002413
2414 if (!isUndefOrEqual(BitI, j))
2415 return false;
2416 if (!isUndefOrEqual(BitI1, j))
2417 return false;
2418 }
2419
2420 return true;
2421}
2422
Evan Cheng017dcc62006-04-21 01:05:10 +00002423/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
2424/// specifies a shuffle of elements that is suitable for input to MOVSS,
2425/// MOVSD, and MOVD, i.e. setting the lowest element.
Dan Gohmane7852d02009-01-26 04:35:06 +00002426template<class SDOperand>
2427static bool isMOVLMask(SDOperand *Elts, unsigned NumElts) {
Evan Cheng10762102007-12-06 22:14:22 +00002428 if (NumElts != 2 && NumElts != 4)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00002429 return false;
2430
Chris Lattner5a88b832007-02-25 07:10:00 +00002431 if (!isUndefOrEqual(Elts[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00002432 return false;
2433
Chris Lattner5a88b832007-02-25 07:10:00 +00002434 for (unsigned i = 1; i < NumElts; ++i) {
2435 if (!isUndefOrEqual(Elts[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00002436 return false;
2437 }
2438
2439 return true;
2440}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002441
Evan Cheng017dcc62006-04-21 01:05:10 +00002442bool X86::isMOVLMask(SDNode *N) {
Evan Cheng39623da2006-04-20 08:58:49 +00002443 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002444 return ::isMOVLMask(N->op_begin(), N->getNumOperands());
Evan Cheng39623da2006-04-20 08:58:49 +00002445}
2446
Evan Cheng017dcc62006-04-21 01:05:10 +00002447/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
2448/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00002449/// element of vector 2 and the other elements to come from vector 1 in order.
Dan Gohmane7852d02009-01-26 04:35:06 +00002450template<class SDOperand>
2451static bool isCommutedMOVL(SDOperand *Ops, unsigned NumOps,
Chris Lattner5a88b832007-02-25 07:10:00 +00002452 bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00002453 bool V2IsUndef = false) {
Chris Lattner5a88b832007-02-25 07:10:00 +00002454 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00002455 return false;
2456
2457 if (!isUndefOrEqual(Ops[0], 0))
2458 return false;
2459
Chris Lattner5a88b832007-02-25 07:10:00 +00002460 for (unsigned i = 1; i < NumOps; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002461 SDValue Arg = Ops[i];
Chris Lattner5a88b832007-02-25 07:10:00 +00002462 if (!(isUndefOrEqual(Arg, i+NumOps) ||
2463 (V2IsUndef && isUndefOrInRange(Arg, NumOps, NumOps*2)) ||
2464 (V2IsSplat && isUndefOrEqual(Arg, NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00002465 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00002466 }
2467
2468 return true;
2469}
2470
Evan Cheng8cf723d2006-09-08 01:50:06 +00002471static bool isCommutedMOVL(SDNode *N, bool V2IsSplat = false,
2472 bool V2IsUndef = false) {
Evan Cheng39623da2006-04-20 08:58:49 +00002473 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002474 return isCommutedMOVL(N->op_begin(), N->getNumOperands(),
2475 V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00002476}
2477
Evan Chengd9539472006-04-14 21:59:03 +00002478/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2479/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
2480bool X86::isMOVSHDUPMask(SDNode *N) {
2481 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2482
2483 if (N->getNumOperands() != 4)
2484 return false;
2485
2486 // Expect 1, 1, 3, 3
2487 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002488 SDValue Arg = N->getOperand(i);
Evan Chengd9539472006-04-14 21:59:03 +00002489 if (Arg.getOpcode() == ISD::UNDEF) continue;
2490 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002491 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengd9539472006-04-14 21:59:03 +00002492 if (Val != 1) return false;
2493 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002494
2495 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00002496 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002497 SDValue Arg = N->getOperand(i);
Evan Chengd9539472006-04-14 21:59:03 +00002498 if (Arg.getOpcode() == ISD::UNDEF) continue;
2499 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002500 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengd9539472006-04-14 21:59:03 +00002501 if (Val != 3) return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002502 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00002503 }
Evan Cheng39fc1452006-04-15 03:13:24 +00002504
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002505 // Don't use movshdup if it can be done with a shufps.
2506 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00002507}
2508
2509/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2510/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
2511bool X86::isMOVSLDUPMask(SDNode *N) {
2512 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2513
2514 if (N->getNumOperands() != 4)
2515 return false;
2516
2517 // Expect 0, 0, 2, 2
2518 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002519 SDValue Arg = N->getOperand(i);
Evan Chengd9539472006-04-14 21:59:03 +00002520 if (Arg.getOpcode() == ISD::UNDEF) continue;
2521 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002522 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengd9539472006-04-14 21:59:03 +00002523 if (Val != 0) return false;
2524 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002525
2526 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00002527 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002528 SDValue Arg = N->getOperand(i);
Evan Chengd9539472006-04-14 21:59:03 +00002529 if (Arg.getOpcode() == ISD::UNDEF) continue;
2530 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002531 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengd9539472006-04-14 21:59:03 +00002532 if (Val != 2) return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002533 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00002534 }
Evan Cheng39fc1452006-04-15 03:13:24 +00002535
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002536 // Don't use movshdup if it can be done with a shufps.
2537 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00002538}
2539
Evan Cheng49892af2007-06-19 00:02:56 +00002540/// isIdentityMask - Return true if the specified VECTOR_SHUFFLE operand
2541/// specifies a identity operation on the LHS or RHS.
2542static bool isIdentityMask(SDNode *N, bool RHS = false) {
2543 unsigned NumElems = N->getNumOperands();
2544 for (unsigned i = 0; i < NumElems; ++i)
2545 if (!isUndefOrEqual(N->getOperand(i), i + (RHS ? NumElems : 0)))
2546 return false;
2547 return true;
2548}
2549
Evan Chengb9df0ca2006-03-22 02:53:00 +00002550/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2551/// a splat of a single element.
Evan Chengc575ca22006-04-17 20:43:08 +00002552static bool isSplatMask(SDNode *N) {
Evan Chengb9df0ca2006-03-22 02:53:00 +00002553 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2554
Evan Chengb9df0ca2006-03-22 02:53:00 +00002555 // This is a splat operation if each element of the permute is the same, and
2556 // if the value doesn't reference the second vector.
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002557 unsigned NumElems = N->getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002558 SDValue ElementBase;
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002559 unsigned i = 0;
2560 for (; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002561 SDValue Elt = N->getOperand(i);
Reid Spencer3ed469c2006-11-02 20:25:50 +00002562 if (isa<ConstantSDNode>(Elt)) {
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002563 ElementBase = Elt;
2564 break;
2565 }
2566 }
2567
Gabor Greifba36cb52008-08-28 21:40:38 +00002568 if (!ElementBase.getNode())
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002569 return false;
2570
2571 for (; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002572 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002573 if (Arg.getOpcode() == ISD::UNDEF) continue;
2574 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002575 if (Arg != ElementBase) return false;
Evan Chengb9df0ca2006-03-22 02:53:00 +00002576 }
2577
2578 // Make sure it is a splat of the first vector operand.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002579 return cast<ConstantSDNode>(ElementBase)->getZExtValue() < NumElems;
Evan Chengb9df0ca2006-03-22 02:53:00 +00002580}
2581
Mon P Wang62c75ea2008-12-23 04:03:27 +00002582/// getSplatMaskEltNo - Given a splat mask, return the index to the element
2583/// we want to splat.
2584static SDValue getSplatMaskEltNo(SDNode *N) {
2585 assert(isSplatMask(N) && "Not a splat mask");
2586 unsigned NumElems = N->getNumOperands();
2587 SDValue ElementBase;
2588 unsigned i = 0;
2589 for (; i != NumElems; ++i) {
2590 SDValue Elt = N->getOperand(i);
2591 if (isa<ConstantSDNode>(Elt))
2592 return Elt;
2593 }
2594 assert(0 && " No splat value found!");
2595 return SDValue();
2596}
2597
2598
Evan Chengc575ca22006-04-17 20:43:08 +00002599/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2600/// a splat of a single element and it's a 2 or 4 element mask.
2601bool X86::isSplatMask(SDNode *N) {
2602 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2603
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002604 // We can only splat 64-bit, and 32-bit quantities with a single instruction.
Evan Chengc575ca22006-04-17 20:43:08 +00002605 if (N->getNumOperands() != 4 && N->getNumOperands() != 2)
2606 return false;
2607 return ::isSplatMask(N);
2608}
2609
Evan Chengf686d9b2006-10-27 21:08:32 +00002610/// isSplatLoMask - Return true if the specified VECTOR_SHUFFLE operand
2611/// specifies a splat of zero element.
2612bool X86::isSplatLoMask(SDNode *N) {
2613 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2614
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002615 for (unsigned i = 0, e = N->getNumOperands(); i < e; ++i)
Evan Chengf686d9b2006-10-27 21:08:32 +00002616 if (!isUndefOrEqual(N->getOperand(i), 0))
2617 return false;
2618 return true;
2619}
2620
Evan Cheng0b457f02008-09-25 20:50:48 +00002621/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2622/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
2623bool X86::isMOVDDUPMask(SDNode *N) {
2624 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2625
2626 unsigned e = N->getNumOperands() / 2;
2627 for (unsigned i = 0; i < e; ++i)
2628 if (!isUndefOrEqual(N->getOperand(i), i))
2629 return false;
2630 for (unsigned i = 0; i < e; ++i)
2631 if (!isUndefOrEqual(N->getOperand(e+i), i))
2632 return false;
2633 return true;
2634}
2635
Evan Cheng63d33002006-03-22 08:01:21 +00002636/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
2637/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUF* and SHUFP*
2638/// instructions.
2639unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Evan Chengb9df0ca2006-03-22 02:53:00 +00002640 unsigned NumOperands = N->getNumOperands();
2641 unsigned Shift = (NumOperands == 4) ? 2 : 1;
2642 unsigned Mask = 0;
Evan Cheng36b27f32006-03-28 23:41:33 +00002643 for (unsigned i = 0; i < NumOperands; ++i) {
Evan Chengef698ca2006-03-31 00:30:29 +00002644 unsigned Val = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002645 SDValue Arg = N->getOperand(NumOperands-i-1);
Evan Chengef698ca2006-03-31 00:30:29 +00002646 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002647 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng14aed5e2006-03-24 01:18:28 +00002648 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00002649 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00002650 if (i != NumOperands - 1)
2651 Mask <<= Shift;
2652 }
Evan Cheng63d33002006-03-22 08:01:21 +00002653
2654 return Mask;
2655}
2656
Evan Cheng506d3df2006-03-29 23:07:14 +00002657/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
2658/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFHW
2659/// instructions.
2660unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
2661 unsigned Mask = 0;
2662 // 8 nodes, but we only care about the last 4.
2663 for (unsigned i = 7; i >= 4; --i) {
Evan Chengef698ca2006-03-31 00:30:29 +00002664 unsigned Val = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002665 SDValue Arg = N->getOperand(i);
Mon P Wang7bcaefa2009-02-04 01:16:59 +00002666 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002667 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Mon P Wang7bcaefa2009-02-04 01:16:59 +00002668 Mask |= (Val - 4);
2669 }
Evan Cheng506d3df2006-03-29 23:07:14 +00002670 if (i != 4)
2671 Mask <<= 2;
2672 }
2673
2674 return Mask;
2675}
2676
2677/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
2678/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFLW
2679/// instructions.
2680unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
2681 unsigned Mask = 0;
2682 // 8 nodes, but we only care about the first 4.
2683 for (int i = 3; i >= 0; --i) {
Evan Chengef698ca2006-03-31 00:30:29 +00002684 unsigned Val = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002685 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002686 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002687 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng506d3df2006-03-29 23:07:14 +00002688 Mask |= Val;
2689 if (i != 0)
2690 Mask <<= 2;
2691 }
2692
2693 return Mask;
2694}
2695
Evan Chengc21a0532006-04-05 01:47:37 +00002696/// isPSHUFHW_PSHUFLWMask - true if the specified VECTOR_SHUFFLE operand
2697/// specifies a 8 element shuffle that can be broken into a pair of
2698/// PSHUFHW and PSHUFLW.
2699static bool isPSHUFHW_PSHUFLWMask(SDNode *N) {
2700 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2701
2702 if (N->getNumOperands() != 8)
2703 return false;
2704
2705 // Lower quadword shuffled.
2706 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002707 SDValue Arg = N->getOperand(i);
Evan Chengc21a0532006-04-05 01:47:37 +00002708 if (Arg.getOpcode() == ISD::UNDEF) continue;
2709 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002710 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00002711 if (Val >= 4)
Evan Chengc21a0532006-04-05 01:47:37 +00002712 return false;
2713 }
2714
2715 // Upper quadword shuffled.
2716 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002717 SDValue Arg = N->getOperand(i);
Evan Chengc21a0532006-04-05 01:47:37 +00002718 if (Arg.getOpcode() == ISD::UNDEF) continue;
2719 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002720 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengc21a0532006-04-05 01:47:37 +00002721 if (Val < 4 || Val > 7)
2722 return false;
2723 }
2724
2725 return true;
2726}
2727
Chris Lattner8a594482007-11-25 00:24:49 +00002728/// CommuteVectorShuffle - Swap vector_shuffle operands as well as
Evan Cheng5ced1d82006-04-06 23:23:56 +00002729/// values in ther permute mask.
Dan Gohman475871a2008-07-27 21:46:04 +00002730static SDValue CommuteVectorShuffle(SDValue Op, SDValue &V1,
2731 SDValue &V2, SDValue &Mask,
Evan Cheng9eca5e82006-10-25 21:49:50 +00002732 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002733 MVT VT = Op.getValueType();
2734 MVT MaskVT = Mask.getValueType();
2735 MVT EltVT = MaskVT.getVectorElementType();
Evan Cheng5ced1d82006-04-06 23:23:56 +00002736 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002737 SmallVector<SDValue, 8> MaskVec;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00002738 DebugLoc dl = Op.getDebugLoc();
Evan Cheng5ced1d82006-04-06 23:23:56 +00002739
2740 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002741 SDValue Arg = Mask.getOperand(i);
Evan Cheng80d428c2006-04-19 22:48:17 +00002742 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002743 MaskVec.push_back(DAG.getUNDEF(EltVT));
Evan Cheng80d428c2006-04-19 22:48:17 +00002744 continue;
2745 }
Evan Cheng5ced1d82006-04-06 23:23:56 +00002746 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002747 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng5ced1d82006-04-06 23:23:56 +00002748 if (Val < NumElems)
2749 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2750 else
2751 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2752 }
2753
Evan Cheng9eca5e82006-10-25 21:49:50 +00002754 std::swap(V1, V2);
Dale Johannesenace16102009-02-03 19:33:06 +00002755 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], NumElems);
2756 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, Mask);
Evan Cheng5ced1d82006-04-06 23:23:56 +00002757}
2758
Evan Cheng779ccea2007-12-07 21:30:01 +00002759/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
2760/// the two vector operands have swapped position.
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002761static
Dale Johannesenace16102009-02-03 19:33:06 +00002762SDValue CommuteVectorShuffleMask(SDValue Mask, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002763 MVT MaskVT = Mask.getValueType();
2764 MVT EltVT = MaskVT.getVectorElementType();
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002765 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002766 SmallVector<SDValue, 8> MaskVec;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002767 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002768 SDValue Arg = Mask.getOperand(i);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002769 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002770 MaskVec.push_back(DAG.getUNDEF(EltVT));
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002771 continue;
2772 }
2773 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002774 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002775 if (Val < NumElems)
2776 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2777 else
2778 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2779 }
Dale Johannesenace16102009-02-03 19:33:06 +00002780 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], NumElems);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002781}
2782
2783
Evan Cheng533a0aa2006-04-19 20:35:22 +00002784/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
2785/// match movhlps. The lower half elements should come from upper half of
2786/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002787/// half of V2 (and in order).
Evan Cheng533a0aa2006-04-19 20:35:22 +00002788static bool ShouldXformToMOVHLPS(SDNode *Mask) {
2789 unsigned NumElems = Mask->getNumOperands();
2790 if (NumElems != 4)
2791 return false;
2792 for (unsigned i = 0, e = 2; i != e; ++i)
2793 if (!isUndefOrEqual(Mask->getOperand(i), i+2))
2794 return false;
2795 for (unsigned i = 2; i != 4; ++i)
2796 if (!isUndefOrEqual(Mask->getOperand(i), i+4))
2797 return false;
2798 return true;
2799}
2800
Evan Cheng5ced1d82006-04-06 23:23:56 +00002801/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00002802/// is promoted to a vector. It also returns the LoadSDNode by reference if
2803/// required.
2804static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00002805 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
2806 return false;
2807 N = N->getOperand(0).getNode();
2808 if (!ISD::isNON_EXTLoad(N))
2809 return false;
2810 if (LD)
2811 *LD = cast<LoadSDNode>(N);
2812 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002813}
2814
Evan Cheng533a0aa2006-04-19 20:35:22 +00002815/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
2816/// match movlp{s|d}. The lower half elements should come from lower half of
2817/// V1 (and in order), and the upper half elements should come from the upper
2818/// half of V2 (and in order). And since V1 will become the source of the
2819/// MOVLP, it must be either a vector load or a scalar load to vector.
Evan Cheng23425f52006-10-09 21:39:25 +00002820static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2, SDNode *Mask) {
Evan Cheng466685d2006-10-09 20:57:25 +00002821 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00002822 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00002823 // Is V2 is a vector load, don't do this transformation. We will try to use
2824 // load folding shufps op.
2825 if (ISD::isNON_EXTLoad(V2))
2826 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002827
Evan Cheng533a0aa2006-04-19 20:35:22 +00002828 unsigned NumElems = Mask->getNumOperands();
2829 if (NumElems != 2 && NumElems != 4)
2830 return false;
2831 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
2832 if (!isUndefOrEqual(Mask->getOperand(i), i))
2833 return false;
2834 for (unsigned i = NumElems/2; i != NumElems; ++i)
2835 if (!isUndefOrEqual(Mask->getOperand(i), i+NumElems))
2836 return false;
2837 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002838}
2839
Evan Cheng39623da2006-04-20 08:58:49 +00002840/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
2841/// all the same.
2842static bool isSplatVector(SDNode *N) {
2843 if (N->getOpcode() != ISD::BUILD_VECTOR)
2844 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002845
Dan Gohman475871a2008-07-27 21:46:04 +00002846 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00002847 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
2848 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002849 return false;
2850 return true;
2851}
2852
Evan Cheng8cf723d2006-09-08 01:50:06 +00002853/// isUndefShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2854/// to an undef.
2855static bool isUndefShuffle(SDNode *N) {
Evan Cheng213d2cf2007-05-17 18:45:50 +00002856 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
Evan Cheng8cf723d2006-09-08 01:50:06 +00002857 return false;
2858
Dan Gohman475871a2008-07-27 21:46:04 +00002859 SDValue V1 = N->getOperand(0);
2860 SDValue V2 = N->getOperand(1);
2861 SDValue Mask = N->getOperand(2);
Evan Cheng8cf723d2006-09-08 01:50:06 +00002862 unsigned NumElems = Mask.getNumOperands();
2863 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002864 SDValue Arg = Mask.getOperand(i);
Evan Cheng8cf723d2006-09-08 01:50:06 +00002865 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002866 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng8cf723d2006-09-08 01:50:06 +00002867 if (Val < NumElems && V1.getOpcode() != ISD::UNDEF)
2868 return false;
2869 else if (Val >= NumElems && V2.getOpcode() != ISD::UNDEF)
2870 return false;
2871 }
2872 }
2873 return true;
2874}
2875
Evan Cheng213d2cf2007-05-17 18:45:50 +00002876/// isZeroNode - Returns true if Elt is a constant zero or a floating point
2877/// constant +0.0.
Dan Gohman475871a2008-07-27 21:46:04 +00002878static inline bool isZeroNode(SDValue Elt) {
Evan Cheng213d2cf2007-05-17 18:45:50 +00002879 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002880 cast<ConstantSDNode>(Elt)->getZExtValue() == 0) ||
Evan Cheng213d2cf2007-05-17 18:45:50 +00002881 (isa<ConstantFPSDNode>(Elt) &&
Dale Johanneseneaf08942007-08-31 04:03:46 +00002882 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
Evan Cheng213d2cf2007-05-17 18:45:50 +00002883}
2884
2885/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2886/// to an zero vector.
2887static bool isZeroShuffle(SDNode *N) {
2888 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2889 return false;
2890
Dan Gohman475871a2008-07-27 21:46:04 +00002891 SDValue V1 = N->getOperand(0);
2892 SDValue V2 = N->getOperand(1);
2893 SDValue Mask = N->getOperand(2);
Evan Cheng213d2cf2007-05-17 18:45:50 +00002894 unsigned NumElems = Mask.getNumOperands();
2895 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002896 SDValue Arg = Mask.getOperand(i);
Chris Lattner8a594482007-11-25 00:24:49 +00002897 if (Arg.getOpcode() == ISD::UNDEF)
2898 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00002899
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002900 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Chris Lattner8a594482007-11-25 00:24:49 +00002901 if (Idx < NumElems) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002902 unsigned Opc = V1.getNode()->getOpcode();
2903 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
Chris Lattner8a594482007-11-25 00:24:49 +00002904 continue;
2905 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greifba36cb52008-08-28 21:40:38 +00002906 !isZeroNode(V1.getNode()->getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00002907 return false;
2908 } else if (Idx >= NumElems) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002909 unsigned Opc = V2.getNode()->getOpcode();
2910 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
Chris Lattner8a594482007-11-25 00:24:49 +00002911 continue;
2912 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greifba36cb52008-08-28 21:40:38 +00002913 !isZeroNode(V2.getNode()->getOperand(Idx - NumElems)))
Chris Lattner8a594482007-11-25 00:24:49 +00002914 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00002915 }
2916 }
2917 return true;
2918}
2919
2920/// getZeroVector - Returns a vector of specified type with all zero elements.
2921///
Dale Johannesenace16102009-02-03 19:33:06 +00002922static SDValue getZeroVector(MVT VT, bool HasSSE2, SelectionDAG &DAG,
2923 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002924 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00002925
Chris Lattner8a594482007-11-25 00:24:49 +00002926 // Always build zero vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2927 // type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00002928 SDValue Vec;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002929 if (VT.getSizeInBits() == 64) { // MMX
Dan Gohman475871a2008-07-27 21:46:04 +00002930 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Dale Johannesenace16102009-02-03 19:33:06 +00002931 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Chengf0df0312008-05-15 08:39:06 +00002932 } else if (HasSSE2) { // SSE2
Dan Gohman475871a2008-07-27 21:46:04 +00002933 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Dale Johannesenace16102009-02-03 19:33:06 +00002934 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Chengf0df0312008-05-15 08:39:06 +00002935 } else { // SSE1
Dan Gohman475871a2008-07-27 21:46:04 +00002936 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Dale Johannesenace16102009-02-03 19:33:06 +00002937 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
Evan Chengf0df0312008-05-15 08:39:06 +00002938 }
Dale Johannesenace16102009-02-03 19:33:06 +00002939 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00002940}
2941
Chris Lattner8a594482007-11-25 00:24:49 +00002942/// getOnesVector - Returns a vector of specified type with all bits set.
2943///
Dale Johannesenace16102009-02-03 19:33:06 +00002944static SDValue getOnesVector(MVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002945 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00002946
Chris Lattner8a594482007-11-25 00:24:49 +00002947 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2948 // type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00002949 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
2950 SDValue Vec;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002951 if (VT.getSizeInBits() == 64) // MMX
Dale Johannesenace16102009-02-03 19:33:06 +00002952 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Chris Lattner8a594482007-11-25 00:24:49 +00002953 else // SSE
Dale Johannesenace16102009-02-03 19:33:06 +00002954 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
2955 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00002956}
2957
2958
Evan Cheng39623da2006-04-20 08:58:49 +00002959/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
2960/// that point to V2 points to its first element.
Dan Gohman475871a2008-07-27 21:46:04 +00002961static SDValue NormalizeMask(SDValue Mask, SelectionDAG &DAG) {
Evan Cheng39623da2006-04-20 08:58:49 +00002962 assert(Mask.getOpcode() == ISD::BUILD_VECTOR);
2963
2964 bool Changed = false;
Dan Gohman475871a2008-07-27 21:46:04 +00002965 SmallVector<SDValue, 8> MaskVec;
Evan Cheng39623da2006-04-20 08:58:49 +00002966 unsigned NumElems = Mask.getNumOperands();
2967 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002968 SDValue Arg = Mask.getOperand(i);
Evan Cheng39623da2006-04-20 08:58:49 +00002969 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002970 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng39623da2006-04-20 08:58:49 +00002971 if (Val > NumElems) {
2972 Arg = DAG.getConstant(NumElems, Arg.getValueType());
2973 Changed = true;
2974 }
2975 }
2976 MaskVec.push_back(Arg);
2977 }
2978
2979 if (Changed)
Dale Johannesen6f38cb62009-02-07 19:59:05 +00002980 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getDebugLoc(),
Dale Johannesenace16102009-02-03 19:33:06 +00002981 Mask.getValueType(),
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002982 &MaskVec[0], MaskVec.size());
Evan Cheng39623da2006-04-20 08:58:49 +00002983 return Mask;
2984}
2985
Evan Cheng017dcc62006-04-21 01:05:10 +00002986/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
2987/// operation of specified width.
Dale Johannesenace16102009-02-03 19:33:06 +00002988static SDValue getMOVLMask(unsigned NumElems, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002989 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2990 MVT BaseVT = MaskVT.getVectorElementType();
Evan Cheng39623da2006-04-20 08:58:49 +00002991
Dan Gohman475871a2008-07-27 21:46:04 +00002992 SmallVector<SDValue, 8> MaskVec;
Evan Cheng39623da2006-04-20 08:58:49 +00002993 MaskVec.push_back(DAG.getConstant(NumElems, BaseVT));
2994 for (unsigned i = 1; i != NumElems; ++i)
2995 MaskVec.push_back(DAG.getConstant(i, BaseVT));
Scott Michelfdc40a02009-02-17 22:15:04 +00002996 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dale Johannesenace16102009-02-03 19:33:06 +00002997 &MaskVec[0], MaskVec.size());
Evan Cheng39623da2006-04-20 08:58:49 +00002998}
2999
Evan Chengc575ca22006-04-17 20:43:08 +00003000/// getUnpacklMask - Returns a vector_shuffle mask for an unpackl operation
3001/// of specified width.
Scott Michelfdc40a02009-02-17 22:15:04 +00003002static SDValue getUnpacklMask(unsigned NumElems, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003003 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003004 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3005 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00003006 SmallVector<SDValue, 8> MaskVec;
Evan Chengc575ca22006-04-17 20:43:08 +00003007 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
3008 MaskVec.push_back(DAG.getConstant(i, BaseVT));
3009 MaskVec.push_back(DAG.getConstant(i + NumElems, BaseVT));
3010 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003011 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dale Johannesenace16102009-02-03 19:33:06 +00003012 &MaskVec[0], MaskVec.size());
Evan Chengc575ca22006-04-17 20:43:08 +00003013}
3014
Evan Cheng39623da2006-04-20 08:58:49 +00003015/// getUnpackhMask - Returns a vector_shuffle mask for an unpackh operation
3016/// of specified width.
Dale Johannesenace16102009-02-03 19:33:06 +00003017static SDValue getUnpackhMask(unsigned NumElems, SelectionDAG &DAG,
3018 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003019 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3020 MVT BaseVT = MaskVT.getVectorElementType();
Evan Cheng39623da2006-04-20 08:58:49 +00003021 unsigned Half = NumElems/2;
Dan Gohman475871a2008-07-27 21:46:04 +00003022 SmallVector<SDValue, 8> MaskVec;
Evan Cheng39623da2006-04-20 08:58:49 +00003023 for (unsigned i = 0; i != Half; ++i) {
3024 MaskVec.push_back(DAG.getConstant(i + Half, BaseVT));
3025 MaskVec.push_back(DAG.getConstant(i + NumElems + Half, BaseVT));
3026 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003027 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dale Johannesenace16102009-02-03 19:33:06 +00003028 &MaskVec[0], MaskVec.size());
Evan Cheng39623da2006-04-20 08:58:49 +00003029}
3030
Chris Lattner62098042008-03-09 01:05:04 +00003031/// getSwapEltZeroMask - Returns a vector_shuffle mask for a shuffle that swaps
3032/// element #0 of a vector with the specified index, leaving the rest of the
3033/// elements in place.
Dan Gohman475871a2008-07-27 21:46:04 +00003034static SDValue getSwapEltZeroMask(unsigned NumElems, unsigned DestElt,
Dale Johannesenace16102009-02-03 19:33:06 +00003035 SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003036 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3037 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00003038 SmallVector<SDValue, 8> MaskVec;
Chris Lattner62098042008-03-09 01:05:04 +00003039 // Element #0 of the result gets the elt we are replacing.
3040 MaskVec.push_back(DAG.getConstant(DestElt, BaseVT));
3041 for (unsigned i = 1; i != NumElems; ++i)
3042 MaskVec.push_back(DAG.getConstant(i == DestElt ? 0 : i, BaseVT));
Scott Michelfdc40a02009-02-17 22:15:04 +00003043 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dale Johannesenace16102009-02-03 19:33:06 +00003044 &MaskVec[0], MaskVec.size());
Chris Lattner62098042008-03-09 01:05:04 +00003045}
3046
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003047/// PromoteSplat - Promote a splat of v4f32, v8i16 or v16i8 to v4i32.
Dan Gohman475871a2008-07-27 21:46:04 +00003048static SDValue PromoteSplat(SDValue Op, SelectionDAG &DAG, bool HasSSE2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003049 MVT PVT = HasSSE2 ? MVT::v4i32 : MVT::v4f32;
3050 MVT VT = Op.getValueType();
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003051 if (PVT == VT)
3052 return Op;
Dan Gohman475871a2008-07-27 21:46:04 +00003053 SDValue V1 = Op.getOperand(0);
3054 SDValue Mask = Op.getOperand(2);
Mon P Wang62c75ea2008-12-23 04:03:27 +00003055 unsigned MaskNumElems = Mask.getNumOperands();
3056 unsigned NumElems = MaskNumElems;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003057 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003058 // Special handling of v4f32 -> v4i32.
3059 if (VT != MVT::v4f32) {
Mon P Wang62c75ea2008-12-23 04:03:27 +00003060 // Find which element we want to splat.
3061 SDNode* EltNoNode = getSplatMaskEltNo(Mask.getNode()).getNode();
3062 unsigned EltNo = cast<ConstantSDNode>(EltNoNode)->getZExtValue();
3063 // unpack elements to the correct location
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003064 while (NumElems > 4) {
Mon P Wang62c75ea2008-12-23 04:03:27 +00003065 if (EltNo < NumElems/2) {
Dale Johannesenace16102009-02-03 19:33:06 +00003066 Mask = getUnpacklMask(MaskNumElems, DAG, dl);
Mon P Wang62c75ea2008-12-23 04:03:27 +00003067 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00003068 Mask = getUnpackhMask(MaskNumElems, DAG, dl);
Mon P Wang62c75ea2008-12-23 04:03:27 +00003069 EltNo -= NumElems/2;
3070 }
Dale Johannesenace16102009-02-03 19:33:06 +00003071 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V1, Mask);
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003072 NumElems >>= 1;
3073 }
Mon P Wang62c75ea2008-12-23 04:03:27 +00003074 SDValue Cst = DAG.getConstant(EltNo, MVT::i32);
Dale Johannesenace16102009-02-03 19:33:06 +00003075 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Chengc575ca22006-04-17 20:43:08 +00003076 }
Evan Chengc575ca22006-04-17 20:43:08 +00003077
Dale Johannesenace16102009-02-03 19:33:06 +00003078 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
3079 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, PVT, V1,
Dale Johannesene8d72302009-02-06 23:05:02 +00003080 DAG.getUNDEF(PVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00003081 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Shuffle);
Evan Chengc575ca22006-04-17 20:43:08 +00003082}
3083
Evan Cheng0b457f02008-09-25 20:50:48 +00003084/// isVectorLoad - Returns true if the node is a vector load, a scalar
3085/// load that's promoted to vector, or a load bitcasted.
3086static bool isVectorLoad(SDValue Op) {
3087 assert(Op.getValueType().isVector() && "Expected a vector type");
3088 if (Op.getOpcode() == ISD::SCALAR_TO_VECTOR ||
3089 Op.getOpcode() == ISD::BIT_CONVERT) {
3090 return isa<LoadSDNode>(Op.getOperand(0));
3091 }
3092 return isa<LoadSDNode>(Op);
3093}
3094
3095
3096/// CanonicalizeMovddup - Cannonicalize movddup shuffle to v2f64.
3097///
3098static SDValue CanonicalizeMovddup(SDValue Op, SDValue V1, SDValue Mask,
3099 SelectionDAG &DAG, bool HasSSE3) {
3100 // If we have sse3 and shuffle has more than one use or input is a load, then
3101 // use movddup. Otherwise, use movlhps.
3102 bool UseMovddup = HasSSE3 && (!Op.hasOneUse() || isVectorLoad(V1));
3103 MVT PVT = UseMovddup ? MVT::v2f64 : MVT::v4f32;
3104 MVT VT = Op.getValueType();
3105 if (VT == PVT)
3106 return Op;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003107 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0b457f02008-09-25 20:50:48 +00003108 unsigned NumElems = PVT.getVectorNumElements();
3109 if (NumElems == 2) {
3110 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Dale Johannesenace16102009-02-03 19:33:06 +00003111 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Cheng0b457f02008-09-25 20:50:48 +00003112 } else {
3113 assert(NumElems == 4);
3114 SDValue Cst0 = DAG.getTargetConstant(0, MVT::i32);
3115 SDValue Cst1 = DAG.getTargetConstant(1, MVT::i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00003116 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00003117 Cst0, Cst1, Cst0, Cst1);
Evan Cheng0b457f02008-09-25 20:50:48 +00003118 }
3119
Dale Johannesenace16102009-02-03 19:33:06 +00003120 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
3121 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, PVT, V1,
Dale Johannesene8d72302009-02-06 23:05:02 +00003122 DAG.getUNDEF(PVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00003123 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Shuffle);
Evan Cheng0b457f02008-09-25 20:50:48 +00003124}
3125
Evan Chengba05f722006-04-21 23:03:30 +00003126/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003127/// vector of zero or undef vector. This produces a shuffle where the low
3128/// element of V2 is swizzled into the zero/undef vector, landing at element
3129/// 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 +00003130static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003131 bool isZero, bool HasSSE2,
3132 SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003133 DebugLoc dl = V2.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003134 MVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003135 SDValue V1 = isZero
Dale Johannesene8d72302009-02-06 23:05:02 +00003136 ? getZeroVector(VT, HasSSE2, DAG, dl) : DAG.getUNDEF(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003137 unsigned NumElems = V2.getValueType().getVectorNumElements();
3138 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3139 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00003140 SmallVector<SDValue, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003141 for (unsigned i = 0; i != NumElems; ++i)
3142 if (i == Idx) // If this is the insertion idx, put the low elt of V2 here.
3143 MaskVec.push_back(DAG.getConstant(NumElems, EVT));
3144 else
3145 MaskVec.push_back(DAG.getConstant(i, EVT));
Dale Johannesenace16102009-02-03 19:33:06 +00003146 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003147 &MaskVec[0], MaskVec.size());
Dale Johannesenace16102009-02-03 19:33:06 +00003148 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, Mask);
Evan Cheng017dcc62006-04-21 01:05:10 +00003149}
3150
Evan Chengf26ffe92008-05-29 08:22:04 +00003151/// getNumOfConsecutiveZeros - Return the number of elements in a result of
3152/// a shuffle that is zero.
3153static
Dan Gohman475871a2008-07-27 21:46:04 +00003154unsigned getNumOfConsecutiveZeros(SDValue Op, SDValue Mask,
Evan Chengf26ffe92008-05-29 08:22:04 +00003155 unsigned NumElems, bool Low,
3156 SelectionDAG &DAG) {
3157 unsigned NumZeros = 0;
3158 for (unsigned i = 0; i < NumElems; ++i) {
Evan Chengab262272008-06-25 20:52:59 +00003159 unsigned Index = Low ? i : NumElems-i-1;
Dan Gohman475871a2008-07-27 21:46:04 +00003160 SDValue Idx = Mask.getOperand(Index);
Evan Chengf26ffe92008-05-29 08:22:04 +00003161 if (Idx.getOpcode() == ISD::UNDEF) {
3162 ++NumZeros;
3163 continue;
3164 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003165 SDValue Elt = DAG.getShuffleScalarElt(Op.getNode(), Index);
3166 if (Elt.getNode() && isZeroNode(Elt))
Evan Chengf26ffe92008-05-29 08:22:04 +00003167 ++NumZeros;
3168 else
3169 break;
3170 }
3171 return NumZeros;
3172}
3173
3174/// isVectorShift - Returns true if the shuffle can be implemented as a
3175/// logical left or right shift of a vector.
Dan Gohman475871a2008-07-27 21:46:04 +00003176static bool isVectorShift(SDValue Op, SDValue Mask, SelectionDAG &DAG,
3177 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Evan Chengf26ffe92008-05-29 08:22:04 +00003178 unsigned NumElems = Mask.getNumOperands();
3179
3180 isLeft = true;
3181 unsigned NumZeros= getNumOfConsecutiveZeros(Op, Mask, NumElems, true, DAG);
3182 if (!NumZeros) {
3183 isLeft = false;
3184 NumZeros = getNumOfConsecutiveZeros(Op, Mask, NumElems, false, DAG);
3185 if (!NumZeros)
3186 return false;
3187 }
3188
3189 bool SeenV1 = false;
3190 bool SeenV2 = false;
3191 for (unsigned i = NumZeros; i < NumElems; ++i) {
3192 unsigned Val = isLeft ? (i - NumZeros) : i;
Dan Gohman475871a2008-07-27 21:46:04 +00003193 SDValue Idx = Mask.getOperand(isLeft ? i : (i - NumZeros));
Evan Chengf26ffe92008-05-29 08:22:04 +00003194 if (Idx.getOpcode() == ISD::UNDEF)
3195 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003196 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Chengf26ffe92008-05-29 08:22:04 +00003197 if (Index < NumElems)
3198 SeenV1 = true;
3199 else {
3200 Index -= NumElems;
3201 SeenV2 = true;
3202 }
3203 if (Index != Val)
3204 return false;
3205 }
3206 if (SeenV1 && SeenV2)
3207 return false;
3208
3209 ShVal = SeenV1 ? Op.getOperand(0) : Op.getOperand(1);
3210 ShAmt = NumZeros;
3211 return true;
3212}
3213
3214
Evan Chengc78d3b42006-04-24 18:01:45 +00003215/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3216///
Dan Gohman475871a2008-07-27 21:46:04 +00003217static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003218 unsigned NumNonZero, unsigned NumZero,
Evan Cheng25ab6902006-09-08 06:48:29 +00003219 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003220 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00003221 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003222
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003223 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003224 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003225 bool First = true;
3226 for (unsigned i = 0; i < 16; ++i) {
3227 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3228 if (ThisIsNonZero && First) {
3229 if (NumZero)
Dale Johannesenace16102009-02-03 19:33:06 +00003230 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003231 else
Dale Johannesene8d72302009-02-06 23:05:02 +00003232 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003233 First = false;
3234 }
3235
3236 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00003237 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003238 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3239 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003240 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00003241 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00003242 }
3243 if (ThisIsNonZero) {
Dale Johannesenace16102009-02-03 19:33:06 +00003244 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3245 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
Evan Chengc78d3b42006-04-24 18:01:45 +00003246 ThisElt, DAG.getConstant(8, MVT::i8));
3247 if (LastIsNonZero)
Dale Johannesenace16102009-02-03 19:33:06 +00003248 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00003249 } else
3250 ThisElt = LastElt;
3251
Gabor Greifba36cb52008-08-28 21:40:38 +00003252 if (ThisElt.getNode())
Dale Johannesenace16102009-02-03 19:33:06 +00003253 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00003254 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00003255 }
3256 }
3257
Dale Johannesenace16102009-02-03 19:33:06 +00003258 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00003259}
3260
Bill Wendlinga348c562007-03-22 18:42:45 +00003261/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00003262///
Dan Gohman475871a2008-07-27 21:46:04 +00003263static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003264 unsigned NumNonZero, unsigned NumZero,
Evan Cheng25ab6902006-09-08 06:48:29 +00003265 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003266 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00003267 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003268
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003269 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003270 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003271 bool First = true;
3272 for (unsigned i = 0; i < 8; ++i) {
3273 bool isNonZero = (NonZeros & (1 << i)) != 0;
3274 if (isNonZero) {
3275 if (First) {
3276 if (NumZero)
Dale Johannesenace16102009-02-03 19:33:06 +00003277 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003278 else
Dale Johannesene8d72302009-02-06 23:05:02 +00003279 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003280 First = false;
3281 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003282 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00003283 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00003284 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00003285 }
3286 }
3287
3288 return V;
3289}
3290
Evan Chengf26ffe92008-05-29 08:22:04 +00003291/// getVShift - Return a vector logical shift node.
3292///
Dan Gohman475871a2008-07-27 21:46:04 +00003293static SDValue getVShift(bool isLeft, MVT VT, SDValue SrcOp,
Evan Chengf26ffe92008-05-29 08:22:04 +00003294 unsigned NumBits, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003295 const TargetLowering &TLI, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003296 bool isMMX = VT.getSizeInBits() == 64;
3297 MVT ShVT = isMMX ? MVT::v1i64 : MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00003298 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Dale Johannesenace16102009-02-03 19:33:06 +00003299 SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp);
3300 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3301 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00003302 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00003303}
3304
Dan Gohman475871a2008-07-27 21:46:04 +00003305SDValue
3306X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003307 DebugLoc dl = Op.getDebugLoc();
Chris Lattner8a594482007-11-25 00:24:49 +00003308 // All zero's are handled with pxor, all one's are handled with pcmpeqd.
Gabor Greif327ef032008-08-28 23:19:51 +00003309 if (ISD::isBuildVectorAllZeros(Op.getNode())
3310 || ISD::isBuildVectorAllOnes(Op.getNode())) {
Chris Lattner8a594482007-11-25 00:24:49 +00003311 // Canonicalize this to either <4 x i32> or <2 x i32> (SSE vs MMX) to
3312 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
3313 // eliminated on x86-32 hosts.
3314 if (Op.getValueType() == MVT::v4i32 || Op.getValueType() == MVT::v2i32)
3315 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003316
Gabor Greifba36cb52008-08-28 21:40:38 +00003317 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00003318 return getOnesVector(Op.getValueType(), DAG, dl);
3319 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00003320 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003321
Duncan Sands83ec4b62008-06-06 12:08:01 +00003322 MVT VT = Op.getValueType();
3323 MVT EVT = VT.getVectorElementType();
3324 unsigned EVTBits = EVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003325
3326 unsigned NumElems = Op.getNumOperands();
3327 unsigned NumZero = 0;
3328 unsigned NumNonZero = 0;
3329 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003330 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00003331 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003332 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003333 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00003334 if (Elt.getOpcode() == ISD::UNDEF)
3335 continue;
3336 Values.insert(Elt);
3337 if (Elt.getOpcode() != ISD::Constant &&
3338 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003339 IsAllConstants = false;
Evan Chengdb2d5242007-12-12 06:45:40 +00003340 if (isZeroNode(Elt))
3341 NumZero++;
3342 else {
3343 NonZeros |= (1 << i);
3344 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003345 }
3346 }
3347
Dan Gohman7f321562007-06-25 16:23:39 +00003348 if (NumNonZero == 0) {
Chris Lattner8a594482007-11-25 00:24:49 +00003349 // All undef vector. Return an UNDEF. All zero vectors were handled above.
Dale Johannesene8d72302009-02-06 23:05:02 +00003350 return DAG.getUNDEF(VT);
Dan Gohman7f321562007-06-25 16:23:39 +00003351 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003352
Chris Lattner67f453a2008-03-09 05:42:06 +00003353 // Special case for single non-zero, non-undef, element.
Evan Chengdb2d5242007-12-12 06:45:40 +00003354 if (NumNonZero == 1 && NumElems <= 4) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00003355 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00003356 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00003357
Chris Lattner62098042008-03-09 01:05:04 +00003358 // If this is an insertion of an i64 value on x86-32, and if the top bits of
3359 // the value are obviously zero, truncate the value to i32 and do the
3360 // insertion that way. Only do this if the value is non-constant or if the
3361 // value is a constant being inserted into element 0. It is cheaper to do
3362 // a constant pool load than it is to do a movd + shuffle.
3363 if (EVT == MVT::i64 && !Subtarget->is64Bit() &&
3364 (!IsAllConstants || Idx == 0)) {
3365 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
3366 // Handle MMX and SSE both.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003367 MVT VecVT = VT == MVT::v2i64 ? MVT::v4i32 : MVT::v2i32;
3368 unsigned VecElts = VT == MVT::v2i64 ? 4 : 2;
Scott Michelfdc40a02009-02-17 22:15:04 +00003369
Chris Lattner62098042008-03-09 01:05:04 +00003370 // Truncate the value (which may itself be a constant) to i32, and
3371 // convert it to a vector with movd (S2V+shuffle to zero extend).
Dale Johannesenace16102009-02-03 19:33:06 +00003372 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
3373 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00003374 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3375 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00003376
Chris Lattner62098042008-03-09 01:05:04 +00003377 // Now we have our 32-bit value zero extended in the low element of
3378 // a vector. If Idx != 0, swizzle it into place.
3379 if (Idx != 0) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003380 SDValue Ops[] = {
Dale Johannesene8d72302009-02-06 23:05:02 +00003381 Item, DAG.getUNDEF(Item.getValueType()),
Dale Johannesenace16102009-02-03 19:33:06 +00003382 getSwapEltZeroMask(VecElts, Idx, DAG, dl)
Chris Lattner62098042008-03-09 01:05:04 +00003383 };
Dale Johannesenace16102009-02-03 19:33:06 +00003384 Item = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VecVT, Ops, 3);
Chris Lattner62098042008-03-09 01:05:04 +00003385 }
Dale Johannesenace16102009-02-03 19:33:06 +00003386 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00003387 }
3388 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003389
Chris Lattner19f79692008-03-08 22:59:52 +00003390 // If we have a constant or non-constant insertion into the low element of
3391 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
3392 // the rest of the elements. This will be matched as movd/movq/movss/movsd
3393 // depending on what the source datatype is. Because we can only get here
3394 // when NumElems <= 4, this only needs to handle i32/f32/i64/f64.
3395 if (Idx == 0 &&
3396 // Don't do this for i64 values on x86-32.
3397 (EVT != MVT::i64 || Subtarget->is64Bit())) {
Dale Johannesenace16102009-02-03 19:33:06 +00003398 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003399 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Evan Chengf0df0312008-05-15 08:39:06 +00003400 return getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3401 Subtarget->hasSSE2(), DAG);
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003402 }
Evan Chengf26ffe92008-05-29 08:22:04 +00003403
3404 // Is it a vector logical left shift?
3405 if (NumElems == 2 && Idx == 1 &&
3406 isZeroNode(Op.getOperand(0)) && !isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003407 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00003408 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00003409 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00003410 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00003411 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00003412 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003413
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003414 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00003415 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003416
Chris Lattner19f79692008-03-08 22:59:52 +00003417 // Otherwise, if this is a vector with i32 or f32 elements, and the element
3418 // is a non-constant being inserted into an element other than the low one,
3419 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
3420 // movd/movss) to move this into the low element, then shuffle it into
3421 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00003422 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00003423 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00003424
Evan Cheng0db9fe62006-04-25 20:13:52 +00003425 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00003426 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3427 Subtarget->hasSSE2(), DAG);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003428 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3429 MVT MaskEVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00003430 SmallVector<SDValue, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003431 for (unsigned i = 0; i < NumElems; i++)
3432 MaskVec.push_back(DAG.getConstant((i == Idx) ? 0 : 1, MaskEVT));
Dale Johannesenace16102009-02-03 19:33:06 +00003433 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003434 &MaskVec[0], MaskVec.size());
Dale Johannesenace16102009-02-03 19:33:06 +00003435 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, Item,
Dale Johannesene8d72302009-02-06 23:05:02 +00003436 DAG.getUNDEF(VT), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003437 }
3438 }
3439
Chris Lattner67f453a2008-03-09 05:42:06 +00003440 // Splat is obviously ok. Let legalizer expand it to a shuffle.
3441 if (Values.size() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00003442 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003443
Dan Gohmana3941172007-07-24 22:55:08 +00003444 // A vector full of immediates; various special cases are already
3445 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003446 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00003447 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00003448
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003449 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00003450 if (EVTBits == 64) {
3451 if (NumNonZero == 1) {
3452 // One half is zero or undef.
3453 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00003454 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00003455 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00003456 return getShuffleVectorZeroOrUndef(V2, Idx, true,
3457 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00003458 }
Dan Gohman475871a2008-07-27 21:46:04 +00003459 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00003460 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003461
3462 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00003463 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00003464 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00003465 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00003466 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003467 }
3468
Bill Wendling826f36f2007-03-28 00:57:11 +00003469 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00003470 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00003471 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00003472 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003473 }
3474
3475 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00003476 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00003477 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003478 if (NumElems == 4 && NumZero > 0) {
3479 for (unsigned i = 0; i < 4; ++i) {
3480 bool isZero = !(NonZeros & (1 << i));
3481 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00003482 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003483 else
Dale Johannesenace16102009-02-03 19:33:06 +00003484 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003485 }
3486
3487 for (unsigned i = 0; i < 2; ++i) {
3488 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
3489 default: break;
3490 case 0:
3491 V[i] = V[i*2]; // Must be a zero vector.
3492 break;
3493 case 1:
Dale Johannesenace16102009-02-03 19:33:06 +00003494 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2+1], V[i*2],
3495 getMOVLMask(NumElems, DAG, dl));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003496 break;
3497 case 2:
Dale Johannesenace16102009-02-03 19:33:06 +00003498 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2], V[i*2+1],
3499 getMOVLMask(NumElems, DAG, dl));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003500 break;
3501 case 3:
Dale Johannesenace16102009-02-03 19:33:06 +00003502 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2], V[i*2+1],
3503 getUnpacklMask(NumElems, DAG, dl));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003504 break;
3505 }
3506 }
3507
Duncan Sands83ec4b62008-06-06 12:08:01 +00003508 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3509 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00003510 SmallVector<SDValue, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003511 bool Reverse = (NonZeros & 0x3) == 2;
3512 for (unsigned i = 0; i < 2; ++i)
3513 if (Reverse)
3514 MaskVec.push_back(DAG.getConstant(1-i, EVT));
3515 else
3516 MaskVec.push_back(DAG.getConstant(i, EVT));
3517 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
3518 for (unsigned i = 0; i < 2; ++i)
3519 if (Reverse)
3520 MaskVec.push_back(DAG.getConstant(1-i+NumElems, EVT));
3521 else
3522 MaskVec.push_back(DAG.getConstant(i+NumElems, EVT));
Dale Johannesenace16102009-02-03 19:33:06 +00003523 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Chris Lattnere2199452006-08-11 17:38:39 +00003524 &MaskVec[0], MaskVec.size());
Dale Johannesenace16102009-02-03 19:33:06 +00003525 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[0], V[1], ShufMask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003526 }
3527
3528 if (Values.size() > 2) {
3529 // Expand into a number of unpckl*.
3530 // e.g. for v4f32
3531 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
3532 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
3533 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Dale Johannesenace16102009-02-03 19:33:06 +00003534 SDValue UnpckMask = getUnpacklMask(NumElems, DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003535 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesenace16102009-02-03 19:33:06 +00003536 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003537 NumElems >>= 1;
3538 while (NumElems != 0) {
3539 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesenace16102009-02-03 19:33:06 +00003540 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i], V[i + NumElems],
Evan Cheng0db9fe62006-04-25 20:13:52 +00003541 UnpckMask);
3542 NumElems >>= 1;
3543 }
3544 return V[0];
3545 }
3546
Dan Gohman475871a2008-07-27 21:46:04 +00003547 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003548}
3549
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003550static
Dan Gohman475871a2008-07-27 21:46:04 +00003551SDValue LowerVECTOR_SHUFFLEv8i16(SDValue V1, SDValue V2,
Bill Wendlinge85dc492008-08-21 22:35:37 +00003552 SDValue PermMask, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003553 TargetLowering &TLI, DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +00003554 SDValue NewV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003555 MVT MaskVT = MVT::getIntVectorWithNumElements(8);
3556 MVT MaskEVT = MaskVT.getVectorElementType();
3557 MVT PtrVT = TLI.getPointerTy();
Gabor Greifba36cb52008-08-28 21:40:38 +00003558 SmallVector<SDValue, 8> MaskElts(PermMask.getNode()->op_begin(),
3559 PermMask.getNode()->op_end());
Evan Cheng14b32e12007-12-11 01:46:18 +00003560
3561 // First record which half of which vector the low elements come from.
3562 SmallVector<unsigned, 4> LowQuad(4);
3563 for (unsigned i = 0; i < 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003564 SDValue Elt = MaskElts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003565 if (Elt.getOpcode() == ISD::UNDEF)
3566 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003567 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003568 int QuadIdx = EltIdx / 4;
3569 ++LowQuad[QuadIdx];
3570 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003571
Evan Cheng14b32e12007-12-11 01:46:18 +00003572 int BestLowQuad = -1;
3573 unsigned MaxQuad = 1;
3574 for (unsigned i = 0; i < 4; ++i) {
3575 if (LowQuad[i] > MaxQuad) {
3576 BestLowQuad = i;
3577 MaxQuad = LowQuad[i];
3578 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003579 }
3580
Evan Cheng14b32e12007-12-11 01:46:18 +00003581 // Record which half of which vector the high elements come from.
3582 SmallVector<unsigned, 4> HighQuad(4);
3583 for (unsigned i = 4; i < 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003584 SDValue Elt = MaskElts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003585 if (Elt.getOpcode() == ISD::UNDEF)
3586 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003587 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003588 int QuadIdx = EltIdx / 4;
3589 ++HighQuad[QuadIdx];
3590 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003591
Evan Cheng14b32e12007-12-11 01:46:18 +00003592 int BestHighQuad = -1;
3593 MaxQuad = 1;
3594 for (unsigned i = 0; i < 4; ++i) {
3595 if (HighQuad[i] > MaxQuad) {
3596 BestHighQuad = i;
3597 MaxQuad = HighQuad[i];
3598 }
3599 }
3600
3601 // If it's possible to sort parts of either half with PSHUF{H|L}W, then do it.
3602 if (BestLowQuad != -1 || BestHighQuad != -1) {
3603 // First sort the 4 chunks in order using shufpd.
Dan Gohman475871a2008-07-27 21:46:04 +00003604 SmallVector<SDValue, 8> MaskVec;
Bill Wendlinge85dc492008-08-21 22:35:37 +00003605
Evan Cheng14b32e12007-12-11 01:46:18 +00003606 if (BestLowQuad != -1)
3607 MaskVec.push_back(DAG.getConstant(BestLowQuad, MVT::i32));
3608 else
3609 MaskVec.push_back(DAG.getConstant(0, MVT::i32));
Bill Wendlinge85dc492008-08-21 22:35:37 +00003610
Evan Cheng14b32e12007-12-11 01:46:18 +00003611 if (BestHighQuad != -1)
3612 MaskVec.push_back(DAG.getConstant(BestHighQuad, MVT::i32));
3613 else
3614 MaskVec.push_back(DAG.getConstant(1, MVT::i32));
Bill Wendlinge85dc492008-08-21 22:35:37 +00003615
Dale Johannesenace16102009-02-03 19:33:06 +00003616 SDValue Mask= DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, &MaskVec[0],2);
3617 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2i64,
3618 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1),
3619 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), Mask);
3620 NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00003621
3622 // Now sort high and low parts separately.
3623 BitVector InOrder(8);
3624 if (BestLowQuad != -1) {
3625 // Sort lower half in order using PSHUFLW.
3626 MaskVec.clear();
3627 bool AnyOutOrder = false;
Bill Wendlinge85dc492008-08-21 22:35:37 +00003628
Evan Cheng14b32e12007-12-11 01:46:18 +00003629 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003630 SDValue Elt = MaskElts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003631 if (Elt.getOpcode() == ISD::UNDEF) {
3632 MaskVec.push_back(Elt);
3633 InOrder.set(i);
3634 } else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003635 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003636 if (EltIdx != i)
3637 AnyOutOrder = true;
Bill Wendlinge85dc492008-08-21 22:35:37 +00003638
Evan Cheng14b32e12007-12-11 01:46:18 +00003639 MaskVec.push_back(DAG.getConstant(EltIdx % 4, MaskEVT));
Bill Wendlinge85dc492008-08-21 22:35:37 +00003640
Evan Cheng14b32e12007-12-11 01:46:18 +00003641 // If this element is in the right place after this shuffle, then
3642 // remember it.
3643 if ((int)(EltIdx / 4) == BestLowQuad)
3644 InOrder.set(i);
3645 }
3646 }
3647 if (AnyOutOrder) {
3648 for (unsigned i = 4; i != 8; ++i)
3649 MaskVec.push_back(DAG.getConstant(i, MaskEVT));
Scott Michelfdc40a02009-02-17 22:15:04 +00003650 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Dale Johannesenace16102009-02-03 19:33:06 +00003651 &MaskVec[0], 8);
Scott Michelfdc40a02009-02-17 22:15:04 +00003652 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16,
Dale Johannesenace16102009-02-03 19:33:06 +00003653 NewV, NewV, Mask);
Evan Cheng14b32e12007-12-11 01:46:18 +00003654 }
3655 }
3656
3657 if (BestHighQuad != -1) {
3658 // Sort high half in order using PSHUFHW if possible.
3659 MaskVec.clear();
Bill Wendlinge85dc492008-08-21 22:35:37 +00003660
Evan Cheng14b32e12007-12-11 01:46:18 +00003661 for (unsigned i = 0; i != 4; ++i)
3662 MaskVec.push_back(DAG.getConstant(i, MaskEVT));
Bill Wendlinge85dc492008-08-21 22:35:37 +00003663
Evan Cheng14b32e12007-12-11 01:46:18 +00003664 bool AnyOutOrder = false;
3665 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003666 SDValue Elt = MaskElts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003667 if (Elt.getOpcode() == ISD::UNDEF) {
3668 MaskVec.push_back(Elt);
3669 InOrder.set(i);
3670 } else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003671 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003672 if (EltIdx != i)
3673 AnyOutOrder = true;
Bill Wendlinge85dc492008-08-21 22:35:37 +00003674
Evan Cheng14b32e12007-12-11 01:46:18 +00003675 MaskVec.push_back(DAG.getConstant((EltIdx % 4) + 4, MaskEVT));
Bill Wendlinge85dc492008-08-21 22:35:37 +00003676
Evan Cheng14b32e12007-12-11 01:46:18 +00003677 // If this element is in the right place after this shuffle, then
3678 // remember it.
3679 if ((int)(EltIdx / 4) == BestHighQuad)
3680 InOrder.set(i);
3681 }
3682 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003683
Evan Cheng14b32e12007-12-11 01:46:18 +00003684 if (AnyOutOrder) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003685 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00003686 MaskVT, &MaskVec[0], 8);
Scott Michelfdc40a02009-02-17 22:15:04 +00003687 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16,
Dale Johannesenace16102009-02-03 19:33:06 +00003688 NewV, NewV, Mask);
Evan Cheng14b32e12007-12-11 01:46:18 +00003689 }
3690 }
3691
3692 // The other elements are put in the right place using pextrw and pinsrw.
3693 for (unsigned i = 0; i != 8; ++i) {
3694 if (InOrder[i])
3695 continue;
Dan Gohman475871a2008-07-27 21:46:04 +00003696 SDValue Elt = MaskElts[i];
Bill Wendlingae0218c2008-08-21 22:36:36 +00003697 if (Elt.getOpcode() == ISD::UNDEF)
3698 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003699 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00003700 SDValue ExtOp = (EltIdx < 8)
Dale Johannesenace16102009-02-03 19:33:06 +00003701 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Evan Cheng14b32e12007-12-11 01:46:18 +00003702 DAG.getConstant(EltIdx, PtrVT))
Dale Johannesenace16102009-02-03 19:33:06 +00003703 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Evan Cheng14b32e12007-12-11 01:46:18 +00003704 DAG.getConstant(EltIdx - 8, PtrVT));
Dale Johannesenace16102009-02-03 19:33:06 +00003705 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Evan Cheng14b32e12007-12-11 01:46:18 +00003706 DAG.getConstant(i, PtrVT));
3707 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003708
Evan Cheng14b32e12007-12-11 01:46:18 +00003709 return NewV;
3710 }
3711
Bill Wendlinge85dc492008-08-21 22:35:37 +00003712 // PSHUF{H|L}W are not used. Lower into extracts and inserts but try to use as
3713 // few as possible. First, let's find out how many elements are already in the
3714 // right order.
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003715 unsigned V1InOrder = 0;
3716 unsigned V1FromV1 = 0;
3717 unsigned V2InOrder = 0;
3718 unsigned V2FromV2 = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00003719 SmallVector<SDValue, 8> V1Elts;
3720 SmallVector<SDValue, 8> V2Elts;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003721 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003722 SDValue Elt = MaskElts[i];
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003723 if (Elt.getOpcode() == ISD::UNDEF) {
Evan Cheng14b32e12007-12-11 01:46:18 +00003724 V1Elts.push_back(Elt);
3725 V2Elts.push_back(Elt);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003726 ++V1InOrder;
3727 ++V2InOrder;
Evan Cheng14b32e12007-12-11 01:46:18 +00003728 continue;
3729 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003730 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003731 if (EltIdx == i) {
3732 V1Elts.push_back(Elt);
3733 V2Elts.push_back(DAG.getConstant(i+8, MaskEVT));
3734 ++V1InOrder;
3735 } else if (EltIdx == i+8) {
3736 V1Elts.push_back(Elt);
3737 V2Elts.push_back(DAG.getConstant(i, MaskEVT));
3738 ++V2InOrder;
3739 } else if (EltIdx < 8) {
3740 V1Elts.push_back(Elt);
Mon P Wange91a0002009-01-28 23:11:14 +00003741 V2Elts.push_back(DAG.getConstant(EltIdx+8, MaskEVT));
Evan Cheng14b32e12007-12-11 01:46:18 +00003742 ++V1FromV1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003743 } else {
Mon P Wang62c75ea2008-12-23 04:03:27 +00003744 V1Elts.push_back(Elt);
Evan Cheng14b32e12007-12-11 01:46:18 +00003745 V2Elts.push_back(DAG.getConstant(EltIdx-8, MaskEVT));
3746 ++V2FromV2;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003747 }
3748 }
3749
3750 if (V2InOrder > V1InOrder) {
Dale Johannesenace16102009-02-03 19:33:06 +00003751 PermMask = CommuteVectorShuffleMask(PermMask, DAG, dl);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003752 std::swap(V1, V2);
3753 std::swap(V1Elts, V2Elts);
3754 std::swap(V1FromV1, V2FromV2);
3755 }
3756
Evan Cheng14b32e12007-12-11 01:46:18 +00003757 if ((V1FromV1 + V1InOrder) != 8) {
3758 // Some elements are from V2.
3759 if (V1FromV1) {
3760 // If there are elements that are from V1 but out of place,
3761 // then first sort them in place
Dan Gohman475871a2008-07-27 21:46:04 +00003762 SmallVector<SDValue, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00003763 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003764 SDValue Elt = V1Elts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003765 if (Elt.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00003766 MaskVec.push_back(DAG.getUNDEF(MaskEVT));
Evan Cheng14b32e12007-12-11 01:46:18 +00003767 continue;
3768 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003769 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003770 if (EltIdx >= 8)
Dale Johannesene8d72302009-02-06 23:05:02 +00003771 MaskVec.push_back(DAG.getUNDEF(MaskEVT));
Evan Cheng14b32e12007-12-11 01:46:18 +00003772 else
3773 MaskVec.push_back(DAG.getConstant(EltIdx, MaskEVT));
3774 }
Dale Johannesenace16102009-02-03 19:33:06 +00003775 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], 8);
3776 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, V1, V1, Mask);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003777 }
Evan Cheng14b32e12007-12-11 01:46:18 +00003778
3779 NewV = V1;
3780 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003781 SDValue Elt = V1Elts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003782 if (Elt.getOpcode() == ISD::UNDEF)
3783 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003784 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003785 if (EltIdx < 8)
3786 continue;
Dale Johannesenace16102009-02-03 19:33:06 +00003787 SDValue ExtOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Evan Cheng14b32e12007-12-11 01:46:18 +00003788 DAG.getConstant(EltIdx - 8, PtrVT));
Dale Johannesenace16102009-02-03 19:33:06 +00003789 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Evan Cheng14b32e12007-12-11 01:46:18 +00003790 DAG.getConstant(i, PtrVT));
3791 }
3792 return NewV;
3793 } else {
3794 // All elements are from V1.
3795 NewV = V1;
3796 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003797 SDValue Elt = V1Elts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003798 if (Elt.getOpcode() == ISD::UNDEF)
3799 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003800 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Dale Johannesenace16102009-02-03 19:33:06 +00003801 SDValue ExtOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Evan Cheng14b32e12007-12-11 01:46:18 +00003802 DAG.getConstant(EltIdx, PtrVT));
Dale Johannesenace16102009-02-03 19:33:06 +00003803 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Evan Cheng14b32e12007-12-11 01:46:18 +00003804 DAG.getConstant(i, PtrVT));
3805 }
3806 return NewV;
3807 }
3808}
3809
Evan Cheng7a831ce2007-12-15 03:00:47 +00003810/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
3811/// ones, or rewriting v4i32 / v2f32 as 2 wide ones if possible. This can be
3812/// done when every pair / quad of shuffle mask elements point to elements in
3813/// the right sequence. e.g.
Evan Cheng14b32e12007-12-11 01:46:18 +00003814/// vector_shuffle <>, <>, < 3, 4, | 10, 11, | 0, 1, | 14, 15>
3815static
Dan Gohman475871a2008-07-27 21:46:04 +00003816SDValue RewriteAsNarrowerShuffle(SDValue V1, SDValue V2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003817 MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00003818 SDValue PermMask, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003819 TargetLowering &TLI, DebugLoc dl) {
Evan Cheng14b32e12007-12-11 01:46:18 +00003820 unsigned NumElems = PermMask.getNumOperands();
Evan Cheng7a831ce2007-12-15 03:00:47 +00003821 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003822 MVT MaskVT = MVT::getIntVectorWithNumElements(NewWidth);
Duncan Sandsd038e042008-07-21 10:20:31 +00003823 MVT MaskEltVT = MaskVT.getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003824 MVT NewVT = MaskVT;
3825 switch (VT.getSimpleVT()) {
3826 default: assert(false && "Unexpected!");
Evan Cheng7a831ce2007-12-15 03:00:47 +00003827 case MVT::v4f32: NewVT = MVT::v2f64; break;
3828 case MVT::v4i32: NewVT = MVT::v2i64; break;
3829 case MVT::v8i16: NewVT = MVT::v4i32; break;
3830 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00003831 }
3832
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00003833 if (NewWidth == 2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003834 if (VT.isInteger())
Evan Cheng7a831ce2007-12-15 03:00:47 +00003835 NewVT = MVT::v2i64;
3836 else
3837 NewVT = MVT::v2f64;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00003838 }
Evan Cheng7a831ce2007-12-15 03:00:47 +00003839 unsigned Scale = NumElems / NewWidth;
Dan Gohman475871a2008-07-27 21:46:04 +00003840 SmallVector<SDValue, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00003841 for (unsigned i = 0; i < NumElems; i += Scale) {
3842 unsigned StartIdx = ~0U;
3843 for (unsigned j = 0; j < Scale; ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00003844 SDValue Elt = PermMask.getOperand(i+j);
Evan Cheng14b32e12007-12-11 01:46:18 +00003845 if (Elt.getOpcode() == ISD::UNDEF)
3846 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003847 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003848 if (StartIdx == ~0U)
3849 StartIdx = EltIdx - (EltIdx % Scale);
3850 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00003851 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003852 }
3853 if (StartIdx == ~0U)
Dale Johannesene8d72302009-02-06 23:05:02 +00003854 MaskVec.push_back(DAG.getUNDEF(MaskEltVT));
Evan Cheng14b32e12007-12-11 01:46:18 +00003855 else
Duncan Sandsd038e042008-07-21 10:20:31 +00003856 MaskVec.push_back(DAG.getConstant(StartIdx / Scale, MaskEltVT));
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003857 }
3858
Dale Johannesenace16102009-02-03 19:33:06 +00003859 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1);
3860 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2);
3861 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, NewVT, V1, V2,
3862 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Cheng7a831ce2007-12-15 03:00:47 +00003863 &MaskVec[0], MaskVec.size()));
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003864}
3865
Evan Chengd880b972008-05-09 21:53:03 +00003866/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00003867///
Dan Gohman475871a2008-07-27 21:46:04 +00003868static SDValue getVZextMovL(MVT VT, MVT OpVT,
3869 SDValue SrcOp, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003870 const X86Subtarget *Subtarget, DebugLoc dl) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00003871 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
3872 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00003873 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00003874 LD = dyn_cast<LoadSDNode>(SrcOp);
3875 if (!LD) {
3876 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
3877 // instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003878 MVT EVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Evan Cheng7e2ff772008-05-08 00:57:18 +00003879 if ((EVT != MVT::i64 || Subtarget->is64Bit()) &&
3880 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
3881 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
3882 SrcOp.getOperand(0).getOperand(0).getValueType() == EVT) {
3883 // PR2108
3884 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Dale Johannesenace16102009-02-03 19:33:06 +00003885 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3886 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
3887 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
3888 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00003889 SrcOp.getOperand(0)
3890 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00003891 }
3892 }
3893 }
3894
Dale Johannesenace16102009-02-03 19:33:06 +00003895 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3896 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00003897 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00003898 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00003899}
3900
Evan Chengace3c172008-07-22 21:13:36 +00003901/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
3902/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00003903static SDValue
3904LowerVECTOR_SHUFFLE_4wide(SDValue V1, SDValue V2,
Dale Johannesenace16102009-02-03 19:33:06 +00003905 SDValue PermMask, MVT VT, SelectionDAG &DAG,
3906 DebugLoc dl) {
Evan Chengace3c172008-07-22 21:13:36 +00003907 MVT MaskVT = PermMask.getValueType();
3908 MVT MaskEVT = MaskVT.getVectorElementType();
3909 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00003910 Locs.resize(4);
Dale Johannesene8d72302009-02-06 23:05:02 +00003911 SmallVector<SDValue, 8> Mask1(4, DAG.getUNDEF(MaskEVT));
Evan Chengace3c172008-07-22 21:13:36 +00003912 unsigned NumHi = 0;
3913 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00003914 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003915 SDValue Elt = PermMask.getOperand(i);
Evan Chengace3c172008-07-22 21:13:36 +00003916 if (Elt.getOpcode() == ISD::UNDEF) {
3917 Locs[i] = std::make_pair(-1, -1);
3918 } else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003919 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohmand0859942008-08-04 23:09:15 +00003920 assert(Val < 8 && "Invalid VECTOR_SHUFFLE index!");
Evan Chengace3c172008-07-22 21:13:36 +00003921 if (Val < 4) {
3922 Locs[i] = std::make_pair(0, NumLo);
3923 Mask1[NumLo] = Elt;
3924 NumLo++;
3925 } else {
3926 Locs[i] = std::make_pair(1, NumHi);
3927 if (2+NumHi < 4)
3928 Mask1[2+NumHi] = Elt;
3929 NumHi++;
3930 }
3931 }
3932 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003933
Evan Chengace3c172008-07-22 21:13:36 +00003934 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003935 // If no more than two elements come from either vector. This can be
3936 // implemented with two shuffles. First shuffle gather the elements.
3937 // The second shuffle, which takes the first shuffle as both of its
3938 // vector operands, put the elements into the right order.
Dale Johannesenace16102009-02-03 19:33:06 +00003939 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
3940 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengace3c172008-07-22 21:13:36 +00003941 &Mask1[0], Mask1.size()));
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003942
Dale Johannesene8d72302009-02-06 23:05:02 +00003943 SmallVector<SDValue, 8> Mask2(4, DAG.getUNDEF(MaskEVT));
Evan Chengace3c172008-07-22 21:13:36 +00003944 for (unsigned i = 0; i != 4; ++i) {
3945 if (Locs[i].first == -1)
3946 continue;
3947 else {
3948 unsigned Idx = (i < 2) ? 0 : 4;
3949 Idx += Locs[i].first * 2 + Locs[i].second;
3950 Mask2[i] = DAG.getConstant(Idx, MaskEVT);
3951 }
3952 }
3953
Dale Johannesenace16102009-02-03 19:33:06 +00003954 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V1,
3955 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengace3c172008-07-22 21:13:36 +00003956 &Mask2[0], Mask2.size()));
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003957 } else if (NumLo == 3 || NumHi == 3) {
3958 // Otherwise, we must have three elements from one vector, call it X, and
3959 // one element from the other, call it Y. First, use a shufps to build an
3960 // intermediate vector with the one element from Y and the element from X
3961 // that will be in the same half in the final destination (the indexes don't
3962 // matter). Then, use a shufps to build the final vector, taking the half
3963 // containing the element from Y from the intermediate, and the other half
3964 // from X.
3965 if (NumHi == 3) {
3966 // Normalize it so the 3 elements come from V1.
Dale Johannesenace16102009-02-03 19:33:06 +00003967 PermMask = CommuteVectorShuffleMask(PermMask, DAG, dl);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003968 std::swap(V1, V2);
3969 }
3970
3971 // Find the element from V2.
3972 unsigned HiIndex;
3973 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Dan Gohman475871a2008-07-27 21:46:04 +00003974 SDValue Elt = PermMask.getOperand(HiIndex);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003975 if (Elt.getOpcode() == ISD::UNDEF)
3976 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003977 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003978 if (Val >= 4)
3979 break;
3980 }
3981
3982 Mask1[0] = PermMask.getOperand(HiIndex);
Dale Johannesene8d72302009-02-06 23:05:02 +00003983 Mask1[1] = DAG.getUNDEF(MaskEVT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003984 Mask1[2] = PermMask.getOperand(HiIndex^1);
Dale Johannesene8d72302009-02-06 23:05:02 +00003985 Mask1[3] = DAG.getUNDEF(MaskEVT);
Dale Johannesenace16102009-02-03 19:33:06 +00003986 V2 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Dale Johannesened2eee62009-02-06 01:31:28 +00003987 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &Mask1[0], 4));
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003988
3989 if (HiIndex >= 2) {
3990 Mask1[0] = PermMask.getOperand(0);
3991 Mask1[1] = PermMask.getOperand(1);
3992 Mask1[2] = DAG.getConstant(HiIndex & 1 ? 6 : 4, MaskEVT);
3993 Mask1[3] = DAG.getConstant(HiIndex & 1 ? 4 : 6, MaskEVT);
Dale Johannesenace16102009-02-03 19:33:06 +00003994 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Scott Michelfdc40a02009-02-17 22:15:04 +00003995 DAG.getNode(ISD::BUILD_VECTOR, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00003996 MaskVT, &Mask1[0], 4));
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003997 } else {
3998 Mask1[0] = DAG.getConstant(HiIndex & 1 ? 2 : 0, MaskEVT);
3999 Mask1[1] = DAG.getConstant(HiIndex & 1 ? 0 : 2, MaskEVT);
4000 Mask1[2] = PermMask.getOperand(2);
4001 Mask1[3] = PermMask.getOperand(3);
4002 if (Mask1[2].getOpcode() != ISD::UNDEF)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004003 Mask1[2] =
4004 DAG.getConstant(cast<ConstantSDNode>(Mask1[2])->getZExtValue()+4,
4005 MaskEVT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004006 if (Mask1[3].getOpcode() != ISD::UNDEF)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004007 Mask1[3] =
4008 DAG.getConstant(cast<ConstantSDNode>(Mask1[3])->getZExtValue()+4,
4009 MaskEVT);
Dale Johannesenace16102009-02-03 19:33:06 +00004010 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V2, V1,
Scott Michelfdc40a02009-02-17 22:15:04 +00004011 DAG.getNode(ISD::BUILD_VECTOR, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004012 MaskVT, &Mask1[0], 4));
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004013 }
Evan Chengace3c172008-07-22 21:13:36 +00004014 }
4015
4016 // Break it into (shuffle shuffle_hi, shuffle_lo).
4017 Locs.clear();
Dale Johannesene8d72302009-02-06 23:05:02 +00004018 SmallVector<SDValue,8> LoMask(4, DAG.getUNDEF(MaskEVT));
4019 SmallVector<SDValue,8> HiMask(4, DAG.getUNDEF(MaskEVT));
Dan Gohman475871a2008-07-27 21:46:04 +00004020 SmallVector<SDValue,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00004021 unsigned MaskIdx = 0;
4022 unsigned LoIdx = 0;
4023 unsigned HiIdx = 2;
4024 for (unsigned i = 0; i != 4; ++i) {
4025 if (i == 2) {
4026 MaskPtr = &HiMask;
4027 MaskIdx = 1;
4028 LoIdx = 0;
4029 HiIdx = 2;
4030 }
Dan Gohman475871a2008-07-27 21:46:04 +00004031 SDValue Elt = PermMask.getOperand(i);
Evan Chengace3c172008-07-22 21:13:36 +00004032 if (Elt.getOpcode() == ISD::UNDEF) {
4033 Locs[i] = std::make_pair(-1, -1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004034 } else if (cast<ConstantSDNode>(Elt)->getZExtValue() < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00004035 Locs[i] = std::make_pair(MaskIdx, LoIdx);
4036 (*MaskPtr)[LoIdx] = Elt;
4037 LoIdx++;
4038 } else {
4039 Locs[i] = std::make_pair(MaskIdx, HiIdx);
4040 (*MaskPtr)[HiIdx] = Elt;
4041 HiIdx++;
4042 }
4043 }
4044
Dale Johannesenace16102009-02-03 19:33:06 +00004045 SDValue LoShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
4046 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengace3c172008-07-22 21:13:36 +00004047 &LoMask[0], LoMask.size()));
Dale Johannesenace16102009-02-03 19:33:06 +00004048 SDValue HiShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
4049 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengace3c172008-07-22 21:13:36 +00004050 &HiMask[0], HiMask.size()));
Dan Gohman475871a2008-07-27 21:46:04 +00004051 SmallVector<SDValue, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00004052 for (unsigned i = 0; i != 4; ++i) {
4053 if (Locs[i].first == -1) {
Dale Johannesene8d72302009-02-06 23:05:02 +00004054 MaskOps.push_back(DAG.getUNDEF(MaskEVT));
Evan Chengace3c172008-07-22 21:13:36 +00004055 } else {
4056 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
4057 MaskOps.push_back(DAG.getConstant(Idx, MaskEVT));
4058 }
4059 }
Dale Johannesenace16102009-02-03 19:33:06 +00004060 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, LoShuffle, HiShuffle,
4061 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengace3c172008-07-22 21:13:36 +00004062 &MaskOps[0], MaskOps.size()));
4063}
4064
Dan Gohman475871a2008-07-27 21:46:04 +00004065SDValue
4066X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
4067 SDValue V1 = Op.getOperand(0);
4068 SDValue V2 = Op.getOperand(1);
4069 SDValue PermMask = Op.getOperand(2);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004070 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004071 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004072 unsigned NumElems = PermMask.getNumOperands();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004073 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004074 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
4075 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00004076 bool V1IsSplat = false;
4077 bool V2IsSplat = false;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004078
Gabor Greifba36cb52008-08-28 21:40:38 +00004079 if (isUndefShuffle(Op.getNode()))
Dale Johannesene8d72302009-02-06 23:05:02 +00004080 return DAG.getUNDEF(VT);
Evan Cheng8cf723d2006-09-08 01:50:06 +00004081
Gabor Greifba36cb52008-08-28 21:40:38 +00004082 if (isZeroShuffle(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004083 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004084
Gabor Greifba36cb52008-08-28 21:40:38 +00004085 if (isIdentityMask(PermMask.getNode()))
Evan Cheng49892af2007-06-19 00:02:56 +00004086 return V1;
Gabor Greifba36cb52008-08-28 21:40:38 +00004087 else if (isIdentityMask(PermMask.getNode(), true))
Evan Cheng49892af2007-06-19 00:02:56 +00004088 return V2;
4089
Evan Cheng4dcc8a32008-09-25 23:35:16 +00004090 // Canonicalize movddup shuffles.
4091 if (V2IsUndef && Subtarget->hasSSE2() &&
Evan Cheng882cdfd2008-10-06 21:13:08 +00004092 VT.getSizeInBits() == 128 &&
Evan Cheng4dcc8a32008-09-25 23:35:16 +00004093 X86::isMOVDDUPMask(PermMask.getNode()))
4094 return CanonicalizeMovddup(Op, V1, PermMask, DAG, Subtarget->hasSSE3());
4095
Gabor Greifba36cb52008-08-28 21:40:38 +00004096 if (isSplatMask(PermMask.getNode())) {
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004097 if (isMMX || NumElems < 4) return Op;
4098 // Promote it to a v4{if}32 splat.
4099 return PromoteSplat(Op, DAG, Subtarget->hasSSE2());
Evan Cheng0db9fe62006-04-25 20:13:52 +00004100 }
4101
Evan Cheng7a831ce2007-12-15 03:00:47 +00004102 // If the shuffle can be profitably rewritten as a narrower shuffle, then
4103 // do it!
4104 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
Dale Johannesenace16102009-02-03 19:33:06 +00004105 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask, DAG,
4106 *this, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00004107 if (NewOp.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004108 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004109 LowerVECTOR_SHUFFLE(NewOp, DAG));
Evan Cheng7a831ce2007-12-15 03:00:47 +00004110 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
4111 // FIXME: Figure out a cleaner way to do this.
4112 // Try to make use of movq to zero out the top part.
Gabor Greifba36cb52008-08-28 21:40:38 +00004113 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004114 SDValue NewOp = RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Dale Johannesenace16102009-02-03 19:33:06 +00004115 DAG, *this, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00004116 if (NewOp.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00004117 SDValue NewV1 = NewOp.getOperand(0);
4118 SDValue NewV2 = NewOp.getOperand(1);
4119 SDValue NewMask = NewOp.getOperand(2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004120 if (isCommutedMOVL(NewMask.getNode(), true, false)) {
Evan Cheng7a831ce2007-12-15 03:00:47 +00004121 NewOp = CommuteVectorShuffle(NewOp, NewV1, NewV2, NewMask, DAG);
Dale Johannesenace16102009-02-03 19:33:06 +00004122 return getVZextMovL(VT, NewOp.getValueType(), NewV2, DAG, Subtarget,
4123 dl);
Evan Cheng7a831ce2007-12-15 03:00:47 +00004124 }
4125 }
Gabor Greifba36cb52008-08-28 21:40:38 +00004126 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004127 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Dale Johannesenace16102009-02-03 19:33:06 +00004128 DAG, *this, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00004129 if (NewOp.getNode() && X86::isMOVLMask(NewOp.getOperand(2).getNode()))
Evan Chengd880b972008-05-09 21:53:03 +00004130 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
Dale Johannesenace16102009-02-03 19:33:06 +00004131 DAG, Subtarget, dl);
Evan Cheng7a831ce2007-12-15 03:00:47 +00004132 }
4133 }
4134
Evan Chengf26ffe92008-05-29 08:22:04 +00004135 // Check if this can be converted into a logical shift.
4136 bool isLeft = false;
4137 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00004138 SDValue ShVal;
Evan Chengf26ffe92008-05-29 08:22:04 +00004139 bool isShift = isVectorShift(Op, PermMask, DAG, isLeft, ShVal, ShAmt);
4140 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004141 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00004142 // v_set0 + movlhps or movhlps, etc.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004143 MVT EVT = VT.getVectorElementType();
4144 ShAmt *= EVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00004145 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004146 }
4147
Gabor Greifba36cb52008-08-28 21:40:38 +00004148 if (X86::isMOVLMask(PermMask.getNode())) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004149 if (V1IsUndef)
4150 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00004151 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004152 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Nate Begemanfb8ead02008-07-25 19:05:58 +00004153 if (!isMMX)
4154 return Op;
Evan Cheng7e2ff772008-05-08 00:57:18 +00004155 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004156
Gabor Greifba36cb52008-08-28 21:40:38 +00004157 if (!isMMX && (X86::isMOVSHDUPMask(PermMask.getNode()) ||
4158 X86::isMOVSLDUPMask(PermMask.getNode()) ||
4159 X86::isMOVHLPSMask(PermMask.getNode()) ||
4160 X86::isMOVHPMask(PermMask.getNode()) ||
4161 X86::isMOVLPMask(PermMask.getNode())))
Evan Cheng9bbbb982006-10-25 20:48:19 +00004162 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004163
Gabor Greifba36cb52008-08-28 21:40:38 +00004164 if (ShouldXformToMOVHLPS(PermMask.getNode()) ||
4165 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), PermMask.getNode()))
Evan Cheng9eca5e82006-10-25 21:49:50 +00004166 return CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004167
Evan Chengf26ffe92008-05-29 08:22:04 +00004168 if (isShift) {
4169 // No better options. Use a vshl / vsrl.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004170 MVT EVT = VT.getVectorElementType();
4171 ShAmt *= EVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00004172 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004173 }
4174
Evan Cheng9eca5e82006-10-25 21:49:50 +00004175 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00004176 // FIXME: This should also accept a bitcast of a splat? Be careful, not
4177 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00004178 V1IsSplat = isSplatVector(V1.getNode());
4179 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00004180
Chris Lattner8a594482007-11-25 00:24:49 +00004181 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00004182 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Evan Cheng9eca5e82006-10-25 21:49:50 +00004183 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Evan Cheng9bbbb982006-10-25 20:48:19 +00004184 std::swap(V1IsSplat, V2IsSplat);
4185 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00004186 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00004187 }
4188
Evan Cheng7a831ce2007-12-15 03:00:47 +00004189 // FIXME: Figure out a cleaner way to do this.
Gabor Greifba36cb52008-08-28 21:40:38 +00004190 if (isCommutedMOVL(PermMask.getNode(), V2IsSplat, V2IsUndef)) {
Evan Cheng9bbbb982006-10-25 20:48:19 +00004191 if (V2IsUndef) return V1;
Evan Cheng9eca5e82006-10-25 21:49:50 +00004192 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Evan Cheng9bbbb982006-10-25 20:48:19 +00004193 if (V2IsSplat) {
4194 // V2 is a splat, so the mask may be malformed. That is, it may point
4195 // to any V2 element. The instruction selectior won't like this. Get
4196 // a corrected mask and commute to form a proper MOVS{S|D}.
Dale Johannesenace16102009-02-03 19:33:06 +00004197 SDValue NewMask = getMOVLMask(NumElems, DAG, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00004198 if (NewMask.getNode() != PermMask.getNode())
Dale Johannesenace16102009-02-03 19:33:06 +00004199 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004200 }
Evan Cheng9bbbb982006-10-25 20:48:19 +00004201 return Op;
Evan Chengd9b8e402006-10-16 06:36:00 +00004202 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004203
Gabor Greifba36cb52008-08-28 21:40:38 +00004204 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4205 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4206 X86::isUNPCKLMask(PermMask.getNode()) ||
4207 X86::isUNPCKHMask(PermMask.getNode()))
Evan Chengd9b8e402006-10-16 06:36:00 +00004208 return Op;
Evan Chenge1113032006-10-04 18:33:38 +00004209
Evan Cheng9bbbb982006-10-25 20:48:19 +00004210 if (V2IsSplat) {
4211 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004212 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00004213 // new vector_shuffle with the corrected mask.
Dan Gohman475871a2008-07-27 21:46:04 +00004214 SDValue NewMask = NormalizeMask(PermMask, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004215 if (NewMask.getNode() != PermMask.getNode()) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00004216 if (X86::isUNPCKLMask(NewMask.getNode(), true)) {
Dale Johannesenace16102009-02-03 19:33:06 +00004217 SDValue NewMask = getUnpacklMask(NumElems, DAG, dl);
4218 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Mon P Wang7bcaefa2009-02-04 01:16:59 +00004219 } else if (X86::isUNPCKHMask(NewMask.getNode(), true)) {
Dale Johannesenace16102009-02-03 19:33:06 +00004220 SDValue NewMask = getUnpackhMask(NumElems, DAG, dl);
4221 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004222 }
4223 }
4224 }
4225
4226 // Normalize the node to match x86 shuffle ops if needed
Gabor Greifba36cb52008-08-28 21:40:38 +00004227 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(PermMask.getNode()))
Evan Cheng9eca5e82006-10-25 21:49:50 +00004228 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4229
4230 if (Commuted) {
4231 // Commute is back and try unpck* again.
4232 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004233 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4234 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4235 X86::isUNPCKLMask(PermMask.getNode()) ||
4236 X86::isUNPCKHMask(PermMask.getNode()))
Evan Cheng9eca5e82006-10-25 21:49:50 +00004237 return Op;
4238 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004239
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004240 // Try PSHUF* first, then SHUFP*.
4241 // MMX doesn't have PSHUFD but it does have PSHUFW. While it's theoretically
4242 // possible to shuffle a v2i32 using PSHUFW, that's not yet implemented.
Gabor Greifba36cb52008-08-28 21:40:38 +00004243 if (isMMX && NumElems == 4 && X86::isPSHUFDMask(PermMask.getNode())) {
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004244 if (V2.getOpcode() != ISD::UNDEF)
Dale Johannesenace16102009-02-03 19:33:06 +00004245 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1,
Dale Johannesene8d72302009-02-06 23:05:02 +00004246 DAG.getUNDEF(VT), PermMask);
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004247 return Op;
4248 }
4249
4250 if (!isMMX) {
4251 if (Subtarget->hasSSE2() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004252 (X86::isPSHUFDMask(PermMask.getNode()) ||
4253 X86::isPSHUFHWMask(PermMask.getNode()) ||
4254 X86::isPSHUFLWMask(PermMask.getNode()))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004255 MVT RVT = VT;
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004256 if (VT == MVT::v4f32) {
4257 RVT = MVT::v4i32;
Dale Johannesenace16102009-02-03 19:33:06 +00004258 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, RVT,
4259 DAG.getNode(ISD::BIT_CONVERT, dl, RVT, V1),
Dale Johannesene8d72302009-02-06 23:05:02 +00004260 DAG.getUNDEF(RVT), PermMask);
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004261 } else if (V2.getOpcode() != ISD::UNDEF)
Dale Johannesenace16102009-02-03 19:33:06 +00004262 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, RVT, V1,
Dale Johannesene8d72302009-02-06 23:05:02 +00004263 DAG.getUNDEF(RVT), PermMask);
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004264 if (RVT != VT)
Dale Johannesenace16102009-02-03 19:33:06 +00004265 Op = DAG.getNode(ISD::BIT_CONVERT, dl, VT, Op);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004266 return Op;
4267 }
4268
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004269 // Binary or unary shufps.
Gabor Greifba36cb52008-08-28 21:40:38 +00004270 if (X86::isSHUFPMask(PermMask.getNode()) ||
4271 (V2.getOpcode() == ISD::UNDEF && X86::isPSHUFDMask(PermMask.getNode())))
Evan Cheng0db9fe62006-04-25 20:13:52 +00004272 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004273 }
4274
Evan Cheng14b32e12007-12-11 01:46:18 +00004275 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
4276 if (VT == MVT::v8i16) {
Dale Johannesenace16102009-02-03 19:33:06 +00004277 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(V1, V2, PermMask, DAG, *this, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00004278 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00004279 return NewOp;
4280 }
4281
Evan Chengace3c172008-07-22 21:13:36 +00004282 // Handle all 4 wide cases with a number of shuffles except for MMX.
4283 if (NumElems == 4 && !isMMX)
Dale Johannesenace16102009-02-03 19:33:06 +00004284 return LowerVECTOR_SHUFFLE_4wide(V1, V2, PermMask, VT, DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004285
Dan Gohman475871a2008-07-27 21:46:04 +00004286 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004287}
4288
Dan Gohman475871a2008-07-27 21:46:04 +00004289SDValue
4290X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004291 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004292 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004293 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004294 if (VT.getSizeInBits() == 8) {
Dale Johannesenace16102009-02-03 19:33:06 +00004295 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004296 Op.getOperand(0), Op.getOperand(1));
Dale Johannesenace16102009-02-03 19:33:06 +00004297 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004298 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00004299 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004300 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00004301 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
4302 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
4303 if (Idx == 0)
Dale Johannesenace16102009-02-03 19:33:06 +00004304 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4305 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
4306 DAG.getNode(ISD::BIT_CONVERT, dl,
4307 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00004308 Op.getOperand(0)),
4309 Op.getOperand(1)));
Dale Johannesenace16102009-02-03 19:33:06 +00004310 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004311 Op.getOperand(0), Op.getOperand(1));
Dale Johannesenace16102009-02-03 19:33:06 +00004312 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004313 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00004314 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Evan Cheng62a3f152008-03-24 21:52:23 +00004315 } else if (VT == MVT::f32) {
4316 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
4317 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00004318 // result has a single use which is a store or a bitcast to i32. And in
4319 // the case of a store, it's not worth it if the index is a constant 0,
4320 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00004321 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00004322 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00004323 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00004324 if ((User->getOpcode() != ISD::STORE ||
4325 (isa<ConstantSDNode>(Op.getOperand(1)) &&
4326 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman171c11e2008-04-16 02:32:24 +00004327 (User->getOpcode() != ISD::BIT_CONVERT ||
4328 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00004329 return SDValue();
Dale Johannesenace16102009-02-03 19:33:06 +00004330 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michelfdc40a02009-02-17 22:15:04 +00004331 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00004332 Op.getOperand(0)),
4333 Op.getOperand(1));
4334 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract);
Mon P Wangf0fcdd82009-01-15 21:10:20 +00004335 } else if (VT == MVT::i32) {
4336 // ExtractPS works with constant index.
4337 if (isa<ConstantSDNode>(Op.getOperand(1)))
4338 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00004339 }
Dan Gohman475871a2008-07-27 21:46:04 +00004340 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004341}
4342
4343
Dan Gohman475871a2008-07-27 21:46:04 +00004344SDValue
4345X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004346 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00004347 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004348
Evan Cheng62a3f152008-03-24 21:52:23 +00004349 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00004350 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004351 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00004352 return Res;
4353 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00004354
Duncan Sands83ec4b62008-06-06 12:08:01 +00004355 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004356 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004357 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004358 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004359 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004360 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004361 if (Idx == 0)
Dale Johannesenace16102009-02-03 19:33:06 +00004362 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4363 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michelfdc40a02009-02-17 22:15:04 +00004364 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004365 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00004366 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004367 // Transform it so it match pextrw which produces a 32-bit result.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004368 MVT EVT = (MVT::SimpleValueType)(VT.getSimpleVT()+1);
Dale Johannesenace16102009-02-03 19:33:06 +00004369 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00004370 Op.getOperand(0), Op.getOperand(1));
Dale Johannesenace16102009-02-03 19:33:06 +00004371 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00004372 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00004373 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004374 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004375 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004376 if (Idx == 0)
4377 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004378 // SHUFPS the element to the lowest double word, then movss.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004379 MVT MaskVT = MVT::getIntVectorWithNumElements(4);
Dan Gohman475871a2008-07-27 21:46:04 +00004380 SmallVector<SDValue, 8> IdxVec;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004381 IdxVec.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004382 push_back(DAG.getConstant(Idx, MaskVT.getVectorElementType()));
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004383 IdxVec.
Dale Johannesene8d72302009-02-06 23:05:02 +00004384 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004385 IdxVec.
Dale Johannesene8d72302009-02-06 23:05:02 +00004386 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004387 IdxVec.
Dale Johannesene8d72302009-02-06 23:05:02 +00004388 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Dale Johannesenace16102009-02-03 19:33:06 +00004389 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Chris Lattnere2199452006-08-11 17:38:39 +00004390 &IdxVec[0], IdxVec.size());
Dan Gohman475871a2008-07-27 21:46:04 +00004391 SDValue Vec = Op.getOperand(0);
Dale Johannesenace16102009-02-03 19:33:06 +00004392 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Vec.getValueType(),
Dale Johannesene8d72302009-02-06 23:05:02 +00004393 Vec, DAG.getUNDEF(Vec.getValueType()), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00004394 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00004395 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004396 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00004397 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
4398 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
4399 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004400 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004401 if (Idx == 0)
4402 return Op;
4403
4404 // UNPCKHPD the element to the lowest double word, then movsd.
4405 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
4406 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Duncan Sandsd038e042008-07-21 10:20:31 +00004407 MVT MaskVT = MVT::getIntVectorWithNumElements(2);
Dan Gohman475871a2008-07-27 21:46:04 +00004408 SmallVector<SDValue, 8> IdxVec;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004409 IdxVec.push_back(DAG.getConstant(1, MaskVT.getVectorElementType()));
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004410 IdxVec.
Dale Johannesene8d72302009-02-06 23:05:02 +00004411 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Dale Johannesenace16102009-02-03 19:33:06 +00004412 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Chris Lattnere2199452006-08-11 17:38:39 +00004413 &IdxVec[0], IdxVec.size());
Dan Gohman475871a2008-07-27 21:46:04 +00004414 SDValue Vec = Op.getOperand(0);
Dale Johannesenace16102009-02-03 19:33:06 +00004415 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Vec.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00004416 Vec, DAG.getUNDEF(Vec.getValueType()),
Dale Johannesenace16102009-02-03 19:33:06 +00004417 Mask);
4418 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00004419 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004420 }
4421
Dan Gohman475871a2008-07-27 21:46:04 +00004422 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004423}
4424
Dan Gohman475871a2008-07-27 21:46:04 +00004425SDValue
4426X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG){
Duncan Sands83ec4b62008-06-06 12:08:01 +00004427 MVT VT = Op.getValueType();
4428 MVT EVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004429 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004430
Dan Gohman475871a2008-07-27 21:46:04 +00004431 SDValue N0 = Op.getOperand(0);
4432 SDValue N1 = Op.getOperand(1);
4433 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00004434
Dan Gohmanef521f12008-08-14 22:53:18 +00004435 if ((EVT.getSizeInBits() == 8 || EVT.getSizeInBits() == 16) &&
4436 isa<ConstantSDNode>(N2)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004437 unsigned Opc = (EVT.getSizeInBits() == 8) ? X86ISD::PINSRB
Nate Begeman14d12ca2008-02-11 04:19:36 +00004438 : X86ISD::PINSRW;
4439 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
4440 // argument.
4441 if (N1.getValueType() != MVT::i32)
Dale Johannesenace16102009-02-03 19:33:06 +00004442 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Nate Begeman14d12ca2008-02-11 04:19:36 +00004443 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004444 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00004445 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohmanc0573b12008-08-14 22:43:26 +00004446 } else if (EVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00004447 // Bits [7:6] of the constant are the source select. This will always be
4448 // zero here. The DAG Combiner may combine an extract_elt index into these
4449 // bits. For example (insert (extract, 3), 2) could be matched by putting
4450 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00004451 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00004452 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00004453 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00004454 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004455 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Dale Johannesenace16102009-02-03 19:33:06 +00004456 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Mon P Wangf0fcdd82009-01-15 21:10:20 +00004457 } else if (EVT == MVT::i32) {
4458 // InsertPS works with constant index.
4459 if (isa<ConstantSDNode>(N2))
4460 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00004461 }
Dan Gohman475871a2008-07-27 21:46:04 +00004462 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004463}
4464
Dan Gohman475871a2008-07-27 21:46:04 +00004465SDValue
4466X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004467 MVT VT = Op.getValueType();
4468 MVT EVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004469
4470 if (Subtarget->hasSSE41())
4471 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
4472
Evan Cheng794405e2007-12-12 07:55:34 +00004473 if (EVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00004474 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00004475
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004476 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004477 SDValue N0 = Op.getOperand(0);
4478 SDValue N1 = Op.getOperand(1);
4479 SDValue N2 = Op.getOperand(2);
Evan Cheng794405e2007-12-12 07:55:34 +00004480
Duncan Sands83ec4b62008-06-06 12:08:01 +00004481 if (EVT.getSizeInBits() == 16) {
Evan Cheng794405e2007-12-12 07:55:34 +00004482 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
4483 // as its second argument.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004484 if (N1.getValueType() != MVT::i32)
Dale Johannesenace16102009-02-03 19:33:06 +00004485 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004486 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004487 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00004488 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004489 }
Dan Gohman475871a2008-07-27 21:46:04 +00004490 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004491}
4492
Dan Gohman475871a2008-07-27 21:46:04 +00004493SDValue
4494X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004495 DebugLoc dl = Op.getDebugLoc();
Evan Cheng52672b82008-07-22 18:39:19 +00004496 if (Op.getValueType() == MVT::v2f32)
Dale Johannesenace16102009-02-03 19:33:06 +00004497 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f32,
4498 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i32,
4499 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32,
Evan Cheng52672b82008-07-22 18:39:19 +00004500 Op.getOperand(0))));
4501
Dale Johannesenace16102009-02-03 19:33:06 +00004502 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004503 MVT VT = MVT::v2i32;
4504 switch (Op.getValueType().getSimpleVT()) {
Evan Chengefec7512008-02-18 23:04:32 +00004505 default: break;
4506 case MVT::v16i8:
4507 case MVT::v8i16:
4508 VT = MVT::v4i32;
4509 break;
4510 }
Dale Johannesenace16102009-02-03 19:33:06 +00004511 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(),
4512 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004513}
4514
Bill Wendling056292f2008-09-16 21:48:12 +00004515// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
4516// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
4517// one of the above mentioned nodes. It has to be wrapped because otherwise
4518// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
4519// be used to form addressing mode. These wrapped nodes will be selected
4520// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00004521SDValue
4522X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004523 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dale Johannesende064702009-02-06 21:50:26 +00004524 // FIXME there isn't really any debug info here, should come from the parent
4525 DebugLoc dl = CP->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004526 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(),
Evan Chengd0ff02c2006-11-29 23:19:46 +00004527 getPointerTy(),
4528 CP->getAlignment());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004529 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004530 // With PIC, the address is actually $g + Offset.
4531 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4532 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesende064702009-02-06 21:50:26 +00004533 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004534 DAG.getNode(X86ISD::GlobalBaseReg,
4535 DebugLoc::getUnknownLoc(),
4536 getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004537 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004538 }
4539
4540 return Result;
4541}
4542
Dan Gohman475871a2008-07-27 21:46:04 +00004543SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00004544X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00004545 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00004546 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00004547 bool IsPic = getTargetMachine().getRelocationModel() == Reloc::PIC_;
4548 bool ExtraLoadRequired =
4549 Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false);
4550
4551 // Create the TargetGlobalAddress node, folding in the constant
4552 // offset if it is legal.
4553 SDValue Result;
Dan Gohman44013612008-10-21 03:38:42 +00004554 if (!IsPic && !ExtraLoadRequired && isInt32(Offset)) {
Dan Gohman6520e202008-10-18 02:06:02 +00004555 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
4556 Offset = 0;
4557 } else
4558 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), 0);
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004559 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00004560
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004561 // With PIC, the address is actually $g + Offset.
Dan Gohman6520e202008-10-18 02:06:02 +00004562 if (IsPic && !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00004563 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
4564 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004565 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004566 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004567
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00004568 // For Darwin & Mingw32, external and weak symbols are indirect, so we want to
4569 // load the value at address GV, not the value of GV itself. This means that
4570 // the GlobalAddress must be in the base or index register of the address, not
4571 // the GV offset field. Platform check is inside GVRequiresExtraLoad() call
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004572 // The same applies for external symbols during PIC codegen
Dan Gohman6520e202008-10-18 02:06:02 +00004573 if (ExtraLoadRequired)
Dale Johannesen33c960f2009-02-04 20:06:27 +00004574 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Dan Gohman3069b872008-02-07 18:41:25 +00004575 PseudoSourceValue::getGOT(), 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004576
Dan Gohman6520e202008-10-18 02:06:02 +00004577 // If there was a non-zero offset that we didn't fold, create an explicit
4578 // addition for it.
4579 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00004580 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00004581 DAG.getConstant(Offset, getPointerTy()));
4582
Evan Cheng0db9fe62006-04-25 20:13:52 +00004583 return Result;
4584}
4585
Evan Chengda43bcf2008-09-24 00:05:32 +00004586SDValue
4587X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) {
4588 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00004589 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004590 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00004591}
4592
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004593// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00004594static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004595LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004596 const MVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004597 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00004598 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
4599 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004600 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004601 DebugLoc::getUnknownLoc(),
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004602 PtrVT), InFlag);
4603 InFlag = Chain.getValue(1);
4604
4605 // emit leal symbol@TLSGD(,%ebx,1), %eax
4606 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00004607 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004608 GA->getValueType(0),
4609 GA->getOffset());
Dan Gohman475871a2008-07-27 21:46:04 +00004610 SDValue Ops[] = { Chain, TGA, InFlag };
Dale Johannesene8d72302009-02-06 23:05:02 +00004611 SDValue Result = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004612 InFlag = Result.getValue(2);
4613 Chain = Result.getValue(1);
4614
4615 // call ___tls_get_addr. This function receives its argument in
4616 // the register EAX.
Dale Johannesendd64c412009-02-04 00:33:20 +00004617 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Result, InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004618 InFlag = Chain.getValue(1);
4619
4620 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00004621 SDValue Ops1[] = { Chain,
Bill Wendling056292f2008-09-16 21:48:12 +00004622 DAG.getTargetExternalSymbol("___tls_get_addr",
4623 PtrVT),
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004624 DAG.getRegister(X86::EAX, PtrVT),
4625 DAG.getRegister(X86::EBX, PtrVT),
4626 InFlag };
Dale Johannesene8d72302009-02-06 23:05:02 +00004627 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops1, 5);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004628 InFlag = Chain.getValue(1);
4629
Dale Johannesendd64c412009-02-04 00:33:20 +00004630 return DAG.getCopyFromReg(Chain, dl, X86::EAX, PtrVT, InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004631}
4632
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004633// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00004634static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004635LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004636 const MVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004637 SDValue InFlag, Chain;
Dale Johannesendd64c412009-02-04 00:33:20 +00004638 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004639
4640 // emit leaq symbol@TLSGD(%rip), %rdi
4641 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00004642 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004643 GA->getValueType(0),
4644 GA->getOffset());
Dan Gohman475871a2008-07-27 21:46:04 +00004645 SDValue Ops[] = { DAG.getEntryNode(), TGA};
Dale Johannesene8d72302009-02-06 23:05:02 +00004646 SDValue Result = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004647 Chain = Result.getValue(1);
4648 InFlag = Result.getValue(2);
4649
Anton Korobeynikovd97f2952008-08-16 12:58:29 +00004650 // call __tls_get_addr. This function receives its argument in
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004651 // the register RDI.
Dale Johannesendd64c412009-02-04 00:33:20 +00004652 Chain = DAG.getCopyToReg(Chain, dl, X86::RDI, Result, InFlag);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004653 InFlag = Chain.getValue(1);
4654
4655 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00004656 SDValue Ops1[] = { Chain,
Bill Wendling056292f2008-09-16 21:48:12 +00004657 DAG.getTargetExternalSymbol("__tls_get_addr",
4658 PtrVT),
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004659 DAG.getRegister(X86::RDI, PtrVT),
4660 InFlag };
Dale Johannesene8d72302009-02-06 23:05:02 +00004661 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops1, 4);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004662 InFlag = Chain.getValue(1);
4663
Dale Johannesendd64c412009-02-04 00:33:20 +00004664 return DAG.getCopyFromReg(Chain, dl, X86::RAX, PtrVT, InFlag);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004665}
4666
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004667// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
4668// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00004669static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004670 const MVT PtrVT) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00004671 DebugLoc dl = GA->getDebugLoc();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004672 // Get the Thread Pointer
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004673 SDValue ThreadPointer = DAG.getNode(X86ISD::THREAD_POINTER,
4674 DebugLoc::getUnknownLoc(), PtrVT);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004675 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
4676 // exec)
Dan Gohman475871a2008-07-27 21:46:04 +00004677 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004678 GA->getValueType(0),
4679 GA->getOffset());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004680 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00004681
4682 if (GA->getGlobal()->isDeclaration()) // initial exec TLS model
Dale Johannesen33c960f2009-02-04 20:06:27 +00004683 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Dan Gohman3069b872008-02-07 18:41:25 +00004684 PseudoSourceValue::getGOT(), 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00004685
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004686 // The address of the thread local variable is the add of the thread
4687 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00004688 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004689}
4690
Dan Gohman475871a2008-07-27 21:46:04 +00004691SDValue
4692X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004693 // TODO: implement the "local dynamic" model
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004694 // TODO: implement the "initial exec"model for pic executables
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004695 assert(Subtarget->isTargetELF() &&
4696 "TLS not implemented for non-ELF targets");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004697 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
4698 // If the relocation model is PIC, use the "General Dynamic" TLS Model,
4699 // otherwise use the "Local Exec"TLS Model
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004700 if (Subtarget->is64Bit()) {
4701 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
4702 } else {
4703 if (getTargetMachine().getRelocationModel() == Reloc::PIC_)
4704 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
4705 else
4706 return LowerToTLSExecModel(GA, DAG, getPointerTy());
4707 }
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004708}
4709
Dan Gohman475871a2008-07-27 21:46:04 +00004710SDValue
4711X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) {
Dale Johannesende064702009-02-06 21:50:26 +00004712 // FIXME there isn't really any debug info here
4713 DebugLoc dl = Op.getDebugLoc();
Bill Wendling056292f2008-09-16 21:48:12 +00004714 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
4715 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004716 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004717 // With PIC, the address is actually $g + Offset.
4718 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4719 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesende064702009-02-06 21:50:26 +00004720 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Scott Michelfdc40a02009-02-17 22:15:04 +00004721 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004722 DebugLoc::getUnknownLoc(),
4723 getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004724 Result);
4725 }
4726
4727 return Result;
4728}
4729
Dan Gohman475871a2008-07-27 21:46:04 +00004730SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004731 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dale Johannesende064702009-02-06 21:50:26 +00004732 // FIXME there isn't really any debug into here
4733 DebugLoc dl = JT->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004734 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004735 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004736 // With PIC, the address is actually $g + Offset.
4737 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4738 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesende064702009-02-06 21:50:26 +00004739 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004740 DAG.getNode(X86ISD::GlobalBaseReg,
4741 DebugLoc::getUnknownLoc(),
4742 getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004743 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004744 }
4745
4746 return Result;
4747}
4748
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004749/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00004750/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohman475871a2008-07-27 21:46:04 +00004751SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) {
Dan Gohman4c1fa612008-03-03 22:22:09 +00004752 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00004753 MVT VT = Op.getValueType();
4754 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004755 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004756 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00004757 SDValue ShOpLo = Op.getOperand(0);
4758 SDValue ShOpHi = Op.getOperand(1);
4759 SDValue ShAmt = Op.getOperand(2);
4760 SDValue Tmp1 = isSRA ?
Scott Michelfdc40a02009-02-17 22:15:04 +00004761 DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Dale Johannesenace16102009-02-03 19:33:06 +00004762 DAG.getConstant(VTBits - 1, MVT::i8)) :
Dan Gohman4c1fa612008-03-03 22:22:09 +00004763 DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00004764
Dan Gohman475871a2008-07-27 21:46:04 +00004765 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004766 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00004767 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
4768 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004769 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00004770 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
4771 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004772 }
Evan Chenge3413162006-01-09 18:33:28 +00004773
Dale Johannesenace16102009-02-03 19:33:06 +00004774 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
Dan Gohman4c1fa612008-03-03 22:22:09 +00004775 DAG.getConstant(VTBits, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00004776 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, VT,
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004777 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00004778
Dan Gohman475871a2008-07-27 21:46:04 +00004779 SDValue Hi, Lo;
4780 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
4781 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
4782 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00004783
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004784 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00004785 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4786 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004787 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00004788 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4789 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004790 }
4791
Dan Gohman475871a2008-07-27 21:46:04 +00004792 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00004793 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004794}
Evan Chenga3195e82006-01-12 22:54:21 +00004795
Dan Gohman475871a2008-07-27 21:46:04 +00004796SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004797 MVT SrcVT = Op.getOperand(0).getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00004798 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00004799 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00004800
Chris Lattnerb09916b2008-02-27 05:57:41 +00004801 // These are really Legal; caller falls through into that case.
4802 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00004803 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00004804 if (SrcVT == MVT::i64 && Op.getValueType() != MVT::f80 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00004805 Subtarget->is64Bit())
Dan Gohman475871a2008-07-27 21:46:04 +00004806 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00004807
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004808 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004809 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004810 MachineFunction &MF = DAG.getMachineFunction();
4811 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
Dan Gohman475871a2008-07-27 21:46:04 +00004812 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00004813 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Dan Gohman69de1932008-02-06 22:27:42 +00004814 StackSlot,
Dan Gohmana54cf172008-07-11 22:44:52 +00004815 PseudoSourceValue::getFixedStack(SSFI), 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004816
4817 // Build the FILD
Chris Lattner5a88b832007-02-25 07:10:00 +00004818 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00004819 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004820 if (useSSE)
Chris Lattner5a88b832007-02-25 07:10:00 +00004821 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
4822 else
Dale Johannesen849f2142007-07-03 00:53:03 +00004823 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00004824 SmallVector<SDValue, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004825 Ops.push_back(Chain);
4826 Ops.push_back(StackSlot);
4827 Ops.push_back(DAG.getValueType(SrcVT));
Dale Johannesenace16102009-02-03 19:33:06 +00004828 SDValue Result = DAG.getNode(useSSE ? X86ISD::FILD_FLAG : X86ISD::FILD, dl,
Chris Lattnerb09916b2008-02-27 05:57:41 +00004829 Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00004830
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004831 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004832 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00004833 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004834
4835 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
4836 // shouldn't be necessary except that RFP cannot be live across
4837 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004838 MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004839 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
Dan Gohman475871a2008-07-27 21:46:04 +00004840 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Chris Lattner5a88b832007-02-25 07:10:00 +00004841 Tys = DAG.getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00004842 SmallVector<SDValue, 8> Ops;
Evan Chenga3195e82006-01-12 22:54:21 +00004843 Ops.push_back(Chain);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004844 Ops.push_back(Result);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004845 Ops.push_back(StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004846 Ops.push_back(DAG.getValueType(Op.getValueType()));
4847 Ops.push_back(InFlag);
Dale Johannesenace16102009-02-03 19:33:06 +00004848 Chain = DAG.getNode(X86ISD::FST, dl, Tys, &Ops[0], Ops.size());
4849 Result = DAG.getLoad(Op.getValueType(), dl, Chain, StackSlot,
Dan Gohmana54cf172008-07-11 22:44:52 +00004850 PseudoSourceValue::getFixedStack(SSFI), 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004851 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004852
Evan Cheng0db9fe62006-04-25 20:13:52 +00004853 return Result;
4854}
4855
Bill Wendling8b8a6362009-01-17 03:56:04 +00004856// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
4857SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op, SelectionDAG &DAG) {
4858 // This algorithm is not obvious. Here it is in C code, more or less:
4859 /*
4860 double uint64_to_double( uint32_t hi, uint32_t lo ) {
4861 static const __m128i exp = { 0x4330000045300000ULL, 0 };
4862 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00004863
Bill Wendling8b8a6362009-01-17 03:56:04 +00004864 // Copy ints to xmm registers.
4865 __m128i xh = _mm_cvtsi32_si128( hi );
4866 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00004867
Bill Wendling8b8a6362009-01-17 03:56:04 +00004868 // Combine into low half of a single xmm register.
4869 __m128i x = _mm_unpacklo_epi32( xh, xl );
4870 __m128d d;
4871 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00004872
Bill Wendling8b8a6362009-01-17 03:56:04 +00004873 // Merge in appropriate exponents to give the integer bits the right
4874 // magnitude.
4875 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00004876
Bill Wendling8b8a6362009-01-17 03:56:04 +00004877 // Subtract away the biases to deal with the IEEE-754 double precision
4878 // implicit 1.
4879 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00004880
Bill Wendling8b8a6362009-01-17 03:56:04 +00004881 // All conversions up to here are exact. The correctly rounded result is
4882 // calculated using the current rounding mode using the following
4883 // horizontal add.
4884 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
4885 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
4886 // store doesn't really need to be here (except
4887 // maybe to zero the other double)
4888 return sd;
4889 }
4890 */
Dale Johannesen040225f2008-10-21 23:07:49 +00004891
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004892 DebugLoc dl = Op.getDebugLoc();
Dale Johannesenace16102009-02-03 19:33:06 +00004893
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004894 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00004895 std::vector<Constant*> CV0;
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004896 CV0.push_back(ConstantInt::get(APInt(32, 0x45300000)));
4897 CV0.push_back(ConstantInt::get(APInt(32, 0x43300000)));
4898 CV0.push_back(ConstantInt::get(APInt(32, 0)));
4899 CV0.push_back(ConstantInt::get(APInt(32, 0)));
4900 Constant *C0 = ConstantVector::get(CV0);
4901 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 4);
4902
Bill Wendling8b8a6362009-01-17 03:56:04 +00004903 std::vector<Constant*> CV1;
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004904 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4530000000000000ULL))));
4905 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4330000000000000ULL))));
4906 Constant *C1 = ConstantVector::get(CV1);
4907 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 4);
4908
4909 SmallVector<SDValue, 4> MaskVec;
4910 MaskVec.push_back(DAG.getConstant(0, MVT::i32));
4911 MaskVec.push_back(DAG.getConstant(4, MVT::i32));
4912 MaskVec.push_back(DAG.getConstant(1, MVT::i32));
4913 MaskVec.push_back(DAG.getConstant(5, MVT::i32));
Scott Michelfdc40a02009-02-17 22:15:04 +00004914 SDValue UnpcklMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00004915 &MaskVec[0], MaskVec.size());
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004916 SmallVector<SDValue, 4> MaskVec2;
Duncan Sands6b6aeb32008-10-22 11:24:12 +00004917 MaskVec2.push_back(DAG.getConstant(1, MVT::i32));
4918 MaskVec2.push_back(DAG.getConstant(0, MVT::i32));
Scott Michelfdc40a02009-02-17 22:15:04 +00004919 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32,
Dale Johannesenace16102009-02-03 19:33:06 +00004920 &MaskVec2[0], MaskVec2.size());
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004921
Dale Johannesenace16102009-02-03 19:33:06 +00004922 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
4923 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00004924 Op.getOperand(0),
4925 DAG.getIntPtrConstant(1)));
Dale Johannesenace16102009-02-03 19:33:06 +00004926 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
4927 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00004928 Op.getOperand(0),
4929 DAG.getIntPtrConstant(0)));
Dale Johannesenace16102009-02-03 19:33:06 +00004930 SDValue Unpck1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v4i32,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004931 XR1, XR2, UnpcklMask);
Dale Johannesenace16102009-02-03 19:33:06 +00004932 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Bill Wendling8b8a6362009-01-17 03:56:04 +00004933 PseudoSourceValue::getConstantPool(), 0,
4934 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00004935 SDValue Unpck2 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v4i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00004936 Unpck1, CLod0, UnpcklMask);
Dale Johannesenace16102009-02-03 19:33:06 +00004937 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2);
4938 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Bill Wendling8b8a6362009-01-17 03:56:04 +00004939 PseudoSourceValue::getConstantPool(), 0,
4940 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00004941 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00004942
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004943 // Add the halves; easiest way is to swap them into another reg first.
Dale Johannesenace16102009-02-03 19:33:06 +00004944 SDValue Shuf = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2f64,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004945 Sub, Sub, ShufMask);
Dale Johannesenace16102009-02-03 19:33:06 +00004946 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
4947 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004948 DAG.getIntPtrConstant(0));
4949}
4950
Bill Wendling8b8a6362009-01-17 03:56:04 +00004951// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
4952SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004953 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00004954 // FP constant to bias correct the final result.
4955 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
4956 MVT::f64);
4957
4958 // Load the 32-bit value into an XMM register.
Dale Johannesenace16102009-02-03 19:33:06 +00004959 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
4960 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00004961 Op.getOperand(0),
4962 DAG.getIntPtrConstant(0)));
4963
Dale Johannesenace16102009-02-03 19:33:06 +00004964 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
4965 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00004966 DAG.getIntPtrConstant(0));
4967
4968 // Or the load with the bias.
Dale Johannesenace16102009-02-03 19:33:06 +00004969 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
4970 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
4971 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Cheng50c3dfe2009-01-19 08:19:57 +00004972 MVT::v2f64, Load)),
Dale Johannesenace16102009-02-03 19:33:06 +00004973 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
4974 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Cheng50c3dfe2009-01-19 08:19:57 +00004975 MVT::v2f64, Bias)));
Dale Johannesenace16102009-02-03 19:33:06 +00004976 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
4977 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00004978 DAG.getIntPtrConstant(0));
4979
4980 // Subtract the bias.
Dale Johannesenace16102009-02-03 19:33:06 +00004981 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00004982
4983 // Handle final rounding.
Bill Wendling030939c2009-01-17 07:40:19 +00004984 MVT DestVT = Op.getValueType();
4985
4986 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00004987 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00004988 DAG.getIntPtrConstant(0));
4989 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00004990 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00004991 }
4992
4993 // Handle final rounding.
4994 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00004995}
4996
4997SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Evan Chenga06ec9e2009-01-19 08:08:22 +00004998 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004999 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00005000
Evan Chenga06ec9e2009-01-19 08:08:22 +00005001 // Now not UINT_TO_FP is legal (it's marked custom), dag combiner won't
5002 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
5003 // the optimization here.
5004 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00005005 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00005006
5007 MVT SrcVT = N0.getValueType();
Bill Wendling8b8a6362009-01-17 03:56:04 +00005008 if (SrcVT == MVT::i64) {
5009 // We only handle SSE2 f64 target here; caller can handle the rest.
5010 if (Op.getValueType() != MVT::f64 || !X86ScalarSSEf64)
5011 return SDValue();
Bill Wendling030939c2009-01-17 07:40:19 +00005012
Bill Wendling8b8a6362009-01-17 03:56:04 +00005013 return LowerUINT_TO_FP_i64(Op, DAG);
5014 } else if (SrcVT == MVT::i32) {
Bill Wendling8b8a6362009-01-17 03:56:04 +00005015 return LowerUINT_TO_FP_i32(Op, DAG);
5016 }
5017
5018 assert(0 && "Unknown UINT_TO_FP to lower!");
5019 return SDValue();
5020}
5021
Dan Gohman475871a2008-07-27 21:46:04 +00005022std::pair<SDValue,SDValue> X86TargetLowering::
5023FP_TO_SINTHelper(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005024 DebugLoc dl = Op.getDebugLoc();
Duncan Sands8e4eb092008-06-08 20:54:56 +00005025 assert(Op.getValueType().getSimpleVT() <= MVT::i64 &&
5026 Op.getValueType().getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00005027 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00005028
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005029 // These are really Legal.
Scott Michelfdc40a02009-02-17 22:15:04 +00005030 if (Op.getValueType() == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00005031 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00005032 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00005033 if (Subtarget->is64Bit() &&
5034 Op.getValueType() == MVT::i64 &&
5035 Op.getOperand(0).getValueType() != MVT::f80)
Dan Gohman475871a2008-07-27 21:46:04 +00005036 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005037
Evan Cheng87c89352007-10-15 20:11:21 +00005038 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
5039 // stack slot.
5040 MachineFunction &MF = DAG.getMachineFunction();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005041 unsigned MemSize = Op.getValueType().getSizeInBits()/8;
Evan Cheng87c89352007-10-15 20:11:21 +00005042 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
Dan Gohman475871a2008-07-27 21:46:04 +00005043 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005044 unsigned Opc;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005045 switch (Op.getValueType().getSimpleVT()) {
Chris Lattner27a6c732007-11-24 07:07:01 +00005046 default: assert(0 && "Invalid FP_TO_SINT to lower!");
5047 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
5048 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
5049 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005050 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00005051
Dan Gohman475871a2008-07-27 21:46:04 +00005052 SDValue Chain = DAG.getEntryNode();
5053 SDValue Value = Op.getOperand(0);
Chris Lattner78631162008-01-16 06:24:21 +00005054 if (isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005055 assert(Op.getValueType() == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Dale Johannesenace16102009-02-03 19:33:06 +00005056 Chain = DAG.getStore(Chain, dl, Value, StackSlot,
Dan Gohmana54cf172008-07-11 22:44:52 +00005057 PseudoSourceValue::getFixedStack(SSFI), 0);
Dale Johannesen849f2142007-07-03 00:53:03 +00005058 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00005059 SDValue Ops[] = {
Chris Lattner5a88b832007-02-25 07:10:00 +00005060 Chain, StackSlot, DAG.getValueType(Op.getOperand(0).getValueType())
5061 };
Dale Johannesenace16102009-02-03 19:33:06 +00005062 Value = DAG.getNode(X86ISD::FLD, dl, Tys, Ops, 3);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005063 Chain = Value.getValue(1);
5064 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
5065 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
5066 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00005067
Evan Cheng0db9fe62006-04-25 20:13:52 +00005068 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00005069 SDValue Ops[] = { Chain, Value, StackSlot };
Dale Johannesenace16102009-02-03 19:33:06 +00005070 SDValue FIST = DAG.getNode(Opc, dl, MVT::Other, Ops, 3);
Evan Chengd9558e02006-01-06 00:43:03 +00005071
Chris Lattner27a6c732007-11-24 07:07:01 +00005072 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005073}
5074
Dan Gohman475871a2008-07-27 21:46:04 +00005075SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) {
5076 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(Op, DAG);
5077 SDValue FIST = Vals.first, StackSlot = Vals.second;
Gabor Greifba36cb52008-08-28 21:40:38 +00005078 if (FIST.getNode() == 0) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00005079
Chris Lattner27a6c732007-11-24 07:07:01 +00005080 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005081 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Dale Johannesenace16102009-02-03 19:33:06 +00005082 FIST, StackSlot, NULL, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00005083}
5084
Dan Gohman475871a2008-07-27 21:46:04 +00005085SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005086 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005087 MVT VT = Op.getValueType();
5088 MVT EltVT = VT;
5089 if (VT.isVector())
5090 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005091 std::vector<Constant*> CV;
Dan Gohman20382522007-07-10 00:05:58 +00005092 if (EltVT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00005093 Constant *C = ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00005094 CV.push_back(C);
5095 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005096 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00005097 Constant *C = ConstantFP::get(APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00005098 CV.push_back(C);
5099 CV.push_back(C);
5100 CV.push_back(C);
5101 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005102 }
Dan Gohmand3006222007-07-27 17:16:43 +00005103 Constant *C = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005104 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesenace16102009-02-03 19:33:06 +00005105 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005106 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00005107 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005108 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005109}
5110
Dan Gohman475871a2008-07-27 21:46:04 +00005111SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005112 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005113 MVT VT = Op.getValueType();
5114 MVT EltVT = VT;
Evan Chengd4d01b72007-07-19 23:36:01 +00005115 unsigned EltNum = 1;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005116 if (VT.isVector()) {
5117 EltVT = VT.getVectorElementType();
5118 EltNum = VT.getVectorNumElements();
Evan Chengd4d01b72007-07-19 23:36:01 +00005119 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005120 std::vector<Constant*> CV;
Dan Gohman20382522007-07-10 00:05:58 +00005121 if (EltVT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00005122 Constant *C = ConstantFP::get(APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00005123 CV.push_back(C);
5124 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005125 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00005126 Constant *C = ConstantFP::get(APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00005127 CV.push_back(C);
5128 CV.push_back(C);
5129 CV.push_back(C);
5130 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005131 }
Dan Gohmand3006222007-07-27 17:16:43 +00005132 Constant *C = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005133 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesenace16102009-02-03 19:33:06 +00005134 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005135 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00005136 false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005137 if (VT.isVector()) {
Dale Johannesenace16102009-02-03 19:33:06 +00005138 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
5139 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Scott Michelfdc40a02009-02-17 22:15:04 +00005140 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00005141 Op.getOperand(0)),
5142 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00005143 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00005144 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00005145 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005146}
5147
Dan Gohman475871a2008-07-27 21:46:04 +00005148SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
5149 SDValue Op0 = Op.getOperand(0);
5150 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005151 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005152 MVT VT = Op.getValueType();
5153 MVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00005154
5155 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00005156 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00005157 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00005158 SrcVT = VT;
5159 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00005160 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00005161 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00005162 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00005163 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00005164 }
5165
5166 // At this point the operands and the result should have the same
5167 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00005168
Evan Cheng68c47cb2007-01-05 07:55:56 +00005169 // First get the sign bit of second operand.
5170 std::vector<Constant*> CV;
5171 if (SrcVT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00005172 CV.push_back(ConstantFP::get(APFloat(APInt(64, 1ULL << 63))));
5173 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00005174 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00005175 CV.push_back(ConstantFP::get(APFloat(APInt(32, 1U << 31))));
5176 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5177 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5178 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00005179 }
Dan Gohmand3006222007-07-27 17:16:43 +00005180 Constant *C = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005181 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesenace16102009-02-03 19:33:06 +00005182 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005183 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00005184 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005185 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00005186
5187 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00005188 if (SrcVT.bitsGT(VT)) {
Evan Cheng68c47cb2007-01-05 07:55:56 +00005189 // Op0 is MVT::f32, Op1 is MVT::f64.
Dale Johannesenace16102009-02-03 19:33:06 +00005190 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
5191 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
Evan Cheng68c47cb2007-01-05 07:55:56 +00005192 DAG.getConstant(32, MVT::i32));
Dale Johannesenace16102009-02-03 19:33:06 +00005193 SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit);
5194 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00005195 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00005196 }
5197
Evan Cheng73d6cf12007-01-05 21:37:56 +00005198 // Clear first operand sign bit.
5199 CV.clear();
5200 if (VT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00005201 CV.push_back(ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63)))));
5202 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00005203 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00005204 CV.push_back(ConstantFP::get(APFloat(APInt(32, ~(1U << 31)))));
5205 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5206 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5207 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00005208 }
Dan Gohmand3006222007-07-27 17:16:43 +00005209 C = ConstantVector::get(CV);
5210 CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dale Johannesenace16102009-02-03 19:33:06 +00005211 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005212 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00005213 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005214 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00005215
5216 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00005217 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00005218}
5219
Dan Gohman475871a2008-07-27 21:46:04 +00005220SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0488db92007-09-25 01:57:46 +00005221 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
Dan Gohman475871a2008-07-27 21:46:04 +00005222 SDValue Op0 = Op.getOperand(0);
5223 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005224 DebugLoc dl = Op.getDebugLoc();
Chris Lattnere55484e2008-12-25 05:34:37 +00005225 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00005226
Dan Gohmane5af2d32009-01-29 01:59:02 +00005227 // Lower (X & (1 << N)) == 0 to BT(X, N).
5228 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
5229 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Dan Gohman286575c2009-01-13 23:25:30 +00005230 if (Op0.getOpcode() == ISD::AND &&
5231 Op0.hasOneUse() &&
5232 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane5af2d32009-01-29 01:59:02 +00005233 cast<ConstantSDNode>(Op1)->getZExtValue() == 0 &&
Chris Lattnere55484e2008-12-25 05:34:37 +00005234 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Dan Gohmane5af2d32009-01-29 01:59:02 +00005235 SDValue LHS, RHS;
5236 if (Op0.getOperand(1).getOpcode() == ISD::SHL) {
5237 if (ConstantSDNode *Op010C =
5238 dyn_cast<ConstantSDNode>(Op0.getOperand(1).getOperand(0)))
5239 if (Op010C->getZExtValue() == 1) {
5240 LHS = Op0.getOperand(0);
5241 RHS = Op0.getOperand(1).getOperand(1);
5242 }
5243 } else if (Op0.getOperand(0).getOpcode() == ISD::SHL) {
5244 if (ConstantSDNode *Op000C =
5245 dyn_cast<ConstantSDNode>(Op0.getOperand(0).getOperand(0)))
5246 if (Op000C->getZExtValue() == 1) {
5247 LHS = Op0.getOperand(1);
5248 RHS = Op0.getOperand(0).getOperand(1);
5249 }
5250 } else if (Op0.getOperand(1).getOpcode() == ISD::Constant) {
5251 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op0.getOperand(1));
5252 SDValue AndLHS = Op0.getOperand(0);
5253 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
5254 LHS = AndLHS.getOperand(0);
5255 RHS = AndLHS.getOperand(1);
5256 }
5257 }
Evan Cheng0488db92007-09-25 01:57:46 +00005258
Dan Gohmane5af2d32009-01-29 01:59:02 +00005259 if (LHS.getNode()) {
Chris Lattnere55484e2008-12-25 05:34:37 +00005260 // If LHS is i8, promote it to i16 with any_extend. There is no i8 BT
5261 // instruction. Since the shift amount is in-range-or-undefined, we know
5262 // that doing a bittest on the i16 value is ok. We extend to i32 because
5263 // the encoding for the i16 version is larger than the i32 version.
5264 if (LHS.getValueType() == MVT::i8)
Dale Johannesenace16102009-02-03 19:33:06 +00005265 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00005266
5267 // If the operand types disagree, extend the shift amount to match. Since
5268 // BT ignores high bits (like shifts) we can use anyextend.
5269 if (LHS.getValueType() != RHS.getValueType())
Dale Johannesenace16102009-02-03 19:33:06 +00005270 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00005271
Dale Johannesenace16102009-02-03 19:33:06 +00005272 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Dan Gohman653456c2009-01-07 00:15:08 +00005273 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Dale Johannesenace16102009-02-03 19:33:06 +00005274 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnere55484e2008-12-25 05:34:37 +00005275 DAG.getConstant(Cond, MVT::i8), BT);
5276 }
5277 }
5278
5279 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
5280 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005281
Dale Johannesenace16102009-02-03 19:33:06 +00005282 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
5283 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattner43287082008-12-24 00:11:37 +00005284 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00005285}
5286
Dan Gohman475871a2008-07-27 21:46:04 +00005287SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
5288 SDValue Cond;
5289 SDValue Op0 = Op.getOperand(0);
5290 SDValue Op1 = Op.getOperand(1);
5291 SDValue CC = Op.getOperand(2);
Nate Begeman30a0de92008-07-17 16:51:19 +00005292 MVT VT = Op.getValueType();
5293 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
5294 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005295 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00005296
5297 if (isFP) {
5298 unsigned SSECC = 8;
Evan Chenge9d50352008-08-05 22:19:15 +00005299 MVT VT0 = Op0.getValueType();
5300 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
5301 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00005302 bool Swap = false;
5303
5304 switch (SetCCOpcode) {
5305 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00005306 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00005307 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00005308 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00005309 case ISD::SETGT: Swap = true; // Fallthrough
5310 case ISD::SETLT:
5311 case ISD::SETOLT: SSECC = 1; break;
5312 case ISD::SETOGE:
5313 case ISD::SETGE: Swap = true; // Fallthrough
5314 case ISD::SETLE:
5315 case ISD::SETOLE: SSECC = 2; break;
5316 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00005317 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00005318 case ISD::SETNE: SSECC = 4; break;
5319 case ISD::SETULE: Swap = true;
5320 case ISD::SETUGE: SSECC = 5; break;
5321 case ISD::SETULT: Swap = true;
5322 case ISD::SETUGT: SSECC = 6; break;
5323 case ISD::SETO: SSECC = 7; break;
5324 }
5325 if (Swap)
5326 std::swap(Op0, Op1);
5327
Nate Begemanfb8ead02008-07-25 19:05:58 +00005328 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00005329 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00005330 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00005331 SDValue UNORD, EQ;
Dale Johannesenace16102009-02-03 19:33:06 +00005332 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
5333 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
5334 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00005335 }
5336 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00005337 SDValue ORD, NEQ;
Dale Johannesenace16102009-02-03 19:33:06 +00005338 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
5339 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
5340 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00005341 }
5342 assert(0 && "Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00005343 }
5344 // Handle all other FP comparisons here.
Dale Johannesenace16102009-02-03 19:33:06 +00005345 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00005346 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005347
Nate Begeman30a0de92008-07-17 16:51:19 +00005348 // We are handling one of the integer comparisons here. Since SSE only has
5349 // GT and EQ comparisons for integer, swapping operands and multiple
5350 // operations may be required for some comparisons.
5351 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
5352 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005353
Nate Begeman30a0de92008-07-17 16:51:19 +00005354 switch (VT.getSimpleVT()) {
5355 default: break;
5356 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
5357 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
5358 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
5359 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
5360 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005361
Nate Begeman30a0de92008-07-17 16:51:19 +00005362 switch (SetCCOpcode) {
5363 default: break;
5364 case ISD::SETNE: Invert = true;
5365 case ISD::SETEQ: Opc = EQOpc; break;
5366 case ISD::SETLT: Swap = true;
5367 case ISD::SETGT: Opc = GTOpc; break;
5368 case ISD::SETGE: Swap = true;
5369 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
5370 case ISD::SETULT: Swap = true;
5371 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
5372 case ISD::SETUGE: Swap = true;
5373 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
5374 }
5375 if (Swap)
5376 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005377
Nate Begeman30a0de92008-07-17 16:51:19 +00005378 // Since SSE has no unsigned integer comparisons, we need to flip the sign
5379 // bits of the inputs before performing those operations.
5380 if (FlipSigns) {
5381 MVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00005382 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
5383 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00005384 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Dale Johannesenace16102009-02-03 19:33:06 +00005385 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
Nate Begeman30a0de92008-07-17 16:51:19 +00005386 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00005387 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
5388 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00005389 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005390
Dale Johannesenace16102009-02-03 19:33:06 +00005391 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00005392
5393 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00005394 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00005395 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00005396
Nate Begeman30a0de92008-07-17 16:51:19 +00005397 return Result;
5398}
Evan Cheng0488db92007-09-25 01:57:46 +00005399
Evan Cheng370e5342008-12-03 08:38:43 +00005400// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
5401static bool isX86LogicalCmp(unsigned Opc) {
5402 return Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI;
5403}
5404
Dan Gohman475871a2008-07-27 21:46:04 +00005405SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) {
Evan Cheng734503b2006-09-11 02:19:56 +00005406 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005407 SDValue Cond = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005408 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005409 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00005410
Evan Cheng734503b2006-09-11 02:19:56 +00005411 if (Cond.getOpcode() == ISD::SETCC)
Evan Chenge5f62042007-09-29 00:00:36 +00005412 Cond = LowerSETCC(Cond, DAG);
Evan Cheng734503b2006-09-11 02:19:56 +00005413
Evan Cheng3f41d662007-10-08 22:16:29 +00005414 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5415 // setting operand in place of the X86ISD::SETCC.
Evan Cheng734503b2006-09-11 02:19:56 +00005416 if (Cond.getOpcode() == X86ISD::SETCC) {
5417 CC = Cond.getOperand(0);
5418
Dan Gohman475871a2008-07-27 21:46:04 +00005419 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00005420 unsigned Opc = Cmp.getOpcode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005421 MVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005422
Evan Cheng3f41d662007-10-08 22:16:29 +00005423 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005424 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00005425 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00005426 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00005427
Dan Gohmane5af2d32009-01-29 01:59:02 +00005428 if ((isX86LogicalCmp(Opc) && !IllegalFPCMov) || Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00005429 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00005430 addTest = false;
5431 }
5432 }
5433
5434 if (addTest) {
5435 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Scott Michelfdc40a02009-02-17 22:15:04 +00005436 Cond= DAG.getNode(X86ISD::CMP, dl, MVT::i32, Cond,
Dale Johannesene4d209d2009-02-03 20:21:25 +00005437 DAG.getConstant(0, MVT::i8));
Evan Cheng0488db92007-09-25 01:57:46 +00005438 }
5439
Duncan Sands83ec4b62008-06-06 12:08:01 +00005440 const MVT *VTs = DAG.getNodeValueTypes(Op.getValueType(),
Evan Cheng0488db92007-09-25 01:57:46 +00005441 MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005442 SmallVector<SDValue, 4> Ops;
Evan Cheng0488db92007-09-25 01:57:46 +00005443 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
5444 // condition is true.
5445 Ops.push_back(Op.getOperand(2));
5446 Ops.push_back(Op.getOperand(1));
5447 Ops.push_back(CC);
5448 Ops.push_back(Cond);
Dale Johannesene4d209d2009-02-03 20:21:25 +00005449 return DAG.getNode(X86ISD::CMOV, dl, VTs, 2, &Ops[0], Ops.size());
Evan Cheng0488db92007-09-25 01:57:46 +00005450}
5451
Evan Cheng370e5342008-12-03 08:38:43 +00005452// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
5453// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
5454// from the AND / OR.
5455static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
5456 Opc = Op.getOpcode();
5457 if (Opc != ISD::OR && Opc != ISD::AND)
5458 return false;
5459 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5460 Op.getOperand(0).hasOneUse() &&
5461 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
5462 Op.getOperand(1).hasOneUse());
5463}
5464
Evan Cheng961d6d42009-02-02 08:19:07 +00005465// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
5466// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00005467static bool isXor1OfSetCC(SDValue Op) {
5468 if (Op.getOpcode() != ISD::XOR)
5469 return false;
5470 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
5471 if (N1C && N1C->getAPIntValue() == 1) {
5472 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5473 Op.getOperand(0).hasOneUse();
5474 }
5475 return false;
5476}
5477
Dan Gohman475871a2008-07-27 21:46:04 +00005478SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) {
Evan Cheng734503b2006-09-11 02:19:56 +00005479 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005480 SDValue Chain = Op.getOperand(0);
5481 SDValue Cond = Op.getOperand(1);
5482 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005483 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005484 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00005485
Evan Cheng0db9fe62006-04-25 20:13:52 +00005486 if (Cond.getOpcode() == ISD::SETCC)
Evan Chenge5f62042007-09-29 00:00:36 +00005487 Cond = LowerSETCC(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00005488#if 0
5489 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00005490 else if (Cond.getOpcode() == X86ISD::ADD ||
5491 Cond.getOpcode() == X86ISD::SUB ||
5492 Cond.getOpcode() == X86ISD::SMUL ||
5493 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00005494 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00005495#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00005496
Evan Cheng3f41d662007-10-08 22:16:29 +00005497 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5498 // setting operand in place of the X86ISD::SETCC.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005499 if (Cond.getOpcode() == X86ISD::SETCC) {
Evan Cheng734503b2006-09-11 02:19:56 +00005500 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005501
Dan Gohman475871a2008-07-27 21:46:04 +00005502 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00005503 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00005504 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
5505 if (isX86LogicalCmp(Opc) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00005506 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00005507 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00005508 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00005509 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00005510 default: break;
5511 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00005512 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00005513 // These can only come from an arithmetic instruction with overflow,
5514 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00005515 Cond = Cond.getNode()->getOperand(1);
5516 addTest = false;
5517 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00005518 }
Evan Cheng0488db92007-09-25 01:57:46 +00005519 }
Evan Cheng370e5342008-12-03 08:38:43 +00005520 } else {
5521 unsigned CondOpc;
5522 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
5523 SDValue Cmp = Cond.getOperand(0).getOperand(1);
5524 unsigned Opc = Cmp.getOpcode();
5525 if (CondOpc == ISD::OR) {
5526 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
5527 // two branches instead of an explicit OR instruction with a
5528 // separate test.
5529 if (Cmp == Cond.getOperand(1).getOperand(1) &&
5530 isX86LogicalCmp(Opc)) {
5531 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00005532 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00005533 Chain, Dest, CC, Cmp);
5534 CC = Cond.getOperand(1).getOperand(0);
5535 Cond = Cmp;
5536 addTest = false;
5537 }
5538 } else { // ISD::AND
5539 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
5540 // two branches instead of an explicit AND instruction with a
5541 // separate test. However, we only do this if this block doesn't
5542 // have a fall-through edge, because this requires an explicit
5543 // jmp when the condition is false.
5544 if (Cmp == Cond.getOperand(1).getOperand(1) &&
5545 isX86LogicalCmp(Opc) &&
5546 Op.getNode()->hasOneUse()) {
5547 X86::CondCode CCode =
5548 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5549 CCode = X86::GetOppositeBranchCondition(CCode);
5550 CC = DAG.getConstant(CCode, MVT::i8);
5551 SDValue User = SDValue(*Op.getNode()->use_begin(), 0);
5552 // Look for an unconditional branch following this conditional branch.
5553 // We need this because we need to reverse the successors in order
5554 // to implement FCMP_OEQ.
5555 if (User.getOpcode() == ISD::BR) {
5556 SDValue FalseBB = User.getOperand(1);
5557 SDValue NewBR =
5558 DAG.UpdateNodeOperands(User, User.getOperand(0), Dest);
5559 assert(NewBR == User);
5560 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00005561
Dale Johannesene4d209d2009-02-03 20:21:25 +00005562 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00005563 Chain, Dest, CC, Cmp);
5564 X86::CondCode CCode =
5565 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
5566 CCode = X86::GetOppositeBranchCondition(CCode);
5567 CC = DAG.getConstant(CCode, MVT::i8);
5568 Cond = Cmp;
5569 addTest = false;
5570 }
5571 }
Dan Gohman279c22e2008-10-21 03:29:32 +00005572 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00005573 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
5574 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
5575 // It should be transformed during dag combiner except when the condition
5576 // is set by a arithmetics with overflow node.
5577 X86::CondCode CCode =
5578 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5579 CCode = X86::GetOppositeBranchCondition(CCode);
5580 CC = DAG.getConstant(CCode, MVT::i8);
5581 Cond = Cond.getOperand(0).getOperand(1);
5582 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00005583 }
Evan Cheng0488db92007-09-25 01:57:46 +00005584 }
5585
5586 if (addTest) {
5587 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Scott Michelfdc40a02009-02-17 22:15:04 +00005588 Cond= DAG.getNode(X86ISD::CMP, dl, MVT::i32, Cond,
Dale Johannesene4d209d2009-02-03 20:21:25 +00005589 DAG.getConstant(0, MVT::i8));
Evan Cheng0488db92007-09-25 01:57:46 +00005590 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00005591 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00005592 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00005593}
5594
Anton Korobeynikove060b532007-04-17 19:34:00 +00005595
5596// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
5597// Calls to _alloca is needed to probe the stack when allocating more than 4k
5598// bytes in one go. Touching the stack at 4K increments is necessary to ensure
5599// that the guard pages used by the OS virtual memory manager are allocated in
5600// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00005601SDValue
5602X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005603 SelectionDAG &DAG) {
Anton Korobeynikove060b532007-04-17 19:34:00 +00005604 assert(Subtarget->isTargetCygMing() &&
5605 "This should be used only on Cygwin/Mingw targets");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005606 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005607
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005608 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00005609 SDValue Chain = Op.getOperand(0);
5610 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005611 // FIXME: Ensure alignment here
5612
Dan Gohman475871a2008-07-27 21:46:04 +00005613 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005614
Duncan Sands83ec4b62008-06-06 12:08:01 +00005615 MVT IntPtr = getPointerTy();
5616 MVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005617
Chris Lattnere563bbc2008-10-11 22:08:30 +00005618 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005619
Dale Johannesendd64c412009-02-04 00:33:20 +00005620 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005621 Flag = Chain.getValue(1);
5622
5623 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005624 SDValue Ops[] = { Chain,
Bill Wendling056292f2008-09-16 21:48:12 +00005625 DAG.getTargetExternalSymbol("_alloca", IntPtr),
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005626 DAG.getRegister(X86::EAX, IntPtr),
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005627 DAG.getRegister(X86StackPtr, SPTy),
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005628 Flag };
Dale Johannesene4d209d2009-02-03 20:21:25 +00005629 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops, 5);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005630 Flag = Chain.getValue(1);
5631
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005632 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnere563bbc2008-10-11 22:08:30 +00005633 DAG.getIntPtrConstant(0, true),
5634 DAG.getIntPtrConstant(0, true),
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005635 Flag);
5636
Dale Johannesendd64c412009-02-04 00:33:20 +00005637 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005638
Dan Gohman475871a2008-07-27 21:46:04 +00005639 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00005640 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005641}
5642
Dan Gohman475871a2008-07-27 21:46:04 +00005643SDValue
Dale Johannesen0f502f62009-02-03 22:26:09 +00005644X86TargetLowering::EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl,
Bill Wendling6f287b22008-09-30 21:22:07 +00005645 SDValue Chain,
5646 SDValue Dst, SDValue Src,
5647 SDValue Size, unsigned Align,
5648 const Value *DstSV,
Bill Wendling6158d842008-10-01 00:59:58 +00005649 uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00005650 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005651
Bill Wendling6f287b22008-09-30 21:22:07 +00005652 // If not DWORD aligned or size is more than the threshold, call the library.
5653 // The libc version is likely to be faster for these cases. It can use the
5654 // address value and run time information about the CPU.
Evan Cheng1887c1c2008-08-21 21:00:15 +00005655 if ((Align & 3) != 0 ||
Dan Gohman707e0182008-04-12 04:36:06 +00005656 !ConstantSize ||
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005657 ConstantSize->getZExtValue() >
5658 getSubtarget()->getMaxInlineSizeThreshold()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005659 SDValue InFlag(0, 0);
Dan Gohman68d599d2008-04-01 20:38:36 +00005660
5661 // Check to see if there is a specialized entry-point for memory zeroing.
Dan Gohman707e0182008-04-12 04:36:06 +00005662 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
Bill Wendling6f287b22008-09-30 21:22:07 +00005663
Bill Wendling6158d842008-10-01 00:59:58 +00005664 if (const char *bzeroEntry = V &&
5665 V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
5666 MVT IntPtr = getPointerTy();
5667 const Type *IntPtrTy = TD->getIntPtrType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005668 TargetLowering::ArgListTy Args;
Bill Wendling6158d842008-10-01 00:59:58 +00005669 TargetLowering::ArgListEntry Entry;
5670 Entry.Node = Dst;
5671 Entry.Ty = IntPtrTy;
5672 Args.push_back(Entry);
5673 Entry.Node = Size;
5674 Args.push_back(Entry);
5675 std::pair<SDValue,SDValue> CallResult =
Scott Michelfdc40a02009-02-17 22:15:04 +00005676 LowerCallTo(Chain, Type::VoidTy, false, false, false, false,
5677 CallingConv::C, false,
Dale Johannesen0f502f62009-02-03 22:26:09 +00005678 DAG.getExternalSymbol(bzeroEntry, IntPtr), Args, DAG, dl);
Bill Wendling6158d842008-10-01 00:59:58 +00005679 return CallResult.second;
Dan Gohman68d599d2008-04-01 20:38:36 +00005680 }
5681
Dan Gohman707e0182008-04-12 04:36:06 +00005682 // Otherwise have the target-independent code call memset.
Dan Gohman475871a2008-07-27 21:46:04 +00005683 return SDValue();
Evan Cheng48090aa2006-03-21 23:01:21 +00005684 }
Evan Chengb9df0ca2006-03-22 02:53:00 +00005685
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005686 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00005687 SDValue InFlag(0, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005688 MVT AVT;
Dan Gohman475871a2008-07-27 21:46:04 +00005689 SDValue Count;
Dan Gohman707e0182008-04-12 04:36:06 +00005690 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005691 unsigned BytesLeft = 0;
5692 bool TwoRepStos = false;
5693 if (ValC) {
5694 unsigned ValReg;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005695 uint64_t Val = ValC->getZExtValue() & 255;
Evan Cheng5ced1d82006-04-06 23:23:56 +00005696
Evan Cheng0db9fe62006-04-25 20:13:52 +00005697 // If the value is a constant, then we can potentially use larger sets.
5698 switch (Align & 3) {
Evan Cheng1887c1c2008-08-21 21:00:15 +00005699 case 2: // WORD aligned
5700 AVT = MVT::i16;
5701 ValReg = X86::AX;
5702 Val = (Val << 8) | Val;
5703 break;
5704 case 0: // DWORD aligned
5705 AVT = MVT::i32;
5706 ValReg = X86::EAX;
5707 Val = (Val << 8) | Val;
5708 Val = (Val << 16) | Val;
5709 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
5710 AVT = MVT::i64;
5711 ValReg = X86::RAX;
5712 Val = (Val << 32) | Val;
5713 }
5714 break;
5715 default: // Byte aligned
5716 AVT = MVT::i8;
5717 ValReg = X86::AL;
5718 Count = DAG.getIntPtrConstant(SizeVal);
5719 break;
Evan Cheng80d428c2006-04-19 22:48:17 +00005720 }
5721
Duncan Sands8e4eb092008-06-08 20:54:56 +00005722 if (AVT.bitsGT(MVT::i8)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005723 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00005724 Count = DAG.getIntPtrConstant(SizeVal / UBytes);
5725 BytesLeft = SizeVal % UBytes;
Evan Cheng25ab6902006-09-08 06:48:29 +00005726 }
5727
Dale Johannesen0f502f62009-02-03 22:26:09 +00005728 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, AVT),
Evan Cheng0db9fe62006-04-25 20:13:52 +00005729 InFlag);
5730 InFlag = Chain.getValue(1);
5731 } else {
5732 AVT = MVT::i8;
Dan Gohmanbcda2852008-04-16 01:32:32 +00005733 Count = DAG.getIntPtrConstant(SizeVal);
Dale Johannesen0f502f62009-02-03 22:26:09 +00005734 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005735 InFlag = Chain.getValue(1);
Evan Chengb9df0ca2006-03-22 02:53:00 +00005736 }
Evan Chengc78d3b42006-04-24 18:01:45 +00005737
Scott Michelfdc40a02009-02-17 22:15:04 +00005738 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen0f502f62009-02-03 22:26:09 +00005739 X86::ECX,
Evan Cheng25ab6902006-09-08 06:48:29 +00005740 Count, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005741 InFlag = Chain.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005742 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen0f502f62009-02-03 22:26:09 +00005743 X86::EDI,
Dan Gohman707e0182008-04-12 04:36:06 +00005744 Dst, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005745 InFlag = Chain.getValue(1);
Evan Chenga0b3afb2006-03-27 07:00:16 +00005746
Chris Lattnerd96d0722007-02-25 06:40:16 +00005747 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005748 SmallVector<SDValue, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005749 Ops.push_back(Chain);
5750 Ops.push_back(DAG.getValueType(AVT));
5751 Ops.push_back(InFlag);
Dale Johannesen0f502f62009-02-03 22:26:09 +00005752 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Evan Chengc78d3b42006-04-24 18:01:45 +00005753
Evan Cheng0db9fe62006-04-25 20:13:52 +00005754 if (TwoRepStos) {
5755 InFlag = Chain.getValue(1);
Dan Gohman707e0182008-04-12 04:36:06 +00005756 Count = Size;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005757 MVT CVT = Count.getValueType();
Dale Johannesen0f502f62009-02-03 22:26:09 +00005758 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
Evan Cheng25ab6902006-09-08 06:48:29 +00005759 DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
Scott Michelfdc40a02009-02-17 22:15:04 +00005760 Chain = DAG.getCopyToReg(Chain, dl, (CVT == MVT::i64) ? X86::RCX :
Dale Johannesen0f502f62009-02-03 22:26:09 +00005761 X86::ECX,
Evan Cheng25ab6902006-09-08 06:48:29 +00005762 Left, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005763 InFlag = Chain.getValue(1);
Chris Lattnerd96d0722007-02-25 06:40:16 +00005764 Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005765 Ops.clear();
5766 Ops.push_back(Chain);
5767 Ops.push_back(DAG.getValueType(MVT::i8));
5768 Ops.push_back(InFlag);
Dale Johannesen0f502f62009-02-03 22:26:09 +00005769 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005770 } else if (BytesLeft) {
Dan Gohman707e0182008-04-12 04:36:06 +00005771 // Handle the last 1 - 7 bytes.
5772 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005773 MVT AddrVT = Dst.getValueType();
5774 MVT SizeVT = Size.getValueType();
Dan Gohman707e0182008-04-12 04:36:06 +00005775
Dale Johannesen0f502f62009-02-03 22:26:09 +00005776 Chain = DAG.getMemset(Chain, dl,
5777 DAG.getNode(ISD::ADD, dl, AddrVT, Dst,
Dan Gohman707e0182008-04-12 04:36:06 +00005778 DAG.getConstant(Offset, AddrVT)),
5779 Src,
5780 DAG.getConstant(BytesLeft, SizeVT),
Dan Gohman1f13c682008-04-28 17:15:20 +00005781 Align, DstSV, DstSVOff + Offset);
Evan Cheng386031a2006-03-24 07:29:27 +00005782 }
Evan Cheng11e15b32006-04-03 20:53:28 +00005783
Dan Gohman707e0182008-04-12 04:36:06 +00005784 // TODO: Use a Tokenfactor, as in memcpy, instead of a single chain.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005785 return Chain;
5786}
Evan Cheng11e15b32006-04-03 20:53:28 +00005787
Dan Gohman475871a2008-07-27 21:46:04 +00005788SDValue
Dale Johannesen0f502f62009-02-03 22:26:09 +00005789X86TargetLowering::EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
Evan Cheng1887c1c2008-08-21 21:00:15 +00005790 SDValue Chain, SDValue Dst, SDValue Src,
5791 SDValue Size, unsigned Align,
5792 bool AlwaysInline,
5793 const Value *DstSV, uint64_t DstSVOff,
Scott Michelfdc40a02009-02-17 22:15:04 +00005794 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00005795 // This requires the copy size to be a constant, preferrably
5796 // within a subtarget-specific limit.
5797 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
5798 if (!ConstantSize)
Dan Gohman475871a2008-07-27 21:46:04 +00005799 return SDValue();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005800 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohman707e0182008-04-12 04:36:06 +00005801 if (!AlwaysInline && SizeVal > getSubtarget()->getMaxInlineSizeThreshold())
Dan Gohman475871a2008-07-27 21:46:04 +00005802 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00005803
Evan Cheng1887c1c2008-08-21 21:00:15 +00005804 /// If not DWORD aligned, call the library.
5805 if ((Align & 3) != 0)
5806 return SDValue();
5807
5808 // DWORD aligned
5809 MVT AVT = MVT::i32;
5810 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) // QWORD aligned
Dan Gohman707e0182008-04-12 04:36:06 +00005811 AVT = MVT::i64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005812
Duncan Sands83ec4b62008-06-06 12:08:01 +00005813 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00005814 unsigned CountVal = SizeVal / UBytes;
Dan Gohman475871a2008-07-27 21:46:04 +00005815 SDValue Count = DAG.getIntPtrConstant(CountVal);
Evan Cheng1887c1c2008-08-21 21:00:15 +00005816 unsigned BytesLeft = SizeVal % UBytes;
Evan Cheng25ab6902006-09-08 06:48:29 +00005817
Dan Gohman475871a2008-07-27 21:46:04 +00005818 SDValue InFlag(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005819 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen0f502f62009-02-03 22:26:09 +00005820 X86::ECX,
Evan Cheng25ab6902006-09-08 06:48:29 +00005821 Count, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005822 InFlag = Chain.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005823 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen0f502f62009-02-03 22:26:09 +00005824 X86::EDI,
Dan Gohman707e0182008-04-12 04:36:06 +00005825 Dst, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005826 InFlag = Chain.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005827 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RSI :
Dale Johannesen0f502f62009-02-03 22:26:09 +00005828 X86::ESI,
Dan Gohman707e0182008-04-12 04:36:06 +00005829 Src, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005830 InFlag = Chain.getValue(1);
5831
Chris Lattnerd96d0722007-02-25 06:40:16 +00005832 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005833 SmallVector<SDValue, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005834 Ops.push_back(Chain);
5835 Ops.push_back(DAG.getValueType(AVT));
5836 Ops.push_back(InFlag);
Dale Johannesen0f502f62009-02-03 22:26:09 +00005837 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, dl, Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005838
Dan Gohman475871a2008-07-27 21:46:04 +00005839 SmallVector<SDValue, 4> Results;
Evan Cheng2749c722008-04-25 00:26:43 +00005840 Results.push_back(RepMovs);
Rafael Espindola068317b2007-09-28 12:53:01 +00005841 if (BytesLeft) {
Dan Gohman707e0182008-04-12 04:36:06 +00005842 // Handle the last 1 - 7 bytes.
5843 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005844 MVT DstVT = Dst.getValueType();
5845 MVT SrcVT = Src.getValueType();
5846 MVT SizeVT = Size.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005847 Results.push_back(DAG.getMemcpy(Chain, dl,
Dale Johannesen0f502f62009-02-03 22:26:09 +00005848 DAG.getNode(ISD::ADD, dl, DstVT, Dst,
Evan Cheng2749c722008-04-25 00:26:43 +00005849 DAG.getConstant(Offset, DstVT)),
Dale Johannesen0f502f62009-02-03 22:26:09 +00005850 DAG.getNode(ISD::ADD, dl, SrcVT, Src,
Evan Cheng2749c722008-04-25 00:26:43 +00005851 DAG.getConstant(Offset, SrcVT)),
Dan Gohman707e0182008-04-12 04:36:06 +00005852 DAG.getConstant(BytesLeft, SizeVT),
5853 Align, AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00005854 DstSV, DstSVOff + Offset,
5855 SrcSV, SrcSVOff + Offset));
Evan Chengb067a1e2006-03-31 19:22:53 +00005856 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005857
Scott Michelfdc40a02009-02-17 22:15:04 +00005858 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesen0f502f62009-02-03 22:26:09 +00005859 &Results[0], Results.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005860}
5861
Dan Gohman475871a2008-07-27 21:46:04 +00005862SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) {
Dan Gohman69de1932008-02-06 22:27:42 +00005863 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005864 DebugLoc dl = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00005865
Evan Cheng25ab6902006-09-08 06:48:29 +00005866 if (!Subtarget->is64Bit()) {
5867 // vastart just stores the address of the VarArgsFrameIndex slot into the
5868 // memory location argument.
Dan Gohman475871a2008-07-27 21:46:04 +00005869 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesene4d209d2009-02-03 20:21:25 +00005870 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005871 }
5872
5873 // __va_list_tag:
5874 // gp_offset (0 - 6 * 8)
5875 // fp_offset (48 - 48 + 8 * 16)
5876 // overflow_arg_area (point to parameters coming in memory).
5877 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00005878 SmallVector<SDValue, 8> MemOps;
5879 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00005880 // Store gp_offset
Dale Johannesene4d209d2009-02-03 20:21:25 +00005881 SDValue Store = DAG.getStore(Op.getOperand(0), dl,
Evan Cheng786225a2006-10-05 23:01:46 +00005882 DAG.getConstant(VarArgsGPOffset, MVT::i32),
Dan Gohman69de1932008-02-06 22:27:42 +00005883 FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005884 MemOps.push_back(Store);
5885
5886 // Store fp_offset
Scott Michelfdc40a02009-02-17 22:15:04 +00005887 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00005888 FIN, DAG.getIntPtrConstant(4));
5889 Store = DAG.getStore(Op.getOperand(0), dl,
Evan Cheng786225a2006-10-05 23:01:46 +00005890 DAG.getConstant(VarArgsFPOffset, MVT::i32),
Dan Gohman69de1932008-02-06 22:27:42 +00005891 FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005892 MemOps.push_back(Store);
5893
5894 // Store ptr to overflow_arg_area
Scott Michelfdc40a02009-02-17 22:15:04 +00005895 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00005896 FIN, DAG.getIntPtrConstant(4));
Dan Gohman475871a2008-07-27 21:46:04 +00005897 SDValue OVFIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesene4d209d2009-02-03 20:21:25 +00005898 Store = DAG.getStore(Op.getOperand(0), dl, OVFIN, FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005899 MemOps.push_back(Store);
5900
5901 // Store ptr to reg_save_area.
Scott Michelfdc40a02009-02-17 22:15:04 +00005902 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00005903 FIN, DAG.getIntPtrConstant(8));
Dan Gohman475871a2008-07-27 21:46:04 +00005904 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesene4d209d2009-02-03 20:21:25 +00005905 Store = DAG.getStore(Op.getOperand(0), dl, RSFIN, FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005906 MemOps.push_back(Store);
Scott Michelfdc40a02009-02-17 22:15:04 +00005907 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00005908 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005909}
5910
Dan Gohman475871a2008-07-27 21:46:04 +00005911SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) {
Dan Gohman9018e832008-05-10 01:26:14 +00005912 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
5913 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_arg!");
Dan Gohman475871a2008-07-27 21:46:04 +00005914 SDValue Chain = Op.getOperand(0);
5915 SDValue SrcPtr = Op.getOperand(1);
5916 SDValue SrcSV = Op.getOperand(2);
Dan Gohman9018e832008-05-10 01:26:14 +00005917
5918 assert(0 && "VAArgInst is not yet implemented for x86-64!");
5919 abort();
Dan Gohman475871a2008-07-27 21:46:04 +00005920 return SDValue();
Dan Gohman9018e832008-05-10 01:26:14 +00005921}
5922
Dan Gohman475871a2008-07-27 21:46:04 +00005923SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) {
Evan Chengae642192007-03-02 23:16:35 +00005924 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00005925 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00005926 SDValue Chain = Op.getOperand(0);
5927 SDValue DstPtr = Op.getOperand(1);
5928 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00005929 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
5930 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005931 DebugLoc dl = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00005932
Dale Johannesendd64c412009-02-04 00:33:20 +00005933 return DAG.getMemcpy(Chain, dl, DstPtr, SrcPtr,
Dan Gohman28269132008-04-18 20:55:41 +00005934 DAG.getIntPtrConstant(24), 8, false,
5935 DstSV, 0, SrcSV, 0);
Evan Chengae642192007-03-02 23:16:35 +00005936}
5937
Dan Gohman475871a2008-07-27 21:46:04 +00005938SDValue
5939X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005940 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005941 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005942 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00005943 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00005944 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005945 case Intrinsic::x86_sse_comieq_ss:
5946 case Intrinsic::x86_sse_comilt_ss:
5947 case Intrinsic::x86_sse_comile_ss:
5948 case Intrinsic::x86_sse_comigt_ss:
5949 case Intrinsic::x86_sse_comige_ss:
5950 case Intrinsic::x86_sse_comineq_ss:
5951 case Intrinsic::x86_sse_ucomieq_ss:
5952 case Intrinsic::x86_sse_ucomilt_ss:
5953 case Intrinsic::x86_sse_ucomile_ss:
5954 case Intrinsic::x86_sse_ucomigt_ss:
5955 case Intrinsic::x86_sse_ucomige_ss:
5956 case Intrinsic::x86_sse_ucomineq_ss:
5957 case Intrinsic::x86_sse2_comieq_sd:
5958 case Intrinsic::x86_sse2_comilt_sd:
5959 case Intrinsic::x86_sse2_comile_sd:
5960 case Intrinsic::x86_sse2_comigt_sd:
5961 case Intrinsic::x86_sse2_comige_sd:
5962 case Intrinsic::x86_sse2_comineq_sd:
5963 case Intrinsic::x86_sse2_ucomieq_sd:
5964 case Intrinsic::x86_sse2_ucomilt_sd:
5965 case Intrinsic::x86_sse2_ucomile_sd:
5966 case Intrinsic::x86_sse2_ucomigt_sd:
5967 case Intrinsic::x86_sse2_ucomige_sd:
5968 case Intrinsic::x86_sse2_ucomineq_sd: {
5969 unsigned Opc = 0;
5970 ISD::CondCode CC = ISD::SETCC_INVALID;
5971 switch (IntNo) {
5972 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005973 case Intrinsic::x86_sse_comieq_ss:
5974 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005975 Opc = X86ISD::COMI;
5976 CC = ISD::SETEQ;
5977 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00005978 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005979 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005980 Opc = X86ISD::COMI;
5981 CC = ISD::SETLT;
5982 break;
5983 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005984 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005985 Opc = X86ISD::COMI;
5986 CC = ISD::SETLE;
5987 break;
5988 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005989 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005990 Opc = X86ISD::COMI;
5991 CC = ISD::SETGT;
5992 break;
5993 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005994 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005995 Opc = X86ISD::COMI;
5996 CC = ISD::SETGE;
5997 break;
5998 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005999 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006000 Opc = X86ISD::COMI;
6001 CC = ISD::SETNE;
6002 break;
6003 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006004 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006005 Opc = X86ISD::UCOMI;
6006 CC = ISD::SETEQ;
6007 break;
6008 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006009 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006010 Opc = X86ISD::UCOMI;
6011 CC = ISD::SETLT;
6012 break;
6013 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006014 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006015 Opc = X86ISD::UCOMI;
6016 CC = ISD::SETLE;
6017 break;
6018 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006019 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006020 Opc = X86ISD::UCOMI;
6021 CC = ISD::SETGT;
6022 break;
6023 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006024 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006025 Opc = X86ISD::UCOMI;
6026 CC = ISD::SETGE;
6027 break;
6028 case Intrinsic::x86_sse_ucomineq_ss:
6029 case Intrinsic::x86_sse2_ucomineq_sd:
6030 Opc = X86ISD::UCOMI;
6031 CC = ISD::SETNE;
6032 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00006033 }
Evan Cheng734503b2006-09-11 02:19:56 +00006034
Dan Gohman475871a2008-07-27 21:46:04 +00006035 SDValue LHS = Op.getOperand(1);
6036 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00006037 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006038 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
6039 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Evan Cheng0ac3fc22008-08-17 19:22:34 +00006040 DAG.getConstant(X86CC, MVT::i8), Cond);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006041 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00006042 }
Evan Cheng5759f972008-05-04 09:15:50 +00006043
6044 // Fix vector shift instructions where the last operand is a non-immediate
6045 // i32 value.
6046 case Intrinsic::x86_sse2_pslli_w:
6047 case Intrinsic::x86_sse2_pslli_d:
6048 case Intrinsic::x86_sse2_pslli_q:
6049 case Intrinsic::x86_sse2_psrli_w:
6050 case Intrinsic::x86_sse2_psrli_d:
6051 case Intrinsic::x86_sse2_psrli_q:
6052 case Intrinsic::x86_sse2_psrai_w:
6053 case Intrinsic::x86_sse2_psrai_d:
6054 case Intrinsic::x86_mmx_pslli_w:
6055 case Intrinsic::x86_mmx_pslli_d:
6056 case Intrinsic::x86_mmx_pslli_q:
6057 case Intrinsic::x86_mmx_psrli_w:
6058 case Intrinsic::x86_mmx_psrli_d:
6059 case Intrinsic::x86_mmx_psrli_q:
6060 case Intrinsic::x86_mmx_psrai_w:
6061 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00006062 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00006063 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00006064 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00006065
6066 unsigned NewIntNo = 0;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006067 MVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00006068 switch (IntNo) {
6069 case Intrinsic::x86_sse2_pslli_w:
6070 NewIntNo = Intrinsic::x86_sse2_psll_w;
6071 break;
6072 case Intrinsic::x86_sse2_pslli_d:
6073 NewIntNo = Intrinsic::x86_sse2_psll_d;
6074 break;
6075 case Intrinsic::x86_sse2_pslli_q:
6076 NewIntNo = Intrinsic::x86_sse2_psll_q;
6077 break;
6078 case Intrinsic::x86_sse2_psrli_w:
6079 NewIntNo = Intrinsic::x86_sse2_psrl_w;
6080 break;
6081 case Intrinsic::x86_sse2_psrli_d:
6082 NewIntNo = Intrinsic::x86_sse2_psrl_d;
6083 break;
6084 case Intrinsic::x86_sse2_psrli_q:
6085 NewIntNo = Intrinsic::x86_sse2_psrl_q;
6086 break;
6087 case Intrinsic::x86_sse2_psrai_w:
6088 NewIntNo = Intrinsic::x86_sse2_psra_w;
6089 break;
6090 case Intrinsic::x86_sse2_psrai_d:
6091 NewIntNo = Intrinsic::x86_sse2_psra_d;
6092 break;
6093 default: {
6094 ShAmtVT = MVT::v2i32;
6095 switch (IntNo) {
6096 case Intrinsic::x86_mmx_pslli_w:
6097 NewIntNo = Intrinsic::x86_mmx_psll_w;
6098 break;
6099 case Intrinsic::x86_mmx_pslli_d:
6100 NewIntNo = Intrinsic::x86_mmx_psll_d;
6101 break;
6102 case Intrinsic::x86_mmx_pslli_q:
6103 NewIntNo = Intrinsic::x86_mmx_psll_q;
6104 break;
6105 case Intrinsic::x86_mmx_psrli_w:
6106 NewIntNo = Intrinsic::x86_mmx_psrl_w;
6107 break;
6108 case Intrinsic::x86_mmx_psrli_d:
6109 NewIntNo = Intrinsic::x86_mmx_psrl_d;
6110 break;
6111 case Intrinsic::x86_mmx_psrli_q:
6112 NewIntNo = Intrinsic::x86_mmx_psrl_q;
6113 break;
6114 case Intrinsic::x86_mmx_psrai_w:
6115 NewIntNo = Intrinsic::x86_mmx_psra_w;
6116 break;
6117 case Intrinsic::x86_mmx_psrai_d:
6118 NewIntNo = Intrinsic::x86_mmx_psra_d;
6119 break;
6120 default: abort(); // Can't reach here.
6121 }
6122 break;
6123 }
6124 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00006125 MVT VT = Op.getValueType();
Dale Johannesene4d209d2009-02-03 20:21:25 +00006126 ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT,
6127 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, ShAmtVT, ShAmt));
6128 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Evan Cheng5759f972008-05-04 09:15:50 +00006129 DAG.getConstant(NewIntNo, MVT::i32),
6130 Op.getOperand(1), ShAmt);
6131 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00006132 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006133}
Evan Cheng72261582005-12-20 06:22:03 +00006134
Dan Gohman475871a2008-07-27 21:46:04 +00006135SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
Bill Wendling64e87322009-01-16 19:25:27 +00006136 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006137 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00006138
6139 if (Depth > 0) {
6140 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
6141 SDValue Offset =
6142 DAG.getConstant(TD->getPointerSize(),
6143 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006144 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00006145 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00006146 FrameAddr, Offset),
Bill Wendling64e87322009-01-16 19:25:27 +00006147 NULL, 0);
6148 }
6149
6150 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00006151 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00006152 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00006153 RetAddrFI, NULL, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00006154}
6155
Dan Gohman475871a2008-07-27 21:46:04 +00006156SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
Evan Cheng184793f2008-09-27 01:56:22 +00006157 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6158 MFI->setFrameAddressIsTaken(true);
6159 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006160 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00006161 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
6162 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00006163 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00006164 while (Depth--)
Dale Johannesendd64c412009-02-04 00:33:20 +00006165 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, NULL, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00006166 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00006167}
6168
Dan Gohman475871a2008-07-27 21:46:04 +00006169SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Anton Korobeynikov260a6b82008-09-08 21:12:11 +00006170 SelectionDAG &DAG) {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00006171 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006172}
6173
Dan Gohman475871a2008-07-27 21:46:04 +00006174SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG)
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006175{
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006176 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00006177 SDValue Chain = Op.getOperand(0);
6178 SDValue Offset = Op.getOperand(1);
6179 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006180 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006181
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00006182 SDValue Frame = DAG.getRegister(Subtarget->is64Bit() ? X86::RBP : X86::EBP,
6183 getPointerTy());
6184 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006185
Dale Johannesene4d209d2009-02-03 20:21:25 +00006186 SDValue StoreAddr = DAG.getNode(ISD::SUB, dl, getPointerTy(), Frame,
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00006187 DAG.getIntPtrConstant(-TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006188 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
6189 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, NULL, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00006190 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00006191 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006192
Dale Johannesene4d209d2009-02-03 20:21:25 +00006193 return DAG.getNode(X86ISD::EH_RETURN, dl,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00006194 MVT::Other,
6195 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006196}
6197
Dan Gohman475871a2008-07-27 21:46:04 +00006198SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Duncan Sandsb116fac2007-07-27 20:02:49 +00006199 SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00006200 SDValue Root = Op.getOperand(0);
6201 SDValue Trmp = Op.getOperand(1); // trampoline
6202 SDValue FPtr = Op.getOperand(2); // nested function
6203 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006204 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00006205
Dan Gohman69de1932008-02-06 22:27:42 +00006206 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00006207
Duncan Sands339e14f2008-01-16 22:55:25 +00006208 const X86InstrInfo *TII =
6209 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
6210
Duncan Sandsb116fac2007-07-27 20:02:49 +00006211 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006212 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00006213
6214 // Large code-model.
6215
6216 const unsigned char JMP64r = TII->getBaseOpcodeFor(X86::JMP64r);
6217 const unsigned char MOV64ri = TII->getBaseOpcodeFor(X86::MOV64ri);
6218
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00006219 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
6220 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00006221
6222 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
6223
6224 // Load the pointer to the nested function into R11.
6225 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00006226 SDValue Addr = Trmp;
Dale Johannesene4d209d2009-02-03 20:21:25 +00006227 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6228 Addr, TrmpAddr, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00006229
Scott Michelfdc40a02009-02-17 22:15:04 +00006230 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006231 DAG.getConstant(2, MVT::i64));
6232 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr, TrmpAddr, 2, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00006233
6234 // Load the 'nest' parameter value into R10.
6235 // R10 is specified in X86CallingConv.td
6236 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Scott Michelfdc40a02009-02-17 22:15:04 +00006237 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006238 DAG.getConstant(10, MVT::i64));
6239 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6240 Addr, TrmpAddr, 10);
Duncan Sands339e14f2008-01-16 22:55:25 +00006241
Scott Michelfdc40a02009-02-17 22:15:04 +00006242 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006243 DAG.getConstant(12, MVT::i64));
6244 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 12, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00006245
6246 // Jump to the nested function.
6247 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Scott Michelfdc40a02009-02-17 22:15:04 +00006248 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006249 DAG.getConstant(20, MVT::i64));
6250 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6251 Addr, TrmpAddr, 20);
Duncan Sands339e14f2008-01-16 22:55:25 +00006252
6253 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Scott Michelfdc40a02009-02-17 22:15:04 +00006254 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006255 DAG.getConstant(22, MVT::i64));
6256 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Dan Gohman69de1932008-02-06 22:27:42 +00006257 TrmpAddr, 22);
Duncan Sands339e14f2008-01-16 22:55:25 +00006258
Dan Gohman475871a2008-07-27 21:46:04 +00006259 SDValue Ops[] =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006260 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
6261 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006262 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00006263 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00006264 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
6265 unsigned CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00006266 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006267
6268 switch (CC) {
6269 default:
6270 assert(0 && "Unsupported calling convention");
6271 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00006272 case CallingConv::X86_StdCall: {
6273 // Pass 'nest' parameter in ECX.
6274 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00006275 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006276
6277 // Check that ECX wasn't needed by an 'inreg' parameter.
6278 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00006279 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00006280
Chris Lattner58d74912008-03-12 17:45:29 +00006281 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00006282 unsigned InRegCount = 0;
6283 unsigned Idx = 1;
6284
6285 for (FunctionType::param_iterator I = FTy->param_begin(),
6286 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00006287 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00006288 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00006289 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006290
6291 if (InRegCount > 2) {
6292 cerr << "Nest register in use - reduce number of inreg parameters!\n";
6293 abort();
6294 }
6295 }
6296 break;
6297 }
6298 case CallingConv::X86_FastCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00006299 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00006300 // Pass 'nest' parameter in EAX.
6301 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00006302 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006303 break;
6304 }
6305
Dan Gohman475871a2008-07-27 21:46:04 +00006306 SDValue OutChains[4];
6307 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006308
Scott Michelfdc40a02009-02-17 22:15:04 +00006309 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006310 DAG.getConstant(10, MVT::i32));
6311 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006312
Duncan Sands339e14f2008-01-16 22:55:25 +00006313 const unsigned char MOV32ri = TII->getBaseOpcodeFor(X86::MOV32ri);
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00006314 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00006315 OutChains[0] = DAG.getStore(Root, dl,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006316 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Dan Gohman69de1932008-02-06 22:27:42 +00006317 Trmp, TrmpAddr, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006318
Scott Michelfdc40a02009-02-17 22:15:04 +00006319 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006320 DAG.getConstant(1, MVT::i32));
6321 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 1, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006322
Duncan Sands339e14f2008-01-16 22:55:25 +00006323 const unsigned char JMP = TII->getBaseOpcodeFor(X86::JMP);
Scott Michelfdc40a02009-02-17 22:15:04 +00006324 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006325 DAG.getConstant(5, MVT::i32));
6326 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Dan Gohman69de1932008-02-06 22:27:42 +00006327 TrmpAddr, 5, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006328
Scott Michelfdc40a02009-02-17 22:15:04 +00006329 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006330 DAG.getConstant(6, MVT::i32));
6331 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr, TrmpAddr, 6, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006332
Dan Gohman475871a2008-07-27 21:46:04 +00006333 SDValue Ops[] =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006334 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
6335 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006336 }
6337}
6338
Dan Gohman475871a2008-07-27 21:46:04 +00006339SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006340 /*
6341 The rounding mode is in bits 11:10 of FPSR, and has the following
6342 settings:
6343 00 Round to nearest
6344 01 Round to -inf
6345 10 Round to +inf
6346 11 Round to 0
6347
6348 FLT_ROUNDS, on the other hand, expects the following:
6349 -1 Undefined
6350 0 Round to 0
6351 1 Round to nearest
6352 2 Round to +inf
6353 3 Round to -inf
6354
6355 To perform the conversion, we do:
6356 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
6357 */
6358
6359 MachineFunction &MF = DAG.getMachineFunction();
6360 const TargetMachine &TM = MF.getTarget();
6361 const TargetFrameInfo &TFI = *TM.getFrameInfo();
6362 unsigned StackAlignment = TFI.getStackAlignment();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006363 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006364 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006365
6366 // Save FP Control Word to stack slot
6367 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment);
Dan Gohman475871a2008-07-27 21:46:04 +00006368 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006369
Dale Johannesene4d209d2009-02-03 20:21:25 +00006370 SDValue Chain = DAG.getNode(X86ISD::FNSTCW16m, dl, MVT::Other,
Evan Cheng8a186ae2008-09-24 23:26:36 +00006371 DAG.getEntryNode(), StackSlot);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006372
6373 // Load FP Control Word from stack slot
Dale Johannesene4d209d2009-02-03 20:21:25 +00006374 SDValue CWD = DAG.getLoad(MVT::i16, dl, Chain, StackSlot, NULL, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006375
6376 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00006377 SDValue CWD1 =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006378 DAG.getNode(ISD::SRL, dl, MVT::i16,
6379 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006380 CWD, DAG.getConstant(0x800, MVT::i16)),
6381 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00006382 SDValue CWD2 =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006383 DAG.getNode(ISD::SRL, dl, MVT::i16,
6384 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006385 CWD, DAG.getConstant(0x400, MVT::i16)),
6386 DAG.getConstant(9, MVT::i8));
6387
Dan Gohman475871a2008-07-27 21:46:04 +00006388 SDValue RetVal =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006389 DAG.getNode(ISD::AND, dl, MVT::i16,
6390 DAG.getNode(ISD::ADD, dl, MVT::i16,
6391 DAG.getNode(ISD::OR, dl, MVT::i16, CWD1, CWD2),
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006392 DAG.getConstant(1, MVT::i16)),
6393 DAG.getConstant(3, MVT::i16));
6394
6395
Duncan Sands83ec4b62008-06-06 12:08:01 +00006396 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006397 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006398}
6399
Dan Gohman475871a2008-07-27 21:46:04 +00006400SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006401 MVT VT = Op.getValueType();
6402 MVT OpVT = VT;
6403 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006404 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00006405
6406 Op = Op.getOperand(0);
6407 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00006408 // Zero extend to i32 since there is not an i8 bsr.
Evan Cheng18efe262007-12-14 02:13:44 +00006409 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00006410 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00006411 }
Evan Cheng18efe262007-12-14 02:13:44 +00006412
Evan Cheng152804e2007-12-14 08:30:15 +00006413 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
6414 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006415 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00006416
6417 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Dan Gohman475871a2008-07-27 21:46:04 +00006418 SmallVector<SDValue, 4> Ops;
Evan Cheng152804e2007-12-14 08:30:15 +00006419 Ops.push_back(Op);
6420 Ops.push_back(DAG.getConstant(NumBits+NumBits-1, OpVT));
6421 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6422 Ops.push_back(Op.getValue(1));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006423 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng152804e2007-12-14 08:30:15 +00006424
6425 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00006426 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00006427
Evan Cheng18efe262007-12-14 02:13:44 +00006428 if (VT == MVT::i8)
Dale Johannesene4d209d2009-02-03 20:21:25 +00006429 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00006430 return Op;
6431}
6432
Dan Gohman475871a2008-07-27 21:46:04 +00006433SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006434 MVT VT = Op.getValueType();
6435 MVT OpVT = VT;
6436 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006437 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00006438
6439 Op = Op.getOperand(0);
6440 if (VT == MVT::i8) {
6441 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00006442 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00006443 }
Evan Cheng152804e2007-12-14 08:30:15 +00006444
6445 // Issue a bsf (scan bits forward) which also sets EFLAGS.
6446 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006447 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00006448
6449 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Dan Gohman475871a2008-07-27 21:46:04 +00006450 SmallVector<SDValue, 4> Ops;
Evan Cheng152804e2007-12-14 08:30:15 +00006451 Ops.push_back(Op);
6452 Ops.push_back(DAG.getConstant(NumBits, OpVT));
6453 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6454 Ops.push_back(Op.getValue(1));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006455 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng152804e2007-12-14 08:30:15 +00006456
Evan Cheng18efe262007-12-14 02:13:44 +00006457 if (VT == MVT::i8)
Dale Johannesene4d209d2009-02-03 20:21:25 +00006458 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00006459 return Op;
6460}
6461
Mon P Wangaf9b9522008-12-18 21:42:19 +00006462SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) {
6463 MVT VT = Op.getValueType();
6464 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006465 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00006466
Mon P Wangaf9b9522008-12-18 21:42:19 +00006467 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
6468 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
6469 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
6470 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
6471 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
6472 //
6473 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
6474 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
6475 // return AloBlo + AloBhi + AhiBlo;
6476
6477 SDValue A = Op.getOperand(0);
6478 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006479
Dale Johannesene4d209d2009-02-03 20:21:25 +00006480 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006481 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6482 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006483 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006484 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6485 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006486 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006487 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6488 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006489 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006490 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6491 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006492 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006493 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6494 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006495 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006496 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6497 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006498 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006499 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6500 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006501 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
6502 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00006503 return Res;
6504}
6505
6506
Bill Wendling74c37652008-12-09 22:08:41 +00006507SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) {
6508 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
6509 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00006510 // looks for this combo and may remove the "setcc" instruction if the "setcc"
6511 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00006512 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00006513 SDValue LHS = N->getOperand(0);
6514 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00006515 unsigned BaseOp = 0;
6516 unsigned Cond = 0;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006517 DebugLoc dl = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00006518
6519 switch (Op.getOpcode()) {
6520 default: assert(0 && "Unknown ovf instruction!");
6521 case ISD::SADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006522 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00006523 Cond = X86::COND_O;
6524 break;
6525 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006526 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00006527 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00006528 break;
6529 case ISD::SSUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006530 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00006531 Cond = X86::COND_O;
6532 break;
6533 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006534 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00006535 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00006536 break;
6537 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00006538 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00006539 Cond = X86::COND_O;
6540 break;
6541 case ISD::UMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00006542 BaseOp = X86ISD::UMUL;
Dan Gohman653456c2009-01-07 00:15:08 +00006543 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00006544 break;
6545 }
Bill Wendling3fafd932008-11-26 22:37:40 +00006546
Bill Wendling61edeb52008-12-02 01:06:39 +00006547 // Also sets EFLAGS.
6548 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006549 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00006550
Bill Wendling61edeb52008-12-02 01:06:39 +00006551 SDValue SetCC =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006552 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Bill Wendlingbc5e15e2008-12-10 02:01:32 +00006553 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00006554
Bill Wendling61edeb52008-12-02 01:06:39 +00006555 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
6556 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00006557}
6558
Dan Gohman475871a2008-07-27 21:46:04 +00006559SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanfd4418f2008-06-25 16:07:49 +00006560 MVT T = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006561 DebugLoc dl = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00006562 unsigned Reg = 0;
6563 unsigned size = 0;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006564 switch(T.getSimpleVT()) {
6565 default:
6566 assert(false && "Invalid value type!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00006567 case MVT::i8: Reg = X86::AL; size = 1; break;
6568 case MVT::i16: Reg = X86::AX; size = 2; break;
6569 case MVT::i32: Reg = X86::EAX; size = 4; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006570 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00006571 assert(Subtarget->is64Bit() && "Node not type legal!");
6572 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006573 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00006574 }
Dale Johannesendd64c412009-02-04 00:33:20 +00006575 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), dl, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00006576 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00006577 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00006578 Op.getOperand(1),
6579 Op.getOperand(3),
6580 DAG.getTargetConstant(size, MVT::i8),
6581 cpIn.getValue(1) };
Andrew Lenharth26ed8692008-03-01 21:52:34 +00006582 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006583 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG_DAG, dl, Tys, Ops, 5);
Scott Michelfdc40a02009-02-17 22:15:04 +00006584 SDValue cpOut =
Dale Johannesendd64c412009-02-04 00:33:20 +00006585 DAG.getCopyFromReg(Result.getValue(0), dl, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00006586 return cpOut;
6587}
6588
Duncan Sands1607f052008-12-01 11:39:25 +00006589SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Gabor Greif327ef032008-08-28 23:19:51 +00006590 SelectionDAG &DAG) {
Duncan Sands1607f052008-12-01 11:39:25 +00006591 assert(Subtarget->is64Bit() && "Result not type legalized?");
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006592 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00006593 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006594 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00006595 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Dale Johannesendd64c412009-02-04 00:33:20 +00006596 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
6597 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00006598 rax.getValue(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006599 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
Duncan Sands1607f052008-12-01 11:39:25 +00006600 DAG.getConstant(32, MVT::i8));
6601 SDValue Ops[] = {
Dale Johannesene4d209d2009-02-03 20:21:25 +00006602 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00006603 rdx.getValue(1)
6604 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00006605 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006606}
6607
Dale Johannesen71d1bf52008-09-29 22:25:26 +00006608SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
6609 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00006610 DebugLoc dl = Node->getDebugLoc();
Dale Johannesen71d1bf52008-09-29 22:25:26 +00006611 MVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006612 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Dale Johannesen71d1bf52008-09-29 22:25:26 +00006613 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006614 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006615 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00006616 Node->getOperand(0),
6617 Node->getOperand(1), negOp,
6618 cast<AtomicSDNode>(Node)->getSrcValue(),
6619 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00006620}
6621
Evan Cheng0db9fe62006-04-25 20:13:52 +00006622/// LowerOperation - Provide custom lowering hooks for some operations.
6623///
Dan Gohman475871a2008-07-27 21:46:04 +00006624SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006625 switch (Op.getOpcode()) {
6626 default: assert(0 && "Should not custom lower this!");
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006627 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
6628 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006629 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
6630 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6631 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6632 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
6633 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
6634 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
6635 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006636 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00006637 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006638 case ISD::SHL_PARTS:
6639 case ISD::SRA_PARTS:
6640 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
6641 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006642 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006643 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
6644 case ISD::FABS: return LowerFABS(Op, DAG);
6645 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006646 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00006647 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00006648 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00006649 case ISD::SELECT: return LowerSELECT(Op, DAG);
6650 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006651 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng32fe1032006-05-25 00:59:30 +00006652 case ISD::CALL: return LowerCALL(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006653 case ISD::RET: return LowerRET(Op, DAG);
Evan Cheng1bc78042006-04-26 01:20:17 +00006654 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006655 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00006656 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00006657 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006658 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00006659 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
6660 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006661 case ISD::FRAME_TO_ARGS_OFFSET:
6662 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00006663 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006664 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006665 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00006666 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00006667 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
6668 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00006669 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00006670 case ISD::SADDO:
6671 case ISD::UADDO:
6672 case ISD::SSUBO:
6673 case ISD::USUBO:
6674 case ISD::SMULO:
6675 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00006676 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006677 }
Chris Lattner27a6c732007-11-24 07:07:01 +00006678}
6679
Duncan Sands1607f052008-12-01 11:39:25 +00006680void X86TargetLowering::
6681ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
6682 SelectionDAG &DAG, unsigned NewOp) {
6683 MVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006684 DebugLoc dl = Node->getDebugLoc();
Duncan Sands1607f052008-12-01 11:39:25 +00006685 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
6686
6687 SDValue Chain = Node->getOperand(0);
6688 SDValue In1 = Node->getOperand(1);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006689 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00006690 Node->getOperand(2), DAG.getIntPtrConstant(0));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006691 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00006692 Node->getOperand(2), DAG.getIntPtrConstant(1));
6693 // This is a generalized SDNode, not an AtomicSDNode, so it doesn't
6694 // have a MemOperand. Pass the info through as a normal operand.
6695 SDValue LSI = DAG.getMemOperand(cast<MemSDNode>(Node)->getMemOperand());
6696 SDValue Ops[] = { Chain, In1, In2L, In2H, LSI };
6697 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006698 SDValue Result = DAG.getNode(NewOp, dl, Tys, Ops, 5);
Duncan Sands1607f052008-12-01 11:39:25 +00006699 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Dale Johannesene4d209d2009-02-03 20:21:25 +00006700 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00006701 Results.push_back(Result.getValue(2));
6702}
6703
Duncan Sands126d9072008-07-04 11:47:58 +00006704/// ReplaceNodeResults - Replace a node with an illegal result type
6705/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00006706void X86TargetLowering::ReplaceNodeResults(SDNode *N,
6707 SmallVectorImpl<SDValue>&Results,
6708 SelectionDAG &DAG) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00006709 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00006710 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00006711 default:
Duncan Sands1607f052008-12-01 11:39:25 +00006712 assert(false && "Do not know how to custom type legalize this operation!");
6713 return;
6714 case ISD::FP_TO_SINT: {
6715 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(SDValue(N, 0), DAG);
6716 SDValue FIST = Vals.first, StackSlot = Vals.second;
6717 if (FIST.getNode() != 0) {
6718 MVT VT = N->getValueType(0);
6719 // Return a load from the stack slot.
Dale Johannesene4d209d2009-02-03 20:21:25 +00006720 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot, NULL, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00006721 }
6722 return;
6723 }
6724 case ISD::READCYCLECOUNTER: {
6725 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6726 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006727 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006728 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00006729 rd.getValue(1));
6730 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00006731 eax.getValue(2));
6732 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
6733 SDValue Ops[] = { eax, edx };
Dale Johannesene4d209d2009-02-03 20:21:25 +00006734 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00006735 Results.push_back(edx.getValue(1));
6736 return;
6737 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006738 case ISD::ATOMIC_CMP_SWAP: {
Duncan Sands1607f052008-12-01 11:39:25 +00006739 MVT T = N->getValueType(0);
6740 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
6741 SDValue cpInL, cpInH;
Dale Johannesene4d209d2009-02-03 20:21:25 +00006742 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands1607f052008-12-01 11:39:25 +00006743 DAG.getConstant(0, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006744 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands1607f052008-12-01 11:39:25 +00006745 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00006746 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
6747 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00006748 cpInL.getValue(1));
6749 SDValue swapInL, swapInH;
Dale Johannesene4d209d2009-02-03 20:21:25 +00006750 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands1607f052008-12-01 11:39:25 +00006751 DAG.getConstant(0, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006752 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands1607f052008-12-01 11:39:25 +00006753 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00006754 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00006755 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00006756 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00006757 swapInL.getValue(1));
6758 SDValue Ops[] = { swapInH.getValue(0),
6759 N->getOperand(1),
6760 swapInH.getValue(1) };
6761 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006762 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG8_DAG, dl, Tys, Ops, 3);
Dale Johannesendd64c412009-02-04 00:33:20 +00006763 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
6764 MVT::i32, Result.getValue(1));
6765 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
6766 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00006767 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Dale Johannesene4d209d2009-02-03 20:21:25 +00006768 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00006769 Results.push_back(cpOutH.getValue(1));
6770 return;
6771 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006772 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00006773 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
6774 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006775 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00006776 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
6777 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006778 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00006779 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
6780 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006781 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00006782 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
6783 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006784 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00006785 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
6786 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006787 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00006788 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
6789 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006790 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00006791 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
6792 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00006793 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006794}
6795
Evan Cheng72261582005-12-20 06:22:03 +00006796const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
6797 switch (Opcode) {
6798 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00006799 case X86ISD::BSF: return "X86ISD::BSF";
6800 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00006801 case X86ISD::SHLD: return "X86ISD::SHLD";
6802 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00006803 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00006804 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00006805 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00006806 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00006807 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00006808 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00006809 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
6810 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
6811 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00006812 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00006813 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00006814 case X86ISD::CALL: return "X86ISD::CALL";
6815 case X86ISD::TAILCALL: return "X86ISD::TAILCALL";
6816 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00006817 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00006818 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00006819 case X86ISD::COMI: return "X86ISD::COMI";
6820 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00006821 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Cheng72261582005-12-20 06:22:03 +00006822 case X86ISD::CMOV: return "X86ISD::CMOV";
6823 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00006824 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00006825 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
6826 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00006827 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00006828 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Nate Begeman14d12ca2008-02-11 04:19:36 +00006829 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00006830 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00006831 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
6832 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00006833 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Evan Cheng8ca29322006-11-10 21:43:37 +00006834 case X86ISD::FMAX: return "X86ISD::FMAX";
6835 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00006836 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
6837 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006838 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
6839 case X86ISD::THREAD_POINTER: return "X86ISD::THREAD_POINTER";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006840 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00006841 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006842 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00006843 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
6844 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006845 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
6846 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
6847 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
6848 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
6849 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
6850 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00006851 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
6852 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00006853 case X86ISD::VSHL: return "X86ISD::VSHL";
6854 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00006855 case X86ISD::CMPPD: return "X86ISD::CMPPD";
6856 case X86ISD::CMPPS: return "X86ISD::CMPPS";
6857 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
6858 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
6859 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
6860 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
6861 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
6862 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
6863 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
6864 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006865 case X86ISD::ADD: return "X86ISD::ADD";
6866 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingd350e022008-12-12 21:15:41 +00006867 case X86ISD::SMUL: return "X86ISD::SMUL";
6868 case X86ISD::UMUL: return "X86ISD::UMUL";
Evan Cheng72261582005-12-20 06:22:03 +00006869 }
6870}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00006871
Chris Lattnerc9addb72007-03-30 23:15:24 +00006872// isLegalAddressingMode - Return true if the addressing mode represented
6873// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00006874bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00006875 const Type *Ty) const {
6876 // X86 supports extremely general addressing modes.
Scott Michelfdc40a02009-02-17 22:15:04 +00006877
Chris Lattnerc9addb72007-03-30 23:15:24 +00006878 // X86 allows a sign-extended 32-bit immediate field as a displacement.
6879 if (AM.BaseOffs <= -(1LL << 32) || AM.BaseOffs >= (1LL << 32)-1)
6880 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006881
Chris Lattnerc9addb72007-03-30 23:15:24 +00006882 if (AM.BaseGV) {
Evan Cheng52787842007-08-01 23:46:47 +00006883 // We can only fold this if we don't need an extra load.
Chris Lattnerc9addb72007-03-30 23:15:24 +00006884 if (Subtarget->GVRequiresExtraLoad(AM.BaseGV, getTargetMachine(), false))
6885 return false;
Dale Johannesen203af582008-12-05 21:47:27 +00006886 // If BaseGV requires a register, we cannot also have a BaseReg.
6887 if (Subtarget->GVRequiresRegister(AM.BaseGV, getTargetMachine(), false) &&
6888 AM.HasBaseReg)
6889 return false;
Evan Cheng52787842007-08-01 23:46:47 +00006890
6891 // X86-64 only supports addr of globals in small code model.
6892 if (Subtarget->is64Bit()) {
6893 if (getTargetMachine().getCodeModel() != CodeModel::Small)
6894 return false;
6895 // If lower 4G is not available, then we must use rip-relative addressing.
6896 if (AM.BaseOffs || AM.Scale > 1)
6897 return false;
6898 }
Chris Lattnerc9addb72007-03-30 23:15:24 +00006899 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006900
Chris Lattnerc9addb72007-03-30 23:15:24 +00006901 switch (AM.Scale) {
6902 case 0:
6903 case 1:
6904 case 2:
6905 case 4:
6906 case 8:
6907 // These scales always work.
6908 break;
6909 case 3:
6910 case 5:
6911 case 9:
6912 // These scales are formed with basereg+scalereg. Only accept if there is
6913 // no basereg yet.
6914 if (AM.HasBaseReg)
6915 return false;
6916 break;
6917 default: // Other stuff never works.
6918 return false;
6919 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006920
Chris Lattnerc9addb72007-03-30 23:15:24 +00006921 return true;
6922}
6923
6924
Evan Cheng2bd122c2007-10-26 01:56:11 +00006925bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
6926 if (!Ty1->isInteger() || !Ty2->isInteger())
6927 return false;
Evan Chenge127a732007-10-29 07:57:50 +00006928 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
6929 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00006930 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00006931 return false;
6932 return Subtarget->is64Bit() || NumBits1 < 64;
Evan Cheng2bd122c2007-10-26 01:56:11 +00006933}
6934
Duncan Sands83ec4b62008-06-06 12:08:01 +00006935bool X86TargetLowering::isTruncateFree(MVT VT1, MVT VT2) const {
6936 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00006937 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006938 unsigned NumBits1 = VT1.getSizeInBits();
6939 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00006940 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00006941 return false;
6942 return Subtarget->is64Bit() || NumBits1 < 64;
6943}
Evan Cheng2bd122c2007-10-26 01:56:11 +00006944
Evan Cheng60c07e12006-07-05 22:17:51 +00006945/// isShuffleMaskLegal - Targets can use this to indicate that they only
6946/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
6947/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
6948/// are assumed to be legal.
6949bool
Dan Gohman475871a2008-07-27 21:46:04 +00006950X86TargetLowering::isShuffleMaskLegal(SDValue Mask, MVT VT) const {
Evan Cheng60c07e12006-07-05 22:17:51 +00006951 // Only do shuffles on 128-bit vector types for now.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006952 if (VT.getSizeInBits() == 64) return false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006953 return (Mask.getNode()->getNumOperands() <= 4 ||
6954 isIdentityMask(Mask.getNode()) ||
6955 isIdentityMask(Mask.getNode(), true) ||
6956 isSplatMask(Mask.getNode()) ||
6957 isPSHUFHW_PSHUFLWMask(Mask.getNode()) ||
6958 X86::isUNPCKLMask(Mask.getNode()) ||
6959 X86::isUNPCKHMask(Mask.getNode()) ||
6960 X86::isUNPCKL_v_undef_Mask(Mask.getNode()) ||
6961 X86::isUNPCKH_v_undef_Mask(Mask.getNode()));
Evan Cheng60c07e12006-07-05 22:17:51 +00006962}
6963
Dan Gohman7d8143f2008-04-09 20:09:42 +00006964bool
Dan Gohman475871a2008-07-27 21:46:04 +00006965X86TargetLowering::isVectorClearMaskLegal(const std::vector<SDValue> &BVOps,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006966 MVT EVT, SelectionDAG &DAG) const {
Evan Cheng60c07e12006-07-05 22:17:51 +00006967 unsigned NumElts = BVOps.size();
6968 // Only do shuffles on 128-bit vector types for now.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006969 if (EVT.getSizeInBits() * NumElts == 64) return false;
Evan Cheng60c07e12006-07-05 22:17:51 +00006970 if (NumElts == 2) return true;
6971 if (NumElts == 4) {
Chris Lattner5a88b832007-02-25 07:10:00 +00006972 return (isMOVLMask(&BVOps[0], 4) ||
6973 isCommutedMOVL(&BVOps[0], 4, true) ||
Scott Michelfdc40a02009-02-17 22:15:04 +00006974 isSHUFPMask(&BVOps[0], 4) ||
Chris Lattner5a88b832007-02-25 07:10:00 +00006975 isCommutedSHUFP(&BVOps[0], 4));
Evan Cheng60c07e12006-07-05 22:17:51 +00006976 }
6977 return false;
6978}
6979
6980//===----------------------------------------------------------------------===//
6981// X86 Scheduler Hooks
6982//===----------------------------------------------------------------------===//
6983
Mon P Wang63307c32008-05-05 19:05:59 +00006984// private utility function
6985MachineBasicBlock *
6986X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
6987 MachineBasicBlock *MBB,
6988 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00006989 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00006990 unsigned LoadOpc,
6991 unsigned CXchgOpc,
6992 unsigned copyOpc,
6993 unsigned notOpc,
6994 unsigned EAXreg,
6995 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00006996 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00006997 // For the atomic bitwise operator, we generate
6998 // thisMBB:
6999 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00007000 // ld t1 = [bitinstr.addr]
7001 // op t2 = t1, [bitinstr.val]
7002 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00007003 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7004 // bz newMBB
7005 // fallthrough -->nextMBB
7006 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7007 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007008 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00007009 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00007010
Mon P Wang63307c32008-05-05 19:05:59 +00007011 /// First build the CFG
7012 MachineFunction *F = MBB->getParent();
7013 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007014 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7015 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7016 F->insert(MBBIter, newMBB);
7017 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007018
Mon P Wang63307c32008-05-05 19:05:59 +00007019 // Move all successors to thisMBB to nextMBB
7020 nextMBB->transferSuccessors(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007021
Mon P Wang63307c32008-05-05 19:05:59 +00007022 // Update thisMBB to fall through to newMBB
7023 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007024
Mon P Wang63307c32008-05-05 19:05:59 +00007025 // newMBB jumps to itself and fall through to nextMBB
7026 newMBB->addSuccessor(nextMBB);
7027 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007028
Mon P Wang63307c32008-05-05 19:05:59 +00007029 // Insert instructions into newMBB based on incoming instruction
7030 assert(bInstr->getNumOperands() < 8 && "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00007031 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00007032 MachineOperand& destOper = bInstr->getOperand(0);
7033 MachineOperand* argOpers[6];
7034 int numArgs = bInstr->getNumOperands() - 1;
7035 for (int i=0; i < numArgs; ++i)
7036 argOpers[i] = &bInstr->getOperand(i+1);
7037
7038 // x86 address has 4 operands: base, index, scale, and displacement
7039 int lastAddrIndx = 3; // [0,3]
7040 int valArgIndx = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00007041
Dale Johannesen140be2d2008-08-19 18:47:28 +00007042 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007043 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00007044 for (int i=0; i <= lastAddrIndx; ++i)
7045 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007046
Dale Johannesen140be2d2008-08-19 18:47:28 +00007047 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007048 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00007049 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007050 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007051 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007052 tt = t1;
7053
Dale Johannesen140be2d2008-08-19 18:47:28 +00007054 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00007055 assert((argOpers[valArgIndx]->isReg() ||
7056 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00007057 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00007058 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00007059 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00007060 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00007061 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007062 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00007063 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007064
Dale Johannesene4d209d2009-02-03 20:21:25 +00007065 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00007066 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007067
Dale Johannesene4d209d2009-02-03 20:21:25 +00007068 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00007069 for (int i=0; i <= lastAddrIndx; ++i)
7070 (*MIB).addOperand(*argOpers[i]);
7071 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00007072 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7073 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7074
Dale Johannesene4d209d2009-02-03 20:21:25 +00007075 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00007076 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00007077
Mon P Wang63307c32008-05-05 19:05:59 +00007078 // insert branch
Dale Johannesene4d209d2009-02-03 20:21:25 +00007079 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00007080
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007081 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00007082 return nextMBB;
7083}
7084
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00007085// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00007086MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007087X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
7088 MachineBasicBlock *MBB,
7089 unsigned regOpcL,
7090 unsigned regOpcH,
7091 unsigned immOpcL,
7092 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00007093 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007094 // For the atomic bitwise operator, we generate
7095 // thisMBB (instructions are in pairs, except cmpxchg8b)
7096 // ld t1,t2 = [bitinstr.addr]
7097 // newMBB:
7098 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
7099 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00007100 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007101 // mov ECX, EBX <- t5, t6
7102 // mov EAX, EDX <- t1, t2
7103 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
7104 // mov t3, t4 <- EAX, EDX
7105 // bz newMBB
7106 // result in out1, out2
7107 // fallthrough -->nextMBB
7108
7109 const TargetRegisterClass *RC = X86::GR32RegisterClass;
7110 const unsigned LoadOpc = X86::MOV32rm;
7111 const unsigned copyOpc = X86::MOV32rr;
7112 const unsigned NotOpc = X86::NOT32r;
7113 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7114 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
7115 MachineFunction::iterator MBBIter = MBB;
7116 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00007117
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007118 /// First build the CFG
7119 MachineFunction *F = MBB->getParent();
7120 MachineBasicBlock *thisMBB = MBB;
7121 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7122 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7123 F->insert(MBBIter, newMBB);
7124 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007125
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007126 // Move all successors to thisMBB to nextMBB
7127 nextMBB->transferSuccessors(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007128
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007129 // Update thisMBB to fall through to newMBB
7130 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007131
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007132 // newMBB jumps to itself and fall through to nextMBB
7133 newMBB->addSuccessor(nextMBB);
7134 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007135
Dale Johannesene4d209d2009-02-03 20:21:25 +00007136 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007137 // Insert instructions into newMBB based on incoming instruction
7138 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
7139 assert(bInstr->getNumOperands() < 18 && "unexpected number of operands");
7140 MachineOperand& dest1Oper = bInstr->getOperand(0);
7141 MachineOperand& dest2Oper = bInstr->getOperand(1);
7142 MachineOperand* argOpers[6];
7143 for (int i=0; i < 6; ++i)
7144 argOpers[i] = &bInstr->getOperand(i+2);
7145
7146 // x86 address has 4 operands: base, index, scale, and displacement
7147 int lastAddrIndx = 3; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00007148
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007149 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007150 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007151 for (int i=0; i <= lastAddrIndx; ++i)
7152 (*MIB).addOperand(*argOpers[i]);
7153 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007154 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00007155 // add 4 to displacement.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007156 for (int i=0; i <= lastAddrIndx-1; ++i)
7157 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00007158 MachineOperand newOp3 = *(argOpers[3]);
7159 if (newOp3.isImm())
7160 newOp3.setImm(newOp3.getImm()+4);
7161 else
7162 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007163 (*MIB).addOperand(newOp3);
7164
7165 // t3/4 are defined later, at the bottom of the loop
7166 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
7167 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007168 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007169 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007170 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007171 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
7172
7173 unsigned tt1 = F->getRegInfo().createVirtualRegister(RC);
7174 unsigned tt2 = F->getRegInfo().createVirtualRegister(RC);
Scott Michelfdc40a02009-02-17 22:15:04 +00007175 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00007176 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt1).addReg(t1);
7177 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt2).addReg(t2);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007178 } else {
7179 tt1 = t1;
7180 tt2 = t2;
7181 }
7182
Dan Gohmand735b802008-10-03 15:45:36 +00007183 assert((argOpers[4]->isReg() || argOpers[4]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007184 "invalid operand");
7185 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
7186 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00007187 if (argOpers[4]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00007188 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007189 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00007190 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00007191 if (regOpcL != X86::MOV32rr)
7192 MIB.addReg(tt1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007193 (*MIB).addOperand(*argOpers[4]);
Dan Gohmand735b802008-10-03 15:45:36 +00007194 assert(argOpers[5]->isReg() == argOpers[4]->isReg());
7195 assert(argOpers[5]->isImm() == argOpers[4]->isImm());
7196 if (argOpers[5]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00007197 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007198 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00007199 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00007200 if (regOpcH != X86::MOV32rr)
7201 MIB.addReg(tt2);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007202 (*MIB).addOperand(*argOpers[5]);
7203
Dale Johannesene4d209d2009-02-03 20:21:25 +00007204 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007205 MIB.addReg(t1);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007206 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007207 MIB.addReg(t2);
7208
Dale Johannesene4d209d2009-02-03 20:21:25 +00007209 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007210 MIB.addReg(t5);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007211 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007212 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00007213
Dale Johannesene4d209d2009-02-03 20:21:25 +00007214 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007215 for (int i=0; i <= lastAddrIndx; ++i)
7216 (*MIB).addOperand(*argOpers[i]);
7217
7218 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7219 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7220
Dale Johannesene4d209d2009-02-03 20:21:25 +00007221 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007222 MIB.addReg(X86::EAX);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007223 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007224 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00007225
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007226 // insert branch
Dale Johannesene4d209d2009-02-03 20:21:25 +00007227 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007228
7229 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
7230 return nextMBB;
7231}
7232
7233// private utility function
7234MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00007235X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
7236 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00007237 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00007238 // For the atomic min/max operator, we generate
7239 // thisMBB:
7240 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00007241 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00007242 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00007243 // cmp t1, t2
7244 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00007245 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00007246 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7247 // bz newMBB
7248 // fallthrough -->nextMBB
7249 //
7250 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7251 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007252 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00007253 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00007254
Mon P Wang63307c32008-05-05 19:05:59 +00007255 /// First build the CFG
7256 MachineFunction *F = MBB->getParent();
7257 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007258 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7259 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7260 F->insert(MBBIter, newMBB);
7261 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007262
Mon P Wang63307c32008-05-05 19:05:59 +00007263 // Move all successors to thisMBB to nextMBB
7264 nextMBB->transferSuccessors(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007265
Mon P Wang63307c32008-05-05 19:05:59 +00007266 // Update thisMBB to fall through to newMBB
7267 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007268
Mon P Wang63307c32008-05-05 19:05:59 +00007269 // newMBB jumps to newMBB and fall through to nextMBB
7270 newMBB->addSuccessor(nextMBB);
7271 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007272
Dale Johannesene4d209d2009-02-03 20:21:25 +00007273 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00007274 // Insert instructions into newMBB based on incoming instruction
7275 assert(mInstr->getNumOperands() < 8 && "unexpected number of operands");
7276 MachineOperand& destOper = mInstr->getOperand(0);
7277 MachineOperand* argOpers[6];
7278 int numArgs = mInstr->getNumOperands() - 1;
7279 for (int i=0; i < numArgs; ++i)
7280 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007281
Mon P Wang63307c32008-05-05 19:05:59 +00007282 // x86 address has 4 operands: base, index, scale, and displacement
7283 int lastAddrIndx = 3; // [0,3]
7284 int valArgIndx = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00007285
Mon P Wangab3e7472008-05-05 22:56:23 +00007286 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007287 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00007288 for (int i=0; i <= lastAddrIndx; ++i)
7289 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00007290
Mon P Wang63307c32008-05-05 19:05:59 +00007291 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00007292 assert((argOpers[valArgIndx]->isReg() ||
7293 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00007294 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00007295
7296 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00007297 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00007298 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00007299 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00007300 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00007301 (*MIB).addOperand(*argOpers[valArgIndx]);
7302
Dale Johannesene4d209d2009-02-03 20:21:25 +00007303 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00007304 MIB.addReg(t1);
7305
Dale Johannesene4d209d2009-02-03 20:21:25 +00007306 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00007307 MIB.addReg(t1);
7308 MIB.addReg(t2);
7309
7310 // Generate movc
7311 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007312 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00007313 MIB.addReg(t2);
7314 MIB.addReg(t1);
7315
7316 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00007317 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00007318 for (int i=0; i <= lastAddrIndx; ++i)
7319 (*MIB).addOperand(*argOpers[i]);
7320 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00007321 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7322 (*MIB).addMemOperand(*F, *mInstr->memoperands_begin());
Scott Michelfdc40a02009-02-17 22:15:04 +00007323
Dale Johannesene4d209d2009-02-03 20:21:25 +00007324 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +00007325 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +00007326
Mon P Wang63307c32008-05-05 19:05:59 +00007327 // insert branch
Dale Johannesene4d209d2009-02-03 20:21:25 +00007328 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00007329
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007330 F->DeleteMachineInstr(mInstr); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00007331 return nextMBB;
7332}
7333
7334
Evan Cheng60c07e12006-07-05 22:17:51 +00007335MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00007336X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00007337 MachineBasicBlock *BB) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00007338 DebugLoc dl = MI->getDebugLoc();
Evan Chengc0f64ff2006-11-27 23:37:22 +00007339 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Evan Cheng60c07e12006-07-05 22:17:51 +00007340 switch (MI->getOpcode()) {
7341 default: assert(false && "Unexpected instr type to insert");
Mon P Wang9e5ecb82008-12-12 01:25:51 +00007342 case X86::CMOV_V1I64:
Evan Cheng60c07e12006-07-05 22:17:51 +00007343 case X86::CMOV_FR32:
7344 case X86::CMOV_FR64:
7345 case X86::CMOV_V4F32:
7346 case X86::CMOV_V2F64:
Evan Chenge5f62042007-09-29 00:00:36 +00007347 case X86::CMOV_V2I64: {
Evan Cheng60c07e12006-07-05 22:17:51 +00007348 // To "insert" a SELECT_CC instruction, we actually have to insert the
7349 // diamond control-flow pattern. The incoming instruction knows the
7350 // destination vreg to set, the condition code register to branch on, the
7351 // true/false values to select between, and a branch opcode to use.
7352 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007353 MachineFunction::iterator It = BB;
Evan Cheng60c07e12006-07-05 22:17:51 +00007354 ++It;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007355
Evan Cheng60c07e12006-07-05 22:17:51 +00007356 // thisMBB:
7357 // ...
7358 // TrueVal = ...
7359 // cmpTY ccX, r1, r2
7360 // bCC copy1MBB
7361 // fallthrough --> copy0MBB
7362 MachineBasicBlock *thisMBB = BB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007363 MachineFunction *F = BB->getParent();
7364 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7365 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007366 unsigned Opc =
Chris Lattner7fbe9722006-10-20 17:42:20 +00007367 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
Dale Johannesene4d209d2009-02-03 20:21:25 +00007368 BuildMI(BB, dl, TII->get(Opc)).addMBB(sinkMBB);
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007369 F->insert(It, copy0MBB);
7370 F->insert(It, sinkMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00007371 // Update machine-CFG edges by transferring all successors of the current
Evan Cheng60c07e12006-07-05 22:17:51 +00007372 // block to the new block which will contain the Phi node for the select.
Mon P Wang63307c32008-05-05 19:05:59 +00007373 sinkMBB->transferSuccessors(BB);
7374
7375 // Add the true and fallthrough blocks as its successors.
Evan Cheng60c07e12006-07-05 22:17:51 +00007376 BB->addSuccessor(copy0MBB);
7377 BB->addSuccessor(sinkMBB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007378
Evan Cheng60c07e12006-07-05 22:17:51 +00007379 // copy0MBB:
7380 // %FalseValue = ...
7381 // # fallthrough to sinkMBB
7382 BB = copy0MBB;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007383
Evan Cheng60c07e12006-07-05 22:17:51 +00007384 // Update machine-CFG edges
7385 BB->addSuccessor(sinkMBB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007386
Evan Cheng60c07e12006-07-05 22:17:51 +00007387 // sinkMBB:
7388 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7389 // ...
7390 BB = sinkMBB;
Dale Johannesene4d209d2009-02-03 20:21:25 +00007391 BuildMI(BB, dl, TII->get(X86::PHI), MI->getOperand(0).getReg())
Evan Cheng60c07e12006-07-05 22:17:51 +00007392 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7393 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7394
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007395 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +00007396 return BB;
7397 }
7398
Dale Johannesen849f2142007-07-03 00:53:03 +00007399 case X86::FP32_TO_INT16_IN_MEM:
7400 case X86::FP32_TO_INT32_IN_MEM:
7401 case X86::FP32_TO_INT64_IN_MEM:
7402 case X86::FP64_TO_INT16_IN_MEM:
7403 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +00007404 case X86::FP64_TO_INT64_IN_MEM:
7405 case X86::FP80_TO_INT16_IN_MEM:
7406 case X86::FP80_TO_INT32_IN_MEM:
7407 case X86::FP80_TO_INT64_IN_MEM: {
Evan Cheng60c07e12006-07-05 22:17:51 +00007408 // Change the floating point control register to use "round towards zero"
7409 // mode when truncating to an integer value.
7410 MachineFunction *F = BB->getParent();
7411 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007412 addFrameReference(BuildMI(BB, dl, TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007413
7414 // Load the old value of the high byte of the control word...
7415 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +00007416 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Scott Michelfdc40a02009-02-17 22:15:04 +00007417 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007418 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007419
7420 // Set the high part to be round to zero...
Dale Johannesene4d209d2009-02-03 20:21:25 +00007421 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +00007422 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +00007423
7424 // Reload the modified control word now...
Dale Johannesene4d209d2009-02-03 20:21:25 +00007425 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007426
7427 // Restore the memory image of control word to original value
Dale Johannesene4d209d2009-02-03 20:21:25 +00007428 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +00007429 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +00007430
7431 // Get the X86 opcode to use.
7432 unsigned Opc;
7433 switch (MI->getOpcode()) {
7434 default: assert(0 && "illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +00007435 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
7436 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
7437 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
7438 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
7439 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
7440 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +00007441 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
7442 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
7443 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +00007444 }
7445
7446 X86AddressMode AM;
7447 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +00007448 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +00007449 AM.BaseType = X86AddressMode::RegBase;
7450 AM.Base.Reg = Op.getReg();
7451 } else {
7452 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +00007453 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +00007454 }
7455 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +00007456 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +00007457 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00007458 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +00007459 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +00007460 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00007461 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +00007462 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +00007463 AM.GV = Op.getGlobal();
7464 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +00007465 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00007466 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007467 addFullAddress(BuildMI(BB, dl, TII->get(Opc)), AM)
Evan Chengc0f64ff2006-11-27 23:37:22 +00007468 .addReg(MI->getOperand(4).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +00007469
7470 // Reload the original control word now.
Dale Johannesene4d209d2009-02-03 20:21:25 +00007471 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007472
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007473 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +00007474 return BB;
7475 }
Mon P Wang63307c32008-05-05 19:05:59 +00007476 case X86::ATOMAND32:
7477 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00007478 X86::AND32ri, X86::MOV32rm,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007479 X86::LCMPXCHG32, X86::MOV32rr,
7480 X86::NOT32r, X86::EAX,
7481 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +00007482 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +00007483 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
7484 X86::OR32ri, X86::MOV32rm,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007485 X86::LCMPXCHG32, X86::MOV32rr,
7486 X86::NOT32r, X86::EAX,
7487 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +00007488 case X86::ATOMXOR32:
7489 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00007490 X86::XOR32ri, X86::MOV32rm,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007491 X86::LCMPXCHG32, X86::MOV32rr,
7492 X86::NOT32r, X86::EAX,
7493 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007494 case X86::ATOMNAND32:
7495 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007496 X86::AND32ri, X86::MOV32rm,
7497 X86::LCMPXCHG32, X86::MOV32rr,
7498 X86::NOT32r, X86::EAX,
7499 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +00007500 case X86::ATOMMIN32:
7501 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
7502 case X86::ATOMMAX32:
7503 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
7504 case X86::ATOMUMIN32:
7505 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
7506 case X86::ATOMUMAX32:
7507 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +00007508
7509 case X86::ATOMAND16:
7510 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7511 X86::AND16ri, X86::MOV16rm,
7512 X86::LCMPXCHG16, X86::MOV16rr,
7513 X86::NOT16r, X86::AX,
7514 X86::GR16RegisterClass);
7515 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +00007516 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007517 X86::OR16ri, X86::MOV16rm,
7518 X86::LCMPXCHG16, X86::MOV16rr,
7519 X86::NOT16r, X86::AX,
7520 X86::GR16RegisterClass);
7521 case X86::ATOMXOR16:
7522 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
7523 X86::XOR16ri, X86::MOV16rm,
7524 X86::LCMPXCHG16, X86::MOV16rr,
7525 X86::NOT16r, X86::AX,
7526 X86::GR16RegisterClass);
7527 case X86::ATOMNAND16:
7528 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7529 X86::AND16ri, X86::MOV16rm,
7530 X86::LCMPXCHG16, X86::MOV16rr,
7531 X86::NOT16r, X86::AX,
7532 X86::GR16RegisterClass, true);
7533 case X86::ATOMMIN16:
7534 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
7535 case X86::ATOMMAX16:
7536 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
7537 case X86::ATOMUMIN16:
7538 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
7539 case X86::ATOMUMAX16:
7540 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
7541
7542 case X86::ATOMAND8:
7543 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7544 X86::AND8ri, X86::MOV8rm,
7545 X86::LCMPXCHG8, X86::MOV8rr,
7546 X86::NOT8r, X86::AL,
7547 X86::GR8RegisterClass);
7548 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +00007549 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007550 X86::OR8ri, X86::MOV8rm,
7551 X86::LCMPXCHG8, X86::MOV8rr,
7552 X86::NOT8r, X86::AL,
7553 X86::GR8RegisterClass);
7554 case X86::ATOMXOR8:
7555 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
7556 X86::XOR8ri, X86::MOV8rm,
7557 X86::LCMPXCHG8, X86::MOV8rr,
7558 X86::NOT8r, X86::AL,
7559 X86::GR8RegisterClass);
7560 case X86::ATOMNAND8:
7561 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7562 X86::AND8ri, X86::MOV8rm,
7563 X86::LCMPXCHG8, X86::MOV8rr,
7564 X86::NOT8r, X86::AL,
7565 X86::GR8RegisterClass, true);
7566 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007567 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +00007568 case X86::ATOMAND64:
7569 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00007570 X86::AND64ri32, X86::MOV64rm,
Dale Johannesena99e3842008-08-20 00:48:50 +00007571 X86::LCMPXCHG64, X86::MOV64rr,
7572 X86::NOT64r, X86::RAX,
7573 X86::GR64RegisterClass);
7574 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +00007575 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
7576 X86::OR64ri32, X86::MOV64rm,
Dale Johannesena99e3842008-08-20 00:48:50 +00007577 X86::LCMPXCHG64, X86::MOV64rr,
7578 X86::NOT64r, X86::RAX,
7579 X86::GR64RegisterClass);
7580 case X86::ATOMXOR64:
7581 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00007582 X86::XOR64ri32, X86::MOV64rm,
Dale Johannesena99e3842008-08-20 00:48:50 +00007583 X86::LCMPXCHG64, X86::MOV64rr,
7584 X86::NOT64r, X86::RAX,
7585 X86::GR64RegisterClass);
7586 case X86::ATOMNAND64:
7587 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
7588 X86::AND64ri32, X86::MOV64rm,
7589 X86::LCMPXCHG64, X86::MOV64rr,
7590 X86::NOT64r, X86::RAX,
7591 X86::GR64RegisterClass, true);
7592 case X86::ATOMMIN64:
7593 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
7594 case X86::ATOMMAX64:
7595 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
7596 case X86::ATOMUMIN64:
7597 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
7598 case X86::ATOMUMAX64:
7599 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007600
7601 // This group does 64-bit operations on a 32-bit host.
7602 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007603 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007604 X86::AND32rr, X86::AND32rr,
7605 X86::AND32ri, X86::AND32ri,
7606 false);
7607 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007608 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007609 X86::OR32rr, X86::OR32rr,
7610 X86::OR32ri, X86::OR32ri,
7611 false);
7612 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007613 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007614 X86::XOR32rr, X86::XOR32rr,
7615 X86::XOR32ri, X86::XOR32ri,
7616 false);
7617 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007618 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007619 X86::AND32rr, X86::AND32rr,
7620 X86::AND32ri, X86::AND32ri,
7621 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007622 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007623 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007624 X86::ADD32rr, X86::ADC32rr,
7625 X86::ADD32ri, X86::ADC32ri,
7626 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007627 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007628 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007629 X86::SUB32rr, X86::SBB32rr,
7630 X86::SUB32ri, X86::SBB32ri,
7631 false);
Dale Johannesen880ae362008-10-03 22:25:52 +00007632 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007633 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +00007634 X86::MOV32rr, X86::MOV32rr,
7635 X86::MOV32ri, X86::MOV32ri,
7636 false);
Evan Cheng60c07e12006-07-05 22:17:51 +00007637 }
7638}
7639
7640//===----------------------------------------------------------------------===//
7641// X86 Optimization Hooks
7642//===----------------------------------------------------------------------===//
7643
Dan Gohman475871a2008-07-27 21:46:04 +00007644void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +00007645 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00007646 APInt &KnownZero,
7647 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00007648 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +00007649 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007650 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +00007651 assert((Opc >= ISD::BUILTIN_OP_END ||
7652 Opc == ISD::INTRINSIC_WO_CHAIN ||
7653 Opc == ISD::INTRINSIC_W_CHAIN ||
7654 Opc == ISD::INTRINSIC_VOID) &&
7655 "Should use MaskedValueIsZero if you don't know whether Op"
7656 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007657
Dan Gohmanf4f92f52008-02-13 23:07:24 +00007658 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007659 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +00007660 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +00007661 case X86ISD::ADD:
7662 case X86ISD::SUB:
7663 case X86ISD::SMUL:
7664 case X86ISD::UMUL:
7665 // These nodes' second result is a boolean.
7666 if (Op.getResNo() == 0)
7667 break;
7668 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007669 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00007670 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
7671 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +00007672 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007673 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007674}
Chris Lattner259e97c2006-01-31 19:43:35 +00007675
Evan Cheng206ee9d2006-07-07 08:33:52 +00007676/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +00007677/// node is a GlobalAddress + offset.
7678bool X86TargetLowering::isGAPlusOffset(SDNode *N,
7679 GlobalValue* &GA, int64_t &Offset) const{
7680 if (N->getOpcode() == X86ISD::Wrapper) {
7681 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +00007682 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00007683 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +00007684 return true;
7685 }
Evan Cheng206ee9d2006-07-07 08:33:52 +00007686 }
Evan Chengad4196b2008-05-12 19:56:52 +00007687 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +00007688}
7689
Evan Chengad4196b2008-05-12 19:56:52 +00007690static bool isBaseAlignmentOfN(unsigned N, SDNode *Base,
7691 const TargetLowering &TLI) {
Evan Cheng206ee9d2006-07-07 08:33:52 +00007692 GlobalValue *GV;
Nick Lewycky916a9f02008-02-02 08:29:58 +00007693 int64_t Offset = 0;
Evan Chengad4196b2008-05-12 19:56:52 +00007694 if (TLI.isGAPlusOffset(Base, GV, Offset))
Evan Cheng7e2ff772008-05-08 00:57:18 +00007695 return (GV->getAlignment() >= N && (Offset % N) == 0);
Chris Lattnerba96fbc2008-01-26 20:07:42 +00007696 // DAG combine handles the stack object case.
Evan Cheng206ee9d2006-07-07 08:33:52 +00007697 return false;
7698}
7699
Dan Gohman475871a2008-07-27 21:46:04 +00007700static bool EltsFromConsecutiveLoads(SDNode *N, SDValue PermMask,
Duncan Sands83ec4b62008-06-06 12:08:01 +00007701 unsigned NumElems, MVT EVT,
Evan Chengad4196b2008-05-12 19:56:52 +00007702 SDNode *&Base,
7703 SelectionDAG &DAG, MachineFrameInfo *MFI,
7704 const TargetLowering &TLI) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00007705 Base = NULL;
7706 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007707 SDValue Idx = PermMask.getOperand(i);
Evan Cheng7e2ff772008-05-08 00:57:18 +00007708 if (Idx.getOpcode() == ISD::UNDEF) {
7709 if (!Base)
7710 return false;
7711 continue;
7712 }
7713
Dan Gohman475871a2008-07-27 21:46:04 +00007714 SDValue Elt = DAG.getShuffleScalarElt(N, i);
Gabor Greifba36cb52008-08-28 21:40:38 +00007715 if (!Elt.getNode() ||
7716 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
Evan Cheng7e2ff772008-05-08 00:57:18 +00007717 return false;
7718 if (!Base) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007719 Base = Elt.getNode();
Evan Cheng50d9e722008-05-10 06:46:49 +00007720 if (Base->getOpcode() == ISD::UNDEF)
7721 return false;
Evan Cheng7e2ff772008-05-08 00:57:18 +00007722 continue;
7723 }
7724 if (Elt.getOpcode() == ISD::UNDEF)
7725 continue;
7726
Gabor Greifba36cb52008-08-28 21:40:38 +00007727 if (!TLI.isConsecutiveLoad(Elt.getNode(), Base,
Duncan Sands83ec4b62008-06-06 12:08:01 +00007728 EVT.getSizeInBits()/8, i, MFI))
Evan Cheng7e2ff772008-05-08 00:57:18 +00007729 return false;
7730 }
7731 return true;
7732}
Evan Cheng206ee9d2006-07-07 08:33:52 +00007733
7734/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
7735/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
7736/// if the load addresses are consecutive, non-overlapping, and in the right
7737/// order.
Dan Gohman475871a2008-07-27 21:46:04 +00007738static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Evan Chengad4196b2008-05-12 19:56:52 +00007739 const TargetLowering &TLI) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00007740 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Dale Johannesene4d209d2009-02-03 20:21:25 +00007741 DebugLoc dl = N->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007742 MVT VT = N->getValueType(0);
7743 MVT EVT = VT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00007744 SDValue PermMask = N->getOperand(2);
Evan Cheng71f489d2008-05-05 22:12:23 +00007745 unsigned NumElems = PermMask.getNumOperands();
Evan Cheng206ee9d2006-07-07 08:33:52 +00007746 SDNode *Base = NULL;
Evan Chengad4196b2008-05-12 19:56:52 +00007747 if (!EltsFromConsecutiveLoads(N, PermMask, NumElems, EVT, Base,
7748 DAG, MFI, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00007749 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +00007750
Dan Gohmand3006222007-07-27 17:16:43 +00007751 LoadSDNode *LD = cast<LoadSDNode>(Base);
Gabor Greifba36cb52008-08-28 21:40:38 +00007752 if (isBaseAlignmentOfN(16, Base->getOperand(1).getNode(), TLI))
Dale Johannesene4d209d2009-02-03 20:21:25 +00007753 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007754 LD->getSrcValue(), LD->getSrcValueOffset(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007755 LD->isVolatile());
7756 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
7757 LD->getSrcValue(), LD->getSrcValueOffset(),
7758 LD->isVolatile(), LD->getAlignment());
Evan Cheng206ee9d2006-07-07 08:33:52 +00007759}
7760
Evan Cheng9bfa03c2008-05-12 23:04:07 +00007761/// PerformBuildVectorCombine - build_vector 0,(load i64 / f64) -> movq / movsd.
Dan Gohman475871a2008-07-27 21:46:04 +00007762static SDValue PerformBuildVectorCombine(SDNode *N, SelectionDAG &DAG,
Dan Gohmane5af2d32009-01-29 01:59:02 +00007763 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng8a186ae2008-09-24 23:26:36 +00007764 const X86Subtarget *Subtarget,
7765 const TargetLowering &TLI) {
Evan Chengf26ffe92008-05-29 08:22:04 +00007766 unsigned NumOps = N->getNumOperands();
Dale Johannesene4d209d2009-02-03 20:21:25 +00007767 DebugLoc dl = N->getDebugLoc();
Evan Chengf26ffe92008-05-29 08:22:04 +00007768
Evan Chengd880b972008-05-09 21:53:03 +00007769 // Ignore single operand BUILD_VECTOR.
Evan Chengf26ffe92008-05-29 08:22:04 +00007770 if (NumOps == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00007771 return SDValue();
Evan Chengd880b972008-05-09 21:53:03 +00007772
Duncan Sands83ec4b62008-06-06 12:08:01 +00007773 MVT VT = N->getValueType(0);
7774 MVT EVT = VT.getVectorElementType();
Evan Chengd880b972008-05-09 21:53:03 +00007775 if ((EVT != MVT::i64 && EVT != MVT::f64) || Subtarget->is64Bit())
7776 // We are looking for load i64 and zero extend. We want to transform
7777 // it before legalizer has a chance to expand it. Also look for i64
7778 // BUILD_PAIR bit casted to f64.
Dan Gohman475871a2008-07-27 21:46:04 +00007779 return SDValue();
Evan Chengd880b972008-05-09 21:53:03 +00007780 // This must be an insertion into a zero vector.
Dan Gohman475871a2008-07-27 21:46:04 +00007781 SDValue HighElt = N->getOperand(1);
Evan Cheng25210da2008-05-10 00:58:41 +00007782 if (!isZeroNode(HighElt))
Dan Gohman475871a2008-07-27 21:46:04 +00007783 return SDValue();
Evan Chengd880b972008-05-09 21:53:03 +00007784
7785 // Value must be a load.
Gabor Greifba36cb52008-08-28 21:40:38 +00007786 SDNode *Base = N->getOperand(0).getNode();
Evan Chengd880b972008-05-09 21:53:03 +00007787 if (!isa<LoadSDNode>(Base)) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00007788 if (Base->getOpcode() != ISD::BIT_CONVERT)
Dan Gohman475871a2008-07-27 21:46:04 +00007789 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007790 Base = Base->getOperand(0).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00007791 if (!isa<LoadSDNode>(Base))
Dan Gohman475871a2008-07-27 21:46:04 +00007792 return SDValue();
Evan Chengd880b972008-05-09 21:53:03 +00007793 }
Evan Chengd880b972008-05-09 21:53:03 +00007794
7795 // Transform it into VZEXT_LOAD addr.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00007796 LoadSDNode *LD = cast<LoadSDNode>(Base);
Scott Michelfdc40a02009-02-17 22:15:04 +00007797
Nate Begemanf7333bf2008-05-28 00:24:25 +00007798 // Load must not be an extload.
7799 if (LD->getExtensionType() != ISD::NON_EXTLOAD)
Dan Gohman475871a2008-07-27 21:46:04 +00007800 return SDValue();
Mon P Wang7ad9b512009-01-30 07:07:40 +00007801
7802 // Load type should legal type so we don't have to legalize it.
7803 if (!TLI.isTypeLegal(VT))
7804 return SDValue();
7805
Evan Cheng8a186ae2008-09-24 23:26:36 +00007806 SDVTList Tys = DAG.getVTList(VT, MVT::Other);
7807 SDValue Ops[] = { LD->getChain(), LD->getBasePtr() };
Dale Johannesene4d209d2009-02-03 20:21:25 +00007808 SDValue ResNode = DAG.getNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007809 TargetLowering::TargetLoweringOpt TLO(DAG);
7810 TLO.CombineTo(SDValue(Base, 1), ResNode.getValue(1));
7811 DCI.CommitTargetLoweringOpt(TLO);
Evan Cheng8a186ae2008-09-24 23:26:36 +00007812 return ResNode;
Scott Michelfdc40a02009-02-17 22:15:04 +00007813}
Evan Chengd880b972008-05-09 21:53:03 +00007814
Chris Lattner83e6c992006-10-04 06:57:07 +00007815/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007816static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner83e6c992006-10-04 06:57:07 +00007817 const X86Subtarget *Subtarget) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00007818 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007819 SDValue Cond = N->getOperand(0);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007820
Chris Lattner83e6c992006-10-04 06:57:07 +00007821 // If we have SSE[12] support, try to form min/max nodes.
7822 if (Subtarget->hasSSE2() &&
7823 (N->getValueType(0) == MVT::f32 || N->getValueType(0) == MVT::f64)) {
7824 if (Cond.getOpcode() == ISD::SETCC) {
7825 // Get the LHS/RHS of the select.
Dan Gohman475871a2008-07-27 21:46:04 +00007826 SDValue LHS = N->getOperand(1);
7827 SDValue RHS = N->getOperand(2);
Chris Lattner83e6c992006-10-04 06:57:07 +00007828 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007829
Evan Cheng8ca29322006-11-10 21:43:37 +00007830 unsigned Opcode = 0;
Chris Lattner83e6c992006-10-04 06:57:07 +00007831 if (LHS == Cond.getOperand(0) && RHS == Cond.getOperand(1)) {
Chris Lattner1907a7b2006-10-05 04:11:26 +00007832 switch (CC) {
7833 default: break;
7834 case ISD::SETOLE: // (X <= Y) ? X : Y -> min
7835 case ISD::SETULE:
7836 case ISD::SETLE:
7837 if (!UnsafeFPMath) break;
7838 // FALL THROUGH.
7839 case ISD::SETOLT: // (X olt/lt Y) ? X : Y -> min
7840 case ISD::SETLT:
Evan Cheng8ca29322006-11-10 21:43:37 +00007841 Opcode = X86ISD::FMIN;
Chris Lattner1907a7b2006-10-05 04:11:26 +00007842 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007843
Chris Lattner1907a7b2006-10-05 04:11:26 +00007844 case ISD::SETOGT: // (X > Y) ? X : Y -> max
7845 case ISD::SETUGT:
7846 case ISD::SETGT:
7847 if (!UnsafeFPMath) break;
7848 // FALL THROUGH.
7849 case ISD::SETUGE: // (X uge/ge Y) ? X : Y -> max
7850 case ISD::SETGE:
Evan Cheng8ca29322006-11-10 21:43:37 +00007851 Opcode = X86ISD::FMAX;
Chris Lattner1907a7b2006-10-05 04:11:26 +00007852 break;
7853 }
Chris Lattner83e6c992006-10-04 06:57:07 +00007854 } else if (LHS == Cond.getOperand(1) && RHS == Cond.getOperand(0)) {
Chris Lattner1907a7b2006-10-05 04:11:26 +00007855 switch (CC) {
7856 default: break;
7857 case ISD::SETOGT: // (X > Y) ? Y : X -> min
7858 case ISD::SETUGT:
7859 case ISD::SETGT:
7860 if (!UnsafeFPMath) break;
7861 // FALL THROUGH.
7862 case ISD::SETUGE: // (X uge/ge Y) ? Y : X -> min
7863 case ISD::SETGE:
Evan Cheng8ca29322006-11-10 21:43:37 +00007864 Opcode = X86ISD::FMIN;
Chris Lattner1907a7b2006-10-05 04:11:26 +00007865 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007866
Chris Lattner1907a7b2006-10-05 04:11:26 +00007867 case ISD::SETOLE: // (X <= Y) ? Y : X -> max
7868 case ISD::SETULE:
7869 case ISD::SETLE:
7870 if (!UnsafeFPMath) break;
7871 // FALL THROUGH.
7872 case ISD::SETOLT: // (X olt/lt Y) ? Y : X -> max
7873 case ISD::SETLT:
Evan Cheng8ca29322006-11-10 21:43:37 +00007874 Opcode = X86ISD::FMAX;
Chris Lattner1907a7b2006-10-05 04:11:26 +00007875 break;
7876 }
Chris Lattner83e6c992006-10-04 06:57:07 +00007877 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007878
Evan Cheng8ca29322006-11-10 21:43:37 +00007879 if (Opcode)
Dale Johannesene4d209d2009-02-03 20:21:25 +00007880 return DAG.getNode(Opcode, dl, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +00007881 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007882
Chris Lattner83e6c992006-10-04 06:57:07 +00007883 }
7884
Dan Gohman475871a2008-07-27 21:46:04 +00007885 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +00007886}
7887
Nate Begeman740ab032009-01-26 00:52:55 +00007888/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
7889/// when possible.
7890static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
7891 const X86Subtarget *Subtarget) {
7892 // On X86 with SSE2 support, we can transform this to a vector shift if
7893 // all elements are shifted by the same amount. We can't do this in legalize
7894 // because the a constant vector is typically transformed to a constant pool
7895 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007896 if (!Subtarget->hasSSE2())
7897 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007898
Nate Begeman740ab032009-01-26 00:52:55 +00007899 MVT VT = N->getValueType(0);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007900 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
7901 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007902
Mon P Wang3becd092009-01-28 08:12:05 +00007903 SDValue ShAmtOp = N->getOperand(1);
7904 MVT EltVT = VT.getVectorElementType();
Dale Johannesene4d209d2009-02-03 20:21:25 +00007905 DebugLoc dl = N->getDebugLoc();
Mon P Wang3becd092009-01-28 08:12:05 +00007906 SDValue BaseShAmt;
7907 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
7908 unsigned NumElts = VT.getVectorNumElements();
7909 unsigned i = 0;
7910 for (; i != NumElts; ++i) {
7911 SDValue Arg = ShAmtOp.getOperand(i);
7912 if (Arg.getOpcode() == ISD::UNDEF) continue;
7913 BaseShAmt = Arg;
7914 break;
7915 }
7916 for (; i != NumElts; ++i) {
7917 SDValue Arg = ShAmtOp.getOperand(i);
7918 if (Arg.getOpcode() == ISD::UNDEF) continue;
7919 if (Arg != BaseShAmt) {
7920 return SDValue();
7921 }
7922 }
7923 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
7924 isSplatMask(ShAmtOp.getOperand(2).getNode())) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00007925 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, ShAmtOp,
Mon P Wang3becd092009-01-28 08:12:05 +00007926 DAG.getIntPtrConstant(0));
7927 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007928 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +00007929
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007930 if (EltVT.bitsGT(MVT::i32))
Dale Johannesene4d209d2009-02-03 20:21:25 +00007931 BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007932 else if (EltVT.bitsLT(MVT::i32))
Dale Johannesene4d209d2009-02-03 20:21:25 +00007933 BaseShAmt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +00007934
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007935 // The shift amount is identical so we can do a vector shift.
7936 SDValue ValOp = N->getOperand(0);
7937 switch (N->getOpcode()) {
7938 default:
7939 assert(0 && "Unknown shift opcode!");
7940 break;
7941 case ISD::SHL:
7942 if (VT == MVT::v2i64)
Dale Johannesene4d209d2009-02-03 20:21:25 +00007943 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00007944 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
7945 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007946 if (VT == MVT::v4i32)
Dale Johannesene4d209d2009-02-03 20:21:25 +00007947 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00007948 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
7949 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007950 if (VT == MVT::v8i16)
Dale Johannesene4d209d2009-02-03 20:21:25 +00007951 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00007952 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
7953 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007954 break;
7955 case ISD::SRA:
7956 if (VT == MVT::v4i32)
Dale Johannesene4d209d2009-02-03 20:21:25 +00007957 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00007958 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
7959 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007960 if (VT == MVT::v8i16)
Dale Johannesene4d209d2009-02-03 20:21:25 +00007961 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00007962 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
7963 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007964 break;
7965 case ISD::SRL:
7966 if (VT == MVT::v2i64)
Dale Johannesene4d209d2009-02-03 20:21:25 +00007967 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00007968 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
7969 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007970 if (VT == MVT::v4i32)
Dale Johannesene4d209d2009-02-03 20:21:25 +00007971 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00007972 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
7973 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007974 if (VT == MVT::v8i16)
Dale Johannesene4d209d2009-02-03 20:21:25 +00007975 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00007976 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
7977 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00007978 break;
Nate Begeman740ab032009-01-26 00:52:55 +00007979 }
7980 return SDValue();
7981}
7982
Chris Lattner149a4e52008-02-22 02:09:43 +00007983/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007984static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner149a4e52008-02-22 02:09:43 +00007985 const X86Subtarget *Subtarget) {
7986 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
7987 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +00007988 // A preferable solution to the general problem is to figure out the right
7989 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng7e2ff772008-05-08 00:57:18 +00007990 StoreSDNode *St = cast<StoreSDNode>(N);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007991 if (St->getValue().getValueType().isVector() &&
7992 St->getValue().getValueType().getSizeInBits() == 64 &&
Dale Johannesen079f2a62008-02-25 19:20:14 +00007993 isa<LoadSDNode>(St->getValue()) &&
7994 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
7995 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007996 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +00007997 LoadSDNode *Ld = 0;
7998 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +00007999 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +00008000 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +00008001 // Must be a store of a load. We currently handle two cases: the load
8002 // is a direct child, and it's under an intervening TokenFactor. It is
8003 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +00008004 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +00008005 Ld = cast<LoadSDNode>(St->getChain());
8006 else if (St->getValue().hasOneUse() &&
8007 ChainVal->getOpcode() == ISD::TokenFactor) {
8008 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +00008009 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +00008010 TokenFactorIndex = i;
8011 Ld = cast<LoadSDNode>(St->getValue());
8012 } else
8013 Ops.push_back(ChainVal->getOperand(i));
8014 }
8015 }
8016 if (Ld) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00008017 DebugLoc dl = N->getDebugLoc();
Dale Johannesen079f2a62008-02-25 19:20:14 +00008018 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
8019 if (Subtarget->is64Bit()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008020 SDValue NewLd = DAG.getLoad(MVT::i64, dl, Ld->getChain(),
8021 Ld->getBasePtr(), Ld->getSrcValue(),
Dale Johannesen079f2a62008-02-25 19:20:14 +00008022 Ld->getSrcValueOffset(), Ld->isVolatile(),
8023 Ld->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00008024 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +00008025 if (TokenFactorIndex != -1) {
Dan Gohmand4a2ad32008-03-28 23:45:16 +00008026 Ops.push_back(NewChain);
Scott Michelfdc40a02009-02-17 22:15:04 +00008027 NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +00008028 Ops.size());
8029 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008030 return DAG.getStore(NewChain, dl, NewLd, St->getBasePtr(),
Dale Johannesen079f2a62008-02-25 19:20:14 +00008031 St->getSrcValue(), St->getSrcValueOffset(),
8032 St->isVolatile(), St->getAlignment());
8033 }
8034
8035 // Otherwise, lower to two 32-bit copies.
Dan Gohman475871a2008-07-27 21:46:04 +00008036 SDValue LoAddr = Ld->getBasePtr();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008037 SDValue HiAddr = DAG.getNode(ISD::ADD, dl, MVT::i32, LoAddr,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008038 DAG.getConstant(4, MVT::i32));
Dale Johannesen079f2a62008-02-25 19:20:14 +00008039
Dale Johannesene4d209d2009-02-03 20:21:25 +00008040 SDValue LoLd = DAG.getLoad(MVT::i32, dl, Ld->getChain(), LoAddr,
Dale Johannesen079f2a62008-02-25 19:20:14 +00008041 Ld->getSrcValue(), Ld->getSrcValueOffset(),
8042 Ld->isVolatile(), Ld->getAlignment());
Dale Johannesene4d209d2009-02-03 20:21:25 +00008043 SDValue HiLd = DAG.getLoad(MVT::i32, dl, Ld->getChain(), HiAddr,
Dale Johannesen079f2a62008-02-25 19:20:14 +00008044 Ld->getSrcValue(), Ld->getSrcValueOffset()+4,
Scott Michelfdc40a02009-02-17 22:15:04 +00008045 Ld->isVolatile(),
Dale Johannesen079f2a62008-02-25 19:20:14 +00008046 MinAlign(Ld->getAlignment(), 4));
8047
Dan Gohman475871a2008-07-27 21:46:04 +00008048 SDValue NewChain = LoLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +00008049 if (TokenFactorIndex != -1) {
8050 Ops.push_back(LoLd);
8051 Ops.push_back(HiLd);
Scott Michelfdc40a02009-02-17 22:15:04 +00008052 NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +00008053 Ops.size());
8054 }
8055
8056 LoAddr = St->getBasePtr();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008057 HiAddr = DAG.getNode(ISD::ADD, dl, MVT::i32, LoAddr,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008058 DAG.getConstant(4, MVT::i32));
Dale Johannesen079f2a62008-02-25 19:20:14 +00008059
Dale Johannesene4d209d2009-02-03 20:21:25 +00008060 SDValue LoSt = DAG.getStore(NewChain, dl, LoLd, LoAddr,
Chris Lattner149a4e52008-02-22 02:09:43 +00008061 St->getSrcValue(), St->getSrcValueOffset(),
8062 St->isVolatile(), St->getAlignment());
Dale Johannesene4d209d2009-02-03 20:21:25 +00008063 SDValue HiSt = DAG.getStore(NewChain, dl, HiLd, HiAddr,
Gabor Greif327ef032008-08-28 23:19:51 +00008064 St->getSrcValue(),
8065 St->getSrcValueOffset() + 4,
Scott Michelfdc40a02009-02-17 22:15:04 +00008066 St->isVolatile(),
Dale Johannesen079f2a62008-02-25 19:20:14 +00008067 MinAlign(St->getAlignment(), 4));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008068 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +00008069 }
Chris Lattner149a4e52008-02-22 02:09:43 +00008070 }
Dan Gohman475871a2008-07-27 21:46:04 +00008071 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +00008072}
8073
Chris Lattner6cf73262008-01-25 06:14:17 +00008074/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
8075/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008076static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +00008077 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
8078 // F[X]OR(0.0, x) -> x
8079 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +00008080 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8081 if (C->getValueAPF().isPosZero())
8082 return N->getOperand(1);
8083 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8084 if (C->getValueAPF().isPosZero())
8085 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00008086 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +00008087}
8088
8089/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008090static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +00008091 // FAND(0.0, x) -> 0.0
8092 // FAND(x, 0.0) -> 0.0
8093 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8094 if (C->getValueAPF().isPosZero())
8095 return N->getOperand(0);
8096 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8097 if (C->getValueAPF().isPosZero())
8098 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +00008099 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +00008100}
8101
Dan Gohmane5af2d32009-01-29 01:59:02 +00008102static SDValue PerformBTCombine(SDNode *N,
8103 SelectionDAG &DAG,
8104 TargetLowering::DAGCombinerInfo &DCI) {
8105 // BT ignores high bits in the bit index operand.
8106 SDValue Op1 = N->getOperand(1);
8107 if (Op1.hasOneUse()) {
8108 unsigned BitWidth = Op1.getValueSizeInBits();
8109 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
8110 APInt KnownZero, KnownOne;
8111 TargetLowering::TargetLoweringOpt TLO(DAG);
8112 TargetLowering &TLI = DAG.getTargetLoweringInfo();
8113 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
8114 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
8115 DCI.CommitTargetLoweringOpt(TLO);
8116 }
8117 return SDValue();
8118}
Chris Lattner83e6c992006-10-04 06:57:07 +00008119
Dan Gohman475871a2008-07-27 21:46:04 +00008120SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +00008121 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +00008122 SelectionDAG &DAG = DCI.DAG;
8123 switch (N->getOpcode()) {
8124 default: break;
Evan Chengad4196b2008-05-12 19:56:52 +00008125 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
8126 case ISD::BUILD_VECTOR:
Dan Gohmane5af2d32009-01-29 01:59:02 +00008127 return PerformBuildVectorCombine(N, DAG, DCI, Subtarget, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +00008128 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Nate Begeman740ab032009-01-26 00:52:55 +00008129 case ISD::SHL:
8130 case ISD::SRA:
8131 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +00008132 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +00008133 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +00008134 case X86ISD::FOR: return PerformFORCombine(N, DAG);
8135 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008136 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Evan Cheng206ee9d2006-07-07 08:33:52 +00008137 }
8138
Dan Gohman475871a2008-07-27 21:46:04 +00008139 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +00008140}
8141
Evan Cheng60c07e12006-07-05 22:17:51 +00008142//===----------------------------------------------------------------------===//
8143// X86 Inline Assembly Support
8144//===----------------------------------------------------------------------===//
8145
Chris Lattnerf4dff842006-07-11 02:54:03 +00008146/// getConstraintType - Given a constraint letter, return the type of
8147/// constraint it is for this target.
8148X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00008149X86TargetLowering::getConstraintType(const std::string &Constraint) const {
8150 if (Constraint.size() == 1) {
8151 switch (Constraint[0]) {
8152 case 'A':
Dale Johannesen330169f2008-11-13 21:52:36 +00008153 return C_Register;
Chris Lattnerfce84ac2008-03-11 19:06:29 +00008154 case 'f':
Chris Lattner4234f572007-03-25 02:14:49 +00008155 case 'r':
8156 case 'R':
8157 case 'l':
8158 case 'q':
8159 case 'Q':
8160 case 'x':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +00008161 case 'y':
Chris Lattner4234f572007-03-25 02:14:49 +00008162 case 'Y':
8163 return C_RegisterClass;
Dale Johannesen78e3e522009-02-12 20:58:09 +00008164 case 'e':
8165 case 'Z':
8166 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +00008167 default:
8168 break;
8169 }
Chris Lattnerf4dff842006-07-11 02:54:03 +00008170 }
Chris Lattner4234f572007-03-25 02:14:49 +00008171 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +00008172}
8173
Dale Johannesenba2a0b92008-01-29 02:21:21 +00008174/// LowerXConstraint - try to replace an X constraint, which matches anything,
8175/// with another that has more specific requirements based on the type of the
8176/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +00008177const char *X86TargetLowering::
Duncan Sands83ec4b62008-06-06 12:08:01 +00008178LowerXConstraint(MVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +00008179 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
8180 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +00008181 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesenba2a0b92008-01-29 02:21:21 +00008182 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +00008183 return "Y";
8184 if (Subtarget->hasSSE1())
8185 return "x";
8186 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008187
Chris Lattner5e764232008-04-26 23:02:14 +00008188 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +00008189}
8190
Chris Lattner48884cd2007-08-25 00:47:38 +00008191/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
8192/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +00008193void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +00008194 char Constraint,
Evan Chengda43bcf2008-09-24 00:05:32 +00008195 bool hasMemory,
Dan Gohman475871a2008-07-27 21:46:04 +00008196 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +00008197 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008198 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008199
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008200 switch (Constraint) {
8201 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +00008202 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +00008203 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008204 if (C->getZExtValue() <= 31) {
8205 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +00008206 break;
8207 }
Devang Patel84f7fd22007-03-17 00:13:28 +00008208 }
Chris Lattner48884cd2007-08-25 00:47:38 +00008209 return;
Evan Cheng364091e2008-09-22 23:57:37 +00008210 case 'J':
8211 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8212 if (C->getZExtValue() <= 63) {
8213 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8214 break;
8215 }
8216 }
8217 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +00008218 case 'N':
8219 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008220 if (C->getZExtValue() <= 255) {
8221 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +00008222 break;
8223 }
Chris Lattner188b9fe2007-03-25 01:57:35 +00008224 }
Chris Lattner48884cd2007-08-25 00:47:38 +00008225 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +00008226 case 'e': {
8227 // 32-bit signed value
8228 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8229 const ConstantInt *CI = C->getConstantIntValue();
8230 if (CI->isValueValidForType(Type::Int32Ty, C->getSExtValue())) {
8231 // Widen to 64 bits here to get it sign extended.
8232 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
8233 break;
8234 }
8235 // FIXME gcc accepts some relocatable values here too, but only in certain
8236 // memory models; it's complicated.
8237 }
8238 return;
8239 }
8240 case 'Z': {
8241 // 32-bit unsigned value
8242 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8243 const ConstantInt *CI = C->getConstantIntValue();
8244 if (CI->isValueValidForType(Type::Int32Ty, C->getZExtValue())) {
8245 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8246 break;
8247 }
8248 }
8249 // FIXME gcc accepts some relocatable values here too, but only in certain
8250 // memory models; it's complicated.
8251 return;
8252 }
Chris Lattnerdc43a882007-05-03 16:52:29 +00008253 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008254 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +00008255 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +00008256 // Widen to 64 bits here to get it sign extended.
8257 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +00008258 break;
8259 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008260
Chris Lattnerdc43a882007-05-03 16:52:29 +00008261 // If we are in non-pic codegen mode, we allow the address of a global (with
8262 // an optional displacement) to be used with 'i'.
8263 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
8264 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008265
Chris Lattnerdc43a882007-05-03 16:52:29 +00008266 // Match either (GA) or (GA+C)
8267 if (GA) {
8268 Offset = GA->getOffset();
8269 } else if (Op.getOpcode() == ISD::ADD) {
8270 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8271 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
8272 if (C && GA) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008273 Offset = GA->getOffset()+C->getZExtValue();
Chris Lattnerdc43a882007-05-03 16:52:29 +00008274 } else {
8275 C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8276 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
8277 if (C && GA)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008278 Offset = GA->getOffset()+C->getZExtValue();
Chris Lattnerdc43a882007-05-03 16:52:29 +00008279 else
8280 C = 0, GA = 0;
8281 }
8282 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008283
Chris Lattnerdc43a882007-05-03 16:52:29 +00008284 if (GA) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008285 if (hasMemory)
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008286 Op = LowerGlobalAddress(GA->getGlobal(), Op.getDebugLoc(),
Dale Johannesen33c960f2009-02-04 20:06:27 +00008287 Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00008288 else
8289 Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
8290 Offset);
Chris Lattner48884cd2007-08-25 00:47:38 +00008291 Result = Op;
8292 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008293 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008294
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008295 // Otherwise, not valid for this mode.
Chris Lattner48884cd2007-08-25 00:47:38 +00008296 return;
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008297 }
Chris Lattnerdc43a882007-05-03 16:52:29 +00008298 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008299
Gabor Greifba36cb52008-08-28 21:40:38 +00008300 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +00008301 Ops.push_back(Result);
8302 return;
8303 }
Evan Chengda43bcf2008-09-24 00:05:32 +00008304 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, hasMemory,
8305 Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008306}
8307
Chris Lattner259e97c2006-01-31 19:43:35 +00008308std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +00008309getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008310 MVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +00008311 if (Constraint.size() == 1) {
8312 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +00008313 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +00008314 default: break; // Unknown constraint letter
Chris Lattner259e97c2006-01-31 19:43:35 +00008315 case 'q': // Q_REGS (GENERAL_REGS in 64-bit mode)
8316 case 'Q': // Q_REGS
Chris Lattner80a7ecc2006-05-06 00:29:37 +00008317 if (VT == MVT::i32)
8318 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
8319 else if (VT == MVT::i16)
8320 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
8321 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +00008322 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Chris Lattner03e6c702007-11-04 06:51:12 +00008323 else if (VT == MVT::i64)
8324 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
8325 break;
Chris Lattner259e97c2006-01-31 19:43:35 +00008326 }
8327 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008328
Chris Lattner1efa40f2006-02-22 00:56:39 +00008329 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +00008330}
Chris Lattnerf76d1802006-07-31 23:26:50 +00008331
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008332std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +00008333X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008334 MVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +00008335 // First, see if this is a constraint that directly corresponds to an LLVM
8336 // register class.
8337 if (Constraint.size() == 1) {
8338 // GCC Constraint Letters
8339 switch (Constraint[0]) {
8340 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +00008341 case 'r': // GENERAL_REGS
8342 case 'R': // LEGACY_REGS
8343 case 'l': // INDEX_REGS
Chris Lattner1fa71982008-10-17 18:15:05 +00008344 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +00008345 return std::make_pair(0U, X86::GR8RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +00008346 if (VT == MVT::i16)
8347 return std::make_pair(0U, X86::GR16RegisterClass);
8348 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +00008349 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +00008350 return std::make_pair(0U, X86::GR64RegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +00008351 case 'f': // FP Stack registers.
8352 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
8353 // value to the correct fpstack register class.
8354 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
8355 return std::make_pair(0U, X86::RFP32RegisterClass);
8356 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
8357 return std::make_pair(0U, X86::RFP64RegisterClass);
8358 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +00008359 case 'y': // MMX_REGS if MMX allowed.
8360 if (!Subtarget->hasMMX()) break;
8361 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00008362 case 'Y': // SSE_REGS if SSE2 allowed
8363 if (!Subtarget->hasSSE2()) break;
8364 // FALL THROUGH.
8365 case 'x': // SSE_REGS if SSE1 allowed
8366 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008367
8368 switch (VT.getSimpleVT()) {
Chris Lattner0f65cad2007-04-09 05:49:22 +00008369 default: break;
8370 // Scalar SSE types.
8371 case MVT::f32:
8372 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +00008373 return std::make_pair(0U, X86::FR32RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00008374 case MVT::f64:
8375 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +00008376 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00008377 // Vector types.
Chris Lattner0f65cad2007-04-09 05:49:22 +00008378 case MVT::v16i8:
8379 case MVT::v8i16:
8380 case MVT::v4i32:
8381 case MVT::v2i64:
8382 case MVT::v4f32:
8383 case MVT::v2f64:
8384 return std::make_pair(0U, X86::VR128RegisterClass);
8385 }
Chris Lattnerad043e82007-04-09 05:11:28 +00008386 break;
8387 }
8388 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008389
Chris Lattnerf76d1802006-07-31 23:26:50 +00008390 // Use the default implementation in TargetLowering to convert the register
8391 // constraint into a member of a register class.
8392 std::pair<unsigned, const TargetRegisterClass*> Res;
8393 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +00008394
8395 // Not found as a standard register?
8396 if (Res.second == 0) {
8397 // GCC calls "st(0)" just plain "st".
8398 if (StringsEqualNoCase("{st}", Constraint)) {
8399 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +00008400 Res.second = X86::RFP80RegisterClass;
Chris Lattner1a60aa72006-10-31 19:42:44 +00008401 }
Dale Johannesen330169f2008-11-13 21:52:36 +00008402 // 'A' means EAX + EDX.
8403 if (Constraint == "A") {
8404 Res.first = X86::EAX;
8405 Res.second = X86::GRADRegisterClass;
8406 }
Chris Lattner1a60aa72006-10-31 19:42:44 +00008407 return Res;
8408 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008409
Chris Lattnerf76d1802006-07-31 23:26:50 +00008410 // Otherwise, check to see if this is a register class of the wrong value
8411 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
8412 // turn into {ax},{dx}.
8413 if (Res.second->hasType(VT))
8414 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008415
Chris Lattnerf76d1802006-07-31 23:26:50 +00008416 // All of the single-register GCC register classes map their values onto
8417 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
8418 // really want an 8-bit or 32-bit register, map to the appropriate register
8419 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +00008420 if (Res.second == X86::GR16RegisterClass) {
8421 if (VT == MVT::i8) {
8422 unsigned DestReg = 0;
8423 switch (Res.first) {
8424 default: break;
8425 case X86::AX: DestReg = X86::AL; break;
8426 case X86::DX: DestReg = X86::DL; break;
8427 case X86::CX: DestReg = X86::CL; break;
8428 case X86::BX: DestReg = X86::BL; break;
8429 }
8430 if (DestReg) {
8431 Res.first = DestReg;
8432 Res.second = Res.second = X86::GR8RegisterClass;
8433 }
8434 } else if (VT == MVT::i32) {
8435 unsigned DestReg = 0;
8436 switch (Res.first) {
8437 default: break;
8438 case X86::AX: DestReg = X86::EAX; break;
8439 case X86::DX: DestReg = X86::EDX; break;
8440 case X86::CX: DestReg = X86::ECX; break;
8441 case X86::BX: DestReg = X86::EBX; break;
8442 case X86::SI: DestReg = X86::ESI; break;
8443 case X86::DI: DestReg = X86::EDI; break;
8444 case X86::BP: DestReg = X86::EBP; break;
8445 case X86::SP: DestReg = X86::ESP; break;
8446 }
8447 if (DestReg) {
8448 Res.first = DestReg;
8449 Res.second = Res.second = X86::GR32RegisterClass;
8450 }
8451 } else if (VT == MVT::i64) {
8452 unsigned DestReg = 0;
8453 switch (Res.first) {
8454 default: break;
8455 case X86::AX: DestReg = X86::RAX; break;
8456 case X86::DX: DestReg = X86::RDX; break;
8457 case X86::CX: DestReg = X86::RCX; break;
8458 case X86::BX: DestReg = X86::RBX; break;
8459 case X86::SI: DestReg = X86::RSI; break;
8460 case X86::DI: DestReg = X86::RDI; break;
8461 case X86::BP: DestReg = X86::RBP; break;
8462 case X86::SP: DestReg = X86::RSP; break;
8463 }
8464 if (DestReg) {
8465 Res.first = DestReg;
8466 Res.second = Res.second = X86::GR64RegisterClass;
8467 }
Chris Lattnerf76d1802006-07-31 23:26:50 +00008468 }
Chris Lattner6ba50a92008-08-26 06:19:02 +00008469 } else if (Res.second == X86::FR32RegisterClass ||
8470 Res.second == X86::FR64RegisterClass ||
8471 Res.second == X86::VR128RegisterClass) {
8472 // Handle references to XMM physical registers that got mapped into the
8473 // wrong class. This can happen with constraints like {xmm0} where the
8474 // target independent register mapper will just pick the first match it can
8475 // find, ignoring the required type.
8476 if (VT == MVT::f32)
8477 Res.second = X86::FR32RegisterClass;
8478 else if (VT == MVT::f64)
8479 Res.second = X86::FR64RegisterClass;
8480 else if (X86::VR128RegisterClass->hasType(VT))
8481 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +00008482 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008483
Chris Lattnerf76d1802006-07-31 23:26:50 +00008484 return Res;
8485}
Mon P Wang0c397192008-10-30 08:01:45 +00008486
8487//===----------------------------------------------------------------------===//
8488// X86 Widen vector type
8489//===----------------------------------------------------------------------===//
8490
8491/// getWidenVectorType: given a vector type, returns the type to widen
8492/// to (e.g., v7i8 to v8i8). If the vector type is legal, it returns itself.
8493/// If there is no vector type that we want to widen to, returns MVT::Other
Mon P Wangf007a8b2008-11-06 05:31:54 +00008494/// When and where to widen is target dependent based on the cost of
Mon P Wang0c397192008-10-30 08:01:45 +00008495/// scalarizing vs using the wider vector type.
8496
Dan Gohmanc13cf132009-01-15 17:34:08 +00008497MVT X86TargetLowering::getWidenVectorType(MVT VT) const {
Mon P Wang0c397192008-10-30 08:01:45 +00008498 assert(VT.isVector());
8499 if (isTypeLegal(VT))
8500 return VT;
Scott Michelfdc40a02009-02-17 22:15:04 +00008501
Mon P Wang0c397192008-10-30 08:01:45 +00008502 // TODO: In computeRegisterProperty, we can compute the list of legal vector
8503 // type based on element type. This would speed up our search (though
8504 // it may not be worth it since the size of the list is relatively
8505 // small).
8506 MVT EltVT = VT.getVectorElementType();
8507 unsigned NElts = VT.getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00008508
Mon P Wang0c397192008-10-30 08:01:45 +00008509 // On X86, it make sense to widen any vector wider than 1
8510 if (NElts <= 1)
8511 return MVT::Other;
Scott Michelfdc40a02009-02-17 22:15:04 +00008512
8513 for (unsigned nVT = MVT::FIRST_VECTOR_VALUETYPE;
Mon P Wang0c397192008-10-30 08:01:45 +00008514 nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
8515 MVT SVT = (MVT::SimpleValueType)nVT;
Scott Michelfdc40a02009-02-17 22:15:04 +00008516
8517 if (isTypeLegal(SVT) &&
8518 SVT.getVectorElementType() == EltVT &&
Mon P Wang0c397192008-10-30 08:01:45 +00008519 SVT.getVectorNumElements() > NElts)
8520 return SVT;
8521 }
8522 return MVT::Other;
8523}