blob: 825e31d503cabd422b33bbabdce442953b09c20e [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()) {
Evan Cheng6892f282006-01-17 02:32:49 +0000116 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000117 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000118 } else {
Bill Wendling105be5a2009-03-13 08:41:47 +0000119 if (!UseSoftFloat && !NoImplicitFloat && X86ScalarSSEf64) {
Dale Johannesen1c15bf52008-10-21 20:50:01 +0000120 // We have an impenetrably clever algorithm for ui64->double only.
121 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Bill 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);
Bill Wendling105be5a2009-03-13 08:41:47 +0000125 } else {
Evan Cheng25ab6902006-09-08 06:48:29 +0000126 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000127 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000128 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000129
130 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
131 // this operation.
132 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
133 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000134
135 if (!UseSoftFloat && !NoImplicitFloat) {
136 // SSE has no i16 to fp conversion, only i32
137 if (X86ScalarSSEf32) {
138 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
139 // f32 and f64 cases are Legal, f80 case is not
140 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
141 } else {
142 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
143 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
144 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000145 } else {
Bill Wendling105be5a2009-03-13 08:41:47 +0000146 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
147 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000148 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000149
Dale Johannesen73328d12007-09-19 23:55:34 +0000150 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
151 // are Legal, f80 is custom lowered.
152 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
153 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000154
Evan Cheng02568ff2006-01-30 22:13:22 +0000155 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
156 // this operation.
157 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
158 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
159
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000160 if (X86ScalarSSEf32) {
Evan Cheng02568ff2006-01-30 22:13:22 +0000161 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000162 // f32 and f64 cases are Legal, f80 case is not
163 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000164 } else {
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000165 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000166 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000167 }
168
169 // Handle FP_TO_UINT by promoting the destination to a larger signed
170 // conversion.
171 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
172 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
173 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
174
Evan Cheng25ab6902006-09-08 06:48:29 +0000175 if (Subtarget->is64Bit()) {
176 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000177 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Evan Cheng25ab6902006-09-08 06:48:29 +0000178 } else {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000179 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000180 // Expand FP_TO_UINT into a select.
181 // FIXME: We would like to use a Custom expander here eventually to do
182 // the optimal thing for SSE vs. the default expansion in the legalizer.
183 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
184 else
185 // With SSE3 we can use fisttpll to convert to a signed i64.
186 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
187 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000188
Chris Lattner399610a2006-12-05 18:22:22 +0000189 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000190 if (!X86ScalarSSEf64) {
Chris Lattnerf3597a12006-12-05 18:45:06 +0000191 setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand);
192 setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand);
193 }
Chris Lattner21f66852005-12-23 05:15:23 +0000194
Dan Gohmanb00ee212008-02-18 19:34:53 +0000195 // Scalar integer divide and remainder are lowered to use operations that
196 // produce two results, to match the available instructions. This exposes
197 // the two-result form to trivial CSE, which is able to combine x/y and x%y
198 // into a single instruction.
199 //
200 // Scalar integer multiply-high is also lowered to use two-result
201 // operations, to match the available instructions. However, plain multiply
202 // (low) operations are left as Legal, as there are single-result
203 // instructions for this in x86. Using the two-result multiply instructions
204 // when both high and low results are needed must be arranged by dagcombine.
Dan Gohman525178c2007-10-08 18:33:35 +0000205 setOperationAction(ISD::MULHS , MVT::i8 , Expand);
206 setOperationAction(ISD::MULHU , MVT::i8 , Expand);
207 setOperationAction(ISD::SDIV , MVT::i8 , Expand);
208 setOperationAction(ISD::UDIV , MVT::i8 , Expand);
209 setOperationAction(ISD::SREM , MVT::i8 , Expand);
210 setOperationAction(ISD::UREM , MVT::i8 , Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000211 setOperationAction(ISD::MULHS , MVT::i16 , Expand);
212 setOperationAction(ISD::MULHU , MVT::i16 , Expand);
213 setOperationAction(ISD::SDIV , MVT::i16 , Expand);
214 setOperationAction(ISD::UDIV , MVT::i16 , Expand);
215 setOperationAction(ISD::SREM , MVT::i16 , Expand);
216 setOperationAction(ISD::UREM , MVT::i16 , Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000217 setOperationAction(ISD::MULHS , MVT::i32 , Expand);
218 setOperationAction(ISD::MULHU , MVT::i32 , Expand);
219 setOperationAction(ISD::SDIV , MVT::i32 , Expand);
220 setOperationAction(ISD::UDIV , MVT::i32 , Expand);
221 setOperationAction(ISD::SREM , MVT::i32 , Expand);
222 setOperationAction(ISD::UREM , MVT::i32 , Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000223 setOperationAction(ISD::MULHS , MVT::i64 , Expand);
224 setOperationAction(ISD::MULHU , MVT::i64 , Expand);
225 setOperationAction(ISD::SDIV , MVT::i64 , Expand);
226 setOperationAction(ISD::UDIV , MVT::i64 , Expand);
227 setOperationAction(ISD::SREM , MVT::i64 , Expand);
228 setOperationAction(ISD::UREM , MVT::i64 , Expand);
Dan Gohmana37c9f72007-09-25 18:23:27 +0000229
Evan Chengc35497f2006-10-30 08:02:39 +0000230 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000231 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
Nate Begeman750ac1b2006-02-01 07:19:44 +0000232 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
233 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000234 if (Subtarget->is64Bit())
Christopher Lambc59e5212007-08-10 21:48:46 +0000235 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
236 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
237 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000238 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
239 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
Chris Lattnerd1108222008-03-07 06:36:32 +0000240 setOperationAction(ISD::FREM , MVT::f32 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000241 setOperationAction(ISD::FREM , MVT::f64 , Expand);
Chris Lattnerd1108222008-03-07 06:36:32 +0000242 setOperationAction(ISD::FREM , MVT::f80 , Expand);
Dan Gohman1a024862008-01-31 00:41:03 +0000243 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000244
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000245 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000246 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
247 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000248 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000249 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
250 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000251 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000252 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
253 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000254 if (Subtarget->is64Bit()) {
255 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000256 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
257 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000258 }
259
Andrew Lenharthb873ff32005-11-20 21:41:10 +0000260 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
Nate Begemand88fc032006-01-14 03:14:10 +0000261 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000262
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000263 // These should be promoted to a larger select which is supported.
264 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
265 setOperationAction(ISD::SELECT , MVT::i8 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000266 // X86 wants to expand cmov itself.
Evan Cheng5298bcc2006-02-17 07:01:52 +0000267 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
268 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
269 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
270 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000271 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000272 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
273 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
274 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
275 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
276 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000277 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000278 if (Subtarget->is64Bit()) {
279 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
280 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
281 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000282 // X86 ret instruction may pop stack.
Evan Cheng5298bcc2006-02-17 07:01:52 +0000283 setOperationAction(ISD::RET , MVT::Other, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000284 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000285
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000286 // Darwin ABI issue.
Evan Cheng7ccced62006-02-18 00:15:05 +0000287 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
Nate Begeman37efe672006-04-22 18:53:45 +0000288 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000289 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000290 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000291 if (Subtarget->is64Bit())
292 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Bill Wendling056292f2008-09-16 21:48:12 +0000293 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000294 if (Subtarget->is64Bit()) {
295 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
296 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
297 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
Bill Wendling056292f2008-09-16 21:48:12 +0000298 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000299 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000300 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Evan Cheng5298bcc2006-02-17 07:01:52 +0000301 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
302 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
303 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000304 if (Subtarget->is64Bit()) {
305 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
306 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
307 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
308 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000309
Evan Chengd2cde682008-03-10 19:38:10 +0000310 if (Subtarget->hasSSE1())
311 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000312
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000313 if (!Subtarget->hasSSE2())
314 setOperationAction(ISD::MEMBARRIER , MVT::Other, Expand);
315
Mon P Wang63307c32008-05-05 19:05:59 +0000316 // Expand certain atomics
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000317 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
318 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
319 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
320 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendling5bf1b4e2008-08-20 00:28:16 +0000321
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000322 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
323 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
324 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
325 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000326
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000327 if (!Subtarget->is64Bit()) {
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000328 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
329 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
330 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
331 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
332 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
333 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
334 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000335 }
336
Dan Gohman7f460202008-06-30 20:59:49 +0000337 // Use the default ISD::DBG_STOPPOINT, ISD::DECLARE expansion.
338 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
Evan Cheng3c992d22006-03-07 02:02:57 +0000339 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000340 if (!Subtarget->isTargetDarwin() &&
341 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000342 !Subtarget->isTargetCygMing()) {
343 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
344 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
345 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000346
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000347 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
348 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
349 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
350 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
351 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000352 setExceptionPointerRegister(X86::RAX);
353 setExceptionSelectorRegister(X86::RDX);
354 } else {
355 setExceptionPointerRegister(X86::EAX);
356 setExceptionSelectorRegister(X86::EDX);
357 }
Anton Korobeynikov38252622007-09-03 00:36:06 +0000358 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000359 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
360
Duncan Sandsf7331b32007-09-11 14:10:23 +0000361 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000362
Chris Lattnerda68d302008-01-15 21:58:22 +0000363 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000364
Nate Begemanacc398c2006-01-25 18:21:52 +0000365 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
366 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Nate Begemanacc398c2006-01-25 18:21:52 +0000367 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000368 if (Subtarget->is64Bit()) {
369 setOperationAction(ISD::VAARG , MVT::Other, Custom);
Evan Chengae642192007-03-02 23:16:35 +0000370 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000371 } else {
372 setOperationAction(ISD::VAARG , MVT::Other, Expand);
Evan Chengae642192007-03-02 23:16:35 +0000373 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000374 }
Evan Chengae642192007-03-02 23:16:35 +0000375
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000376 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
Chris Lattnere1125522006-01-15 09:00:21 +0000377 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000378 if (Subtarget->is64Bit())
379 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000380 if (Subtarget->isTargetCygMing())
381 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
382 else
383 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000384
Evan Chengc7ce29b2009-02-13 22:36:38 +0000385 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000386 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000387 // Set up the FP register classes.
Evan Cheng5ee4ccc2006-01-12 08:27:59 +0000388 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
389 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000390
Evan Cheng223547a2006-01-31 22:28:30 +0000391 // Use ANDPD to simulate FABS.
392 setOperationAction(ISD::FABS , MVT::f64, Custom);
393 setOperationAction(ISD::FABS , MVT::f32, Custom);
394
395 // Use XORP to simulate FNEG.
396 setOperationAction(ISD::FNEG , MVT::f64, Custom);
397 setOperationAction(ISD::FNEG , MVT::f32, Custom);
398
Evan Cheng68c47cb2007-01-05 07:55:56 +0000399 // Use ANDPD and ORPD to simulate FCOPYSIGN.
400 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
401 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
402
Evan Chengd25e9e82006-02-02 00:28:23 +0000403 // We don't support sin/cos/fmod
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000404 setOperationAction(ISD::FSIN , MVT::f64, Expand);
405 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000406 setOperationAction(ISD::FSIN , MVT::f32, Expand);
407 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000408
Chris Lattnera54aa942006-01-29 06:26:08 +0000409 // Expand FP immediates into loads from the stack, except for the special
410 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000411 addLegalFPImmediate(APFloat(+0.0)); // xorpd
412 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Dale Johannesen5411a392007-08-09 01:04:01 +0000413
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000414 // Floating truncations from f80 and extensions to f80 go through memory.
415 // If optimizing, we lie about this though and handle it in
416 // InstructionSelectPreprocess so that dagcombine2 can hack on these.
417 if (Fast) {
418 setConvertAction(MVT::f32, MVT::f80, Expand);
419 setConvertAction(MVT::f64, MVT::f80, Expand);
420 setConvertAction(MVT::f80, MVT::f32, Expand);
421 setConvertAction(MVT::f80, MVT::f64, Expand);
422 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000423 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000424 // Use SSE for f32, x87 for f64.
425 // Set up the FP register classes.
426 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
427 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
428
429 // Use ANDPS to simulate FABS.
430 setOperationAction(ISD::FABS , MVT::f32, Custom);
431
432 // Use XORP to simulate FNEG.
433 setOperationAction(ISD::FNEG , MVT::f32, Custom);
434
435 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
436
437 // Use ANDPS and ORPS to simulate FCOPYSIGN.
438 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
439 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
440
441 // We don't support sin/cos/fmod
442 setOperationAction(ISD::FSIN , MVT::f32, Expand);
443 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000444
Nate Begemane1795842008-02-14 08:57:00 +0000445 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000446 addLegalFPImmediate(APFloat(+0.0f)); // xorps
447 addLegalFPImmediate(APFloat(+0.0)); // FLD0
448 addLegalFPImmediate(APFloat(+1.0)); // FLD1
449 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
450 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
451
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000452 // SSE <-> X87 conversions go through memory. If optimizing, we lie about
453 // this though and handle it in InstructionSelectPreprocess so that
454 // dagcombine2 can hack on these.
455 if (Fast) {
456 setConvertAction(MVT::f32, MVT::f64, Expand);
457 setConvertAction(MVT::f32, MVT::f80, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000458 setConvertAction(MVT::f80, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000459 setConvertAction(MVT::f64, MVT::f32, Expand);
460 // And x87->x87 truncations also.
461 setConvertAction(MVT::f80, MVT::f64, Expand);
462 }
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000463
464 if (!UnsafeFPMath) {
465 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
466 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
467 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000468 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000469 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000470 // Set up the FP register classes.
Dale Johannesen849f2142007-07-03 00:53:03 +0000471 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
472 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000473
Evan Cheng68c47cb2007-01-05 07:55:56 +0000474 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesen849f2142007-07-03 00:53:03 +0000475 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000476 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
477 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000478
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000479 // Floating truncations go through memory. If optimizing, we lie about
480 // this though and handle it in InstructionSelectPreprocess so that
481 // dagcombine2 can hack on these.
482 if (Fast) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000483 setConvertAction(MVT::f80, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000484 setConvertAction(MVT::f64, MVT::f32, Expand);
485 setConvertAction(MVT::f80, MVT::f64, Expand);
486 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000487
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000488 if (!UnsafeFPMath) {
489 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
490 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
491 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000492 addLegalFPImmediate(APFloat(+0.0)); // FLD0
493 addLegalFPImmediate(APFloat(+1.0)); // FLD1
494 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
495 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000496 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
497 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
498 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
499 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000500 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000501
Dale Johannesen59a58732007-08-05 18:49:15 +0000502 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000503 if (!UseSoftFloat) {
Evan Chengc7ce29b2009-02-13 22:36:38 +0000504 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
505 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
506 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
507 {
508 bool ignored;
509 APFloat TmpFlt(+0.0);
510 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
511 &ignored);
512 addLegalFPImmediate(TmpFlt); // FLD0
513 TmpFlt.changeSign();
514 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
515 APFloat TmpFlt2(+1.0);
516 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
517 &ignored);
518 addLegalFPImmediate(TmpFlt2); // FLD1
519 TmpFlt2.changeSign();
520 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
521 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000522
Evan Chengc7ce29b2009-02-13 22:36:38 +0000523 if (!UnsafeFPMath) {
524 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
525 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
526 }
Dale Johannesen2f429012007-09-26 21:10:55 +0000527 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000528
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000529 // Always use a library call for pow.
530 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
531 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
532 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
533
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000534 setOperationAction(ISD::FLOG, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000535 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000536 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000537 setOperationAction(ISD::FEXP, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000538 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
539
Mon P Wangf007a8b2008-11-06 05:31:54 +0000540 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000541 // (for widening) or expand (for scalarization). Then we will selectively
542 // turn on ones that can be effectively codegen'd.
Dan Gohmanfa0f77d2007-05-18 18:44:07 +0000543 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
544 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000545 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
546 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
547 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
548 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
549 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
550 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
551 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
552 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
553 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
554 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
555 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
556 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
557 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
Gabor Greif327ef032008-08-28 23:19:51 +0000558 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
559 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
560 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000561 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
562 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
563 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
564 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
565 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
566 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
567 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
568 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
574 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
576 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
577 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
579 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
580 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
581 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
582 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
Dale Johannesenfb0e1322008-09-10 17:31:40 +0000583 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
584 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
585 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
586 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
587 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000588 }
589
Evan Chengc7ce29b2009-02-13 22:36:38 +0000590 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
591 // with -msoft-float, disable use of MMX as well.
Evan Cheng92722532009-03-26 23:06:32 +0000592 if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000593 addRegisterClass(MVT::v8i8, X86::VR64RegisterClass);
594 addRegisterClass(MVT::v4i16, X86::VR64RegisterClass);
595 addRegisterClass(MVT::v2i32, X86::VR64RegisterClass);
Dale Johannesena68f9012008-06-24 22:01:44 +0000596 addRegisterClass(MVT::v2f32, X86::VR64RegisterClass);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000597 addRegisterClass(MVT::v1i64, X86::VR64RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000598
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000599 setOperationAction(ISD::ADD, MVT::v8i8, Legal);
600 setOperationAction(ISD::ADD, MVT::v4i16, Legal);
601 setOperationAction(ISD::ADD, MVT::v2i32, Legal);
Chris Lattner6c284d72007-04-12 04:14:49 +0000602 setOperationAction(ISD::ADD, MVT::v1i64, Legal);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000603
Bill Wendlingc1fb0472007-03-10 09:57:05 +0000604 setOperationAction(ISD::SUB, MVT::v8i8, Legal);
605 setOperationAction(ISD::SUB, MVT::v4i16, Legal);
606 setOperationAction(ISD::SUB, MVT::v2i32, Legal);
Dale Johannesen8d26e592007-10-30 01:18:38 +0000607 setOperationAction(ISD::SUB, MVT::v1i64, Legal);
Bill Wendlingc1fb0472007-03-10 09:57:05 +0000608
Bill Wendling74027e92007-03-15 21:24:36 +0000609 setOperationAction(ISD::MULHS, MVT::v4i16, Legal);
610 setOperationAction(ISD::MUL, MVT::v4i16, Legal);
611
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000612 setOperationAction(ISD::AND, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000613 AddPromotedToType (ISD::AND, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000614 setOperationAction(ISD::AND, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000615 AddPromotedToType (ISD::AND, MVT::v4i16, MVT::v1i64);
616 setOperationAction(ISD::AND, MVT::v2i32, Promote);
617 AddPromotedToType (ISD::AND, MVT::v2i32, MVT::v1i64);
618 setOperationAction(ISD::AND, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000619
620 setOperationAction(ISD::OR, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000621 AddPromotedToType (ISD::OR, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000622 setOperationAction(ISD::OR, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000623 AddPromotedToType (ISD::OR, MVT::v4i16, MVT::v1i64);
624 setOperationAction(ISD::OR, MVT::v2i32, Promote);
625 AddPromotedToType (ISD::OR, MVT::v2i32, MVT::v1i64);
626 setOperationAction(ISD::OR, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000627
628 setOperationAction(ISD::XOR, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000629 AddPromotedToType (ISD::XOR, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000630 setOperationAction(ISD::XOR, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000631 AddPromotedToType (ISD::XOR, MVT::v4i16, MVT::v1i64);
632 setOperationAction(ISD::XOR, MVT::v2i32, Promote);
633 AddPromotedToType (ISD::XOR, MVT::v2i32, MVT::v1i64);
634 setOperationAction(ISD::XOR, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000635
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000636 setOperationAction(ISD::LOAD, MVT::v8i8, Promote);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000637 AddPromotedToType (ISD::LOAD, MVT::v8i8, MVT::v1i64);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000638 setOperationAction(ISD::LOAD, MVT::v4i16, Promote);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000639 AddPromotedToType (ISD::LOAD, MVT::v4i16, MVT::v1i64);
640 setOperationAction(ISD::LOAD, MVT::v2i32, Promote);
641 AddPromotedToType (ISD::LOAD, MVT::v2i32, MVT::v1i64);
Dale Johannesena68f9012008-06-24 22:01:44 +0000642 setOperationAction(ISD::LOAD, MVT::v2f32, Promote);
643 AddPromotedToType (ISD::LOAD, MVT::v2f32, MVT::v1i64);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000644 setOperationAction(ISD::LOAD, MVT::v1i64, Legal);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000645
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000646 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i8, Custom);
647 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i16, Custom);
648 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i32, Custom);
Dale Johannesena68f9012008-06-24 22:01:44 +0000649 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f32, Custom);
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000650 setOperationAction(ISD::BUILD_VECTOR, MVT::v1i64, Custom);
Bill Wendlinga348c562007-03-22 18:42:45 +0000651
652 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
653 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
654 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i32, Custom);
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000655 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v1i64, Custom);
Bill Wendling826f36f2007-03-28 00:57:11 +0000656
Evan Cheng52672b82008-07-22 18:39:19 +0000657 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f32, Custom);
Bill Wendling826f36f2007-03-28 00:57:11 +0000658 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Custom);
659 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Custom);
Bill Wendling2f9bb1a2007-04-24 21:16:55 +0000660 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Custom);
Bill Wendling3180e202008-07-20 02:32:23 +0000661
662 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i16, Custom);
Mon P Wang9e5ecb82008-12-12 01:25:51 +0000663
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000664 setTruncStoreAction(MVT::v8i16, MVT::v8i8, Expand);
Mon P Wang9e5ecb82008-12-12 01:25:51 +0000665 setOperationAction(ISD::TRUNCATE, MVT::v8i8, Expand);
666 setOperationAction(ISD::SELECT, MVT::v8i8, Promote);
667 setOperationAction(ISD::SELECT, MVT::v4i16, Promote);
668 setOperationAction(ISD::SELECT, MVT::v2i32, Promote);
669 setOperationAction(ISD::SELECT, MVT::v1i64, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000670 }
671
Evan Cheng92722532009-03-26 23:06:32 +0000672 if (!UseSoftFloat && Subtarget->hasSSE1()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000673 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
674
Evan Cheng6bdb3f62006-10-27 18:49:08 +0000675 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
676 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
677 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
678 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
Dan Gohman20382522007-07-10 00:05:58 +0000679 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
680 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000681 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
682 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
683 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
Evan Cheng11e15b32006-04-03 20:53:28 +0000684 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000685 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Nate Begeman30a0de92008-07-17 16:51:19 +0000686 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000687 }
688
Evan Cheng92722532009-03-26 23:06:32 +0000689 if (!UseSoftFloat && Subtarget->hasSSE2()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000690 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000691
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000692 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
693 // registers cannot be used even for integer operations.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000694 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
695 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
696 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
697 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
698
Evan Chengf7c378e2006-04-10 07:23:14 +0000699 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
700 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
701 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
Evan Cheng37e88562007-03-12 22:58:52 +0000702 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Mon P Wangaf9b9522008-12-18 21:42:19 +0000703 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000704 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
705 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
706 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
Evan Cheng37e88562007-03-12 22:58:52 +0000707 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
Evan Chengf9989842006-04-13 05:10:25 +0000708 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
Evan Cheng6bdb3f62006-10-27 18:49:08 +0000709 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
710 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
711 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
712 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
Dan Gohman20382522007-07-10 00:05:58 +0000713 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
714 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000715
Nate Begeman30a0de92008-07-17 16:51:19 +0000716 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
717 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
718 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
719 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000720
Evan Chengf7c378e2006-04-10 07:23:14 +0000721 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
722 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
Evan Chengb067a1e2006-03-31 19:22:53 +0000723 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
Evan Cheng5edb8d22006-04-17 22:04:06 +0000724 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Evan Cheng5edb8d22006-04-17 22:04:06 +0000725 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000726
Evan Cheng2c3ae372006-04-12 21:21:57 +0000727 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000728 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
729 MVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000730 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000731 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000732 continue;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000733 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
734 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
735 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000736 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000737
Evan Cheng2c3ae372006-04-12 21:21:57 +0000738 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
739 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
740 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
741 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000742 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000743 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000744
Nate Begemancdd1eec2008-02-12 22:51:28 +0000745 if (Subtarget->is64Bit()) {
746 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
Dale Johannesen25f1d082007-10-31 00:32:36 +0000747 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000748 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000749
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000750 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Evan Cheng2c3ae372006-04-12 21:21:57 +0000751 for (unsigned VT = (unsigned)MVT::v16i8; VT != (unsigned)MVT::v2i64; VT++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000752 setOperationAction(ISD::AND, (MVT::SimpleValueType)VT, Promote);
753 AddPromotedToType (ISD::AND, (MVT::SimpleValueType)VT, MVT::v2i64);
754 setOperationAction(ISD::OR, (MVT::SimpleValueType)VT, Promote);
755 AddPromotedToType (ISD::OR, (MVT::SimpleValueType)VT, MVT::v2i64);
756 setOperationAction(ISD::XOR, (MVT::SimpleValueType)VT, Promote);
757 AddPromotedToType (ISD::XOR, (MVT::SimpleValueType)VT, MVT::v2i64);
758 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Promote);
759 AddPromotedToType (ISD::LOAD, (MVT::SimpleValueType)VT, MVT::v2i64);
760 setOperationAction(ISD::SELECT, (MVT::SimpleValueType)VT, Promote);
761 AddPromotedToType (ISD::SELECT, (MVT::SimpleValueType)VT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000762 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000763
Chris Lattnerddf89562008-01-17 19:59:44 +0000764 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000765
Evan Cheng2c3ae372006-04-12 21:21:57 +0000766 // Custom lower v2i64 and v2f64 selects.
767 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
Evan Cheng91b740d2006-04-12 17:12:36 +0000768 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
Evan Chengf7c378e2006-04-10 07:23:14 +0000769 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000770 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000771
Evan Cheng470a6ad2006-02-22 02:26:30 +0000772 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000773
Nate Begeman14d12ca2008-02-11 04:19:36 +0000774 if (Subtarget->hasSSE41()) {
775 // FIXME: Do we need to handle scalar-to-vector here?
776 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
777
778 // i8 and i16 vectors are custom , because the source register and source
779 // source memory operand types are not the same width. f32 vectors are
780 // custom since the immediate controlling the insert encodes additional
781 // information.
782 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
783 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangf0fcdd82009-01-15 21:10:20 +0000784 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000785 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
786
787 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
788 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
Mon P Wangf0fcdd82009-01-15 21:10:20 +0000789 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
Evan Cheng62a3f152008-03-24 21:52:23 +0000790 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000791
792 if (Subtarget->is64Bit()) {
Nate Begemancdd1eec2008-02-12 22:51:28 +0000793 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
794 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000795 }
796 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000797
Nate Begeman30a0de92008-07-17 16:51:19 +0000798 if (Subtarget->hasSSE42()) {
799 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
800 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000801
Evan Cheng6be2c582006-04-05 23:38:46 +0000802 // We want to custom lower some of our intrinsics.
803 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
804
Bill Wendling74c37652008-12-09 22:08:41 +0000805 // Add/Sub/Mul with overflow operations are custom lowered.
Bill Wendling41ea7e72008-11-24 19:21:46 +0000806 setOperationAction(ISD::SADDO, MVT::i32, Custom);
807 setOperationAction(ISD::SADDO, MVT::i64, Custom);
808 setOperationAction(ISD::UADDO, MVT::i32, Custom);
809 setOperationAction(ISD::UADDO, MVT::i64, Custom);
Bill Wendling74c37652008-12-09 22:08:41 +0000810 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
811 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
812 setOperationAction(ISD::USUBO, MVT::i32, Custom);
813 setOperationAction(ISD::USUBO, MVT::i64, Custom);
814 setOperationAction(ISD::SMULO, MVT::i32, Custom);
815 setOperationAction(ISD::SMULO, MVT::i64, Custom);
816 setOperationAction(ISD::UMULO, MVT::i32, Custom);
817 setOperationAction(ISD::UMULO, MVT::i64, Custom);
Bill Wendling41ea7e72008-11-24 19:21:46 +0000818
Evan Chengd54f2d52009-03-31 19:38:51 +0000819 if (!Subtarget->is64Bit()) {
820 // These libcalls are not available in 32-bit.
821 setLibcallName(RTLIB::SHL_I128, 0);
822 setLibcallName(RTLIB::SRL_I128, 0);
823 setLibcallName(RTLIB::SRA_I128, 0);
824 }
825
Evan Cheng206ee9d2006-07-07 08:33:52 +0000826 // We have target-specific dag combine patterns for the following nodes:
827 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Evan Chengd880b972008-05-09 21:53:03 +0000828 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +0000829 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +0000830 setTargetDAGCombine(ISD::SHL);
831 setTargetDAGCombine(ISD::SRA);
832 setTargetDAGCombine(ISD::SRL);
Chris Lattner149a4e52008-02-22 02:09:43 +0000833 setTargetDAGCombine(ISD::STORE);
Evan Cheng0b0cd912009-03-28 05:57:29 +0000834 if (Subtarget->is64Bit())
835 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +0000836
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000837 computeRegisterProperties();
838
Evan Cheng87ed7162006-02-14 08:25:08 +0000839 // FIXME: These should be based on subtarget info. Plus, the values should
840 // be smaller when we are in optimizing for size mode.
Dan Gohman87060f52008-06-30 21:00:56 +0000841 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
842 maxStoresPerMemcpy = 16; // For @llvm.memcpy -> sequence of stores
843 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000844 allowUnalignedMemoryAccesses = true; // x86 supports it!
Evan Chengfb8075d2008-02-28 00:43:03 +0000845 setPrefLoopAlignment(16);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000846}
847
Scott Michel5b8f82e2008-03-10 15:42:14 +0000848
Duncan Sands5480c042009-01-01 15:52:00 +0000849MVT X86TargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel5b8f82e2008-03-10 15:42:14 +0000850 return MVT::i8;
851}
852
853
Evan Cheng29286502008-01-23 23:17:41 +0000854/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
855/// the desired ByVal argument alignment.
856static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
857 if (MaxAlign == 16)
858 return;
859 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
860 if (VTy->getBitWidth() == 128)
861 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +0000862 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
863 unsigned EltAlign = 0;
864 getMaxByValAlign(ATy->getElementType(), EltAlign);
865 if (EltAlign > MaxAlign)
866 MaxAlign = EltAlign;
867 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
868 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
869 unsigned EltAlign = 0;
870 getMaxByValAlign(STy->getElementType(i), EltAlign);
871 if (EltAlign > MaxAlign)
872 MaxAlign = EltAlign;
873 if (MaxAlign == 16)
874 break;
875 }
876 }
877 return;
878}
879
880/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
881/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +0000882/// that contain SSE vectors are placed at 16-byte boundaries while the rest
883/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +0000884unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +0000885 if (Subtarget->is64Bit()) {
886 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000887 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +0000888 if (TyAlign > 8)
889 return TyAlign;
890 return 8;
891 }
892
Evan Cheng29286502008-01-23 23:17:41 +0000893 unsigned Align = 4;
Dale Johannesen0c191872008-02-08 19:48:20 +0000894 if (Subtarget->hasSSE1())
895 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +0000896 return Align;
897}
Chris Lattner2b02a442007-02-25 08:29:00 +0000898
Evan Chengf0df0312008-05-15 08:39:06 +0000899/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng0ef8de32008-05-15 22:13:02 +0000900/// and store operations as a result of memset, memcpy, and memmove
901/// lowering. It returns MVT::iAny if SelectionDAG should be responsible for
Evan Chengf0df0312008-05-15 08:39:06 +0000902/// determining it.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000903MVT
Evan Chengf0df0312008-05-15 08:39:06 +0000904X86TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned Align,
905 bool isSrcConst, bool isSrcStr) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +0000906 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
907 // linux. This is because the stack realignment code can't handle certain
908 // cases like PR2962. This should be removed when PR2962 is fixed.
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000909 if (!NoImplicitFloat && Subtarget->getStackAlignment() >= 16) {
Chris Lattner4002a1b2008-10-28 05:49:35 +0000910 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE2() && Size >= 16)
911 return MVT::v4i32;
912 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE1() && Size >= 16)
913 return MVT::v4f32;
914 }
Evan Chengf0df0312008-05-15 08:39:06 +0000915 if (Subtarget->is64Bit() && Size >= 8)
916 return MVT::i64;
917 return MVT::i32;
918}
919
Evan Chengcc415862007-11-09 01:32:10 +0000920/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
921/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +0000922SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Evan Chengcc415862007-11-09 01:32:10 +0000923 SelectionDAG &DAG) const {
924 if (usesGlobalOffsetTable())
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000925 return DAG.getGLOBAL_OFFSET_TABLE(getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +0000926 if (!Subtarget->isPICStyleRIPRel())
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000927 // This doesn't have DebugLoc associated with it, but is not really the
928 // same as a Register.
929 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc::getUnknownLoc(),
930 getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +0000931 return Table;
932}
933
Chris Lattner2b02a442007-02-25 08:29:00 +0000934//===----------------------------------------------------------------------===//
935// Return Value Calling Convention Implementation
936//===----------------------------------------------------------------------===//
937
Chris Lattner59ed56b2007-02-28 04:55:35 +0000938#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000939
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000940/// LowerRET - Lower an ISD::RET node.
Dan Gohman475871a2008-07-27 21:46:04 +0000941SDValue X86TargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000942 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000943 assert((Op.getNumOperands() & 1) == 1 && "ISD::RET should have odd # args");
Scott Michelfdc40a02009-02-17 22:15:04 +0000944
Chris Lattner9774c912007-02-27 05:28:59 +0000945 SmallVector<CCValAssign, 16> RVLocs;
946 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
Chris Lattner52387be2007-06-19 00:13:10 +0000947 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
948 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Gabor Greifba36cb52008-08-28 21:40:38 +0000949 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +0000950
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000951 // If this is the first return lowered for this function, add the regs to the
952 // liveout set for the function.
Chris Lattner84bc5422007-12-31 04:13:23 +0000953 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Chris Lattner9774c912007-02-27 05:28:59 +0000954 for (unsigned i = 0; i != RVLocs.size(); ++i)
955 if (RVLocs[i].isRegLoc())
Chris Lattner84bc5422007-12-31 04:13:23 +0000956 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000957 }
Dan Gohman475871a2008-07-27 21:46:04 +0000958 SDValue Chain = Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000959
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000960 // Handle tail call return.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000961 Chain = GetPossiblePreceedingTailCall(Chain, X86ISD::TAILCALL);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000962 if (Chain.getOpcode() == X86ISD::TAILCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +0000963 SDValue TailCall = Chain;
964 SDValue TargetAddress = TailCall.getOperand(1);
965 SDValue StackAdjustment = TailCall.getOperand(2);
Chris Lattnerb4a6eaa2008-01-16 05:52:18 +0000966 assert(((TargetAddress.getOpcode() == ISD::Register &&
Arnold Schwaighofer290ae032008-09-22 14:50:07 +0000967 (cast<RegisterSDNode>(TargetAddress)->getReg() == X86::EAX ||
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000968 cast<RegisterSDNode>(TargetAddress)->getReg() == X86::R9)) ||
Bill Wendling056292f2008-09-16 21:48:12 +0000969 TargetAddress.getOpcode() == ISD::TargetExternalSymbol ||
Scott Michelfdc40a02009-02-17 22:15:04 +0000970 TargetAddress.getOpcode() == ISD::TargetGlobalAddress) &&
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000971 "Expecting an global address, external symbol, or register");
Chris Lattnerb4a6eaa2008-01-16 05:52:18 +0000972 assert(StackAdjustment.getOpcode() == ISD::Constant &&
973 "Expecting a const value");
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000974
Dan Gohman475871a2008-07-27 21:46:04 +0000975 SmallVector<SDValue,8> Operands;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000976 Operands.push_back(Chain.getOperand(0));
977 Operands.push_back(TargetAddress);
978 Operands.push_back(StackAdjustment);
979 // Copy registers used by the call. Last operand is a flag so it is not
980 // copied.
Arnold Schwaighofer448175f2007-10-16 09:05:00 +0000981 for (unsigned i=3; i < TailCall.getNumOperands()-1; i++) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000982 Operands.push_back(Chain.getOperand(i));
983 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000984 return DAG.getNode(X86ISD::TC_RETURN, dl, MVT::Other, &Operands[0],
Arnold Schwaighofer448175f2007-10-16 09:05:00 +0000985 Operands.size());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000986 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000987
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000988 // Regular return.
Dan Gohman475871a2008-07-27 21:46:04 +0000989 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000990
Dan Gohman475871a2008-07-27 21:46:04 +0000991 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +0000992 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
993 // Operand #1 = Bytes To Pop
994 RetOps.push_back(DAG.getConstant(getBytesToPopOnReturn(), MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +0000995
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000996 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +0000997 for (unsigned i = 0; i != RVLocs.size(); ++i) {
998 CCValAssign &VA = RVLocs[i];
999 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohman475871a2008-07-27 21:46:04 +00001000 SDValue ValToCopy = Op.getOperand(i*2+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001001
Chris Lattner447ff682008-03-11 03:23:40 +00001002 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1003 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001004 if (VA.getLocReg() == X86::ST0 ||
1005 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001006 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1007 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001008 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Dale Johannesenace16102009-02-03 19:33:06 +00001009 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001010 RetOps.push_back(ValToCopy);
1011 // Don't emit a copytoreg.
1012 continue;
1013 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001014
Evan Cheng242b38b2009-02-23 09:03:22 +00001015 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1016 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001017 if (Subtarget->is64Bit()) {
1018 MVT ValVT = ValToCopy.getValueType();
Evan Cheng242b38b2009-02-23 09:03:22 +00001019 if (ValVT.isVector() && ValVT.getSizeInBits() == 64) {
Evan Cheng6140a8b2009-02-22 08:05:12 +00001020 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy);
Evan Cheng242b38b2009-02-23 09:03:22 +00001021 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1)
1022 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, ValToCopy);
1023 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001024 }
1025
Dale Johannesendd64c412009-02-04 00:33:20 +00001026 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001027 Flag = Chain.getValue(1);
1028 }
Dan Gohman61a92132008-04-21 23:59:07 +00001029
1030 // The x86-64 ABI for returning structs by value requires that we copy
1031 // the sret argument into %rax for the return. We saved the argument into
1032 // a virtual register in the entry block, so now we copy the value out
1033 // and into %rax.
1034 if (Subtarget->is64Bit() &&
1035 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1036 MachineFunction &MF = DAG.getMachineFunction();
1037 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1038 unsigned Reg = FuncInfo->getSRetReturnReg();
1039 if (!Reg) {
1040 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1041 FuncInfo->setSRetReturnReg(Reg);
1042 }
Dale Johannesendd64c412009-02-04 00:33:20 +00001043 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001044
Dale Johannesendd64c412009-02-04 00:33:20 +00001045 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001046 Flag = Chain.getValue(1);
1047 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001048
Chris Lattner447ff682008-03-11 03:23:40 +00001049 RetOps[0] = Chain; // Update chain.
1050
1051 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001052 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001053 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001054
1055 return DAG.getNode(X86ISD::RET_FLAG, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00001056 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001057}
1058
1059
Chris Lattner3085e152007-02-25 08:59:22 +00001060/// LowerCallResult - Lower the result values of an ISD::CALL into the
1061/// appropriate copies out of appropriate physical registers. This assumes that
1062/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
1063/// being lowered. The returns a SDNode with the same number of values as the
1064/// ISD::CALL.
1065SDNode *X86TargetLowering::
Scott Michelfdc40a02009-02-17 22:15:04 +00001066LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
Chris Lattner3085e152007-02-25 08:59:22 +00001067 unsigned CallingConv, SelectionDAG &DAG) {
Dale Johannesenace16102009-02-03 19:33:06 +00001068
Scott Michelfdc40a02009-02-17 22:15:04 +00001069 DebugLoc dl = TheCall->getDebugLoc();
Chris Lattnere32bbf62007-02-28 07:09:55 +00001070 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001071 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman095cc292008-09-13 01:54:27 +00001072 bool isVarArg = TheCall->isVarArg();
Torok Edwin3f142c32009-02-01 18:15:56 +00001073 bool Is64Bit = Subtarget->is64Bit();
Chris Lattner52387be2007-06-19 00:13:10 +00001074 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
Chris Lattnere32bbf62007-02-28 07:09:55 +00001075 CCInfo.AnalyzeCallResult(TheCall, RetCC_X86);
1076
Dan Gohman475871a2008-07-27 21:46:04 +00001077 SmallVector<SDValue, 8> ResultVals;
Scott Michelfdc40a02009-02-17 22:15:04 +00001078
Chris Lattner3085e152007-02-25 08:59:22 +00001079 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001080 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001081 CCValAssign &VA = RVLocs[i];
1082 MVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001083
Torok Edwin3f142c32009-02-01 18:15:56 +00001084 // If this is x86-64, and we disabled SSE, we can't return FP values
Scott Michelfdc40a02009-02-17 22:15:04 +00001085 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001086 ((Is64Bit || TheCall->isInreg()) && !Subtarget->hasSSE1())) {
1087 cerr << "SSE register return with SSE disabled\n";
1088 exit(1);
1089 }
1090
Chris Lattner8e6da152008-03-10 21:08:41 +00001091 // If this is a call to a function that returns an fp value on the floating
1092 // point stack, but where we prefer to use the value in xmm registers, copy
1093 // 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 +00001094 if ((VA.getLocReg() == X86::ST0 ||
1095 VA.getLocReg() == X86::ST1) &&
1096 isScalarFPTypeInSSEReg(VA.getValVT())) {
Chris Lattner8e6da152008-03-10 21:08:41 +00001097 CopyVT = MVT::f80;
Chris Lattner3085e152007-02-25 08:59:22 +00001098 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001099
Evan Cheng79fb3b42009-02-20 20:43:02 +00001100 SDValue Val;
1101 if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Cheng242b38b2009-02-23 09:03:22 +00001102 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1103 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1104 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1105 MVT::v2i64, InFlag).getValue(1);
1106 Val = Chain.getValue(0);
1107 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1108 Val, DAG.getConstant(0, MVT::i64));
1109 } else {
1110 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1111 MVT::i64, InFlag).getValue(1);
1112 Val = Chain.getValue(0);
1113 }
Evan Cheng79fb3b42009-02-20 20:43:02 +00001114 Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val);
1115 } else {
1116 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1117 CopyVT, InFlag).getValue(1);
1118 Val = Chain.getValue(0);
1119 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001120 InFlag = Chain.getValue(2);
Chris Lattner112dedc2007-12-29 06:41:28 +00001121
Dan Gohman37eed792009-02-04 17:28:58 +00001122 if (CopyVT != VA.getValVT()) {
Chris Lattner8e6da152008-03-10 21:08:41 +00001123 // Round the F80 the right size, which also moves to the appropriate xmm
1124 // register.
Dan Gohman37eed792009-02-04 17:28:58 +00001125 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
Chris Lattner8e6da152008-03-10 21:08:41 +00001126 // This truncation won't change the value.
1127 DAG.getIntPtrConstant(1));
1128 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001129
Chris Lattner8e6da152008-03-10 21:08:41 +00001130 ResultVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001131 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001132
Chris Lattner3085e152007-02-25 08:59:22 +00001133 // Merge everything together with a MERGE_VALUES node.
1134 ResultVals.push_back(Chain);
Dale Johannesenace16102009-02-03 19:33:06 +00001135 return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(),
1136 &ResultVals[0], ResultVals.size()).getNode();
Chris Lattner2b02a442007-02-25 08:29:00 +00001137}
1138
1139
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001140//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001141// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001142//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001143// StdCall calling convention seems to be standard for many Windows' API
1144// routines and around. It differs from C calling convention just a little:
1145// callee should clean up the stack, not caller. Symbols should be also
1146// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001147// For info on fast calling convention see Fast Calling Convention (tail call)
1148// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001149
Evan Cheng85e38002006-04-27 05:35:28 +00001150/// AddLiveIn - This helper function adds the specified physical register to the
1151/// MachineFunction as a live in value. It also creates a corresponding virtual
1152/// register for it.
1153static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001154 const TargetRegisterClass *RC) {
Evan Cheng85e38002006-04-27 05:35:28 +00001155 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner84bc5422007-12-31 04:13:23 +00001156 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
1157 MF.getRegInfo().addLiveIn(PReg, VReg);
Evan Cheng85e38002006-04-27 05:35:28 +00001158 return VReg;
1159}
1160
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001161/// CallIsStructReturn - Determines whether a CALL node uses struct return
1162/// semantics.
Dan Gohman095cc292008-09-13 01:54:27 +00001163static bool CallIsStructReturn(CallSDNode *TheCall) {
1164 unsigned NumOps = TheCall->getNumArgs();
Gordon Henriksen86737662008-01-05 16:56:59 +00001165 if (!NumOps)
1166 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001167
Dan Gohman095cc292008-09-13 01:54:27 +00001168 return TheCall->getArgFlags(0).isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001169}
1170
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001171/// ArgsAreStructReturn - Determines whether a FORMAL_ARGUMENTS node uses struct
1172/// return semantics.
Dan Gohman475871a2008-07-27 21:46:04 +00001173static bool ArgsAreStructReturn(SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001174 unsigned NumArgs = Op.getNode()->getNumValues() - 1;
Gordon Henriksen86737662008-01-05 16:56:59 +00001175 if (!NumArgs)
1176 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001177
1178 return cast<ARG_FLAGSSDNode>(Op.getOperand(3))->getArgFlags().isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001179}
1180
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001181/// IsCalleePop - Determines whether a CALL or FORMAL_ARGUMENTS node requires
1182/// the callee to pop its own arguments. Callee pop is necessary to support tail
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001183/// calls.
Dan Gohman095cc292008-09-13 01:54:27 +00001184bool X86TargetLowering::IsCalleePop(bool IsVarArg, unsigned CallingConv) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001185 if (IsVarArg)
1186 return false;
1187
Dan Gohman095cc292008-09-13 01:54:27 +00001188 switch (CallingConv) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001189 default:
1190 return false;
1191 case CallingConv::X86_StdCall:
1192 return !Subtarget->is64Bit();
1193 case CallingConv::X86_FastCall:
1194 return !Subtarget->is64Bit();
1195 case CallingConv::Fast:
1196 return PerformTailCallOpt;
1197 }
1198}
1199
Dan Gohman095cc292008-09-13 01:54:27 +00001200/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1201/// given CallingConvention value.
1202CCAssignFn *X86TargetLowering::CCAssignFnForNode(unsigned CC) const {
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00001203 if (Subtarget->is64Bit()) {
Anton Korobeynikov1a979d92008-03-22 20:57:27 +00001204 if (Subtarget->isTargetWin64())
Anton Korobeynikov8f88cb02008-03-22 20:37:30 +00001205 return CC_X86_Win64_C;
Evan Chenge9ac9e62008-09-07 09:07:23 +00001206 else if (CC == CallingConv::Fast && PerformTailCallOpt)
1207 return CC_X86_64_TailCall;
1208 else
1209 return CC_X86_64_C;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00001210 }
1211
Gordon Henriksen86737662008-01-05 16:56:59 +00001212 if (CC == CallingConv::X86_FastCall)
1213 return CC_X86_32_FastCall;
Evan Chengb188dd92008-09-10 18:25:29 +00001214 else if (CC == CallingConv::Fast)
1215 return CC_X86_32_FastCC;
Gordon Henriksen86737662008-01-05 16:56:59 +00001216 else
1217 return CC_X86_32_C;
1218}
1219
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001220/// NameDecorationForFORMAL_ARGUMENTS - Selects the appropriate decoration to
1221/// apply to a MachineFunction containing a given FORMAL_ARGUMENTS node.
Gordon Henriksen86737662008-01-05 16:56:59 +00001222NameDecorationStyle
Dan Gohman475871a2008-07-27 21:46:04 +00001223X86TargetLowering::NameDecorationForFORMAL_ARGUMENTS(SDValue Op) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001224 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Gordon Henriksen86737662008-01-05 16:56:59 +00001225 if (CC == CallingConv::X86_FastCall)
1226 return FastCall;
1227 else if (CC == CallingConv::X86_StdCall)
1228 return StdCall;
1229 return None;
1230}
1231
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001232
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001233/// CallRequiresGOTInRegister - Check whether the call requires the GOT pointer
1234/// in a register before calling.
1235bool X86TargetLowering::CallRequiresGOTPtrInReg(bool Is64Bit, bool IsTailCall) {
1236 return !IsTailCall && !Is64Bit &&
1237 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1238 Subtarget->isPICStyleGOT();
1239}
1240
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001241/// CallRequiresFnAddressInReg - Check whether the call requires the function
1242/// address to be loaded in a register.
Scott Michelfdc40a02009-02-17 22:15:04 +00001243bool
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001244X86TargetLowering::CallRequiresFnAddressInReg(bool Is64Bit, bool IsTailCall) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001245 return !Is64Bit && IsTailCall &&
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001246 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1247 Subtarget->isPICStyleGOT();
1248}
1249
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001250/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1251/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001252/// the specific parameter attribute. The copy will be passed as a byval
1253/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001254static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001255CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001256 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1257 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +00001258 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesendd64c412009-02-04 00:33:20 +00001259 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001260 /*AlwaysInline=*/true, NULL, 0, NULL, 0);
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001261}
1262
Dan Gohman475871a2008-07-27 21:46:04 +00001263SDValue X86TargetLowering::LowerMemArgument(SDValue Op, SelectionDAG &DAG,
Rafael Espindola7effac52007-09-14 15:48:13 +00001264 const CCValAssign &VA,
1265 MachineFrameInfo *MFI,
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001266 unsigned CC,
Dan Gohman475871a2008-07-27 21:46:04 +00001267 SDValue Root, unsigned i) {
Rafael Espindola7effac52007-09-14 15:48:13 +00001268 // Create the nodes corresponding to a load from this parameter slot.
Duncan Sands276dcbd2008-03-21 09:14:45 +00001269 ISD::ArgFlagsTy Flags =
1270 cast<ARG_FLAGSSDNode>(Op.getOperand(3 + i))->getArgFlags();
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001271 bool AlwaysUseMutable = (CC==CallingConv::Fast) && PerformTailCallOpt;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001272 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Evan Chenge70bb592008-01-10 02:24:25 +00001273
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001274 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001275 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001276 // In case of tail call optimization mark all arguments mutable. Since they
1277 // could be overwritten by lowering of arguments in case of a tail call.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001278 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001279 VA.getLocMemOffset(), isImmutable);
Dan Gohman475871a2008-07-27 21:46:04 +00001280 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Duncan Sands276dcbd2008-03-21 09:14:45 +00001281 if (Flags.isByVal())
Rafael Espindola7effac52007-09-14 15:48:13 +00001282 return FIN;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00001283 return DAG.getLoad(VA.getValVT(), Op.getDebugLoc(), Root, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001284 PseudoSourceValue::getFixedStack(FI), 0);
Rafael Espindola7effac52007-09-14 15:48:13 +00001285}
1286
Dan Gohman475871a2008-07-27 21:46:04 +00001287SDValue
1288X86TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) {
Evan Cheng1bc78042006-04-26 01:20:17 +00001289 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001290 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00001291 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00001292
Gordon Henriksen86737662008-01-05 16:56:59 +00001293 const Function* Fn = MF.getFunction();
1294 if (Fn->hasExternalLinkage() &&
1295 Subtarget->isTargetCygMing() &&
1296 Fn->getName() == "main")
1297 FuncInfo->setForceFramePointer(true);
1298
1299 // Decorate the function name.
1300 FuncInfo->setDecorationStyle(NameDecorationForFORMAL_ARGUMENTS(Op));
Scott Michelfdc40a02009-02-17 22:15:04 +00001301
Evan Cheng1bc78042006-04-26 01:20:17 +00001302 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman475871a2008-07-27 21:46:04 +00001303 SDValue Root = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001304 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001305 unsigned CC = MF.getFunction()->getCallingConv();
Gordon Henriksen86737662008-01-05 16:56:59 +00001306 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001307 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001308
1309 assert(!(isVarArg && CC == CallingConv::Fast) &&
1310 "Var args not supported with calling convention fastcc");
1311
Chris Lattner638402b2007-02-28 07:00:42 +00001312 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001313 SmallVector<CCValAssign, 16> ArgLocs;
Gordon Henriksenae636f82008-01-03 16:47:34 +00001314 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman095cc292008-09-13 01:54:27 +00001315 CCInfo.AnalyzeFormalArguments(Op.getNode(), CCAssignFnForNode(CC));
Scott Michelfdc40a02009-02-17 22:15:04 +00001316
Dan Gohman475871a2008-07-27 21:46:04 +00001317 SmallVector<SDValue, 8> ArgValues;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001318 unsigned LastVal = ~0U;
1319 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1320 CCValAssign &VA = ArgLocs[i];
1321 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1322 // places.
1323 assert(VA.getValNo() != LastVal &&
1324 "Don't support value assigned to multiple locs yet");
1325 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001326
Chris Lattnerf39f7712007-02-28 05:46:49 +00001327 if (VA.isRegLoc()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001328 MVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001329 TargetRegisterClass *RC = NULL;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001330 if (RegVT == MVT::i32)
1331 RC = X86::GR32RegisterClass;
Gordon Henriksen86737662008-01-05 16:56:59 +00001332 else if (Is64Bit && RegVT == MVT::i64)
1333 RC = X86::GR64RegisterClass;
Dale Johannesene672af12008-02-05 20:46:33 +00001334 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001335 RC = X86::FR32RegisterClass;
Dale Johannesene672af12008-02-05 20:46:33 +00001336 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001337 RC = X86::FR64RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001338 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001339 RC = X86::VR128RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001340 else if (RegVT.isVector()) {
1341 assert(RegVT.getSizeInBits() == 64);
Evan Chengee472b12008-04-25 07:56:45 +00001342 if (!Is64Bit)
1343 RC = X86::VR64RegisterClass; // MMX values are passed in MMXs.
1344 else {
1345 // Darwin calling convention passes MMX values in either GPRs or
1346 // XMMs in x86-64. Other targets pass them in memory.
1347 if (RegVT != MVT::v1i64 && Subtarget->hasSSE2()) {
1348 RC = X86::VR128RegisterClass; // MMX values are passed in XMMs.
1349 RegVT = MVT::v2i64;
1350 } else {
1351 RC = X86::GR64RegisterClass; // v1i64 values are passed in GPRs.
1352 RegVT = MVT::i64;
1353 }
1354 }
1355 } else {
1356 assert(0 && "Unknown argument type!");
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001357 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001358
Chris Lattner82932a52007-03-02 05:12:29 +00001359 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
Dale Johannesendd64c412009-02-04 00:33:20 +00001360 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001361
Chris Lattnerf39f7712007-02-28 05:46:49 +00001362 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1363 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1364 // right size.
1365 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001366 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001367 DAG.getValueType(VA.getValVT()));
1368 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001369 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001370 DAG.getValueType(VA.getValVT()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001371
Chris Lattnerf39f7712007-02-28 05:46:49 +00001372 if (VA.getLocInfo() != CCValAssign::Full)
Dale Johannesenace16102009-02-03 19:33:06 +00001373 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001374
Gordon Henriksen86737662008-01-05 16:56:59 +00001375 // Handle MMX values passed in GPRs.
Evan Cheng44c0fd12008-04-25 20:13:28 +00001376 if (Is64Bit && RegVT != VA.getLocVT()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001377 if (RegVT.getSizeInBits() == 64 && RC == X86::GR64RegisterClass)
Dale Johannesenace16102009-02-03 19:33:06 +00001378 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001379 else if (RC == X86::VR128RegisterClass) {
Dale Johannesenace16102009-02-03 19:33:06 +00001380 ArgValue = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1381 ArgValue, DAG.getConstant(0, MVT::i64));
1382 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001383 }
1384 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001385
Chris Lattnerf39f7712007-02-28 05:46:49 +00001386 ArgValues.push_back(ArgValue);
1387 } else {
1388 assert(VA.isMemLoc());
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001389 ArgValues.push_back(LowerMemArgument(Op, DAG, VA, MFI, CC, Root, i));
Evan Cheng1bc78042006-04-26 01:20:17 +00001390 }
Evan Cheng1bc78042006-04-26 01:20:17 +00001391 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001392
Dan Gohman61a92132008-04-21 23:59:07 +00001393 // The x86-64 ABI for returning structs by value requires that we copy
1394 // the sret argument into %rax for the return. Save the argument into
1395 // a virtual register so that we can access it from the return points.
1396 if (Is64Bit && DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1397 MachineFunction &MF = DAG.getMachineFunction();
1398 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1399 unsigned Reg = FuncInfo->getSRetReturnReg();
1400 if (!Reg) {
1401 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1402 FuncInfo->setSRetReturnReg(Reg);
1403 }
Dale Johannesendd64c412009-02-04 00:33:20 +00001404 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, ArgValues[0]);
Dale Johannesenace16102009-02-03 19:33:06 +00001405 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Root);
Dan Gohman61a92132008-04-21 23:59:07 +00001406 }
1407
Chris Lattnerf39f7712007-02-28 05:46:49 +00001408 unsigned StackSize = CCInfo.getNextStackOffset();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001409 // align stack specially for tail calls
Evan Chenge9ac9e62008-09-07 09:07:23 +00001410 if (PerformTailCallOpt && CC == CallingConv::Fast)
Gordon Henriksenae636f82008-01-03 16:47:34 +00001411 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001412
Evan Cheng1bc78042006-04-26 01:20:17 +00001413 // If the function takes variable number of arguments, make a frame index for
1414 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001415 if (isVarArg) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001416 if (Is64Bit || CC != CallingConv::X86_FastCall) {
1417 VarArgsFrameIndex = MFI->CreateFixedObject(1, StackSize);
1418 }
1419 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001420 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1421
1422 // FIXME: We should really autogenerate these arrays
1423 static const unsigned GPR64ArgRegsWin64[] = {
1424 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001425 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001426 static const unsigned XMMArgRegsWin64[] = {
1427 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3
1428 };
1429 static const unsigned GPR64ArgRegs64Bit[] = {
1430 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1431 };
1432 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001433 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1434 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1435 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001436 const unsigned *GPR64ArgRegs, *XMMArgRegs;
1437
1438 if (IsWin64) {
1439 TotalNumIntRegs = 4; TotalNumXMMRegs = 4;
1440 GPR64ArgRegs = GPR64ArgRegsWin64;
1441 XMMArgRegs = XMMArgRegsWin64;
1442 } else {
1443 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1444 GPR64ArgRegs = GPR64ArgRegs64Bit;
1445 XMMArgRegs = XMMArgRegs64Bit;
1446 }
1447 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1448 TotalNumIntRegs);
1449 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs,
1450 TotalNumXMMRegs);
1451
Evan Chengc7ce29b2009-02-13 22:36:38 +00001452 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001453 "SSE register cannot be used when SSE is disabled!");
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001454 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloat) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001455 "SSE register cannot be used when SSE is disabled!");
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001456 if (UseSoftFloat || NoImplicitFloat || !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00001457 // Kernel mode asks for SSE to be disabled, so don't push them
1458 // on the stack.
1459 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001460
Gordon Henriksen86737662008-01-05 16:56:59 +00001461 // For X86-64, if there are vararg parameters that are passed via
1462 // registers, then we must store them to their spots on the stack so they
1463 // may be loaded by deferencing the result of va_next.
1464 VarArgsGPOffset = NumIntRegs * 8;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001465 VarArgsFPOffset = TotalNumIntRegs * 8 + NumXMMRegs * 16;
1466 RegSaveFrameIndex = MFI->CreateStackObject(TotalNumIntRegs * 8 +
1467 TotalNumXMMRegs * 16, 16);
1468
Gordon Henriksen86737662008-01-05 16:56:59 +00001469 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001470 SmallVector<SDValue, 8> MemOps;
1471 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00001472 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001473 DAG.getIntPtrConstant(VarArgsGPOffset));
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001474 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001475 unsigned VReg = AddLiveIn(MF, GPR64ArgRegs[NumIntRegs],
1476 X86::GR64RegisterClass);
Dale Johannesendd64c412009-02-04 00:33:20 +00001477 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001478 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001479 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001480 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001481 MemOps.push_back(Store);
Dale Johannesenace16102009-02-03 19:33:06 +00001482 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001483 DAG.getIntPtrConstant(8));
Gordon Henriksen86737662008-01-05 16:56:59 +00001484 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001485
Gordon Henriksen86737662008-01-05 16:56:59 +00001486 // Now store the XMM (fp + vector) parameter registers.
Dale Johannesenace16102009-02-03 19:33:06 +00001487 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001488 DAG.getIntPtrConstant(VarArgsFPOffset));
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001489 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001490 unsigned VReg = AddLiveIn(MF, XMMArgRegs[NumXMMRegs],
1491 X86::VR128RegisterClass);
Dale Johannesendd64c412009-02-04 00:33:20 +00001492 SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::v4f32);
Dan Gohman475871a2008-07-27 21:46:04 +00001493 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001494 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001495 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001496 MemOps.push_back(Store);
Dale Johannesenace16102009-02-03 19:33:06 +00001497 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001498 DAG.getIntPtrConstant(16));
Gordon Henriksen86737662008-01-05 16:56:59 +00001499 }
1500 if (!MemOps.empty())
Dale Johannesenace16102009-02-03 19:33:06 +00001501 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Gordon Henriksen86737662008-01-05 16:56:59 +00001502 &MemOps[0], MemOps.size());
1503 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001504 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001505
Gordon Henriksenae636f82008-01-03 16:47:34 +00001506 ArgValues.push_back(Root);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001507
Gordon Henriksen86737662008-01-05 16:56:59 +00001508 // Some CCs need callee pop.
Dan Gohman095cc292008-09-13 01:54:27 +00001509 if (IsCalleePop(isVarArg, CC)) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001510 BytesToPopOnReturn = StackSize; // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001511 BytesCallerReserves = 0;
1512 } else {
Anton Korobeynikov1d9bacc2007-03-06 08:12:33 +00001513 BytesToPopOnReturn = 0; // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001514 // If this is an sret function, the return should pop the hidden pointer.
Evan Chengb188dd92008-09-10 18:25:29 +00001515 if (!Is64Bit && CC != CallingConv::Fast && ArgsAreStructReturn(Op))
Scott Michelfdc40a02009-02-17 22:15:04 +00001516 BytesToPopOnReturn = 4;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001517 BytesCallerReserves = StackSize;
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001518 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001519
Gordon Henriksen86737662008-01-05 16:56:59 +00001520 if (!Is64Bit) {
1521 RegSaveFrameIndex = 0xAAAAAAA; // RegSaveFrameIndex is X86-64 only.
1522 if (CC == CallingConv::X86_FastCall)
1523 VarArgsFrameIndex = 0xAAAAAAA; // fastcc functions can't have varargs.
1524 }
Evan Cheng25caf632006-05-23 21:06:34 +00001525
Anton Korobeynikova2780e12007-08-15 17:12:32 +00001526 FuncInfo->setBytesToPopOnReturn(BytesToPopOnReturn);
Evan Cheng1bc78042006-04-26 01:20:17 +00001527
Evan Cheng25caf632006-05-23 21:06:34 +00001528 // Return the new list of results.
Dale Johannesenace16102009-02-03 19:33:06 +00001529 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00001530 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001531}
1532
Dan Gohman475871a2008-07-27 21:46:04 +00001533SDValue
Dan Gohman095cc292008-09-13 01:54:27 +00001534X86TargetLowering::LowerMemOpCallTo(CallSDNode *TheCall, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00001535 const SDValue &StackPtr,
Evan Chengdffbd832008-01-10 00:09:10 +00001536 const CCValAssign &VA,
Dan Gohman475871a2008-07-27 21:46:04 +00001537 SDValue Chain,
Dan Gohman095cc292008-09-13 01:54:27 +00001538 SDValue Arg, ISD::ArgFlagsTy Flags) {
Dale Johannesenace16102009-02-03 19:33:06 +00001539 DebugLoc dl = TheCall->getDebugLoc();
Dan Gohman4fdad172008-02-07 16:28:05 +00001540 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001541 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001542 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001543 if (Flags.isByVal()) {
Dale Johannesendd64c412009-02-04 00:33:20 +00001544 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Evan Chengdffbd832008-01-10 00:09:10 +00001545 }
Dale Johannesenace16102009-02-03 19:33:06 +00001546 return DAG.getStore(Chain, dl, Arg, PtrOff,
Dan Gohman3069b872008-02-07 18:41:25 +00001547 PseudoSourceValue::getStack(), LocMemOffset);
Evan Chengdffbd832008-01-10 00:09:10 +00001548}
1549
Bill Wendling64e87322009-01-16 19:25:27 +00001550/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001551/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001552SDValue
1553X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00001554 SDValue &OutRetAddr,
Scott Michelfdc40a02009-02-17 22:15:04 +00001555 SDValue Chain,
1556 bool IsTailCall,
1557 bool Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00001558 int FPDiff,
1559 DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001560 if (!IsTailCall || FPDiff==0) return Chain;
1561
1562 // Adjust the Return address stack slot.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001563 MVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001564 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001565
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001566 // Load the "old" Return address.
Dale Johannesenace16102009-02-03 19:33:06 +00001567 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, NULL, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001568 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001569}
1570
1571/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1572/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001573static SDValue
1574EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001575 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001576 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001577 // Store the return address to the appropriate stack slot.
1578 if (!FPDiff) return Chain;
1579 // Calculate the new stack slot for the return address.
1580 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001581 int NewReturnAddrFI =
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001582 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001583 MVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001584 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001585 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Dan Gohmana54cf172008-07-11 22:44:52 +00001586 PseudoSourceValue::getFixedStack(NewReturnAddrFI), 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001587 return Chain;
1588}
1589
Dan Gohman475871a2008-07-27 21:46:04 +00001590SDValue X86TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001591 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman095cc292008-09-13 01:54:27 +00001592 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
1593 SDValue Chain = TheCall->getChain();
1594 unsigned CC = TheCall->getCallingConv();
1595 bool isVarArg = TheCall->isVarArg();
1596 bool IsTailCall = TheCall->isTailCall() &&
1597 CC == CallingConv::Fast && PerformTailCallOpt;
1598 SDValue Callee = TheCall->getCallee();
Gordon Henriksen86737662008-01-05 16:56:59 +00001599 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman095cc292008-09-13 01:54:27 +00001600 bool IsStructRet = CallIsStructReturn(TheCall);
Dale Johannesenace16102009-02-03 19:33:06 +00001601 DebugLoc dl = TheCall->getDebugLoc();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001602
1603 assert(!(isVarArg && CC == CallingConv::Fast) &&
1604 "Var args not supported with calling convention fastcc");
1605
Chris Lattner638402b2007-02-28 07:00:42 +00001606 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001607 SmallVector<CCValAssign, 16> ArgLocs;
Chris Lattner52387be2007-06-19 00:13:10 +00001608 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman095cc292008-09-13 01:54:27 +00001609 CCInfo.AnalyzeCallOperands(TheCall, CCAssignFnForNode(CC));
Scott Michelfdc40a02009-02-17 22:15:04 +00001610
Chris Lattner423c5f42007-02-28 05:31:48 +00001611 // Get a count of how many bytes are to be pushed on the stack.
1612 unsigned NumBytes = CCInfo.getNextStackOffset();
Arnold Schwaighofer1fdc40f2008-09-11 20:28:43 +00001613 if (PerformTailCallOpt && CC == CallingConv::Fast)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001614 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001615
Gordon Henriksen86737662008-01-05 16:56:59 +00001616 int FPDiff = 0;
1617 if (IsTailCall) {
1618 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001619 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001620 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1621 FPDiff = NumBytesCallerPushed - NumBytes;
1622
1623 // Set the delta of movement of the returnaddr stackslot.
1624 // But only set if delta is greater than previous delta.
1625 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1626 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1627 }
1628
Chris Lattnere563bbc2008-10-11 22:08:30 +00001629 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001630
Dan Gohman475871a2008-07-27 21:46:04 +00001631 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001632 // Load return adress for tail calls.
1633 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, IsTailCall, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00001634 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001635
Dan Gohman475871a2008-07-27 21:46:04 +00001636 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1637 SmallVector<SDValue, 8> MemOpChains;
1638 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00001639
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001640 // Walk the register/memloc assignments, inserting copies/loads. In the case
1641 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00001642 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1643 CCValAssign &VA = ArgLocs[i];
Dan Gohman095cc292008-09-13 01:54:27 +00001644 SDValue Arg = TheCall->getArg(i);
1645 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
1646 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00001647
Chris Lattner423c5f42007-02-28 05:31:48 +00001648 // Promote the value if needed.
1649 switch (VA.getLocInfo()) {
1650 default: assert(0 && "Unknown loc info!");
1651 case CCValAssign::Full: break;
1652 case CCValAssign::SExt:
Dale Johannesenace16102009-02-03 19:33:06 +00001653 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001654 break;
1655 case CCValAssign::ZExt:
Dale Johannesenace16102009-02-03 19:33:06 +00001656 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001657 break;
1658 case CCValAssign::AExt:
Dale Johannesenace16102009-02-03 19:33:06 +00001659 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001660 break;
Evan Cheng6b5783d2006-05-25 18:56:34 +00001661 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001662
Chris Lattner423c5f42007-02-28 05:31:48 +00001663 if (VA.isRegLoc()) {
Evan Cheng10e86422008-04-25 19:11:04 +00001664 if (Is64Bit) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001665 MVT RegVT = VA.getLocVT();
1666 if (RegVT.isVector() && RegVT.getSizeInBits() == 64)
Evan Cheng10e86422008-04-25 19:11:04 +00001667 switch (VA.getLocReg()) {
1668 default:
1669 break;
1670 case X86::RDI: case X86::RSI: case X86::RDX: case X86::RCX:
1671 case X86::R8: {
1672 // Special case: passing MMX values in GPR registers.
Dale Johannesenace16102009-02-03 19:33:06 +00001673 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
Evan Cheng10e86422008-04-25 19:11:04 +00001674 break;
1675 }
1676 case X86::XMM0: case X86::XMM1: case X86::XMM2: case X86::XMM3:
1677 case X86::XMM4: case X86::XMM5: case X86::XMM6: case X86::XMM7: {
1678 // Special case: passing MMX values in XMM registers.
Dale Johannesenace16102009-02-03 19:33:06 +00001679 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1680 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1681 Arg = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2i64,
Dale Johannesene8d72302009-02-06 23:05:02 +00001682 DAG.getUNDEF(MVT::v2i64), Arg,
Dale Johannesenace16102009-02-03 19:33:06 +00001683 getMOVLMask(2, DAG, dl));
Evan Cheng10e86422008-04-25 19:11:04 +00001684 break;
1685 }
1686 }
1687 }
Chris Lattner423c5f42007-02-28 05:31:48 +00001688 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1689 } else {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001690 if (!IsTailCall || (IsTailCall && isByVal)) {
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001691 assert(VA.isMemLoc());
Gabor Greifba36cb52008-08-28 21:40:38 +00001692 if (StackPtr.getNode() == 0)
Dale Johannesendd64c412009-02-04 00:33:20 +00001693 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
Scott Michelfdc40a02009-02-17 22:15:04 +00001694
Dan Gohman095cc292008-09-13 01:54:27 +00001695 MemOpChains.push_back(LowerMemOpCallTo(TheCall, DAG, StackPtr, VA,
1696 Chain, Arg, Flags));
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001697 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001698 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001699 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001700
Evan Cheng32fe1032006-05-25 00:59:30 +00001701 if (!MemOpChains.empty())
Dale Johannesenace16102009-02-03 19:33:06 +00001702 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001703 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001704
Evan Cheng347d5f72006-04-28 21:29:37 +00001705 // Build a sequence of copy-to-reg nodes chained together with token chain
1706 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001707 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001708 // Tail call byval lowering might overwrite argument registers so in case of
1709 // tail call optimization the copies to registers are lowered later.
1710 if (!IsTailCall)
1711 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001712 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00001713 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001714 InFlag = Chain.getValue(1);
1715 }
Gordon Henriksen86737662008-01-05 16:56:59 +00001716
Evan Chengf4684712007-02-21 21:18:14 +00001717 // ELF / PIC requires GOT in the EBX register before function calls via PLT
Scott Michelfdc40a02009-02-17 22:15:04 +00001718 // GOT pointer.
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001719 if (CallRequiresGOTPtrInReg(Is64Bit, IsTailCall)) {
Dale Johannesendd64c412009-02-04 00:33:20 +00001720 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
Scott Michelfdc40a02009-02-17 22:15:04 +00001721 DAG.getNode(X86ISD::GlobalBaseReg,
1722 DebugLoc::getUnknownLoc(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001723 getPointerTy()),
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001724 InFlag);
1725 InFlag = Chain.getValue(1);
1726 }
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001727 // If we are tail calling and generating PIC/GOT style code load the address
1728 // of the callee into ecx. The value in ecx is used as target of the tail
1729 // jump. This is done to circumvent the ebx/callee-saved problem for tail
1730 // calls on PIC/GOT architectures. Normally we would just put the address of
1731 // GOT into ebx and then call target@PLT. But for tail callss ebx would be
1732 // restored (since ebx is callee saved) before jumping to the target@PLT.
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001733 if (CallRequiresFnAddressInReg(Is64Bit, IsTailCall)) {
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001734 // Note: The actual moving to ecx is done further down.
1735 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
Evan Chengda43bcf2008-09-24 00:05:32 +00001736 if (G && !G->getGlobal()->hasHiddenVisibility() &&
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001737 !G->getGlobal()->hasProtectedVisibility())
1738 Callee = LowerGlobalAddress(Callee, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00001739 else if (isa<ExternalSymbolSDNode>(Callee))
1740 Callee = LowerExternalSymbol(Callee,DAG);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001741 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001742
Gordon Henriksen86737662008-01-05 16:56:59 +00001743 if (Is64Bit && isVarArg) {
1744 // From AMD64 ABI document:
1745 // For calls that may call functions that use varargs or stdargs
1746 // (prototype-less calls or calls to functions containing ellipsis (...) in
1747 // the declaration) %al is used as hidden argument to specify the number
1748 // of SSE registers used. The contents of %al do not need to match exactly
1749 // the number of registers, but must be an ubound on the number of SSE
1750 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001751
1752 // FIXME: Verify this on Win64
Gordon Henriksen86737662008-01-05 16:56:59 +00001753 // Count the number of XMM registers allocated.
1754 static const unsigned XMMArgRegs[] = {
1755 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1756 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1757 };
1758 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michelfdc40a02009-02-17 22:15:04 +00001759 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00001760 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001761
Dale Johannesendd64c412009-02-04 00:33:20 +00001762 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Gordon Henriksen86737662008-01-05 16:56:59 +00001763 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
1764 InFlag = Chain.getValue(1);
1765 }
1766
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001767
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001768 // For tail calls lower the arguments to the 'real' stack slot.
Gordon Henriksen86737662008-01-05 16:56:59 +00001769 if (IsTailCall) {
Dan Gohman475871a2008-07-27 21:46:04 +00001770 SmallVector<SDValue, 8> MemOpChains2;
1771 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00001772 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001773 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00001774 InFlag = SDValue();
Gordon Henriksen86737662008-01-05 16:56:59 +00001775 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1776 CCValAssign &VA = ArgLocs[i];
1777 if (!VA.isRegLoc()) {
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001778 assert(VA.isMemLoc());
Dan Gohman095cc292008-09-13 01:54:27 +00001779 SDValue Arg = TheCall->getArg(i);
1780 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
Gordon Henriksen86737662008-01-05 16:56:59 +00001781 // Create frame index.
1782 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001783 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001784 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001785 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001786
Duncan Sands276dcbd2008-03-21 09:14:45 +00001787 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00001788 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00001789 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00001790 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00001791 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00001792 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00001793 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001794
1795 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN, Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001796 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00001797 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00001798 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00001799 MemOpChains2.push_back(
Dale Johannesenace16102009-02-03 19:33:06 +00001800 DAG.getStore(Chain, dl, Arg, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001801 PseudoSourceValue::getFixedStack(FI), 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001802 }
Gordon Henriksen86737662008-01-05 16:56:59 +00001803 }
1804 }
1805
1806 if (!MemOpChains2.empty())
Dale Johannesenace16102009-02-03 19:33:06 +00001807 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00001808 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001809
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001810 // Copy arguments to their registers.
1811 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001812 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00001813 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001814 InFlag = Chain.getValue(1);
1815 }
Dan Gohman475871a2008-07-27 21:46:04 +00001816 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001817
Gordon Henriksen86737662008-01-05 16:56:59 +00001818 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001819 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00001820 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001821 }
1822
Evan Cheng32fe1032006-05-25 00:59:30 +00001823 // If the callee is a GlobalAddress node (quite common, every direct call is)
1824 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Anton Korobeynikova5986852006-11-20 10:46:14 +00001825 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00001826 // We should use extra load for direct calls to dllimported functions in
1827 // non-JIT mode.
Evan Cheng817a6a92008-07-16 01:34:02 +00001828 if (!Subtarget->GVRequiresExtraLoad(G->getGlobal(),
1829 getTargetMachine(), true))
Dan Gohman6520e202008-10-18 02:06:02 +00001830 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy(),
1831 G->getOffset());
Bill Wendling056292f2008-09-16 21:48:12 +00001832 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1833 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
Gordon Henriksen86737662008-01-05 16:56:59 +00001834 } else if (IsTailCall) {
Arnold Schwaighofer290ae032008-09-22 14:50:07 +00001835 unsigned Opc = Is64Bit ? X86::R9 : X86::EAX;
Gordon Henriksen86737662008-01-05 16:56:59 +00001836
Dale Johannesendd64c412009-02-04 00:33:20 +00001837 Chain = DAG.getCopyToReg(Chain, dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00001838 DAG.getRegister(Opc, getPointerTy()),
Gordon Henriksen86737662008-01-05 16:56:59 +00001839 Callee,InFlag);
1840 Callee = DAG.getRegister(Opc, getPointerTy());
1841 // Add register as live out.
1842 DAG.getMachineFunction().getRegInfo().addLiveOut(Opc);
Gordon Henriksenae636f82008-01-03 16:47:34 +00001843 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001844
Chris Lattnerd96d0722007-02-25 06:40:16 +00001845 // Returns a chain & a flag for retval copy to use.
1846 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00001847 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00001848
1849 if (IsTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00001850 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1851 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00001852 InFlag = Chain.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001853
Gordon Henriksen86737662008-01-05 16:56:59 +00001854 // Returns a chain & a flag for retval copy to use.
1855 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1856 Ops.clear();
1857 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001858
Nate Begeman4c5dcf52006-02-17 00:03:04 +00001859 Ops.push_back(Chain);
1860 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00001861
Gordon Henriksen86737662008-01-05 16:56:59 +00001862 if (IsTailCall)
1863 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00001864
Gordon Henriksen86737662008-01-05 16:56:59 +00001865 // Add argument registers to the end of the list so that they are known live
1866 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00001867 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1868 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1869 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001870
Evan Cheng586ccac2008-03-18 23:36:35 +00001871 // Add an implicit use GOT pointer in EBX.
1872 if (!IsTailCall && !Is64Bit &&
1873 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1874 Subtarget->isPICStyleGOT())
1875 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
1876
1877 // Add an implicit use of AL for x86 vararg functions.
1878 if (Is64Bit && isVarArg)
1879 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
1880
Gabor Greifba36cb52008-08-28 21:40:38 +00001881 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00001882 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00001883
Gordon Henriksen86737662008-01-05 16:56:59 +00001884 if (IsTailCall) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001885 assert(InFlag.getNode() &&
Gordon Henriksen86737662008-01-05 16:56:59 +00001886 "Flag must be set. Depend on flag being set in LowerRET");
Dale Johannesenace16102009-02-03 19:33:06 +00001887 Chain = DAG.getNode(X86ISD::TAILCALL, dl,
Dan Gohman095cc292008-09-13 01:54:27 +00001888 TheCall->getVTList(), &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001889
Gabor Greifba36cb52008-08-28 21:40:38 +00001890 return SDValue(Chain.getNode(), Op.getResNo());
Gordon Henriksen86737662008-01-05 16:56:59 +00001891 }
1892
Dale Johannesenace16102009-02-03 19:33:06 +00001893 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00001894 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00001895
Chris Lattner2d297092006-05-23 18:50:38 +00001896 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00001897 unsigned NumBytesForCalleeToPush;
Dan Gohman095cc292008-09-13 01:54:27 +00001898 if (IsCalleePop(isVarArg, CC))
Gordon Henriksen86737662008-01-05 16:56:59 +00001899 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Evan Chengb188dd92008-09-10 18:25:29 +00001900 else if (!Is64Bit && CC != CallingConv::Fast && IsStructRet)
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001901 // If this is is a call to a struct-return function, the callee
1902 // pops the hidden struct pointer, so we have to push it back.
1903 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001904 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00001905 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00001906 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00001907
Gordon Henriksenae636f82008-01-03 16:47:34 +00001908 // Returns a flag for retval copy to use.
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001909 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnere563bbc2008-10-11 22:08:30 +00001910 DAG.getIntPtrConstant(NumBytes, true),
1911 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
1912 true),
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001913 InFlag);
Chris Lattner3085e152007-02-25 08:59:22 +00001914 InFlag = Chain.getValue(1);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00001915
Chris Lattner3085e152007-02-25 08:59:22 +00001916 // Handle result values, copying them out of physregs into vregs that we
1917 // return.
Dan Gohman095cc292008-09-13 01:54:27 +00001918 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG),
Gabor Greif327ef032008-08-28 23:19:51 +00001919 Op.getResNo());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001920}
1921
Evan Cheng25ab6902006-09-08 06:48:29 +00001922
1923//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001924// Fast Calling Convention (tail call) implementation
1925//===----------------------------------------------------------------------===//
1926
1927// Like std call, callee cleans arguments, convention except that ECX is
1928// reserved for storing the tail called function address. Only 2 registers are
1929// free for argument passing (inreg). Tail call optimization is performed
1930// provided:
1931// * tailcallopt is enabled
1932// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001933// On X86_64 architecture with GOT-style position independent code only local
1934// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00001935// To keep the stack aligned according to platform abi the function
1936// GetAlignedArgumentStackSize ensures that argument delta is always multiples
1937// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001938// If a tail called function callee has more arguments than the caller the
1939// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00001940// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001941// original REtADDR, but before the saved framepointer or the spilled registers
1942// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
1943// stack layout:
1944// arg1
1945// arg2
1946// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00001947// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001948// move area ]
1949// (possible EBP)
1950// ESI
1951// EDI
1952// local1 ..
1953
1954/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
1955/// for a 16 byte align requirement.
Scott Michelfdc40a02009-02-17 22:15:04 +00001956unsigned X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001957 SelectionDAG& DAG) {
Evan Chenge9ac9e62008-09-07 09:07:23 +00001958 MachineFunction &MF = DAG.getMachineFunction();
1959 const TargetMachine &TM = MF.getTarget();
1960 const TargetFrameInfo &TFI = *TM.getFrameInfo();
1961 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00001962 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00001963 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001964 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00001965 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
1966 // Number smaller than 12 so just add the difference.
1967 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
1968 } else {
1969 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00001970 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00001971 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001972 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00001973 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001974}
1975
1976/// IsEligibleForTailCallElimination - Check to see whether the next instruction
Evan Cheng9df7dc52007-11-02 01:26:22 +00001977/// following the call is a return. A function is eligible if caller/callee
1978/// calling conventions match, currently only fastcc supports tail calls, and
1979/// the function CALL is immediatly followed by a RET.
Dan Gohman095cc292008-09-13 01:54:27 +00001980bool X86TargetLowering::IsEligibleForTailCallOptimization(CallSDNode *TheCall,
Dan Gohman475871a2008-07-27 21:46:04 +00001981 SDValue Ret,
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001982 SelectionDAG& DAG) const {
Evan Cheng9df7dc52007-11-02 01:26:22 +00001983 if (!PerformTailCallOpt)
1984 return false;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001985
Dan Gohman095cc292008-09-13 01:54:27 +00001986 if (CheckTailCallReturnConstraints(TheCall, Ret)) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001987 MachineFunction &MF = DAG.getMachineFunction();
1988 unsigned CallerCC = MF.getFunction()->getCallingConv();
Dan Gohman095cc292008-09-13 01:54:27 +00001989 unsigned CalleeCC= TheCall->getCallingConv();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001990 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
Dan Gohman095cc292008-09-13 01:54:27 +00001991 SDValue Callee = TheCall->getCallee();
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001992 // On x86/32Bit PIC/GOT tail calls are supported.
Evan Cheng9df7dc52007-11-02 01:26:22 +00001993 if (getTargetMachine().getRelocationModel() != Reloc::PIC_ ||
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001994 !Subtarget->isPICStyleGOT()|| !Subtarget->is64Bit())
Evan Cheng9df7dc52007-11-02 01:26:22 +00001995 return true;
1996
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001997 // Can only do local tail calls (in same module, hidden or protected) on
1998 // x86_64 PIC/GOT at the moment.
Gordon Henriksen86737662008-01-05 16:56:59 +00001999 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
2000 return G->getGlobal()->hasHiddenVisibility()
2001 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002002 }
2003 }
Evan Cheng9df7dc52007-11-02 01:26:22 +00002004
2005 return false;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002006}
2007
Dan Gohman3df24e62008-09-03 23:12:08 +00002008FastISel *
2009X86TargetLowering::createFastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +00002010 MachineModuleInfo *mmo,
Devang Patel83489bb2009-01-13 00:35:13 +00002011 DwarfWriter *dw,
Dan Gohman3df24e62008-09-03 23:12:08 +00002012 DenseMap<const Value *, unsigned> &vm,
2013 DenseMap<const BasicBlock *,
Dan Gohman0586d912008-09-10 20:11:02 +00002014 MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00002015 DenseMap<const AllocaInst *, int> &am
2016#ifndef NDEBUG
2017 , SmallSet<Instruction*, 8> &cil
2018#endif
2019 ) {
Devang Patel83489bb2009-01-13 00:35:13 +00002020 return X86::createFastISel(mf, mmo, dw, vm, bm, am
Dan Gohmandd5b58a2008-10-14 23:54:11 +00002021#ifndef NDEBUG
2022 , cil
2023#endif
2024 );
Dan Gohmand9f3c482008-08-19 21:32:53 +00002025}
2026
2027
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002028//===----------------------------------------------------------------------===//
2029// Other Lowering Hooks
2030//===----------------------------------------------------------------------===//
2031
2032
Dan Gohman475871a2008-07-27 21:46:04 +00002033SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002034 MachineFunction &MF = DAG.getMachineFunction();
2035 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2036 int ReturnAddrIndex = FuncInfo->getRAIndex();
2037
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002038 if (ReturnAddrIndex == 0) {
2039 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002040 uint64_t SlotSize = TD->getPointerSize();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002041 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002042 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002043 }
2044
Evan Cheng25ab6902006-09-08 06:48:29 +00002045 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002046}
2047
2048
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002049/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2050/// specific condition code, returning the condition code and the LHS/RHS of the
2051/// comparison to make.
2052static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2053 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002054 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002055 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2056 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2057 // X > -1 -> X == 0, jump !sign.
2058 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002059 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002060 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2061 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002062 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002063 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002064 // X < 1 -> X <= 0
2065 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002066 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002067 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002068 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002069
Evan Chengd9558e02006-01-06 00:43:03 +00002070 switch (SetCCOpcode) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002071 default: assert(0 && "Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002072 case ISD::SETEQ: return X86::COND_E;
2073 case ISD::SETGT: return X86::COND_G;
2074 case ISD::SETGE: return X86::COND_GE;
2075 case ISD::SETLT: return X86::COND_L;
2076 case ISD::SETLE: return X86::COND_LE;
2077 case ISD::SETNE: return X86::COND_NE;
2078 case ISD::SETULT: return X86::COND_B;
2079 case ISD::SETUGT: return X86::COND_A;
2080 case ISD::SETULE: return X86::COND_BE;
2081 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002082 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002083 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002084
Chris Lattner4c78e022008-12-23 23:42:27 +00002085 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002086
Chris Lattner4c78e022008-12-23 23:42:27 +00002087 // If LHS is a foldable load, but RHS is not, flip the condition.
2088 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2089 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2090 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2091 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002092 }
2093
Chris Lattner4c78e022008-12-23 23:42:27 +00002094 switch (SetCCOpcode) {
2095 default: break;
2096 case ISD::SETOLT:
2097 case ISD::SETOLE:
2098 case ISD::SETUGT:
2099 case ISD::SETUGE:
2100 std::swap(LHS, RHS);
2101 break;
2102 }
2103
2104 // On a floating point condition, the flags are set as follows:
2105 // ZF PF CF op
2106 // 0 | 0 | 0 | X > Y
2107 // 0 | 0 | 1 | X < Y
2108 // 1 | 0 | 0 | X == Y
2109 // 1 | 1 | 1 | unordered
2110 switch (SetCCOpcode) {
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002111 default: assert(0 && "Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002112 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002113 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002114 case ISD::SETOLT: // flipped
2115 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002116 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002117 case ISD::SETOLE: // flipped
2118 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002119 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002120 case ISD::SETUGT: // flipped
2121 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002122 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002123 case ISD::SETUGE: // flipped
2124 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002125 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002126 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002127 case ISD::SETNE: return X86::COND_NE;
2128 case ISD::SETUO: return X86::COND_P;
2129 case ISD::SETO: return X86::COND_NP;
Chris Lattner4c78e022008-12-23 23:42:27 +00002130 }
Evan Chengd9558e02006-01-06 00:43:03 +00002131}
2132
Evan Cheng4a460802006-01-11 00:33:36 +00002133/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2134/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002135/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002136static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002137 switch (X86CC) {
2138 default:
2139 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002140 case X86::COND_B:
2141 case X86::COND_BE:
2142 case X86::COND_E:
2143 case X86::COND_P:
2144 case X86::COND_A:
2145 case X86::COND_AE:
2146 case X86::COND_NE:
2147 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002148 return true;
2149 }
2150}
2151
Evan Cheng5ced1d82006-04-06 23:23:56 +00002152/// isUndefOrInRange - Op is either an undef node or a ConstantSDNode. Return
Evan Chengc5cdff22006-04-07 21:53:05 +00002153/// true if Op is undef or if its value falls within the specified range (L, H].
Dan Gohman475871a2008-07-27 21:46:04 +00002154static bool isUndefOrInRange(SDValue Op, unsigned Low, unsigned Hi) {
Evan Cheng5ced1d82006-04-06 23:23:56 +00002155 if (Op.getOpcode() == ISD::UNDEF)
2156 return true;
2157
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002158 unsigned Val = cast<ConstantSDNode>(Op)->getZExtValue();
Evan Chengc5cdff22006-04-07 21:53:05 +00002159 return (Val >= Low && Val < Hi);
2160}
2161
2162/// isUndefOrEqual - Op is either an undef node or a ConstantSDNode. Return
2163/// true if Op is undef or if its value equal to the specified value.
Dan Gohman475871a2008-07-27 21:46:04 +00002164static bool isUndefOrEqual(SDValue Op, unsigned Val) {
Evan Chengc5cdff22006-04-07 21:53:05 +00002165 if (Op.getOpcode() == ISD::UNDEF)
2166 return true;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002167 return cast<ConstantSDNode>(Op)->getZExtValue() == Val;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002168}
2169
Evan Cheng0188ecb2006-03-22 18:59:22 +00002170/// isPSHUFDMask - Return true if the specified VECTOR_SHUFFLE operand
2171/// specifies a shuffle of elements that is suitable for input to PSHUFD.
2172bool X86::isPSHUFDMask(SDNode *N) {
2173 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2174
Dan Gohman7f55fcb2007-08-02 21:17:01 +00002175 if (N->getNumOperands() != 2 && N->getNumOperands() != 4)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002176 return false;
2177
2178 // Check if the value doesn't reference the second vector.
Evan Cheng506d3df2006-03-29 23:07:14 +00002179 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002180 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002181 if (Arg.getOpcode() == ISD::UNDEF) continue;
2182 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002183 if (cast<ConstantSDNode>(Arg)->getZExtValue() >= e)
Evan Cheng506d3df2006-03-29 23:07:14 +00002184 return false;
2185 }
2186
2187 return true;
2188}
2189
2190/// isPSHUFHWMask - Return true if the specified VECTOR_SHUFFLE operand
Evan Chengc21a0532006-04-05 01:47:37 +00002191/// specifies a shuffle of elements that is suitable for input to PSHUFHW.
Evan Cheng506d3df2006-03-29 23:07:14 +00002192bool X86::isPSHUFHWMask(SDNode *N) {
2193 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2194
2195 if (N->getNumOperands() != 8)
2196 return false;
2197
2198 // Lower quadword copied in order.
2199 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002200 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002201 if (Arg.getOpcode() == ISD::UNDEF) continue;
2202 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002203 if (cast<ConstantSDNode>(Arg)->getZExtValue() != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002204 return false;
2205 }
2206
2207 // Upper quadword shuffled.
2208 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002209 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002210 if (Arg.getOpcode() == ISD::UNDEF) continue;
2211 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002212 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng506d3df2006-03-29 23:07:14 +00002213 if (Val < 4 || Val > 7)
2214 return false;
2215 }
2216
2217 return true;
2218}
2219
2220/// isPSHUFLWMask - Return true if the specified VECTOR_SHUFFLE operand
Evan Chengc21a0532006-04-05 01:47:37 +00002221/// specifies a shuffle of elements that is suitable for input to PSHUFLW.
Evan Cheng506d3df2006-03-29 23:07:14 +00002222bool X86::isPSHUFLWMask(SDNode *N) {
2223 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2224
2225 if (N->getNumOperands() != 8)
2226 return false;
2227
2228 // Upper quadword copied in order.
Evan Chengc5cdff22006-04-07 21:53:05 +00002229 for (unsigned i = 4; i != 8; ++i)
2230 if (!isUndefOrEqual(N->getOperand(i), i))
Evan Cheng506d3df2006-03-29 23:07:14 +00002231 return false;
Evan Cheng506d3df2006-03-29 23:07:14 +00002232
2233 // Lower quadword shuffled.
Evan Chengc5cdff22006-04-07 21:53:05 +00002234 for (unsigned i = 0; i != 4; ++i)
2235 if (!isUndefOrInRange(N->getOperand(i), 0, 4))
Evan Cheng506d3df2006-03-29 23:07:14 +00002236 return false;
Evan Cheng0188ecb2006-03-22 18:59:22 +00002237
2238 return true;
2239}
2240
Evan Cheng14aed5e2006-03-24 01:18:28 +00002241/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2242/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Dan Gohmane7852d02009-01-26 04:35:06 +00002243template<class SDOperand>
2244static bool isSHUFPMask(SDOperand *Elems, unsigned NumElems) {
Evan Cheng39623da2006-04-20 08:58:49 +00002245 if (NumElems != 2 && NumElems != 4) return false;
Evan Cheng14aed5e2006-03-24 01:18:28 +00002246
Evan Cheng39623da2006-04-20 08:58:49 +00002247 unsigned Half = NumElems / 2;
2248 for (unsigned i = 0; i < Half; ++i)
Chris Lattner5a88b832007-02-25 07:10:00 +00002249 if (!isUndefOrInRange(Elems[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002250 return false;
2251 for (unsigned i = Half; i < NumElems; ++i)
Chris Lattner5a88b832007-02-25 07:10:00 +00002252 if (!isUndefOrInRange(Elems[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002253 return false;
Evan Cheng14aed5e2006-03-24 01:18:28 +00002254
2255 return true;
2256}
2257
Evan Cheng39623da2006-04-20 08:58:49 +00002258bool X86::isSHUFPMask(SDNode *N) {
2259 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002260 return ::isSHUFPMask(N->op_begin(), N->getNumOperands());
Evan Cheng39623da2006-04-20 08:58:49 +00002261}
2262
Evan Cheng213d2cf2007-05-17 18:45:50 +00002263/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00002264/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2265/// half elements to come from vector 1 (which would equal the dest.) and
2266/// the upper half to come from vector 2.
Dan Gohmane7852d02009-01-26 04:35:06 +00002267template<class SDOperand>
2268static bool isCommutedSHUFP(SDOperand *Ops, unsigned NumOps) {
Chris Lattner5a88b832007-02-25 07:10:00 +00002269 if (NumOps != 2 && NumOps != 4) return false;
Evan Cheng39623da2006-04-20 08:58:49 +00002270
Chris Lattner5a88b832007-02-25 07:10:00 +00002271 unsigned Half = NumOps / 2;
Evan Cheng39623da2006-04-20 08:58:49 +00002272 for (unsigned i = 0; i < Half; ++i)
Chris Lattner5a88b832007-02-25 07:10:00 +00002273 if (!isUndefOrInRange(Ops[i], NumOps, NumOps*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002274 return false;
Chris Lattner5a88b832007-02-25 07:10:00 +00002275 for (unsigned i = Half; i < NumOps; ++i)
2276 if (!isUndefOrInRange(Ops[i], 0, NumOps))
Evan Cheng39623da2006-04-20 08:58:49 +00002277 return false;
2278 return true;
2279}
2280
2281static bool isCommutedSHUFP(SDNode *N) {
2282 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002283 return isCommutedSHUFP(N->op_begin(), N->getNumOperands());
Evan Cheng39623da2006-04-20 08:58:49 +00002284}
2285
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002286/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2287/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
2288bool X86::isMOVHLPSMask(SDNode *N) {
2289 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2290
Evan Cheng2064a2b2006-03-28 06:50:32 +00002291 if (N->getNumOperands() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002292 return false;
2293
Evan Cheng2064a2b2006-03-28 06:50:32 +00002294 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Evan Chengc5cdff22006-04-07 21:53:05 +00002295 return isUndefOrEqual(N->getOperand(0), 6) &&
2296 isUndefOrEqual(N->getOperand(1), 7) &&
2297 isUndefOrEqual(N->getOperand(2), 2) &&
2298 isUndefOrEqual(N->getOperand(3), 3);
Evan Cheng2064a2b2006-03-28 06:50:32 +00002299}
2300
Evan Cheng6e56e2c2006-11-07 22:14:24 +00002301/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2302/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2303/// <2, 3, 2, 3>
2304bool X86::isMOVHLPS_v_undef_Mask(SDNode *N) {
2305 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2306
2307 if (N->getNumOperands() != 4)
2308 return false;
2309
2310 // Expect bit0 == 2, bit1 == 3, bit2 == 2, bit3 == 3
2311 return isUndefOrEqual(N->getOperand(0), 2) &&
2312 isUndefOrEqual(N->getOperand(1), 3) &&
2313 isUndefOrEqual(N->getOperand(2), 2) &&
2314 isUndefOrEqual(N->getOperand(3), 3);
2315}
2316
Evan Cheng5ced1d82006-04-06 23:23:56 +00002317/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
2318/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
2319bool X86::isMOVLPMask(SDNode *N) {
2320 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2321
2322 unsigned NumElems = N->getNumOperands();
2323 if (NumElems != 2 && NumElems != 4)
2324 return false;
2325
Evan Chengc5cdff22006-04-07 21:53:05 +00002326 for (unsigned i = 0; i < NumElems/2; ++i)
2327 if (!isUndefOrEqual(N->getOperand(i), i + NumElems))
2328 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002329
Evan Chengc5cdff22006-04-07 21:53:05 +00002330 for (unsigned i = NumElems/2; i < NumElems; ++i)
2331 if (!isUndefOrEqual(N->getOperand(i), i))
2332 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002333
2334 return true;
2335}
2336
2337/// isMOVHPMask - Return true if the specified VECTOR_SHUFFLE operand
Evan Cheng533a0aa2006-04-19 20:35:22 +00002338/// specifies a shuffle of elements that is suitable for input to MOVHP{S|D}
2339/// and MOVLHPS.
Evan Cheng5ced1d82006-04-06 23:23:56 +00002340bool X86::isMOVHPMask(SDNode *N) {
2341 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2342
2343 unsigned NumElems = N->getNumOperands();
2344 if (NumElems != 2 && NumElems != 4)
2345 return false;
2346
Evan Chengc5cdff22006-04-07 21:53:05 +00002347 for (unsigned i = 0; i < NumElems/2; ++i)
2348 if (!isUndefOrEqual(N->getOperand(i), i))
2349 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002350
2351 for (unsigned i = 0; i < NumElems/2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002352 SDValue Arg = N->getOperand(i + NumElems/2);
Evan Chengc5cdff22006-04-07 21:53:05 +00002353 if (!isUndefOrEqual(Arg, i + NumElems))
2354 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002355 }
2356
2357 return true;
2358}
2359
Evan Cheng0038e592006-03-28 00:39:58 +00002360/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
2361/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Dan Gohmane7852d02009-01-26 04:35:06 +00002362template<class SDOperand>
2363bool static isUNPCKLMask(SDOperand *Elts, unsigned NumElts,
Chris Lattner5a88b832007-02-25 07:10:00 +00002364 bool V2IsSplat = false) {
2365 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00002366 return false;
2367
Chris Lattner5a88b832007-02-25 07:10:00 +00002368 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00002369 SDValue BitI = Elts[i];
2370 SDValue BitI1 = Elts[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00002371 if (!isUndefOrEqual(BitI, j))
2372 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00002373 if (V2IsSplat) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00002374 if (!isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00002375 return false;
2376 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00002377 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00002378 return false;
2379 }
Evan Cheng0038e592006-03-28 00:39:58 +00002380 }
2381
2382 return true;
2383}
2384
Evan Cheng39623da2006-04-20 08:58:49 +00002385bool X86::isUNPCKLMask(SDNode *N, bool V2IsSplat) {
2386 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002387 return ::isUNPCKLMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00002388}
2389
Evan Cheng4fcb9222006-03-28 02:43:26 +00002390/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
2391/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Dan Gohmane7852d02009-01-26 04:35:06 +00002392template<class SDOperand>
2393bool static isUNPCKHMask(SDOperand *Elts, unsigned NumElts,
Chris Lattner5a88b832007-02-25 07:10:00 +00002394 bool V2IsSplat = false) {
2395 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00002396 return false;
2397
Chris Lattner5a88b832007-02-25 07:10:00 +00002398 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00002399 SDValue BitI = Elts[i];
2400 SDValue BitI1 = Elts[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00002401 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00002402 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00002403 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00002404 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00002405 return false;
2406 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00002407 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00002408 return false;
2409 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00002410 }
2411
2412 return true;
2413}
2414
Evan Cheng39623da2006-04-20 08:58:49 +00002415bool X86::isUNPCKHMask(SDNode *N, bool V2IsSplat) {
2416 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002417 return ::isUNPCKHMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00002418}
2419
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002420/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
2421/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
2422/// <0, 0, 1, 1>
2423bool X86::isUNPCKL_v_undef_Mask(SDNode *N) {
2424 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2425
2426 unsigned NumElems = N->getNumOperands();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002427 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002428 return false;
2429
2430 for (unsigned i = 0, j = 0; i != NumElems; i += 2, ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00002431 SDValue BitI = N->getOperand(i);
2432 SDValue BitI1 = N->getOperand(i+1);
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002433
Evan Chengc5cdff22006-04-07 21:53:05 +00002434 if (!isUndefOrEqual(BitI, j))
2435 return false;
2436 if (!isUndefOrEqual(BitI1, j))
2437 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002438 }
2439
2440 return true;
2441}
2442
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002443/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
2444/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
2445/// <2, 2, 3, 3>
2446bool X86::isUNPCKH_v_undef_Mask(SDNode *N) {
2447 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2448
2449 unsigned NumElems = N->getNumOperands();
2450 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2451 return false;
2452
2453 for (unsigned i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00002454 SDValue BitI = N->getOperand(i);
2455 SDValue BitI1 = N->getOperand(i + 1);
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002456
2457 if (!isUndefOrEqual(BitI, j))
2458 return false;
2459 if (!isUndefOrEqual(BitI1, j))
2460 return false;
2461 }
2462
2463 return true;
2464}
2465
Evan Cheng017dcc62006-04-21 01:05:10 +00002466/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
2467/// specifies a shuffle of elements that is suitable for input to MOVSS,
2468/// MOVSD, and MOVD, i.e. setting the lowest element.
Dan Gohmane7852d02009-01-26 04:35:06 +00002469template<class SDOperand>
2470static bool isMOVLMask(SDOperand *Elts, unsigned NumElts) {
Evan Cheng10762102007-12-06 22:14:22 +00002471 if (NumElts != 2 && NumElts != 4)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00002472 return false;
2473
Chris Lattner5a88b832007-02-25 07:10:00 +00002474 if (!isUndefOrEqual(Elts[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00002475 return false;
2476
Chris Lattner5a88b832007-02-25 07:10:00 +00002477 for (unsigned i = 1; i < NumElts; ++i) {
2478 if (!isUndefOrEqual(Elts[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00002479 return false;
2480 }
2481
2482 return true;
2483}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002484
Evan Cheng017dcc62006-04-21 01:05:10 +00002485bool X86::isMOVLMask(SDNode *N) {
Evan Cheng39623da2006-04-20 08:58:49 +00002486 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002487 return ::isMOVLMask(N->op_begin(), N->getNumOperands());
Evan Cheng39623da2006-04-20 08:58:49 +00002488}
2489
Evan Cheng017dcc62006-04-21 01:05:10 +00002490/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
2491/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00002492/// element of vector 2 and the other elements to come from vector 1 in order.
Dan Gohmane7852d02009-01-26 04:35:06 +00002493template<class SDOperand>
2494static bool isCommutedMOVL(SDOperand *Ops, unsigned NumOps,
Chris Lattner5a88b832007-02-25 07:10:00 +00002495 bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00002496 bool V2IsUndef = false) {
Chris Lattner5a88b832007-02-25 07:10:00 +00002497 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00002498 return false;
2499
2500 if (!isUndefOrEqual(Ops[0], 0))
2501 return false;
2502
Chris Lattner5a88b832007-02-25 07:10:00 +00002503 for (unsigned i = 1; i < NumOps; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002504 SDValue Arg = Ops[i];
Chris Lattner5a88b832007-02-25 07:10:00 +00002505 if (!(isUndefOrEqual(Arg, i+NumOps) ||
2506 (V2IsUndef && isUndefOrInRange(Arg, NumOps, NumOps*2)) ||
2507 (V2IsSplat && isUndefOrEqual(Arg, NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00002508 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00002509 }
2510
2511 return true;
2512}
2513
Evan Cheng8cf723d2006-09-08 01:50:06 +00002514static bool isCommutedMOVL(SDNode *N, bool V2IsSplat = false,
2515 bool V2IsUndef = false) {
Evan Cheng39623da2006-04-20 08:58:49 +00002516 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002517 return isCommutedMOVL(N->op_begin(), N->getNumOperands(),
2518 V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00002519}
2520
Evan Chengd9539472006-04-14 21:59:03 +00002521/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2522/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
2523bool X86::isMOVSHDUPMask(SDNode *N) {
2524 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2525
2526 if (N->getNumOperands() != 4)
2527 return false;
2528
2529 // Expect 1, 1, 3, 3
2530 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002531 SDValue Arg = N->getOperand(i);
Evan Chengd9539472006-04-14 21:59:03 +00002532 if (Arg.getOpcode() == ISD::UNDEF) continue;
2533 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002534 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengd9539472006-04-14 21:59:03 +00002535 if (Val != 1) return false;
2536 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002537
2538 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00002539 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002540 SDValue Arg = N->getOperand(i);
Evan Chengd9539472006-04-14 21:59:03 +00002541 if (Arg.getOpcode() == ISD::UNDEF) continue;
2542 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002543 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengd9539472006-04-14 21:59:03 +00002544 if (Val != 3) return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002545 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00002546 }
Evan Cheng39fc1452006-04-15 03:13:24 +00002547
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002548 // Don't use movshdup if it can be done with a shufps.
2549 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00002550}
2551
2552/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2553/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
2554bool X86::isMOVSLDUPMask(SDNode *N) {
2555 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2556
2557 if (N->getNumOperands() != 4)
2558 return false;
2559
2560 // Expect 0, 0, 2, 2
2561 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002562 SDValue Arg = N->getOperand(i);
Evan Chengd9539472006-04-14 21:59:03 +00002563 if (Arg.getOpcode() == ISD::UNDEF) continue;
2564 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002565 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengd9539472006-04-14 21:59:03 +00002566 if (Val != 0) return false;
2567 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002568
2569 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00002570 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002571 SDValue Arg = N->getOperand(i);
Evan Chengd9539472006-04-14 21:59:03 +00002572 if (Arg.getOpcode() == ISD::UNDEF) continue;
2573 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002574 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengd9539472006-04-14 21:59:03 +00002575 if (Val != 2) return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002576 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00002577 }
Evan Cheng39fc1452006-04-15 03:13:24 +00002578
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002579 // Don't use movshdup if it can be done with a shufps.
2580 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00002581}
2582
Evan Cheng49892af2007-06-19 00:02:56 +00002583/// isIdentityMask - Return true if the specified VECTOR_SHUFFLE operand
2584/// specifies a identity operation on the LHS or RHS.
2585static bool isIdentityMask(SDNode *N, bool RHS = false) {
2586 unsigned NumElems = N->getNumOperands();
2587 for (unsigned i = 0; i < NumElems; ++i)
2588 if (!isUndefOrEqual(N->getOperand(i), i + (RHS ? NumElems : 0)))
2589 return false;
2590 return true;
2591}
2592
Evan Chengb9df0ca2006-03-22 02:53:00 +00002593/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2594/// a splat of a single element.
Evan Chengc575ca22006-04-17 20:43:08 +00002595static bool isSplatMask(SDNode *N) {
Evan Chengb9df0ca2006-03-22 02:53:00 +00002596 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2597
Evan Chengb9df0ca2006-03-22 02:53:00 +00002598 // This is a splat operation if each element of the permute is the same, and
2599 // if the value doesn't reference the second vector.
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002600 unsigned NumElems = N->getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002601 SDValue ElementBase;
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002602 unsigned i = 0;
2603 for (; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002604 SDValue Elt = N->getOperand(i);
Reid Spencer3ed469c2006-11-02 20:25:50 +00002605 if (isa<ConstantSDNode>(Elt)) {
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002606 ElementBase = Elt;
2607 break;
2608 }
2609 }
2610
Gabor Greifba36cb52008-08-28 21:40:38 +00002611 if (!ElementBase.getNode())
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002612 return false;
2613
2614 for (; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002615 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002616 if (Arg.getOpcode() == ISD::UNDEF) continue;
2617 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002618 if (Arg != ElementBase) return false;
Evan Chengb9df0ca2006-03-22 02:53:00 +00002619 }
2620
2621 // Make sure it is a splat of the first vector operand.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002622 return cast<ConstantSDNode>(ElementBase)->getZExtValue() < NumElems;
Evan Chengb9df0ca2006-03-22 02:53:00 +00002623}
2624
Mon P Wang62c75ea2008-12-23 04:03:27 +00002625/// getSplatMaskEltNo - Given a splat mask, return the index to the element
2626/// we want to splat.
2627static SDValue getSplatMaskEltNo(SDNode *N) {
2628 assert(isSplatMask(N) && "Not a splat mask");
2629 unsigned NumElems = N->getNumOperands();
2630 SDValue ElementBase;
2631 unsigned i = 0;
2632 for (; i != NumElems; ++i) {
2633 SDValue Elt = N->getOperand(i);
2634 if (isa<ConstantSDNode>(Elt))
2635 return Elt;
2636 }
2637 assert(0 && " No splat value found!");
2638 return SDValue();
2639}
2640
2641
Evan Chengc575ca22006-04-17 20:43:08 +00002642/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2643/// a splat of a single element and it's a 2 or 4 element mask.
2644bool X86::isSplatMask(SDNode *N) {
2645 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2646
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002647 // We can only splat 64-bit, and 32-bit quantities with a single instruction.
Evan Chengc575ca22006-04-17 20:43:08 +00002648 if (N->getNumOperands() != 4 && N->getNumOperands() != 2)
2649 return false;
2650 return ::isSplatMask(N);
2651}
2652
Evan Chengf686d9b2006-10-27 21:08:32 +00002653/// isSplatLoMask - Return true if the specified VECTOR_SHUFFLE operand
2654/// specifies a splat of zero element.
2655bool X86::isSplatLoMask(SDNode *N) {
2656 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2657
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002658 for (unsigned i = 0, e = N->getNumOperands(); i < e; ++i)
Evan Chengf686d9b2006-10-27 21:08:32 +00002659 if (!isUndefOrEqual(N->getOperand(i), 0))
2660 return false;
2661 return true;
2662}
2663
Evan Cheng0b457f02008-09-25 20:50:48 +00002664/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2665/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
2666bool X86::isMOVDDUPMask(SDNode *N) {
2667 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2668
2669 unsigned e = N->getNumOperands() / 2;
2670 for (unsigned i = 0; i < e; ++i)
2671 if (!isUndefOrEqual(N->getOperand(i), i))
2672 return false;
2673 for (unsigned i = 0; i < e; ++i)
2674 if (!isUndefOrEqual(N->getOperand(e+i), i))
2675 return false;
2676 return true;
2677}
2678
Evan Cheng63d33002006-03-22 08:01:21 +00002679/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
2680/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUF* and SHUFP*
2681/// instructions.
2682unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Evan Chengb9df0ca2006-03-22 02:53:00 +00002683 unsigned NumOperands = N->getNumOperands();
2684 unsigned Shift = (NumOperands == 4) ? 2 : 1;
2685 unsigned Mask = 0;
Evan Cheng36b27f32006-03-28 23:41:33 +00002686 for (unsigned i = 0; i < NumOperands; ++i) {
Evan Chengef698ca2006-03-31 00:30:29 +00002687 unsigned Val = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002688 SDValue Arg = N->getOperand(NumOperands-i-1);
Evan Chengef698ca2006-03-31 00:30:29 +00002689 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002690 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng14aed5e2006-03-24 01:18:28 +00002691 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00002692 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00002693 if (i != NumOperands - 1)
2694 Mask <<= Shift;
2695 }
Evan Cheng63d33002006-03-22 08:01:21 +00002696
2697 return Mask;
2698}
2699
Evan Cheng506d3df2006-03-29 23:07:14 +00002700/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
2701/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFHW
2702/// instructions.
2703unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
2704 unsigned Mask = 0;
2705 // 8 nodes, but we only care about the last 4.
2706 for (unsigned i = 7; i >= 4; --i) {
Evan Chengef698ca2006-03-31 00:30:29 +00002707 unsigned Val = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002708 SDValue Arg = N->getOperand(i);
Mon P Wang7bcaefa2009-02-04 01:16:59 +00002709 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002710 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Mon P Wang7bcaefa2009-02-04 01:16:59 +00002711 Mask |= (Val - 4);
2712 }
Evan Cheng506d3df2006-03-29 23:07:14 +00002713 if (i != 4)
2714 Mask <<= 2;
2715 }
2716
2717 return Mask;
2718}
2719
2720/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
2721/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFLW
2722/// instructions.
2723unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
2724 unsigned Mask = 0;
2725 // 8 nodes, but we only care about the first 4.
2726 for (int i = 3; i >= 0; --i) {
Evan Chengef698ca2006-03-31 00:30:29 +00002727 unsigned Val = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002728 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002729 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002730 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng506d3df2006-03-29 23:07:14 +00002731 Mask |= Val;
2732 if (i != 0)
2733 Mask <<= 2;
2734 }
2735
2736 return Mask;
2737}
2738
Chris Lattner8a594482007-11-25 00:24:49 +00002739/// CommuteVectorShuffle - Swap vector_shuffle operands as well as
Evan Cheng5ced1d82006-04-06 23:23:56 +00002740/// values in ther permute mask.
Dan Gohman475871a2008-07-27 21:46:04 +00002741static SDValue CommuteVectorShuffle(SDValue Op, SDValue &V1,
2742 SDValue &V2, SDValue &Mask,
Evan Cheng9eca5e82006-10-25 21:49:50 +00002743 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002744 MVT VT = Op.getValueType();
2745 MVT MaskVT = Mask.getValueType();
2746 MVT EltVT = MaskVT.getVectorElementType();
Evan Cheng5ced1d82006-04-06 23:23:56 +00002747 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002748 SmallVector<SDValue, 8> MaskVec;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00002749 DebugLoc dl = Op.getDebugLoc();
Evan Cheng5ced1d82006-04-06 23:23:56 +00002750
2751 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002752 SDValue Arg = Mask.getOperand(i);
Evan Cheng80d428c2006-04-19 22:48:17 +00002753 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002754 MaskVec.push_back(DAG.getUNDEF(EltVT));
Evan Cheng80d428c2006-04-19 22:48:17 +00002755 continue;
2756 }
Evan Cheng5ced1d82006-04-06 23:23:56 +00002757 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002758 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng5ced1d82006-04-06 23:23:56 +00002759 if (Val < NumElems)
2760 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2761 else
2762 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2763 }
2764
Evan Cheng9eca5e82006-10-25 21:49:50 +00002765 std::swap(V1, V2);
Evan Chenga87008d2009-02-25 22:49:59 +00002766 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], NumElems);
Dale Johannesenace16102009-02-03 19:33:06 +00002767 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, Mask);
Evan Cheng5ced1d82006-04-06 23:23:56 +00002768}
2769
Evan Cheng779ccea2007-12-07 21:30:01 +00002770/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
2771/// the two vector operands have swapped position.
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002772static
Dale Johannesenace16102009-02-03 19:33:06 +00002773SDValue CommuteVectorShuffleMask(SDValue Mask, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002774 MVT MaskVT = Mask.getValueType();
2775 MVT EltVT = MaskVT.getVectorElementType();
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002776 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002777 SmallVector<SDValue, 8> MaskVec;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002778 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002779 SDValue Arg = Mask.getOperand(i);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002780 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002781 MaskVec.push_back(DAG.getUNDEF(EltVT));
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002782 continue;
2783 }
2784 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002785 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002786 if (Val < NumElems)
2787 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2788 else
2789 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2790 }
Evan Chenga87008d2009-02-25 22:49:59 +00002791 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &MaskVec[0], NumElems);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002792}
2793
2794
Evan Cheng533a0aa2006-04-19 20:35:22 +00002795/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
2796/// match movhlps. The lower half elements should come from upper half of
2797/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002798/// half of V2 (and in order).
Evan Cheng533a0aa2006-04-19 20:35:22 +00002799static bool ShouldXformToMOVHLPS(SDNode *Mask) {
2800 unsigned NumElems = Mask->getNumOperands();
2801 if (NumElems != 4)
2802 return false;
2803 for (unsigned i = 0, e = 2; i != e; ++i)
2804 if (!isUndefOrEqual(Mask->getOperand(i), i+2))
2805 return false;
2806 for (unsigned i = 2; i != 4; ++i)
2807 if (!isUndefOrEqual(Mask->getOperand(i), i+4))
2808 return false;
2809 return true;
2810}
2811
Evan Cheng5ced1d82006-04-06 23:23:56 +00002812/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00002813/// is promoted to a vector. It also returns the LoadSDNode by reference if
2814/// required.
2815static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00002816 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
2817 return false;
2818 N = N->getOperand(0).getNode();
2819 if (!ISD::isNON_EXTLoad(N))
2820 return false;
2821 if (LD)
2822 *LD = cast<LoadSDNode>(N);
2823 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002824}
2825
Evan Cheng533a0aa2006-04-19 20:35:22 +00002826/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
2827/// match movlp{s|d}. The lower half elements should come from lower half of
2828/// V1 (and in order), and the upper half elements should come from the upper
2829/// half of V2 (and in order). And since V1 will become the source of the
2830/// MOVLP, it must be either a vector load or a scalar load to vector.
Evan Cheng23425f52006-10-09 21:39:25 +00002831static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2, SDNode *Mask) {
Evan Cheng466685d2006-10-09 20:57:25 +00002832 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00002833 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00002834 // Is V2 is a vector load, don't do this transformation. We will try to use
2835 // load folding shufps op.
2836 if (ISD::isNON_EXTLoad(V2))
2837 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002838
Evan Cheng533a0aa2006-04-19 20:35:22 +00002839 unsigned NumElems = Mask->getNumOperands();
2840 if (NumElems != 2 && NumElems != 4)
2841 return false;
2842 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
2843 if (!isUndefOrEqual(Mask->getOperand(i), i))
2844 return false;
2845 for (unsigned i = NumElems/2; i != NumElems; ++i)
2846 if (!isUndefOrEqual(Mask->getOperand(i), i+NumElems))
2847 return false;
2848 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002849}
2850
Evan Cheng39623da2006-04-20 08:58:49 +00002851/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
2852/// all the same.
2853static bool isSplatVector(SDNode *N) {
2854 if (N->getOpcode() != ISD::BUILD_VECTOR)
2855 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002856
Dan Gohman475871a2008-07-27 21:46:04 +00002857 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00002858 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
2859 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002860 return false;
2861 return true;
2862}
2863
Evan Cheng8cf723d2006-09-08 01:50:06 +00002864/// isUndefShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2865/// to an undef.
2866static bool isUndefShuffle(SDNode *N) {
Evan Cheng213d2cf2007-05-17 18:45:50 +00002867 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
Evan Cheng8cf723d2006-09-08 01:50:06 +00002868 return false;
2869
Dan Gohman475871a2008-07-27 21:46:04 +00002870 SDValue V1 = N->getOperand(0);
2871 SDValue V2 = N->getOperand(1);
2872 SDValue Mask = N->getOperand(2);
Evan Cheng8cf723d2006-09-08 01:50:06 +00002873 unsigned NumElems = Mask.getNumOperands();
2874 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002875 SDValue Arg = Mask.getOperand(i);
Evan Cheng8cf723d2006-09-08 01:50:06 +00002876 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002877 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng8cf723d2006-09-08 01:50:06 +00002878 if (Val < NumElems && V1.getOpcode() != ISD::UNDEF)
2879 return false;
2880 else if (Val >= NumElems && V2.getOpcode() != ISD::UNDEF)
2881 return false;
2882 }
2883 }
2884 return true;
2885}
2886
Evan Cheng213d2cf2007-05-17 18:45:50 +00002887/// isZeroNode - Returns true if Elt is a constant zero or a floating point
2888/// constant +0.0.
Dan Gohman475871a2008-07-27 21:46:04 +00002889static inline bool isZeroNode(SDValue Elt) {
Evan Cheng213d2cf2007-05-17 18:45:50 +00002890 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002891 cast<ConstantSDNode>(Elt)->getZExtValue() == 0) ||
Evan Cheng213d2cf2007-05-17 18:45:50 +00002892 (isa<ConstantFPSDNode>(Elt) &&
Dale Johanneseneaf08942007-08-31 04:03:46 +00002893 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
Evan Cheng213d2cf2007-05-17 18:45:50 +00002894}
2895
2896/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2897/// to an zero vector.
2898static bool isZeroShuffle(SDNode *N) {
2899 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2900 return false;
2901
Dan Gohman475871a2008-07-27 21:46:04 +00002902 SDValue V1 = N->getOperand(0);
2903 SDValue V2 = N->getOperand(1);
2904 SDValue Mask = N->getOperand(2);
Evan Cheng213d2cf2007-05-17 18:45:50 +00002905 unsigned NumElems = Mask.getNumOperands();
2906 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002907 SDValue Arg = Mask.getOperand(i);
Chris Lattner8a594482007-11-25 00:24:49 +00002908 if (Arg.getOpcode() == ISD::UNDEF)
2909 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00002910
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002911 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Chris Lattner8a594482007-11-25 00:24:49 +00002912 if (Idx < NumElems) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002913 unsigned Opc = V1.getNode()->getOpcode();
2914 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
Chris Lattner8a594482007-11-25 00:24:49 +00002915 continue;
2916 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greifba36cb52008-08-28 21:40:38 +00002917 !isZeroNode(V1.getNode()->getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00002918 return false;
2919 } else if (Idx >= NumElems) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002920 unsigned Opc = V2.getNode()->getOpcode();
2921 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
Chris Lattner8a594482007-11-25 00:24:49 +00002922 continue;
2923 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greifba36cb52008-08-28 21:40:38 +00002924 !isZeroNode(V2.getNode()->getOperand(Idx - NumElems)))
Chris Lattner8a594482007-11-25 00:24:49 +00002925 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00002926 }
2927 }
2928 return true;
2929}
2930
2931/// getZeroVector - Returns a vector of specified type with all zero elements.
2932///
Dale Johannesenace16102009-02-03 19:33:06 +00002933static SDValue getZeroVector(MVT VT, bool HasSSE2, SelectionDAG &DAG,
2934 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002935 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00002936
Chris Lattner8a594482007-11-25 00:24:49 +00002937 // Always build zero vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2938 // type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00002939 SDValue Vec;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002940 if (VT.getSizeInBits() == 64) { // MMX
Dan Gohman475871a2008-07-27 21:46:04 +00002941 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Chenga87008d2009-02-25 22:49:59 +00002942 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Chengf0df0312008-05-15 08:39:06 +00002943 } else if (HasSSE2) { // SSE2
Dan Gohman475871a2008-07-27 21:46:04 +00002944 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Chenga87008d2009-02-25 22:49:59 +00002945 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Chengf0df0312008-05-15 08:39:06 +00002946 } else { // SSE1
Dan Gohman475871a2008-07-27 21:46:04 +00002947 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Evan Chenga87008d2009-02-25 22:49:59 +00002948 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
Evan Chengf0df0312008-05-15 08:39:06 +00002949 }
Dale Johannesenace16102009-02-03 19:33:06 +00002950 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00002951}
2952
Chris Lattner8a594482007-11-25 00:24:49 +00002953/// getOnesVector - Returns a vector of specified type with all bits set.
2954///
Dale Johannesenace16102009-02-03 19:33:06 +00002955static SDValue getOnesVector(MVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002956 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00002957
Chris Lattner8a594482007-11-25 00:24:49 +00002958 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2959 // type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00002960 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
2961 SDValue Vec;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002962 if (VT.getSizeInBits() == 64) // MMX
Evan Chenga87008d2009-02-25 22:49:59 +00002963 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Chris Lattner8a594482007-11-25 00:24:49 +00002964 else // SSE
Evan Chenga87008d2009-02-25 22:49:59 +00002965 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dale Johannesenace16102009-02-03 19:33:06 +00002966 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00002967}
2968
2969
Evan Cheng39623da2006-04-20 08:58:49 +00002970/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
2971/// that point to V2 points to its first element.
Dan Gohman475871a2008-07-27 21:46:04 +00002972static SDValue NormalizeMask(SDValue Mask, SelectionDAG &DAG) {
Evan Cheng39623da2006-04-20 08:58:49 +00002973 assert(Mask.getOpcode() == ISD::BUILD_VECTOR);
2974
2975 bool Changed = false;
Dan Gohman475871a2008-07-27 21:46:04 +00002976 SmallVector<SDValue, 8> MaskVec;
Evan Cheng39623da2006-04-20 08:58:49 +00002977 unsigned NumElems = Mask.getNumOperands();
2978 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002979 SDValue Arg = Mask.getOperand(i);
Evan Cheng39623da2006-04-20 08:58:49 +00002980 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002981 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng39623da2006-04-20 08:58:49 +00002982 if (Val > NumElems) {
2983 Arg = DAG.getConstant(NumElems, Arg.getValueType());
2984 Changed = true;
2985 }
2986 }
2987 MaskVec.push_back(Arg);
2988 }
2989
2990 if (Changed)
Evan Chenga87008d2009-02-25 22:49:59 +00002991 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getDebugLoc(),
2992 Mask.getValueType(),
2993 &MaskVec[0], MaskVec.size());
Evan Cheng39623da2006-04-20 08:58:49 +00002994 return Mask;
2995}
2996
Evan Cheng017dcc62006-04-21 01:05:10 +00002997/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
2998/// operation of specified width.
Dale Johannesenace16102009-02-03 19:33:06 +00002999static SDValue getMOVLMask(unsigned NumElems, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003000 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3001 MVT BaseVT = MaskVT.getVectorElementType();
Evan Cheng39623da2006-04-20 08:58:49 +00003002
Dan Gohman475871a2008-07-27 21:46:04 +00003003 SmallVector<SDValue, 8> MaskVec;
Evan Cheng39623da2006-04-20 08:58:49 +00003004 MaskVec.push_back(DAG.getConstant(NumElems, BaseVT));
3005 for (unsigned i = 1; i != NumElems; ++i)
3006 MaskVec.push_back(DAG.getConstant(i, BaseVT));
Evan Chenga87008d2009-02-25 22:49:59 +00003007 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3008 &MaskVec[0], MaskVec.size());
Evan Cheng39623da2006-04-20 08:58:49 +00003009}
3010
Evan Chengc575ca22006-04-17 20:43:08 +00003011/// getUnpacklMask - Returns a vector_shuffle mask for an unpackl operation
3012/// of specified width.
Scott Michelfdc40a02009-02-17 22:15:04 +00003013static SDValue getUnpacklMask(unsigned NumElems, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003014 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003015 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3016 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00003017 SmallVector<SDValue, 8> MaskVec;
Evan Chengc575ca22006-04-17 20:43:08 +00003018 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
3019 MaskVec.push_back(DAG.getConstant(i, BaseVT));
3020 MaskVec.push_back(DAG.getConstant(i + NumElems, BaseVT));
3021 }
Evan Chenga87008d2009-02-25 22:49:59 +00003022 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3023 &MaskVec[0], MaskVec.size());
Evan Chengc575ca22006-04-17 20:43:08 +00003024}
3025
Evan Cheng39623da2006-04-20 08:58:49 +00003026/// getUnpackhMask - Returns a vector_shuffle mask for an unpackh operation
3027/// of specified width.
Dale Johannesenace16102009-02-03 19:33:06 +00003028static SDValue getUnpackhMask(unsigned NumElems, SelectionDAG &DAG,
3029 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003030 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3031 MVT BaseVT = MaskVT.getVectorElementType();
Evan Cheng39623da2006-04-20 08:58:49 +00003032 unsigned Half = NumElems/2;
Dan Gohman475871a2008-07-27 21:46:04 +00003033 SmallVector<SDValue, 8> MaskVec;
Evan Cheng39623da2006-04-20 08:58:49 +00003034 for (unsigned i = 0; i != Half; ++i) {
3035 MaskVec.push_back(DAG.getConstant(i + Half, BaseVT));
3036 MaskVec.push_back(DAG.getConstant(i + NumElems + Half, BaseVT));
3037 }
Evan Chenga87008d2009-02-25 22:49:59 +00003038 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3039 &MaskVec[0], MaskVec.size());
Evan Cheng39623da2006-04-20 08:58:49 +00003040}
3041
Chris Lattner62098042008-03-09 01:05:04 +00003042/// getSwapEltZeroMask - Returns a vector_shuffle mask for a shuffle that swaps
3043/// element #0 of a vector with the specified index, leaving the rest of the
3044/// elements in place.
Dan Gohman475871a2008-07-27 21:46:04 +00003045static SDValue getSwapEltZeroMask(unsigned NumElems, unsigned DestElt,
Dale Johannesenace16102009-02-03 19:33:06 +00003046 SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003047 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3048 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00003049 SmallVector<SDValue, 8> MaskVec;
Chris Lattner62098042008-03-09 01:05:04 +00003050 // Element #0 of the result gets the elt we are replacing.
3051 MaskVec.push_back(DAG.getConstant(DestElt, BaseVT));
3052 for (unsigned i = 1; i != NumElems; ++i)
3053 MaskVec.push_back(DAG.getConstant(i == DestElt ? 0 : i, BaseVT));
Evan Chenga87008d2009-02-25 22:49:59 +00003054 return DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3055 &MaskVec[0], MaskVec.size());
Chris Lattner62098042008-03-09 01:05:04 +00003056}
3057
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003058/// PromoteSplat - Promote a splat of v4f32, v8i16 or v16i8 to v4i32.
Dan Gohman475871a2008-07-27 21:46:04 +00003059static SDValue PromoteSplat(SDValue Op, SelectionDAG &DAG, bool HasSSE2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003060 MVT PVT = HasSSE2 ? MVT::v4i32 : MVT::v4f32;
3061 MVT VT = Op.getValueType();
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003062 if (PVT == VT)
3063 return Op;
Dan Gohman475871a2008-07-27 21:46:04 +00003064 SDValue V1 = Op.getOperand(0);
3065 SDValue Mask = Op.getOperand(2);
Mon P Wang62c75ea2008-12-23 04:03:27 +00003066 unsigned MaskNumElems = Mask.getNumOperands();
3067 unsigned NumElems = MaskNumElems;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003068 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003069 // Special handling of v4f32 -> v4i32.
3070 if (VT != MVT::v4f32) {
Mon P Wang62c75ea2008-12-23 04:03:27 +00003071 // Find which element we want to splat.
3072 SDNode* EltNoNode = getSplatMaskEltNo(Mask.getNode()).getNode();
3073 unsigned EltNo = cast<ConstantSDNode>(EltNoNode)->getZExtValue();
3074 // unpack elements to the correct location
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003075 while (NumElems > 4) {
Mon P Wang62c75ea2008-12-23 04:03:27 +00003076 if (EltNo < NumElems/2) {
Dale Johannesenace16102009-02-03 19:33:06 +00003077 Mask = getUnpacklMask(MaskNumElems, DAG, dl);
Mon P Wang62c75ea2008-12-23 04:03:27 +00003078 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00003079 Mask = getUnpackhMask(MaskNumElems, DAG, dl);
Mon P Wang62c75ea2008-12-23 04:03:27 +00003080 EltNo -= NumElems/2;
3081 }
Dale Johannesenace16102009-02-03 19:33:06 +00003082 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V1, Mask);
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003083 NumElems >>= 1;
3084 }
Mon P Wang62c75ea2008-12-23 04:03:27 +00003085 SDValue Cst = DAG.getConstant(EltNo, MVT::i32);
Evan Chenga87008d2009-02-25 22:49:59 +00003086 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Chengc575ca22006-04-17 20:43:08 +00003087 }
Evan Chengc575ca22006-04-17 20:43:08 +00003088
Dale Johannesenace16102009-02-03 19:33:06 +00003089 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
3090 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, PVT, V1,
Dale Johannesene8d72302009-02-06 23:05:02 +00003091 DAG.getUNDEF(PVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00003092 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Shuffle);
Evan Chengc575ca22006-04-17 20:43:08 +00003093}
3094
Evan Cheng0b457f02008-09-25 20:50:48 +00003095/// isVectorLoad - Returns true if the node is a vector load, a scalar
3096/// load that's promoted to vector, or a load bitcasted.
3097static bool isVectorLoad(SDValue Op) {
3098 assert(Op.getValueType().isVector() && "Expected a vector type");
3099 if (Op.getOpcode() == ISD::SCALAR_TO_VECTOR ||
3100 Op.getOpcode() == ISD::BIT_CONVERT) {
3101 return isa<LoadSDNode>(Op.getOperand(0));
3102 }
3103 return isa<LoadSDNode>(Op);
3104}
3105
3106
3107/// CanonicalizeMovddup - Cannonicalize movddup shuffle to v2f64.
3108///
3109static SDValue CanonicalizeMovddup(SDValue Op, SDValue V1, SDValue Mask,
3110 SelectionDAG &DAG, bool HasSSE3) {
3111 // If we have sse3 and shuffle has more than one use or input is a load, then
3112 // use movddup. Otherwise, use movlhps.
3113 bool UseMovddup = HasSSE3 && (!Op.hasOneUse() || isVectorLoad(V1));
3114 MVT PVT = UseMovddup ? MVT::v2f64 : MVT::v4f32;
3115 MVT VT = Op.getValueType();
3116 if (VT == PVT)
3117 return Op;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003118 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0b457f02008-09-25 20:50:48 +00003119 unsigned NumElems = PVT.getVectorNumElements();
3120 if (NumElems == 2) {
3121 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Evan Chenga87008d2009-02-25 22:49:59 +00003122 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Cheng0b457f02008-09-25 20:50:48 +00003123 } else {
3124 assert(NumElems == 4);
3125 SDValue Cst0 = DAG.getTargetConstant(0, MVT::i32);
3126 SDValue Cst1 = DAG.getTargetConstant(1, MVT::i32);
Evan Chenga87008d2009-02-25 22:49:59 +00003127 Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
3128 Cst0, Cst1, Cst0, Cst1);
Evan Cheng0b457f02008-09-25 20:50:48 +00003129 }
3130
Dale Johannesenace16102009-02-03 19:33:06 +00003131 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
3132 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, PVT, V1,
Dale Johannesene8d72302009-02-06 23:05:02 +00003133 DAG.getUNDEF(PVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00003134 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Shuffle);
Evan Cheng0b457f02008-09-25 20:50:48 +00003135}
3136
Evan Chengba05f722006-04-21 23:03:30 +00003137/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003138/// vector of zero or undef vector. This produces a shuffle where the low
3139/// element of V2 is swizzled into the zero/undef vector, landing at element
3140/// 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 +00003141static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003142 bool isZero, bool HasSSE2,
3143 SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003144 DebugLoc dl = V2.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003145 MVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003146 SDValue V1 = isZero
Dale Johannesene8d72302009-02-06 23:05:02 +00003147 ? getZeroVector(VT, HasSSE2, DAG, dl) : DAG.getUNDEF(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003148 unsigned NumElems = V2.getValueType().getVectorNumElements();
3149 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3150 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00003151 SmallVector<SDValue, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003152 for (unsigned i = 0; i != NumElems; ++i)
3153 if (i == Idx) // If this is the insertion idx, put the low elt of V2 here.
3154 MaskVec.push_back(DAG.getConstant(NumElems, EVT));
3155 else
3156 MaskVec.push_back(DAG.getConstant(i, EVT));
Evan Chenga87008d2009-02-25 22:49:59 +00003157 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3158 &MaskVec[0], MaskVec.size());
Dale Johannesenace16102009-02-03 19:33:06 +00003159 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, Mask);
Evan Cheng017dcc62006-04-21 01:05:10 +00003160}
3161
Evan Chengf26ffe92008-05-29 08:22:04 +00003162/// getNumOfConsecutiveZeros - Return the number of elements in a result of
3163/// a shuffle that is zero.
3164static
Dan Gohman475871a2008-07-27 21:46:04 +00003165unsigned getNumOfConsecutiveZeros(SDValue Op, SDValue Mask,
Evan Chengf26ffe92008-05-29 08:22:04 +00003166 unsigned NumElems, bool Low,
3167 SelectionDAG &DAG) {
3168 unsigned NumZeros = 0;
3169 for (unsigned i = 0; i < NumElems; ++i) {
Evan Chengab262272008-06-25 20:52:59 +00003170 unsigned Index = Low ? i : NumElems-i-1;
Dan Gohman475871a2008-07-27 21:46:04 +00003171 SDValue Idx = Mask.getOperand(Index);
Evan Chengf26ffe92008-05-29 08:22:04 +00003172 if (Idx.getOpcode() == ISD::UNDEF) {
3173 ++NumZeros;
3174 continue;
3175 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003176 SDValue Elt = DAG.getShuffleScalarElt(Op.getNode(), Index);
3177 if (Elt.getNode() && isZeroNode(Elt))
Evan Chengf26ffe92008-05-29 08:22:04 +00003178 ++NumZeros;
3179 else
3180 break;
3181 }
3182 return NumZeros;
3183}
3184
3185/// isVectorShift - Returns true if the shuffle can be implemented as a
3186/// logical left or right shift of a vector.
Dan Gohman475871a2008-07-27 21:46:04 +00003187static bool isVectorShift(SDValue Op, SDValue Mask, SelectionDAG &DAG,
3188 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Evan Chengf26ffe92008-05-29 08:22:04 +00003189 unsigned NumElems = Mask.getNumOperands();
3190
3191 isLeft = true;
3192 unsigned NumZeros= getNumOfConsecutiveZeros(Op, Mask, NumElems, true, DAG);
3193 if (!NumZeros) {
3194 isLeft = false;
3195 NumZeros = getNumOfConsecutiveZeros(Op, Mask, NumElems, false, DAG);
3196 if (!NumZeros)
3197 return false;
3198 }
3199
3200 bool SeenV1 = false;
3201 bool SeenV2 = false;
3202 for (unsigned i = NumZeros; i < NumElems; ++i) {
3203 unsigned Val = isLeft ? (i - NumZeros) : i;
Dan Gohman475871a2008-07-27 21:46:04 +00003204 SDValue Idx = Mask.getOperand(isLeft ? i : (i - NumZeros));
Evan Chengf26ffe92008-05-29 08:22:04 +00003205 if (Idx.getOpcode() == ISD::UNDEF)
3206 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003207 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Chengf26ffe92008-05-29 08:22:04 +00003208 if (Index < NumElems)
3209 SeenV1 = true;
3210 else {
3211 Index -= NumElems;
3212 SeenV2 = true;
3213 }
3214 if (Index != Val)
3215 return false;
3216 }
3217 if (SeenV1 && SeenV2)
3218 return false;
3219
3220 ShVal = SeenV1 ? Op.getOperand(0) : Op.getOperand(1);
3221 ShAmt = NumZeros;
3222 return true;
3223}
3224
3225
Evan Chengc78d3b42006-04-24 18:01:45 +00003226/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3227///
Dan Gohman475871a2008-07-27 21:46:04 +00003228static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003229 unsigned NumNonZero, unsigned NumZero,
Evan Cheng25ab6902006-09-08 06:48:29 +00003230 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003231 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00003232 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003233
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003234 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003235 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003236 bool First = true;
3237 for (unsigned i = 0; i < 16; ++i) {
3238 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3239 if (ThisIsNonZero && First) {
3240 if (NumZero)
Dale Johannesenace16102009-02-03 19:33:06 +00003241 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003242 else
Dale Johannesene8d72302009-02-06 23:05:02 +00003243 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003244 First = false;
3245 }
3246
3247 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00003248 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003249 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3250 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003251 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00003252 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00003253 }
3254 if (ThisIsNonZero) {
Dale Johannesenace16102009-02-03 19:33:06 +00003255 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3256 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
Evan Chengc78d3b42006-04-24 18:01:45 +00003257 ThisElt, DAG.getConstant(8, MVT::i8));
3258 if (LastIsNonZero)
Dale Johannesenace16102009-02-03 19:33:06 +00003259 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00003260 } else
3261 ThisElt = LastElt;
3262
Gabor Greifba36cb52008-08-28 21:40:38 +00003263 if (ThisElt.getNode())
Dale Johannesenace16102009-02-03 19:33:06 +00003264 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00003265 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00003266 }
3267 }
3268
Dale Johannesenace16102009-02-03 19:33:06 +00003269 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00003270}
3271
Bill Wendlinga348c562007-03-22 18:42:45 +00003272/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00003273///
Dan Gohman475871a2008-07-27 21:46:04 +00003274static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003275 unsigned NumNonZero, unsigned NumZero,
Evan Cheng25ab6902006-09-08 06:48:29 +00003276 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003277 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00003278 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003279
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003280 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003281 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003282 bool First = true;
3283 for (unsigned i = 0; i < 8; ++i) {
3284 bool isNonZero = (NonZeros & (1 << i)) != 0;
3285 if (isNonZero) {
3286 if (First) {
3287 if (NumZero)
Dale Johannesenace16102009-02-03 19:33:06 +00003288 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003289 else
Dale Johannesene8d72302009-02-06 23:05:02 +00003290 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003291 First = false;
3292 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003293 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00003294 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00003295 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00003296 }
3297 }
3298
3299 return V;
3300}
3301
Evan Chengf26ffe92008-05-29 08:22:04 +00003302/// getVShift - Return a vector logical shift node.
3303///
Dan Gohman475871a2008-07-27 21:46:04 +00003304static SDValue getVShift(bool isLeft, MVT VT, SDValue SrcOp,
Evan Chengf26ffe92008-05-29 08:22:04 +00003305 unsigned NumBits, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003306 const TargetLowering &TLI, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003307 bool isMMX = VT.getSizeInBits() == 64;
3308 MVT ShVT = isMMX ? MVT::v1i64 : MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00003309 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Dale Johannesenace16102009-02-03 19:33:06 +00003310 SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp);
3311 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3312 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00003313 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00003314}
3315
Dan Gohman475871a2008-07-27 21:46:04 +00003316SDValue
3317X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003318 DebugLoc dl = Op.getDebugLoc();
Chris Lattner8a594482007-11-25 00:24:49 +00003319 // All zero's are handled with pxor, all one's are handled with pcmpeqd.
Gabor Greif327ef032008-08-28 23:19:51 +00003320 if (ISD::isBuildVectorAllZeros(Op.getNode())
3321 || ISD::isBuildVectorAllOnes(Op.getNode())) {
Chris Lattner8a594482007-11-25 00:24:49 +00003322 // Canonicalize this to either <4 x i32> or <2 x i32> (SSE vs MMX) to
3323 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
3324 // eliminated on x86-32 hosts.
3325 if (Op.getValueType() == MVT::v4i32 || Op.getValueType() == MVT::v2i32)
3326 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003327
Gabor Greifba36cb52008-08-28 21:40:38 +00003328 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00003329 return getOnesVector(Op.getValueType(), DAG, dl);
3330 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00003331 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003332
Duncan Sands83ec4b62008-06-06 12:08:01 +00003333 MVT VT = Op.getValueType();
3334 MVT EVT = VT.getVectorElementType();
3335 unsigned EVTBits = EVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003336
3337 unsigned NumElems = Op.getNumOperands();
3338 unsigned NumZero = 0;
3339 unsigned NumNonZero = 0;
3340 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003341 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00003342 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003343 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003344 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00003345 if (Elt.getOpcode() == ISD::UNDEF)
3346 continue;
3347 Values.insert(Elt);
3348 if (Elt.getOpcode() != ISD::Constant &&
3349 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003350 IsAllConstants = false;
Evan Chengdb2d5242007-12-12 06:45:40 +00003351 if (isZeroNode(Elt))
3352 NumZero++;
3353 else {
3354 NonZeros |= (1 << i);
3355 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003356 }
3357 }
3358
Dan Gohman7f321562007-06-25 16:23:39 +00003359 if (NumNonZero == 0) {
Chris Lattner8a594482007-11-25 00:24:49 +00003360 // All undef vector. Return an UNDEF. All zero vectors were handled above.
Dale Johannesene8d72302009-02-06 23:05:02 +00003361 return DAG.getUNDEF(VT);
Dan Gohman7f321562007-06-25 16:23:39 +00003362 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003363
Chris Lattner67f453a2008-03-09 05:42:06 +00003364 // Special case for single non-zero, non-undef, element.
Evan Chengdb2d5242007-12-12 06:45:40 +00003365 if (NumNonZero == 1 && NumElems <= 4) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00003366 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00003367 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00003368
Chris Lattner62098042008-03-09 01:05:04 +00003369 // If this is an insertion of an i64 value on x86-32, and if the top bits of
3370 // the value are obviously zero, truncate the value to i32 and do the
3371 // insertion that way. Only do this if the value is non-constant or if the
3372 // value is a constant being inserted into element 0. It is cheaper to do
3373 // a constant pool load than it is to do a movd + shuffle.
3374 if (EVT == MVT::i64 && !Subtarget->is64Bit() &&
3375 (!IsAllConstants || Idx == 0)) {
3376 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
3377 // Handle MMX and SSE both.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003378 MVT VecVT = VT == MVT::v2i64 ? MVT::v4i32 : MVT::v2i32;
3379 unsigned VecElts = VT == MVT::v2i64 ? 4 : 2;
Scott Michelfdc40a02009-02-17 22:15:04 +00003380
Chris Lattner62098042008-03-09 01:05:04 +00003381 // Truncate the value (which may itself be a constant) to i32, and
3382 // convert it to a vector with movd (S2V+shuffle to zero extend).
Dale Johannesenace16102009-02-03 19:33:06 +00003383 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
3384 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00003385 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3386 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00003387
Chris Lattner62098042008-03-09 01:05:04 +00003388 // Now we have our 32-bit value zero extended in the low element of
3389 // a vector. If Idx != 0, swizzle it into place.
3390 if (Idx != 0) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003391 SDValue Ops[] = {
Dale Johannesene8d72302009-02-06 23:05:02 +00003392 Item, DAG.getUNDEF(Item.getValueType()),
Dale Johannesenace16102009-02-03 19:33:06 +00003393 getSwapEltZeroMask(VecElts, Idx, DAG, dl)
Chris Lattner62098042008-03-09 01:05:04 +00003394 };
Dale Johannesenace16102009-02-03 19:33:06 +00003395 Item = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VecVT, Ops, 3);
Chris Lattner62098042008-03-09 01:05:04 +00003396 }
Dale Johannesenace16102009-02-03 19:33:06 +00003397 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00003398 }
3399 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003400
Chris Lattner19f79692008-03-08 22:59:52 +00003401 // If we have a constant or non-constant insertion into the low element of
3402 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
3403 // the rest of the elements. This will be matched as movd/movq/movss/movsd
3404 // depending on what the source datatype is. Because we can only get here
3405 // when NumElems <= 4, this only needs to handle i32/f32/i64/f64.
3406 if (Idx == 0 &&
3407 // Don't do this for i64 values on x86-32.
3408 (EVT != MVT::i64 || Subtarget->is64Bit())) {
Dale Johannesenace16102009-02-03 19:33:06 +00003409 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003410 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Evan Chengf0df0312008-05-15 08:39:06 +00003411 return getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3412 Subtarget->hasSSE2(), DAG);
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003413 }
Evan Chengf26ffe92008-05-29 08:22:04 +00003414
3415 // Is it a vector logical left shift?
3416 if (NumElems == 2 && Idx == 1 &&
3417 isZeroNode(Op.getOperand(0)) && !isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003418 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00003419 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00003420 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00003421 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00003422 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00003423 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003424
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003425 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00003426 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003427
Chris Lattner19f79692008-03-08 22:59:52 +00003428 // Otherwise, if this is a vector with i32 or f32 elements, and the element
3429 // is a non-constant being inserted into an element other than the low one,
3430 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
3431 // movd/movss) to move this into the low element, then shuffle it into
3432 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00003433 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00003434 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00003435
Evan Cheng0db9fe62006-04-25 20:13:52 +00003436 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00003437 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3438 Subtarget->hasSSE2(), DAG);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003439 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3440 MVT MaskEVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00003441 SmallVector<SDValue, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003442 for (unsigned i = 0; i < NumElems; i++)
3443 MaskVec.push_back(DAG.getConstant((i == Idx) ? 0 : 1, MaskEVT));
Evan Chenga87008d2009-02-25 22:49:59 +00003444 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3445 &MaskVec[0], MaskVec.size());
Dale Johannesenace16102009-02-03 19:33:06 +00003446 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, Item,
Dale Johannesene8d72302009-02-06 23:05:02 +00003447 DAG.getUNDEF(VT), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003448 }
3449 }
3450
Chris Lattner67f453a2008-03-09 05:42:06 +00003451 // Splat is obviously ok. Let legalizer expand it to a shuffle.
3452 if (Values.size() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00003453 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003454
Dan Gohmana3941172007-07-24 22:55:08 +00003455 // A vector full of immediates; various special cases are already
3456 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003457 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00003458 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00003459
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003460 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00003461 if (EVTBits == 64) {
3462 if (NumNonZero == 1) {
3463 // One half is zero or undef.
3464 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00003465 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00003466 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00003467 return getShuffleVectorZeroOrUndef(V2, Idx, true,
3468 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00003469 }
Dan Gohman475871a2008-07-27 21:46:04 +00003470 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00003471 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003472
3473 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00003474 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00003475 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00003476 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00003477 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003478 }
3479
Bill Wendling826f36f2007-03-28 00:57:11 +00003480 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00003481 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00003482 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00003483 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003484 }
3485
3486 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00003487 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00003488 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003489 if (NumElems == 4 && NumZero > 0) {
3490 for (unsigned i = 0; i < 4; ++i) {
3491 bool isZero = !(NonZeros & (1 << i));
3492 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00003493 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003494 else
Dale Johannesenace16102009-02-03 19:33:06 +00003495 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003496 }
3497
3498 for (unsigned i = 0; i < 2; ++i) {
3499 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
3500 default: break;
3501 case 0:
3502 V[i] = V[i*2]; // Must be a zero vector.
3503 break;
3504 case 1:
Dale Johannesenace16102009-02-03 19:33:06 +00003505 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2+1], V[i*2],
3506 getMOVLMask(NumElems, DAG, dl));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003507 break;
3508 case 2:
Dale Johannesenace16102009-02-03 19:33:06 +00003509 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2], V[i*2+1],
3510 getMOVLMask(NumElems, DAG, dl));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003511 break;
3512 case 3:
Dale Johannesenace16102009-02-03 19:33:06 +00003513 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i*2], V[i*2+1],
3514 getUnpacklMask(NumElems, DAG, dl));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003515 break;
3516 }
3517 }
3518
Duncan Sands83ec4b62008-06-06 12:08:01 +00003519 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3520 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00003521 SmallVector<SDValue, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003522 bool Reverse = (NonZeros & 0x3) == 2;
3523 for (unsigned i = 0; i < 2; ++i)
3524 if (Reverse)
3525 MaskVec.push_back(DAG.getConstant(1-i, EVT));
3526 else
3527 MaskVec.push_back(DAG.getConstant(i, EVT));
3528 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
3529 for (unsigned i = 0; i < 2; ++i)
3530 if (Reverse)
3531 MaskVec.push_back(DAG.getConstant(1-i+NumElems, EVT));
3532 else
3533 MaskVec.push_back(DAG.getConstant(i+NumElems, EVT));
Evan Chenga87008d2009-02-25 22:49:59 +00003534 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
3535 &MaskVec[0], MaskVec.size());
Dale Johannesenace16102009-02-03 19:33:06 +00003536 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[0], V[1], ShufMask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003537 }
3538
3539 if (Values.size() > 2) {
3540 // Expand into a number of unpckl*.
3541 // e.g. for v4f32
3542 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
3543 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
3544 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Dale Johannesenace16102009-02-03 19:33:06 +00003545 SDValue UnpckMask = getUnpacklMask(NumElems, DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003546 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesenace16102009-02-03 19:33:06 +00003547 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003548 NumElems >>= 1;
3549 while (NumElems != 0) {
3550 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesenace16102009-02-03 19:33:06 +00003551 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V[i], V[i + NumElems],
Evan Cheng0db9fe62006-04-25 20:13:52 +00003552 UnpckMask);
3553 NumElems >>= 1;
3554 }
3555 return V[0];
3556 }
3557
Dan Gohman475871a2008-07-27 21:46:04 +00003558 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003559}
3560
Nate Begemanb9a47b82009-02-23 08:49:38 +00003561// v8i16 shuffles - Prefer shuffles in the following order:
3562// 1. [all] pshuflw, pshufhw, optional move
3563// 2. [ssse3] 1 x pshufb
3564// 3. [ssse3] 2 x pshufb + 1 x por
3565// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003566static
Dan Gohman475871a2008-07-27 21:46:04 +00003567SDValue LowerVECTOR_SHUFFLEv8i16(SDValue V1, SDValue V2,
Bill Wendlinge85dc492008-08-21 22:35:37 +00003568 SDValue PermMask, SelectionDAG &DAG,
Nate Begemanb9a47b82009-02-23 08:49:38 +00003569 X86TargetLowering &TLI, DebugLoc dl) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003570 SmallVector<SDValue, 8> MaskElts(PermMask.getNode()->op_begin(),
3571 PermMask.getNode()->op_end());
Nate Begemanb9a47b82009-02-23 08:49:38 +00003572 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00003573
Nate Begemanb9a47b82009-02-23 08:49:38 +00003574 // Determine if more than 1 of the words in each of the low and high quadwords
3575 // of the result come from the same quadword of one of the two inputs. Undef
3576 // mask values count as coming from any quadword, for better codegen.
3577 SmallVector<unsigned, 4> LoQuad(4);
3578 SmallVector<unsigned, 4> HiQuad(4);
3579 BitVector InputQuads(4);
3580 for (unsigned i = 0; i < 8; ++i) {
3581 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Dan Gohman475871a2008-07-27 21:46:04 +00003582 SDValue Elt = MaskElts[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00003583 int EltIdx = Elt.getOpcode() == ISD::UNDEF ? -1 :
3584 cast<ConstantSDNode>(Elt)->getZExtValue();
3585 MaskVals.push_back(EltIdx);
3586 if (EltIdx < 0) {
3587 ++Quad[0];
3588 ++Quad[1];
3589 ++Quad[2];
3590 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00003591 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00003592 }
3593 ++Quad[EltIdx / 4];
3594 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00003595 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003596
Nate Begemanb9a47b82009-02-23 08:49:38 +00003597 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00003598 unsigned MaxQuad = 1;
3599 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00003600 if (LoQuad[i] > MaxQuad) {
3601 BestLoQuad = i;
3602 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003603 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003604 }
3605
Nate Begemanb9a47b82009-02-23 08:49:38 +00003606 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00003607 MaxQuad = 1;
3608 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00003609 if (HiQuad[i] > MaxQuad) {
3610 BestHiQuad = i;
3611 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003612 }
3613 }
3614
Nate Begemanb9a47b82009-02-23 08:49:38 +00003615 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
3616 // of the two input vectors, shuffle them into one input vector so only a
3617 // single pshufb instruction is necessary. If There are more than 2 input
3618 // quads, disable the next transformation since it does not help SSSE3.
3619 bool V1Used = InputQuads[0] || InputQuads[1];
3620 bool V2Used = InputQuads[2] || InputQuads[3];
3621 if (TLI.getSubtarget()->hasSSSE3()) {
3622 if (InputQuads.count() == 2 && V1Used && V2Used) {
3623 BestLoQuad = InputQuads.find_first();
3624 BestHiQuad = InputQuads.find_next(BestLoQuad);
3625 }
3626 if (InputQuads.count() > 2) {
3627 BestLoQuad = -1;
3628 BestHiQuad = -1;
3629 }
3630 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003631
Nate Begemanb9a47b82009-02-23 08:49:38 +00003632 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
3633 // the shuffle mask. If a quad is scored as -1, that means that it contains
3634 // words from all 4 input quadwords.
3635 SDValue NewV;
3636 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
3637 SmallVector<SDValue,8> MaskV;
3638 MaskV.push_back(DAG.getConstant(BestLoQuad < 0 ? 0 : BestLoQuad, MVT::i64));
3639 MaskV.push_back(DAG.getConstant(BestHiQuad < 0 ? 1 : BestHiQuad, MVT::i64));
Evan Chenga87008d2009-02-25 22:49:59 +00003640 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64, &MaskV[0], 2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00003641
Dale Johannesenace16102009-02-03 19:33:06 +00003642 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2i64,
Nate Begemanb9a47b82009-02-23 08:49:38 +00003643 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1),
3644 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00003645 NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00003646
Nate Begemanb9a47b82009-02-23 08:49:38 +00003647 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
3648 // source words for the shuffle, to aid later transformations.
3649 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00003650 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00003651 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00003652 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00003653 if (idx != (int)i)
3654 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00003655 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00003656 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00003657 AllWordsInNewV = false;
3658 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00003659 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003660
Nate Begemanb9a47b82009-02-23 08:49:38 +00003661 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
3662 if (AllWordsInNewV) {
3663 for (int i = 0; i != 8; ++i) {
3664 int idx = MaskVals[i];
3665 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00003666 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00003667 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
3668 if ((idx != i) && idx < 4)
3669 pshufhw = false;
3670 if ((idx != i) && idx > 3)
3671 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00003672 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00003673 V1 = NewV;
3674 V2Used = false;
3675 BestLoQuad = 0;
3676 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003677 }
Evan Cheng14b32e12007-12-11 01:46:18 +00003678
Nate Begemanb9a47b82009-02-23 08:49:38 +00003679 // If we've eliminated the use of V2, and the new mask is a pshuflw or
3680 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00003681 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00003682 MaskV.clear();
3683 for (unsigned i = 0; i != 8; ++i)
3684 MaskV.push_back((MaskVals[i] < 0) ? DAG.getUNDEF(MVT::i16)
3685 : DAG.getConstant(MaskVals[i],
3686 MVT::i16));
3687 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, NewV,
3688 DAG.getUNDEF(MVT::v8i16),
Evan Chenga87008d2009-02-25 22:49:59 +00003689 DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i16,
3690 &MaskV[0], 8));
Evan Cheng14b32e12007-12-11 01:46:18 +00003691 }
Evan Cheng14b32e12007-12-11 01:46:18 +00003692 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00003693
3694 // If we have SSSE3, and all words of the result are from 1 input vector,
3695 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
3696 // is present, fall back to case 4.
3697 if (TLI.getSubtarget()->hasSSSE3()) {
3698 SmallVector<SDValue,16> pshufbMask;
3699
3700 // If we have elements from both input vectors, set the high bit of the
3701 // shuffle mask element to zero out elements that come from V2 in the V1
3702 // mask, and elements that come from V1 in the V2 mask, so that the two
3703 // results can be OR'd together.
3704 bool TwoInputs = V1Used && V2Used;
3705 for (unsigned i = 0; i != 8; ++i) {
3706 int EltIdx = MaskVals[i] * 2;
3707 if (TwoInputs && (EltIdx >= 16)) {
3708 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3709 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3710 continue;
3711 }
3712 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
3713 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
3714 }
3715 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V1);
3716 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00003717 DAG.getNode(ISD::BUILD_VECTOR, dl,
3718 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003719 if (!TwoInputs)
3720 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3721
3722 // Calculate the shuffle mask for the second input, shuffle it, and
3723 // OR it with the first shuffled input.
3724 pshufbMask.clear();
3725 for (unsigned i = 0; i != 8; ++i) {
3726 int EltIdx = MaskVals[i] * 2;
3727 if (EltIdx < 16) {
3728 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3729 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3730 continue;
3731 }
3732 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
3733 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
3734 }
3735 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V2);
3736 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00003737 DAG.getNode(ISD::BUILD_VECTOR, dl,
3738 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003739 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
3740 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3741 }
3742
3743 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
3744 // and update MaskVals with new element order.
3745 BitVector InOrder(8);
3746 if (BestLoQuad >= 0) {
3747 SmallVector<SDValue, 8> MaskV;
3748 for (int i = 0; i != 4; ++i) {
3749 int idx = MaskVals[i];
3750 if (idx < 0) {
3751 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3752 InOrder.set(i);
3753 } else if ((idx / 4) == BestLoQuad) {
3754 MaskV.push_back(DAG.getConstant(idx & 3, MVT::i16));
3755 InOrder.set(i);
3756 } else {
3757 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3758 }
3759 }
3760 for (unsigned i = 4; i != 8; ++i)
3761 MaskV.push_back(DAG.getConstant(i, MVT::i16));
3762 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, NewV,
3763 DAG.getUNDEF(MVT::v8i16),
Evan Chenga87008d2009-02-25 22:49:59 +00003764 DAG.getNode(ISD::BUILD_VECTOR, dl,
3765 MVT::v8i16, &MaskV[0], 8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003766 }
3767
3768 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
3769 // and update MaskVals with the new element order.
3770 if (BestHiQuad >= 0) {
3771 SmallVector<SDValue, 8> MaskV;
3772 for (unsigned i = 0; i != 4; ++i)
3773 MaskV.push_back(DAG.getConstant(i, MVT::i16));
3774 for (unsigned i = 4; i != 8; ++i) {
3775 int idx = MaskVals[i];
3776 if (idx < 0) {
3777 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3778 InOrder.set(i);
3779 } else if ((idx / 4) == BestHiQuad) {
3780 MaskV.push_back(DAG.getConstant((idx & 3) + 4, MVT::i16));
3781 InOrder.set(i);
3782 } else {
3783 MaskV.push_back(DAG.getUNDEF(MVT::i16));
3784 }
3785 }
3786 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v8i16, NewV,
3787 DAG.getUNDEF(MVT::v8i16),
Evan Chenga87008d2009-02-25 22:49:59 +00003788 DAG.getNode(ISD::BUILD_VECTOR, dl,
3789 MVT::v8i16, &MaskV[0], 8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003790 }
3791
3792 // In case BestHi & BestLo were both -1, which means each quadword has a word
3793 // from each of the four input quadwords, calculate the InOrder bitvector now
3794 // before falling through to the insert/extract cleanup.
3795 if (BestLoQuad == -1 && BestHiQuad == -1) {
3796 NewV = V1;
3797 for (int i = 0; i != 8; ++i)
3798 if (MaskVals[i] < 0 || MaskVals[i] == i)
3799 InOrder.set(i);
3800 }
3801
3802 // The other elements are put in the right place using pextrw and pinsrw.
3803 for (unsigned i = 0; i != 8; ++i) {
3804 if (InOrder[i])
3805 continue;
3806 int EltIdx = MaskVals[i];
3807 if (EltIdx < 0)
3808 continue;
3809 SDValue ExtOp = (EltIdx < 8)
3810 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
3811 DAG.getIntPtrConstant(EltIdx))
3812 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
3813 DAG.getIntPtrConstant(EltIdx - 8));
3814 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
3815 DAG.getIntPtrConstant(i));
3816 }
3817 return NewV;
3818}
3819
3820// v16i8 shuffles - Prefer shuffles in the following order:
3821// 1. [ssse3] 1 x pshufb
3822// 2. [ssse3] 2 x pshufb + 1 x por
3823// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
3824static
3825SDValue LowerVECTOR_SHUFFLEv16i8(SDValue V1, SDValue V2,
3826 SDValue PermMask, SelectionDAG &DAG,
3827 X86TargetLowering &TLI, DebugLoc dl) {
3828 SmallVector<SDValue, 16> MaskElts(PermMask.getNode()->op_begin(),
3829 PermMask.getNode()->op_end());
3830 SmallVector<int, 16> MaskVals;
3831
3832 // If we have SSSE3, case 1 is generated when all result bytes come from
3833 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
3834 // present, fall back to case 3.
3835 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
3836 bool V1Only = true;
3837 bool V2Only = true;
3838 for (unsigned i = 0; i < 16; ++i) {
3839 SDValue Elt = MaskElts[i];
3840 int EltIdx = Elt.getOpcode() == ISD::UNDEF ? -1 :
3841 cast<ConstantSDNode>(Elt)->getZExtValue();
3842 MaskVals.push_back(EltIdx);
3843 if (EltIdx < 0)
3844 continue;
3845 if (EltIdx < 16)
3846 V2Only = false;
3847 else
3848 V1Only = false;
3849 }
3850
3851 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
3852 if (TLI.getSubtarget()->hasSSSE3()) {
3853 SmallVector<SDValue,16> pshufbMask;
3854
3855 // If all result elements are from one input vector, then only translate
3856 // undef mask values to 0x80 (zero out result) in the pshufb mask.
3857 //
3858 // Otherwise, we have elements from both input vectors, and must zero out
3859 // elements that come from V2 in the first mask, and V1 in the second mask
3860 // so that we can OR them together.
3861 bool TwoInputs = !(V1Only || V2Only);
3862 for (unsigned i = 0; i != 16; ++i) {
3863 int EltIdx = MaskVals[i];
3864 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
3865 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3866 continue;
3867 }
3868 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
3869 }
3870 // If all the elements are from V2, assign it to V1 and return after
3871 // building the first pshufb.
3872 if (V2Only)
3873 V1 = V2;
3874 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00003875 DAG.getNode(ISD::BUILD_VECTOR, dl,
3876 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003877 if (!TwoInputs)
3878 return V1;
3879
3880 // Calculate the shuffle mask for the second input, shuffle it, and
3881 // OR it with the first shuffled input.
3882 pshufbMask.clear();
3883 for (unsigned i = 0; i != 16; ++i) {
3884 int EltIdx = MaskVals[i];
3885 if (EltIdx < 16) {
3886 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3887 continue;
3888 }
3889 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
3890 }
3891 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00003892 DAG.getNode(ISD::BUILD_VECTOR, dl,
3893 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003894 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
3895 }
3896
3897 // No SSSE3 - Calculate in place words and then fix all out of place words
3898 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
3899 // the 16 different words that comprise the two doublequadword input vectors.
3900 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3901 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V2);
3902 SDValue NewV = V2Only ? V2 : V1;
3903 for (int i = 0; i != 8; ++i) {
3904 int Elt0 = MaskVals[i*2];
3905 int Elt1 = MaskVals[i*2+1];
3906
3907 // This word of the result is all undef, skip it.
3908 if (Elt0 < 0 && Elt1 < 0)
3909 continue;
3910
3911 // This word of the result is already in the correct place, skip it.
3912 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
3913 continue;
3914 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
3915 continue;
3916
3917 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
3918 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
3919 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00003920
3921 // If Elt0 and Elt1 are defined, are consecutive, and can be load
3922 // using a single extract together, load it and store it.
3923 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
3924 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
3925 DAG.getIntPtrConstant(Elt1 / 2));
3926 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
3927 DAG.getIntPtrConstant(i));
3928 continue;
3929 }
3930
Nate Begemanb9a47b82009-02-23 08:49:38 +00003931 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00003932 // source byte is not also odd, shift the extracted word left 8 bits
3933 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00003934 if (Elt1 >= 0) {
3935 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
3936 DAG.getIntPtrConstant(Elt1 / 2));
3937 if ((Elt1 & 1) == 0)
3938 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
3939 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00003940 else if (Elt0 >= 0)
3941 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
3942 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003943 }
3944 // If Elt0 is defined, extract it from the appropriate source. If the
3945 // source byte is not also even, shift the extracted word right 8 bits. If
3946 // Elt1 was also defined, OR the extracted values together before
3947 // inserting them in the result.
3948 if (Elt0 >= 0) {
3949 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
3950 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
3951 if ((Elt0 & 1) != 0)
3952 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
3953 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00003954 else if (Elt1 >= 0)
3955 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
3956 DAG.getConstant(0x00FF, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00003957 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
3958 : InsElt0;
3959 }
3960 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
3961 DAG.getIntPtrConstant(i));
3962 }
3963 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00003964}
3965
Evan Cheng7a831ce2007-12-15 03:00:47 +00003966/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
3967/// ones, or rewriting v4i32 / v2f32 as 2 wide ones if possible. This can be
3968/// done when every pair / quad of shuffle mask elements point to elements in
3969/// the right sequence. e.g.
Evan Cheng14b32e12007-12-11 01:46:18 +00003970/// vector_shuffle <>, <>, < 3, 4, | 10, 11, | 0, 1, | 14, 15>
3971static
Dan Gohman475871a2008-07-27 21:46:04 +00003972SDValue RewriteAsNarrowerShuffle(SDValue V1, SDValue V2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003973 MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00003974 SDValue PermMask, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003975 TargetLowering &TLI, DebugLoc dl) {
Evan Cheng14b32e12007-12-11 01:46:18 +00003976 unsigned NumElems = PermMask.getNumOperands();
Evan Cheng7a831ce2007-12-15 03:00:47 +00003977 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003978 MVT MaskVT = MVT::getIntVectorWithNumElements(NewWidth);
Duncan Sandsd038e042008-07-21 10:20:31 +00003979 MVT MaskEltVT = MaskVT.getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003980 MVT NewVT = MaskVT;
3981 switch (VT.getSimpleVT()) {
3982 default: assert(false && "Unexpected!");
Evan Cheng7a831ce2007-12-15 03:00:47 +00003983 case MVT::v4f32: NewVT = MVT::v2f64; break;
3984 case MVT::v4i32: NewVT = MVT::v2i64; break;
3985 case MVT::v8i16: NewVT = MVT::v4i32; break;
3986 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00003987 }
3988
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00003989 if (NewWidth == 2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003990 if (VT.isInteger())
Evan Cheng7a831ce2007-12-15 03:00:47 +00003991 NewVT = MVT::v2i64;
3992 else
3993 NewVT = MVT::v2f64;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00003994 }
Evan Cheng7a831ce2007-12-15 03:00:47 +00003995 unsigned Scale = NumElems / NewWidth;
Dan Gohman475871a2008-07-27 21:46:04 +00003996 SmallVector<SDValue, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00003997 for (unsigned i = 0; i < NumElems; i += Scale) {
3998 unsigned StartIdx = ~0U;
3999 for (unsigned j = 0; j < Scale; ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00004000 SDValue Elt = PermMask.getOperand(i+j);
Evan Cheng14b32e12007-12-11 01:46:18 +00004001 if (Elt.getOpcode() == ISD::UNDEF)
4002 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004003 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004004 if (StartIdx == ~0U)
4005 StartIdx = EltIdx - (EltIdx % Scale);
4006 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00004007 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004008 }
4009 if (StartIdx == ~0U)
Dale Johannesene8d72302009-02-06 23:05:02 +00004010 MaskVec.push_back(DAG.getUNDEF(MaskEltVT));
Evan Cheng14b32e12007-12-11 01:46:18 +00004011 else
Duncan Sandsd038e042008-07-21 10:20:31 +00004012 MaskVec.push_back(DAG.getConstant(StartIdx / Scale, MaskEltVT));
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004013 }
4014
Dale Johannesenace16102009-02-03 19:33:06 +00004015 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1);
4016 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2);
4017 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, NewVT, V1, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004018 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4019 &MaskVec[0], MaskVec.size()));
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004020}
4021
Evan Chengd880b972008-05-09 21:53:03 +00004022/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004023///
Dan Gohman475871a2008-07-27 21:46:04 +00004024static SDValue getVZextMovL(MVT VT, MVT OpVT,
4025 SDValue SrcOp, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00004026 const X86Subtarget *Subtarget, DebugLoc dl) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004027 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
4028 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00004029 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00004030 LD = dyn_cast<LoadSDNode>(SrcOp);
4031 if (!LD) {
4032 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
4033 // instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004034 MVT EVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Evan Cheng7e2ff772008-05-08 00:57:18 +00004035 if ((EVT != MVT::i64 || Subtarget->is64Bit()) &&
4036 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4037 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
4038 SrcOp.getOperand(0).getOperand(0).getValueType() == EVT) {
4039 // PR2108
4040 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Dale Johannesenace16102009-02-03 19:33:06 +00004041 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4042 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4043 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4044 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00004045 SrcOp.getOperand(0)
4046 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004047 }
4048 }
4049 }
4050
Dale Johannesenace16102009-02-03 19:33:06 +00004051 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4052 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004053 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004054 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004055}
4056
Evan Chengace3c172008-07-22 21:13:36 +00004057/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4058/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004059static SDValue
4060LowerVECTOR_SHUFFLE_4wide(SDValue V1, SDValue V2,
Dale Johannesenace16102009-02-03 19:33:06 +00004061 SDValue PermMask, MVT VT, SelectionDAG &DAG,
4062 DebugLoc dl) {
Evan Chengace3c172008-07-22 21:13:36 +00004063 MVT MaskVT = PermMask.getValueType();
4064 MVT MaskEVT = MaskVT.getVectorElementType();
4065 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00004066 Locs.resize(4);
Dale Johannesene8d72302009-02-06 23:05:02 +00004067 SmallVector<SDValue, 8> Mask1(4, DAG.getUNDEF(MaskEVT));
Evan Chengace3c172008-07-22 21:13:36 +00004068 unsigned NumHi = 0;
4069 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00004070 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004071 SDValue Elt = PermMask.getOperand(i);
Evan Chengace3c172008-07-22 21:13:36 +00004072 if (Elt.getOpcode() == ISD::UNDEF) {
4073 Locs[i] = std::make_pair(-1, -1);
4074 } else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004075 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohmand0859942008-08-04 23:09:15 +00004076 assert(Val < 8 && "Invalid VECTOR_SHUFFLE index!");
Evan Chengace3c172008-07-22 21:13:36 +00004077 if (Val < 4) {
4078 Locs[i] = std::make_pair(0, NumLo);
4079 Mask1[NumLo] = Elt;
4080 NumLo++;
4081 } else {
4082 Locs[i] = std::make_pair(1, NumHi);
4083 if (2+NumHi < 4)
4084 Mask1[2+NumHi] = Elt;
4085 NumHi++;
4086 }
4087 }
4088 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004089
Evan Chengace3c172008-07-22 21:13:36 +00004090 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004091 // If no more than two elements come from either vector. This can be
4092 // implemented with two shuffles. First shuffle gather the elements.
4093 // The second shuffle, which takes the first shuffle as both of its
4094 // vector operands, put the elements into the right order.
Dale Johannesenace16102009-02-03 19:33:06 +00004095 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004096 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4097 &Mask1[0], Mask1.size()));
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004098
Dale Johannesene8d72302009-02-06 23:05:02 +00004099 SmallVector<SDValue, 8> Mask2(4, DAG.getUNDEF(MaskEVT));
Evan Chengace3c172008-07-22 21:13:36 +00004100 for (unsigned i = 0; i != 4; ++i) {
4101 if (Locs[i].first == -1)
4102 continue;
4103 else {
4104 unsigned Idx = (i < 2) ? 0 : 4;
4105 Idx += Locs[i].first * 2 + Locs[i].second;
4106 Mask2[i] = DAG.getConstant(Idx, MaskEVT);
4107 }
4108 }
4109
Dale Johannesenace16102009-02-03 19:33:06 +00004110 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004111 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4112 &Mask2[0], Mask2.size()));
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004113 } else if (NumLo == 3 || NumHi == 3) {
4114 // Otherwise, we must have three elements from one vector, call it X, and
4115 // one element from the other, call it Y. First, use a shufps to build an
4116 // intermediate vector with the one element from Y and the element from X
4117 // that will be in the same half in the final destination (the indexes don't
4118 // matter). Then, use a shufps to build the final vector, taking the half
4119 // containing the element from Y from the intermediate, and the other half
4120 // from X.
4121 if (NumHi == 3) {
4122 // Normalize it so the 3 elements come from V1.
Dale Johannesenace16102009-02-03 19:33:06 +00004123 PermMask = CommuteVectorShuffleMask(PermMask, DAG, dl);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004124 std::swap(V1, V2);
4125 }
4126
4127 // Find the element from V2.
4128 unsigned HiIndex;
4129 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Dan Gohman475871a2008-07-27 21:46:04 +00004130 SDValue Elt = PermMask.getOperand(HiIndex);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004131 if (Elt.getOpcode() == ISD::UNDEF)
4132 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004133 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004134 if (Val >= 4)
4135 break;
4136 }
4137
4138 Mask1[0] = PermMask.getOperand(HiIndex);
Dale Johannesene8d72302009-02-06 23:05:02 +00004139 Mask1[1] = DAG.getUNDEF(MaskEVT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004140 Mask1[2] = PermMask.getOperand(HiIndex^1);
Dale Johannesene8d72302009-02-06 23:05:02 +00004141 Mask1[3] = DAG.getUNDEF(MaskEVT);
Dale Johannesenace16102009-02-03 19:33:06 +00004142 V2 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004143 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, &Mask1[0], 4));
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004144
4145 if (HiIndex >= 2) {
4146 Mask1[0] = PermMask.getOperand(0);
4147 Mask1[1] = PermMask.getOperand(1);
4148 Mask1[2] = DAG.getConstant(HiIndex & 1 ? 6 : 4, MaskEVT);
4149 Mask1[3] = DAG.getConstant(HiIndex & 1 ? 4 : 6, MaskEVT);
Dale Johannesenace16102009-02-03 19:33:06 +00004150 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004151 DAG.getNode(ISD::BUILD_VECTOR, dl,
4152 MaskVT, &Mask1[0], 4));
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004153 } else {
4154 Mask1[0] = DAG.getConstant(HiIndex & 1 ? 2 : 0, MaskEVT);
4155 Mask1[1] = DAG.getConstant(HiIndex & 1 ? 0 : 2, MaskEVT);
4156 Mask1[2] = PermMask.getOperand(2);
4157 Mask1[3] = PermMask.getOperand(3);
4158 if (Mask1[2].getOpcode() != ISD::UNDEF)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004159 Mask1[2] =
4160 DAG.getConstant(cast<ConstantSDNode>(Mask1[2])->getZExtValue()+4,
4161 MaskEVT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004162 if (Mask1[3].getOpcode() != ISD::UNDEF)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004163 Mask1[3] =
4164 DAG.getConstant(cast<ConstantSDNode>(Mask1[3])->getZExtValue()+4,
4165 MaskEVT);
Dale Johannesenace16102009-02-03 19:33:06 +00004166 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V2, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004167 DAG.getNode(ISD::BUILD_VECTOR, dl,
4168 MaskVT, &Mask1[0], 4));
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004169 }
Evan Chengace3c172008-07-22 21:13:36 +00004170 }
4171
4172 // Break it into (shuffle shuffle_hi, shuffle_lo).
4173 Locs.clear();
Dale Johannesene8d72302009-02-06 23:05:02 +00004174 SmallVector<SDValue,8> LoMask(4, DAG.getUNDEF(MaskEVT));
4175 SmallVector<SDValue,8> HiMask(4, DAG.getUNDEF(MaskEVT));
Dan Gohman475871a2008-07-27 21:46:04 +00004176 SmallVector<SDValue,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00004177 unsigned MaskIdx = 0;
4178 unsigned LoIdx = 0;
4179 unsigned HiIdx = 2;
4180 for (unsigned i = 0; i != 4; ++i) {
4181 if (i == 2) {
4182 MaskPtr = &HiMask;
4183 MaskIdx = 1;
4184 LoIdx = 0;
4185 HiIdx = 2;
4186 }
Dan Gohman475871a2008-07-27 21:46:04 +00004187 SDValue Elt = PermMask.getOperand(i);
Evan Chengace3c172008-07-22 21:13:36 +00004188 if (Elt.getOpcode() == ISD::UNDEF) {
4189 Locs[i] = std::make_pair(-1, -1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004190 } else if (cast<ConstantSDNode>(Elt)->getZExtValue() < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00004191 Locs[i] = std::make_pair(MaskIdx, LoIdx);
4192 (*MaskPtr)[LoIdx] = Elt;
4193 LoIdx++;
4194 } else {
4195 Locs[i] = std::make_pair(MaskIdx, HiIdx);
4196 (*MaskPtr)[HiIdx] = Elt;
4197 HiIdx++;
4198 }
4199 }
4200
Dale Johannesenace16102009-02-03 19:33:06 +00004201 SDValue LoShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004202 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengace3c172008-07-22 21:13:36 +00004203 &LoMask[0], LoMask.size()));
Dale Johannesenace16102009-02-03 19:33:06 +00004204 SDValue HiShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004205 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Evan Chengace3c172008-07-22 21:13:36 +00004206 &HiMask[0], HiMask.size()));
Dan Gohman475871a2008-07-27 21:46:04 +00004207 SmallVector<SDValue, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00004208 for (unsigned i = 0; i != 4; ++i) {
4209 if (Locs[i].first == -1) {
Dale Johannesene8d72302009-02-06 23:05:02 +00004210 MaskOps.push_back(DAG.getUNDEF(MaskEVT));
Evan Chengace3c172008-07-22 21:13:36 +00004211 } else {
4212 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
4213 MaskOps.push_back(DAG.getConstant(Idx, MaskEVT));
4214 }
4215 }
Dale Johannesenace16102009-02-03 19:33:06 +00004216 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, LoShuffle, HiShuffle,
Evan Chenga87008d2009-02-25 22:49:59 +00004217 DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4218 &MaskOps[0], MaskOps.size()));
Evan Chengace3c172008-07-22 21:13:36 +00004219}
4220
Dan Gohman475871a2008-07-27 21:46:04 +00004221SDValue
4222X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
4223 SDValue V1 = Op.getOperand(0);
4224 SDValue V2 = Op.getOperand(1);
4225 SDValue PermMask = Op.getOperand(2);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004226 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004227 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004228 unsigned NumElems = PermMask.getNumOperands();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004229 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004230 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
4231 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00004232 bool V1IsSplat = false;
4233 bool V2IsSplat = false;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004234
Nate Begemanb9a47b82009-02-23 08:49:38 +00004235 // FIXME: Check for legal shuffle and return?
4236
Gabor Greifba36cb52008-08-28 21:40:38 +00004237 if (isUndefShuffle(Op.getNode()))
Dale Johannesene8d72302009-02-06 23:05:02 +00004238 return DAG.getUNDEF(VT);
Evan Cheng8cf723d2006-09-08 01:50:06 +00004239
Gabor Greifba36cb52008-08-28 21:40:38 +00004240 if (isZeroShuffle(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004241 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004242
Gabor Greifba36cb52008-08-28 21:40:38 +00004243 if (isIdentityMask(PermMask.getNode()))
Evan Cheng49892af2007-06-19 00:02:56 +00004244 return V1;
Gabor Greifba36cb52008-08-28 21:40:38 +00004245 else if (isIdentityMask(PermMask.getNode(), true))
Evan Cheng49892af2007-06-19 00:02:56 +00004246 return V2;
4247
Evan Cheng4dcc8a32008-09-25 23:35:16 +00004248 // Canonicalize movddup shuffles.
4249 if (V2IsUndef && Subtarget->hasSSE2() &&
Evan Cheng882cdfd2008-10-06 21:13:08 +00004250 VT.getSizeInBits() == 128 &&
Evan Cheng4dcc8a32008-09-25 23:35:16 +00004251 X86::isMOVDDUPMask(PermMask.getNode()))
4252 return CanonicalizeMovddup(Op, V1, PermMask, DAG, Subtarget->hasSSE3());
4253
Gabor Greifba36cb52008-08-28 21:40:38 +00004254 if (isSplatMask(PermMask.getNode())) {
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004255 if (isMMX || NumElems < 4) return Op;
4256 // Promote it to a v4{if}32 splat.
4257 return PromoteSplat(Op, DAG, Subtarget->hasSSE2());
Evan Cheng0db9fe62006-04-25 20:13:52 +00004258 }
4259
Evan Cheng7a831ce2007-12-15 03:00:47 +00004260 // If the shuffle can be profitably rewritten as a narrower shuffle, then
4261 // do it!
4262 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
Dale Johannesenace16102009-02-03 19:33:06 +00004263 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask, DAG,
4264 *this, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00004265 if (NewOp.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004266 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004267 LowerVECTOR_SHUFFLE(NewOp, DAG));
Evan Cheng7a831ce2007-12-15 03:00:47 +00004268 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
4269 // FIXME: Figure out a cleaner way to do this.
4270 // Try to make use of movq to zero out the top part.
Gabor Greifba36cb52008-08-28 21:40:38 +00004271 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004272 SDValue NewOp = RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Dale Johannesenace16102009-02-03 19:33:06 +00004273 DAG, *this, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00004274 if (NewOp.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00004275 SDValue NewV1 = NewOp.getOperand(0);
4276 SDValue NewV2 = NewOp.getOperand(1);
4277 SDValue NewMask = NewOp.getOperand(2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004278 if (isCommutedMOVL(NewMask.getNode(), true, false)) {
Evan Cheng7a831ce2007-12-15 03:00:47 +00004279 NewOp = CommuteVectorShuffle(NewOp, NewV1, NewV2, NewMask, DAG);
Dale Johannesenace16102009-02-03 19:33:06 +00004280 return getVZextMovL(VT, NewOp.getValueType(), NewV2, DAG, Subtarget,
4281 dl);
Evan Cheng7a831ce2007-12-15 03:00:47 +00004282 }
4283 }
Gabor Greifba36cb52008-08-28 21:40:38 +00004284 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004285 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Dale Johannesenace16102009-02-03 19:33:06 +00004286 DAG, *this, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00004287 if (NewOp.getNode() && X86::isMOVLMask(NewOp.getOperand(2).getNode()))
Evan Chengd880b972008-05-09 21:53:03 +00004288 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
Dale Johannesenace16102009-02-03 19:33:06 +00004289 DAG, Subtarget, dl);
Evan Cheng7a831ce2007-12-15 03:00:47 +00004290 }
4291 }
4292
Evan Chengf26ffe92008-05-29 08:22:04 +00004293 // Check if this can be converted into a logical shift.
4294 bool isLeft = false;
4295 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00004296 SDValue ShVal;
Evan Chengf26ffe92008-05-29 08:22:04 +00004297 bool isShift = isVectorShift(Op, PermMask, DAG, isLeft, ShVal, ShAmt);
4298 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004299 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00004300 // v_set0 + movlhps or movhlps, etc.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004301 MVT EVT = VT.getVectorElementType();
4302 ShAmt *= EVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00004303 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004304 }
4305
Gabor Greifba36cb52008-08-28 21:40:38 +00004306 if (X86::isMOVLMask(PermMask.getNode())) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004307 if (V1IsUndef)
4308 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00004309 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004310 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Nate Begemanfb8ead02008-07-25 19:05:58 +00004311 if (!isMMX)
4312 return Op;
Evan Cheng7e2ff772008-05-08 00:57:18 +00004313 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004314
Gabor Greifba36cb52008-08-28 21:40:38 +00004315 if (!isMMX && (X86::isMOVSHDUPMask(PermMask.getNode()) ||
4316 X86::isMOVSLDUPMask(PermMask.getNode()) ||
4317 X86::isMOVHLPSMask(PermMask.getNode()) ||
4318 X86::isMOVHPMask(PermMask.getNode()) ||
4319 X86::isMOVLPMask(PermMask.getNode())))
Evan Cheng9bbbb982006-10-25 20:48:19 +00004320 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004321
Gabor Greifba36cb52008-08-28 21:40:38 +00004322 if (ShouldXformToMOVHLPS(PermMask.getNode()) ||
4323 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), PermMask.getNode()))
Evan Cheng9eca5e82006-10-25 21:49:50 +00004324 return CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004325
Evan Chengf26ffe92008-05-29 08:22:04 +00004326 if (isShift) {
4327 // No better options. Use a vshl / vsrl.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004328 MVT EVT = VT.getVectorElementType();
4329 ShAmt *= EVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00004330 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004331 }
4332
Evan Cheng9eca5e82006-10-25 21:49:50 +00004333 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00004334 // FIXME: This should also accept a bitcast of a splat? Be careful, not
4335 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00004336 V1IsSplat = isSplatVector(V1.getNode());
4337 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00004338
Chris Lattner8a594482007-11-25 00:24:49 +00004339 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00004340 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Evan Cheng9eca5e82006-10-25 21:49:50 +00004341 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Evan Cheng9bbbb982006-10-25 20:48:19 +00004342 std::swap(V1IsSplat, V2IsSplat);
4343 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00004344 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00004345 }
4346
Evan Cheng7a831ce2007-12-15 03:00:47 +00004347 // FIXME: Figure out a cleaner way to do this.
Gabor Greifba36cb52008-08-28 21:40:38 +00004348 if (isCommutedMOVL(PermMask.getNode(), V2IsSplat, V2IsUndef)) {
Evan Cheng9bbbb982006-10-25 20:48:19 +00004349 if (V2IsUndef) return V1;
Evan Cheng9eca5e82006-10-25 21:49:50 +00004350 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Evan Cheng9bbbb982006-10-25 20:48:19 +00004351 if (V2IsSplat) {
4352 // V2 is a splat, so the mask may be malformed. That is, it may point
4353 // to any V2 element. The instruction selectior won't like this. Get
4354 // a corrected mask and commute to form a proper MOVS{S|D}.
Dale Johannesenace16102009-02-03 19:33:06 +00004355 SDValue NewMask = getMOVLMask(NumElems, DAG, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00004356 if (NewMask.getNode() != PermMask.getNode())
Dale Johannesenace16102009-02-03 19:33:06 +00004357 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004358 }
Evan Cheng9bbbb982006-10-25 20:48:19 +00004359 return Op;
Evan Chengd9b8e402006-10-16 06:36:00 +00004360 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004361
Gabor Greifba36cb52008-08-28 21:40:38 +00004362 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4363 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4364 X86::isUNPCKLMask(PermMask.getNode()) ||
4365 X86::isUNPCKHMask(PermMask.getNode()))
Evan Chengd9b8e402006-10-16 06:36:00 +00004366 return Op;
Evan Chenge1113032006-10-04 18:33:38 +00004367
Evan Cheng9bbbb982006-10-25 20:48:19 +00004368 if (V2IsSplat) {
4369 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004370 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00004371 // new vector_shuffle with the corrected mask.
Dan Gohman475871a2008-07-27 21:46:04 +00004372 SDValue NewMask = NormalizeMask(PermMask, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004373 if (NewMask.getNode() != PermMask.getNode()) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00004374 if (X86::isUNPCKLMask(NewMask.getNode(), true)) {
Dale Johannesenace16102009-02-03 19:33:06 +00004375 SDValue NewMask = getUnpacklMask(NumElems, DAG, dl);
4376 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Mon P Wang7bcaefa2009-02-04 01:16:59 +00004377 } else if (X86::isUNPCKHMask(NewMask.getNode(), true)) {
Dale Johannesenace16102009-02-03 19:33:06 +00004378 SDValue NewMask = getUnpackhMask(NumElems, DAG, dl);
4379 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1, V2, NewMask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004380 }
4381 }
4382 }
4383
4384 // Normalize the node to match x86 shuffle ops if needed
Gabor Greifba36cb52008-08-28 21:40:38 +00004385 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(PermMask.getNode()))
Evan Cheng9eca5e82006-10-25 21:49:50 +00004386 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4387
4388 if (Commuted) {
4389 // Commute is back and try unpck* again.
4390 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004391 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4392 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4393 X86::isUNPCKLMask(PermMask.getNode()) ||
4394 X86::isUNPCKHMask(PermMask.getNode()))
Evan Cheng9eca5e82006-10-25 21:49:50 +00004395 return Op;
4396 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004397
Nate Begemanb9a47b82009-02-23 08:49:38 +00004398 // FIXME: for mmx, bitcast v2i32 to v4i16 for shuffle.
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004399 // Try PSHUF* first, then SHUFP*.
4400 // MMX doesn't have PSHUFD but it does have PSHUFW. While it's theoretically
4401 // possible to shuffle a v2i32 using PSHUFW, that's not yet implemented.
Gabor Greifba36cb52008-08-28 21:40:38 +00004402 if (isMMX && NumElems == 4 && X86::isPSHUFDMask(PermMask.getNode())) {
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004403 if (V2.getOpcode() != ISD::UNDEF)
Dale Johannesenace16102009-02-03 19:33:06 +00004404 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, V1,
Dale Johannesene8d72302009-02-06 23:05:02 +00004405 DAG.getUNDEF(VT), PermMask);
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004406 return Op;
4407 }
4408
4409 if (!isMMX) {
4410 if (Subtarget->hasSSE2() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004411 (X86::isPSHUFDMask(PermMask.getNode()) ||
4412 X86::isPSHUFHWMask(PermMask.getNode()) ||
4413 X86::isPSHUFLWMask(PermMask.getNode()))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004414 MVT RVT = VT;
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004415 if (VT == MVT::v4f32) {
4416 RVT = MVT::v4i32;
Dale Johannesenace16102009-02-03 19:33:06 +00004417 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, RVT,
4418 DAG.getNode(ISD::BIT_CONVERT, dl, RVT, V1),
Dale Johannesene8d72302009-02-06 23:05:02 +00004419 DAG.getUNDEF(RVT), PermMask);
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004420 } else if (V2.getOpcode() != ISD::UNDEF)
Dale Johannesenace16102009-02-03 19:33:06 +00004421 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, RVT, V1,
Dale Johannesene8d72302009-02-06 23:05:02 +00004422 DAG.getUNDEF(RVT), PermMask);
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004423 if (RVT != VT)
Dale Johannesenace16102009-02-03 19:33:06 +00004424 Op = DAG.getNode(ISD::BIT_CONVERT, dl, VT, Op);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004425 return Op;
4426 }
4427
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004428 // Binary or unary shufps.
Gabor Greifba36cb52008-08-28 21:40:38 +00004429 if (X86::isSHUFPMask(PermMask.getNode()) ||
4430 (V2.getOpcode() == ISD::UNDEF && X86::isPSHUFDMask(PermMask.getNode())))
Evan Cheng0db9fe62006-04-25 20:13:52 +00004431 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004432 }
4433
Evan Cheng14b32e12007-12-11 01:46:18 +00004434 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
4435 if (VT == MVT::v8i16) {
Dale Johannesenace16102009-02-03 19:33:06 +00004436 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(V1, V2, PermMask, DAG, *this, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00004437 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00004438 return NewOp;
4439 }
4440
Nate Begemanb9a47b82009-02-23 08:49:38 +00004441 if (VT == MVT::v16i8) {
4442 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(V1, V2, PermMask, DAG, *this, dl);
4443 if (NewOp.getNode())
4444 return NewOp;
4445 }
4446
Evan Chengace3c172008-07-22 21:13:36 +00004447 // Handle all 4 wide cases with a number of shuffles except for MMX.
4448 if (NumElems == 4 && !isMMX)
Dale Johannesenace16102009-02-03 19:33:06 +00004449 return LowerVECTOR_SHUFFLE_4wide(V1, V2, PermMask, VT, DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004450
Dan Gohman475871a2008-07-27 21:46:04 +00004451 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004452}
4453
Dan Gohman475871a2008-07-27 21:46:04 +00004454SDValue
4455X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004456 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004457 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004458 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004459 if (VT.getSizeInBits() == 8) {
Dale Johannesenace16102009-02-03 19:33:06 +00004460 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004461 Op.getOperand(0), Op.getOperand(1));
Dale Johannesenace16102009-02-03 19:33:06 +00004462 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004463 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00004464 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004465 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00004466 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
4467 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
4468 if (Idx == 0)
Dale Johannesenace16102009-02-03 19:33:06 +00004469 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4470 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
4471 DAG.getNode(ISD::BIT_CONVERT, dl,
4472 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00004473 Op.getOperand(0)),
4474 Op.getOperand(1)));
Dale Johannesenace16102009-02-03 19:33:06 +00004475 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004476 Op.getOperand(0), Op.getOperand(1));
Dale Johannesenace16102009-02-03 19:33:06 +00004477 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004478 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00004479 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Evan Cheng62a3f152008-03-24 21:52:23 +00004480 } else if (VT == MVT::f32) {
4481 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
4482 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00004483 // result has a single use which is a store or a bitcast to i32. And in
4484 // the case of a store, it's not worth it if the index is a constant 0,
4485 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00004486 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00004487 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00004488 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00004489 if ((User->getOpcode() != ISD::STORE ||
4490 (isa<ConstantSDNode>(Op.getOperand(1)) &&
4491 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman171c11e2008-04-16 02:32:24 +00004492 (User->getOpcode() != ISD::BIT_CONVERT ||
4493 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00004494 return SDValue();
Dale Johannesenace16102009-02-03 19:33:06 +00004495 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michelfdc40a02009-02-17 22:15:04 +00004496 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00004497 Op.getOperand(0)),
4498 Op.getOperand(1));
4499 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract);
Mon P Wangf0fcdd82009-01-15 21:10:20 +00004500 } else if (VT == MVT::i32) {
4501 // ExtractPS works with constant index.
4502 if (isa<ConstantSDNode>(Op.getOperand(1)))
4503 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00004504 }
Dan Gohman475871a2008-07-27 21:46:04 +00004505 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004506}
4507
4508
Dan Gohman475871a2008-07-27 21:46:04 +00004509SDValue
4510X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004511 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00004512 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004513
Evan Cheng62a3f152008-03-24 21:52:23 +00004514 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00004515 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004516 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00004517 return Res;
4518 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00004519
Duncan Sands83ec4b62008-06-06 12:08:01 +00004520 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004521 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004522 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004523 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004524 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004525 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004526 if (Idx == 0)
Dale Johannesenace16102009-02-03 19:33:06 +00004527 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4528 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michelfdc40a02009-02-17 22:15:04 +00004529 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004530 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00004531 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004532 // Transform it so it match pextrw which produces a 32-bit result.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004533 MVT EVT = (MVT::SimpleValueType)(VT.getSimpleVT()+1);
Dale Johannesenace16102009-02-03 19:33:06 +00004534 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00004535 Op.getOperand(0), Op.getOperand(1));
Dale Johannesenace16102009-02-03 19:33:06 +00004536 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00004537 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00004538 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004539 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004540 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004541 if (Idx == 0)
4542 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004543 // SHUFPS the element to the lowest double word, then movss.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004544 MVT MaskVT = MVT::getIntVectorWithNumElements(4);
Dan Gohman475871a2008-07-27 21:46:04 +00004545 SmallVector<SDValue, 8> IdxVec;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004546 IdxVec.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004547 push_back(DAG.getConstant(Idx, MaskVT.getVectorElementType()));
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004548 IdxVec.
Dale Johannesene8d72302009-02-06 23:05:02 +00004549 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004550 IdxVec.
Dale Johannesene8d72302009-02-06 23:05:02 +00004551 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004552 IdxVec.
Dale Johannesene8d72302009-02-06 23:05:02 +00004553 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Evan Chenga87008d2009-02-25 22:49:59 +00004554 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4555 &IdxVec[0], IdxVec.size());
Dan Gohman475871a2008-07-27 21:46:04 +00004556 SDValue Vec = Op.getOperand(0);
Dale Johannesenace16102009-02-03 19:33:06 +00004557 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Vec.getValueType(),
Dale Johannesene8d72302009-02-06 23:05:02 +00004558 Vec, DAG.getUNDEF(Vec.getValueType()), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00004559 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00004560 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004561 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00004562 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
4563 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
4564 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004565 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004566 if (Idx == 0)
4567 return Op;
4568
4569 // UNPCKHPD the element to the lowest double word, then movsd.
4570 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
4571 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Duncan Sandsd038e042008-07-21 10:20:31 +00004572 MVT MaskVT = MVT::getIntVectorWithNumElements(2);
Dan Gohman475871a2008-07-27 21:46:04 +00004573 SmallVector<SDValue, 8> IdxVec;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004574 IdxVec.push_back(DAG.getConstant(1, MaskVT.getVectorElementType()));
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004575 IdxVec.
Dale Johannesene8d72302009-02-06 23:05:02 +00004576 push_back(DAG.getUNDEF(MaskVT.getVectorElementType()));
Evan Chenga87008d2009-02-25 22:49:59 +00004577 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
4578 &IdxVec[0], IdxVec.size());
Dan Gohman475871a2008-07-27 21:46:04 +00004579 SDValue Vec = Op.getOperand(0);
Dale Johannesenace16102009-02-03 19:33:06 +00004580 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Vec.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00004581 Vec, DAG.getUNDEF(Vec.getValueType()),
Dale Johannesenace16102009-02-03 19:33:06 +00004582 Mask);
4583 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00004584 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004585 }
4586
Dan Gohman475871a2008-07-27 21:46:04 +00004587 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004588}
4589
Dan Gohman475871a2008-07-27 21:46:04 +00004590SDValue
4591X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG){
Duncan Sands83ec4b62008-06-06 12:08:01 +00004592 MVT VT = Op.getValueType();
4593 MVT EVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004594 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004595
Dan Gohman475871a2008-07-27 21:46:04 +00004596 SDValue N0 = Op.getOperand(0);
4597 SDValue N1 = Op.getOperand(1);
4598 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00004599
Dan Gohmanef521f12008-08-14 22:53:18 +00004600 if ((EVT.getSizeInBits() == 8 || EVT.getSizeInBits() == 16) &&
4601 isa<ConstantSDNode>(N2)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004602 unsigned Opc = (EVT.getSizeInBits() == 8) ? X86ISD::PINSRB
Nate Begemanb9a47b82009-02-23 08:49:38 +00004603 : X86ISD::PINSRW;
Nate Begeman14d12ca2008-02-11 04:19:36 +00004604 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
4605 // argument.
4606 if (N1.getValueType() != MVT::i32)
Dale Johannesenace16102009-02-03 19:33:06 +00004607 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Nate Begeman14d12ca2008-02-11 04:19:36 +00004608 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004609 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00004610 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohmanc0573b12008-08-14 22:43:26 +00004611 } else if (EVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00004612 // Bits [7:6] of the constant are the source select. This will always be
4613 // zero here. The DAG Combiner may combine an extract_elt index into these
4614 // bits. For example (insert (extract, 3), 2) could be matched by putting
4615 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00004616 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00004617 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00004618 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00004619 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004620 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Dale Johannesenace16102009-02-03 19:33:06 +00004621 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Mon P Wangf0fcdd82009-01-15 21:10:20 +00004622 } else if (EVT == MVT::i32) {
4623 // InsertPS works with constant index.
4624 if (isa<ConstantSDNode>(N2))
4625 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00004626 }
Dan Gohman475871a2008-07-27 21:46:04 +00004627 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004628}
4629
Dan Gohman475871a2008-07-27 21:46:04 +00004630SDValue
4631X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004632 MVT VT = Op.getValueType();
4633 MVT EVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004634
4635 if (Subtarget->hasSSE41())
4636 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
4637
Evan Cheng794405e2007-12-12 07:55:34 +00004638 if (EVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00004639 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00004640
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004641 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004642 SDValue N0 = Op.getOperand(0);
4643 SDValue N1 = Op.getOperand(1);
4644 SDValue N2 = Op.getOperand(2);
Evan Cheng794405e2007-12-12 07:55:34 +00004645
Duncan Sands83ec4b62008-06-06 12:08:01 +00004646 if (EVT.getSizeInBits() == 16) {
Evan Cheng794405e2007-12-12 07:55:34 +00004647 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
4648 // as its second argument.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004649 if (N1.getValueType() != MVT::i32)
Dale Johannesenace16102009-02-03 19:33:06 +00004650 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004651 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004652 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00004653 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004654 }
Dan Gohman475871a2008-07-27 21:46:04 +00004655 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004656}
4657
Dan Gohman475871a2008-07-27 21:46:04 +00004658SDValue
4659X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004660 DebugLoc dl = Op.getDebugLoc();
Evan Cheng52672b82008-07-22 18:39:19 +00004661 if (Op.getValueType() == MVT::v2f32)
Dale Johannesenace16102009-02-03 19:33:06 +00004662 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f32,
4663 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i32,
4664 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32,
Evan Cheng52672b82008-07-22 18:39:19 +00004665 Op.getOperand(0))));
4666
Dale Johannesenace16102009-02-03 19:33:06 +00004667 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004668 MVT VT = MVT::v2i32;
4669 switch (Op.getValueType().getSimpleVT()) {
Evan Chengefec7512008-02-18 23:04:32 +00004670 default: break;
4671 case MVT::v16i8:
4672 case MVT::v8i16:
4673 VT = MVT::v4i32;
4674 break;
4675 }
Dale Johannesenace16102009-02-03 19:33:06 +00004676 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(),
4677 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004678}
4679
Bill Wendling056292f2008-09-16 21:48:12 +00004680// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
4681// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
4682// one of the above mentioned nodes. It has to be wrapped because otherwise
4683// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
4684// be used to form addressing mode. These wrapped nodes will be selected
4685// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00004686SDValue
4687X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004688 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dale Johannesende064702009-02-06 21:50:26 +00004689 // FIXME there isn't really any debug info here, should come from the parent
4690 DebugLoc dl = CP->getDebugLoc();
Evan Cheng1606e8e2009-03-13 07:51:59 +00004691 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
4692 CP->getAlignment());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004693 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004694 // With PIC, the address is actually $g + Offset.
4695 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4696 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesende064702009-02-06 21:50:26 +00004697 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004698 DAG.getNode(X86ISD::GlobalBaseReg,
4699 DebugLoc::getUnknownLoc(),
4700 getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004701 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004702 }
4703
4704 return Result;
4705}
4706
Dan Gohman475871a2008-07-27 21:46:04 +00004707SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00004708X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00004709 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00004710 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00004711 bool IsPic = getTargetMachine().getRelocationModel() == Reloc::PIC_;
4712 bool ExtraLoadRequired =
4713 Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false);
4714
4715 // Create the TargetGlobalAddress node, folding in the constant
4716 // offset if it is legal.
4717 SDValue Result;
Dan Gohman44013612008-10-21 03:38:42 +00004718 if (!IsPic && !ExtraLoadRequired && isInt32(Offset)) {
Dan Gohman6520e202008-10-18 02:06:02 +00004719 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
4720 Offset = 0;
4721 } else
4722 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), 0);
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004723 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00004724
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004725 // With PIC, the address is actually $g + Offset.
Dan Gohman6520e202008-10-18 02:06:02 +00004726 if (IsPic && !Subtarget->isPICStyleRIPRel()) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00004727 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
4728 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004729 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004730 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004731
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00004732 // For Darwin & Mingw32, external and weak symbols are indirect, so we want to
4733 // load the value at address GV, not the value of GV itself. This means that
4734 // the GlobalAddress must be in the base or index register of the address, not
4735 // the GV offset field. Platform check is inside GVRequiresExtraLoad() call
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004736 // The same applies for external symbols during PIC codegen
Dan Gohman6520e202008-10-18 02:06:02 +00004737 if (ExtraLoadRequired)
Dale Johannesen33c960f2009-02-04 20:06:27 +00004738 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Dan Gohman3069b872008-02-07 18:41:25 +00004739 PseudoSourceValue::getGOT(), 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004740
Dan Gohman6520e202008-10-18 02:06:02 +00004741 // If there was a non-zero offset that we didn't fold, create an explicit
4742 // addition for it.
4743 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00004744 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00004745 DAG.getConstant(Offset, getPointerTy()));
4746
Evan Cheng0db9fe62006-04-25 20:13:52 +00004747 return Result;
4748}
4749
Evan Chengda43bcf2008-09-24 00:05:32 +00004750SDValue
4751X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) {
4752 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00004753 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004754 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00004755}
4756
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004757// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00004758static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004759LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004760 const MVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004761 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00004762 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
4763 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004764 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004765 DebugLoc::getUnknownLoc(),
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004766 PtrVT), InFlag);
4767 InFlag = Chain.getValue(1);
4768
4769 // emit leal symbol@TLSGD(,%ebx,1), %eax
4770 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00004771 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004772 GA->getValueType(0),
4773 GA->getOffset());
Dan Gohman475871a2008-07-27 21:46:04 +00004774 SDValue Ops[] = { Chain, TGA, InFlag };
Dale Johannesene8d72302009-02-06 23:05:02 +00004775 SDValue Result = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004776 InFlag = Result.getValue(2);
4777 Chain = Result.getValue(1);
4778
4779 // call ___tls_get_addr. This function receives its argument in
4780 // the register EAX.
Dale Johannesendd64c412009-02-04 00:33:20 +00004781 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Result, InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004782 InFlag = Chain.getValue(1);
4783
4784 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00004785 SDValue Ops1[] = { Chain,
Bill Wendling056292f2008-09-16 21:48:12 +00004786 DAG.getTargetExternalSymbol("___tls_get_addr",
4787 PtrVT),
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004788 DAG.getRegister(X86::EAX, PtrVT),
4789 DAG.getRegister(X86::EBX, PtrVT),
4790 InFlag };
Dale Johannesene8d72302009-02-06 23:05:02 +00004791 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops1, 5);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004792 InFlag = Chain.getValue(1);
4793
Dale Johannesendd64c412009-02-04 00:33:20 +00004794 return DAG.getCopyFromReg(Chain, dl, X86::EAX, PtrVT, InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004795}
4796
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004797// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00004798static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004799LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004800 const MVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004801 SDValue InFlag, Chain;
Dale Johannesendd64c412009-02-04 00:33:20 +00004802 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004803
4804 // emit leaq symbol@TLSGD(%rip), %rdi
4805 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00004806 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004807 GA->getValueType(0),
4808 GA->getOffset());
Dan Gohman475871a2008-07-27 21:46:04 +00004809 SDValue Ops[] = { DAG.getEntryNode(), TGA};
Dale Johannesene8d72302009-02-06 23:05:02 +00004810 SDValue Result = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004811 Chain = Result.getValue(1);
4812 InFlag = Result.getValue(2);
4813
Anton Korobeynikovd97f2952008-08-16 12:58:29 +00004814 // call __tls_get_addr. This function receives its argument in
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004815 // the register RDI.
Dale Johannesendd64c412009-02-04 00:33:20 +00004816 Chain = DAG.getCopyToReg(Chain, dl, X86::RDI, Result, InFlag);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004817 InFlag = Chain.getValue(1);
4818
4819 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00004820 SDValue Ops1[] = { Chain,
Bill Wendling056292f2008-09-16 21:48:12 +00004821 DAG.getTargetExternalSymbol("__tls_get_addr",
4822 PtrVT),
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004823 DAG.getRegister(X86::RDI, PtrVT),
4824 InFlag };
Dale Johannesene8d72302009-02-06 23:05:02 +00004825 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops1, 4);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004826 InFlag = Chain.getValue(1);
4827
Dale Johannesendd64c412009-02-04 00:33:20 +00004828 return DAG.getCopyFromReg(Chain, dl, X86::RAX, PtrVT, InFlag);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004829}
4830
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004831// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
4832// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00004833static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00004834 const MVT PtrVT, TLSModel::Model model,
4835 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00004836 DebugLoc dl = GA->getDebugLoc();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004837 // Get the Thread Pointer
Rafael Espindola094fad32009-04-08 21:14:34 +00004838 SDValue Base = DAG.getNode(X86ISD::SegmentBaseAddress,
4839 DebugLoc::getUnknownLoc(), PtrVT,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00004840 DAG.getRegister(is64Bit? X86::FS : X86::GS,
4841 MVT::i32));
Rafael Espindola094fad32009-04-08 21:14:34 +00004842
4843 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Base,
4844 NULL, 0);
4845
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004846 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
4847 // exec)
Dan Gohman475871a2008-07-27 21:46:04 +00004848 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004849 GA->getValueType(0),
4850 GA->getOffset());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004851 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00004852
Rafael Espindola9a580232009-02-27 13:37:18 +00004853 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00004854 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Dan Gohman3069b872008-02-07 18:41:25 +00004855 PseudoSourceValue::getGOT(), 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00004856
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004857 // The address of the thread local variable is the add of the thread
4858 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00004859 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004860}
4861
Dan Gohman475871a2008-07-27 21:46:04 +00004862SDValue
4863X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004864 // TODO: implement the "local dynamic" model
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004865 // TODO: implement the "initial exec"model for pic executables
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004866 assert(Subtarget->isTargetELF() &&
4867 "TLS not implemented for non-ELF targets");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004868 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Rafael Espindola9a580232009-02-27 13:37:18 +00004869 GlobalValue *GV = GA->getGlobal();
4870 TLSModel::Model model =
4871 getTLSModel (GV, getTargetMachine().getRelocationModel());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004872 if (Subtarget->is64Bit()) {
Rafael Espindola9a580232009-02-27 13:37:18 +00004873 switch (model) {
4874 case TLSModel::GeneralDynamic:
4875 case TLSModel::LocalDynamic: // not implemented
Rafael Espindola9a580232009-02-27 13:37:18 +00004876 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00004877
4878 case TLSModel::InitialExec:
4879 case TLSModel::LocalExec:
4880 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model, true);
Rafael Espindola9a580232009-02-27 13:37:18 +00004881 }
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004882 } else {
Rafael Espindola9a580232009-02-27 13:37:18 +00004883 switch (model) {
4884 case TLSModel::GeneralDynamic:
4885 case TLSModel::LocalDynamic: // not implemented
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004886 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Rafael Espindola9a580232009-02-27 13:37:18 +00004887
4888 case TLSModel::InitialExec:
4889 case TLSModel::LocalExec:
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00004890 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model, false);
Rafael Espindola9a580232009-02-27 13:37:18 +00004891 }
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004892 }
Chris Lattner5867de12009-04-01 22:14:45 +00004893 assert(0 && "Unreachable");
4894 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004895}
4896
Dan Gohman475871a2008-07-27 21:46:04 +00004897SDValue
4898X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) {
Dale Johannesende064702009-02-06 21:50:26 +00004899 // FIXME there isn't really any debug info here
4900 DebugLoc dl = Op.getDebugLoc();
Bill Wendling056292f2008-09-16 21:48:12 +00004901 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
4902 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004903 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004904 // With PIC, the address is actually $g + Offset.
4905 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4906 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesende064702009-02-06 21:50:26 +00004907 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Scott Michelfdc40a02009-02-17 22:15:04 +00004908 DAG.getNode(X86ISD::GlobalBaseReg,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004909 DebugLoc::getUnknownLoc(),
4910 getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004911 Result);
4912 }
4913
4914 return Result;
4915}
4916
Dan Gohman475871a2008-07-27 21:46:04 +00004917SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004918 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dale Johannesende064702009-02-06 21:50:26 +00004919 // FIXME there isn't really any debug into here
4920 DebugLoc dl = JT->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004921 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004922 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004923 // With PIC, the address is actually $g + Offset.
4924 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4925 !Subtarget->isPICStyleRIPRel()) {
Dale Johannesende064702009-02-06 21:50:26 +00004926 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004927 DAG.getNode(X86ISD::GlobalBaseReg,
4928 DebugLoc::getUnknownLoc(),
4929 getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004930 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004931 }
4932
4933 return Result;
4934}
4935
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004936/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00004937/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohman475871a2008-07-27 21:46:04 +00004938SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) {
Dan Gohman4c1fa612008-03-03 22:22:09 +00004939 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00004940 MVT VT = Op.getValueType();
4941 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004942 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004943 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00004944 SDValue ShOpLo = Op.getOperand(0);
4945 SDValue ShOpHi = Op.getOperand(1);
4946 SDValue ShAmt = Op.getOperand(2);
4947 SDValue Tmp1 = isSRA ?
Scott Michelfdc40a02009-02-17 22:15:04 +00004948 DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Dale Johannesenace16102009-02-03 19:33:06 +00004949 DAG.getConstant(VTBits - 1, MVT::i8)) :
Dan Gohman4c1fa612008-03-03 22:22:09 +00004950 DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00004951
Dan Gohman475871a2008-07-27 21:46:04 +00004952 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004953 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00004954 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
4955 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004956 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00004957 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
4958 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004959 }
Evan Chenge3413162006-01-09 18:33:28 +00004960
Dale Johannesenace16102009-02-03 19:33:06 +00004961 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
Dan Gohman4c1fa612008-03-03 22:22:09 +00004962 DAG.getConstant(VTBits, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00004963 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, VT,
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004964 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00004965
Dan Gohman475871a2008-07-27 21:46:04 +00004966 SDValue Hi, Lo;
4967 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
4968 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
4969 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00004970
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004971 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00004972 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4973 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004974 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00004975 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4976 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004977 }
4978
Dan Gohman475871a2008-07-27 21:46:04 +00004979 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00004980 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004981}
Evan Chenga3195e82006-01-12 22:54:21 +00004982
Dan Gohman475871a2008-07-27 21:46:04 +00004983SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004984 MVT SrcVT = Op.getOperand(0).getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00004985 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00004986 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00004987
Chris Lattnerb09916b2008-02-27 05:57:41 +00004988 // These are really Legal; caller falls through into that case.
4989 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00004990 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00004991 if (SrcVT == MVT::i64 && Op.getValueType() != MVT::f80 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00004992 Subtarget->is64Bit())
Dan Gohman475871a2008-07-27 21:46:04 +00004993 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00004994
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004995 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004996 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004997 MachineFunction &MF = DAG.getMachineFunction();
4998 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
Dan Gohman475871a2008-07-27 21:46:04 +00004999 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00005000 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00005001 StackSlot,
5002 PseudoSourceValue::getFixedStack(SSFI), 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005003
5004 // Build the FILD
Chris Lattner5a88b832007-02-25 07:10:00 +00005005 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00005006 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005007 if (useSSE)
Chris Lattner5a88b832007-02-25 07:10:00 +00005008 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
5009 else
Dale Johannesen849f2142007-07-03 00:53:03 +00005010 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00005011 SmallVector<SDValue, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005012 Ops.push_back(Chain);
5013 Ops.push_back(StackSlot);
5014 Ops.push_back(DAG.getValueType(SrcVT));
Dale Johannesenace16102009-02-03 19:33:06 +00005015 SDValue Result = DAG.getNode(useSSE ? X86ISD::FILD_FLAG : X86ISD::FILD, dl,
Chris Lattnerb09916b2008-02-27 05:57:41 +00005016 Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005017
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005018 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005019 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00005020 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005021
5022 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
5023 // shouldn't be necessary except that RFP cannot be live across
5024 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00005025 MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005026 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
Dan Gohman475871a2008-07-27 21:46:04 +00005027 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Chris Lattner5a88b832007-02-25 07:10:00 +00005028 Tys = DAG.getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00005029 SmallVector<SDValue, 8> Ops;
Evan Chenga3195e82006-01-12 22:54:21 +00005030 Ops.push_back(Chain);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005031 Ops.push_back(Result);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00005032 Ops.push_back(StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005033 Ops.push_back(DAG.getValueType(Op.getValueType()));
5034 Ops.push_back(InFlag);
Dale Johannesenace16102009-02-03 19:33:06 +00005035 Chain = DAG.getNode(X86ISD::FST, dl, Tys, &Ops[0], Ops.size());
5036 Result = DAG.getLoad(Op.getValueType(), dl, Chain, StackSlot,
Dan Gohmana54cf172008-07-11 22:44:52 +00005037 PseudoSourceValue::getFixedStack(SSFI), 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00005038 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00005039
Evan Cheng0db9fe62006-04-25 20:13:52 +00005040 return Result;
5041}
5042
Bill Wendling8b8a6362009-01-17 03:56:04 +00005043// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
5044SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op, SelectionDAG &DAG) {
5045 // This algorithm is not obvious. Here it is in C code, more or less:
5046 /*
5047 double uint64_to_double( uint32_t hi, uint32_t lo ) {
5048 static const __m128i exp = { 0x4330000045300000ULL, 0 };
5049 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00005050
Bill Wendling8b8a6362009-01-17 03:56:04 +00005051 // Copy ints to xmm registers.
5052 __m128i xh = _mm_cvtsi32_si128( hi );
5053 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00005054
Bill Wendling8b8a6362009-01-17 03:56:04 +00005055 // Combine into low half of a single xmm register.
5056 __m128i x = _mm_unpacklo_epi32( xh, xl );
5057 __m128d d;
5058 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00005059
Bill Wendling8b8a6362009-01-17 03:56:04 +00005060 // Merge in appropriate exponents to give the integer bits the right
5061 // magnitude.
5062 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00005063
Bill Wendling8b8a6362009-01-17 03:56:04 +00005064 // Subtract away the biases to deal with the IEEE-754 double precision
5065 // implicit 1.
5066 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00005067
Bill Wendling8b8a6362009-01-17 03:56:04 +00005068 // All conversions up to here are exact. The correctly rounded result is
5069 // calculated using the current rounding mode using the following
5070 // horizontal add.
5071 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
5072 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
5073 // store doesn't really need to be here (except
5074 // maybe to zero the other double)
5075 return sd;
5076 }
5077 */
Dale Johannesen040225f2008-10-21 23:07:49 +00005078
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005079 DebugLoc dl = Op.getDebugLoc();
Dale Johannesenace16102009-02-03 19:33:06 +00005080
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005081 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00005082 std::vector<Constant*> CV0;
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005083 CV0.push_back(ConstantInt::get(APInt(32, 0x45300000)));
5084 CV0.push_back(ConstantInt::get(APInt(32, 0x43300000)));
5085 CV0.push_back(ConstantInt::get(APInt(32, 0)));
5086 CV0.push_back(ConstantInt::get(APInt(32, 0)));
5087 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00005088 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005089
Bill Wendling8b8a6362009-01-17 03:56:04 +00005090 std::vector<Constant*> CV1;
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005091 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4530000000000000ULL))));
5092 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4330000000000000ULL))));
5093 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00005094 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005095
5096 SmallVector<SDValue, 4> MaskVec;
5097 MaskVec.push_back(DAG.getConstant(0, MVT::i32));
5098 MaskVec.push_back(DAG.getConstant(4, MVT::i32));
5099 MaskVec.push_back(DAG.getConstant(1, MVT::i32));
5100 MaskVec.push_back(DAG.getConstant(5, MVT::i32));
Evan Chenga87008d2009-02-25 22:49:59 +00005101 SDValue UnpcklMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
5102 &MaskVec[0], MaskVec.size());
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005103 SmallVector<SDValue, 4> MaskVec2;
Duncan Sands6b6aeb32008-10-22 11:24:12 +00005104 MaskVec2.push_back(DAG.getConstant(1, MVT::i32));
5105 MaskVec2.push_back(DAG.getConstant(0, MVT::i32));
Evan Chenga87008d2009-02-25 22:49:59 +00005106 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32,
5107 &MaskVec2[0], MaskVec2.size());
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005108
Dale Johannesenace16102009-02-03 19:33:06 +00005109 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5110 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00005111 Op.getOperand(0),
5112 DAG.getIntPtrConstant(1)));
Dale Johannesenace16102009-02-03 19:33:06 +00005113 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5114 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00005115 Op.getOperand(0),
5116 DAG.getIntPtrConstant(0)));
Dale Johannesenace16102009-02-03 19:33:06 +00005117 SDValue Unpck1 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v4i32,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005118 XR1, XR2, UnpcklMask);
Dale Johannesenace16102009-02-03 19:33:06 +00005119 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Bill Wendling8b8a6362009-01-17 03:56:04 +00005120 PseudoSourceValue::getConstantPool(), 0,
5121 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005122 SDValue Unpck2 = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v4i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00005123 Unpck1, CLod0, UnpcklMask);
Dale Johannesenace16102009-02-03 19:33:06 +00005124 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2);
5125 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Bill Wendling8b8a6362009-01-17 03:56:04 +00005126 PseudoSourceValue::getConstantPool(), 0,
5127 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005128 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00005129
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005130 // Add the halves; easiest way is to swap them into another reg first.
Dale Johannesenace16102009-02-03 19:33:06 +00005131 SDValue Shuf = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, MVT::v2f64,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005132 Sub, Sub, ShufMask);
Dale Johannesenace16102009-02-03 19:33:06 +00005133 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
5134 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005135 DAG.getIntPtrConstant(0));
5136}
5137
Bill Wendling8b8a6362009-01-17 03:56:04 +00005138// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
5139SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005140 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00005141 // FP constant to bias correct the final result.
5142 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
5143 MVT::f64);
5144
5145 // Load the 32-bit value into an XMM register.
Dale Johannesenace16102009-02-03 19:33:06 +00005146 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5147 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00005148 Op.getOperand(0),
5149 DAG.getIntPtrConstant(0)));
5150
Dale Johannesenace16102009-02-03 19:33:06 +00005151 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
5152 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00005153 DAG.getIntPtrConstant(0));
5154
5155 // Or the load with the bias.
Dale Johannesenace16102009-02-03 19:33:06 +00005156 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
5157 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
5158 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Cheng50c3dfe2009-01-19 08:19:57 +00005159 MVT::v2f64, Load)),
Dale Johannesenace16102009-02-03 19:33:06 +00005160 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
5161 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Evan Cheng50c3dfe2009-01-19 08:19:57 +00005162 MVT::v2f64, Bias)));
Dale Johannesenace16102009-02-03 19:33:06 +00005163 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
5164 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00005165 DAG.getIntPtrConstant(0));
5166
5167 // Subtract the bias.
Dale Johannesenace16102009-02-03 19:33:06 +00005168 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00005169
5170 // Handle final rounding.
Bill Wendling030939c2009-01-17 07:40:19 +00005171 MVT DestVT = Op.getValueType();
5172
5173 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00005174 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00005175 DAG.getIntPtrConstant(0));
5176 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00005177 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00005178 }
5179
5180 // Handle final rounding.
5181 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00005182}
5183
5184SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Evan Chenga06ec9e2009-01-19 08:08:22 +00005185 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005186 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00005187
Evan Chenga06ec9e2009-01-19 08:08:22 +00005188 // Now not UINT_TO_FP is legal (it's marked custom), dag combiner won't
5189 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
5190 // the optimization here.
5191 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00005192 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00005193
5194 MVT SrcVT = N0.getValueType();
Bill Wendling8b8a6362009-01-17 03:56:04 +00005195 if (SrcVT == MVT::i64) {
5196 // We only handle SSE2 f64 target here; caller can handle the rest.
5197 if (Op.getValueType() != MVT::f64 || !X86ScalarSSEf64)
5198 return SDValue();
Bill Wendling030939c2009-01-17 07:40:19 +00005199
Bill Wendling8b8a6362009-01-17 03:56:04 +00005200 return LowerUINT_TO_FP_i64(Op, DAG);
5201 } else if (SrcVT == MVT::i32) {
Bill Wendling8b8a6362009-01-17 03:56:04 +00005202 return LowerUINT_TO_FP_i32(Op, DAG);
5203 }
5204
5205 assert(0 && "Unknown UINT_TO_FP to lower!");
5206 return SDValue();
5207}
5208
Dan Gohman475871a2008-07-27 21:46:04 +00005209std::pair<SDValue,SDValue> X86TargetLowering::
5210FP_TO_SINTHelper(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005211 DebugLoc dl = Op.getDebugLoc();
Duncan Sands8e4eb092008-06-08 20:54:56 +00005212 assert(Op.getValueType().getSimpleVT() <= MVT::i64 &&
5213 Op.getValueType().getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00005214 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00005215
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005216 // These are really Legal.
Scott Michelfdc40a02009-02-17 22:15:04 +00005217 if (Op.getValueType() == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00005218 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00005219 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00005220 if (Subtarget->is64Bit() &&
5221 Op.getValueType() == MVT::i64 &&
5222 Op.getOperand(0).getValueType() != MVT::f80)
Dan Gohman475871a2008-07-27 21:46:04 +00005223 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005224
Evan Cheng87c89352007-10-15 20:11:21 +00005225 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
5226 // stack slot.
5227 MachineFunction &MF = DAG.getMachineFunction();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005228 unsigned MemSize = Op.getValueType().getSizeInBits()/8;
Evan Cheng87c89352007-10-15 20:11:21 +00005229 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
Dan Gohman475871a2008-07-27 21:46:04 +00005230 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005231 unsigned Opc;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005232 switch (Op.getValueType().getSimpleVT()) {
Chris Lattner27a6c732007-11-24 07:07:01 +00005233 default: assert(0 && "Invalid FP_TO_SINT to lower!");
5234 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
5235 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
5236 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005237 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00005238
Dan Gohman475871a2008-07-27 21:46:04 +00005239 SDValue Chain = DAG.getEntryNode();
5240 SDValue Value = Op.getOperand(0);
Chris Lattner78631162008-01-16 06:24:21 +00005241 if (isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005242 assert(Op.getValueType() == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Dale Johannesenace16102009-02-03 19:33:06 +00005243 Chain = DAG.getStore(Chain, dl, Value, StackSlot,
Dan Gohmana54cf172008-07-11 22:44:52 +00005244 PseudoSourceValue::getFixedStack(SSFI), 0);
Dale Johannesen849f2142007-07-03 00:53:03 +00005245 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00005246 SDValue Ops[] = {
Chris Lattner5a88b832007-02-25 07:10:00 +00005247 Chain, StackSlot, DAG.getValueType(Op.getOperand(0).getValueType())
5248 };
Dale Johannesenace16102009-02-03 19:33:06 +00005249 Value = DAG.getNode(X86ISD::FLD, dl, Tys, Ops, 3);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005250 Chain = Value.getValue(1);
5251 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
5252 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
5253 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00005254
Evan Cheng0db9fe62006-04-25 20:13:52 +00005255 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00005256 SDValue Ops[] = { Chain, Value, StackSlot };
Dale Johannesenace16102009-02-03 19:33:06 +00005257 SDValue FIST = DAG.getNode(Opc, dl, MVT::Other, Ops, 3);
Evan Chengd9558e02006-01-06 00:43:03 +00005258
Chris Lattner27a6c732007-11-24 07:07:01 +00005259 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005260}
5261
Dan Gohman475871a2008-07-27 21:46:04 +00005262SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) {
5263 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(Op, DAG);
5264 SDValue FIST = Vals.first, StackSlot = Vals.second;
Gabor Greifba36cb52008-08-28 21:40:38 +00005265 if (FIST.getNode() == 0) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00005266
Chris Lattner27a6c732007-11-24 07:07:01 +00005267 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005268 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Dale Johannesenace16102009-02-03 19:33:06 +00005269 FIST, StackSlot, NULL, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00005270}
5271
Dan Gohman475871a2008-07-27 21:46:04 +00005272SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005273 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005274 MVT VT = Op.getValueType();
5275 MVT EltVT = VT;
5276 if (VT.isVector())
5277 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005278 std::vector<Constant*> CV;
Dan Gohman20382522007-07-10 00:05:58 +00005279 if (EltVT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00005280 Constant *C = ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00005281 CV.push_back(C);
5282 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005283 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00005284 Constant *C = ConstantFP::get(APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00005285 CV.push_back(C);
5286 CV.push_back(C);
5287 CV.push_back(C);
5288 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005289 }
Dan Gohmand3006222007-07-27 17:16:43 +00005290 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00005291 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005292 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005293 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00005294 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005295 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005296}
5297
Dan Gohman475871a2008-07-27 21:46:04 +00005298SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005299 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005300 MVT VT = Op.getValueType();
5301 MVT EltVT = VT;
Evan Chengd4d01b72007-07-19 23:36:01 +00005302 unsigned EltNum = 1;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005303 if (VT.isVector()) {
5304 EltVT = VT.getVectorElementType();
5305 EltNum = VT.getVectorNumElements();
Evan Chengd4d01b72007-07-19 23:36:01 +00005306 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005307 std::vector<Constant*> CV;
Dan Gohman20382522007-07-10 00:05:58 +00005308 if (EltVT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00005309 Constant *C = ConstantFP::get(APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00005310 CV.push_back(C);
5311 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005312 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00005313 Constant *C = ConstantFP::get(APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00005314 CV.push_back(C);
5315 CV.push_back(C);
5316 CV.push_back(C);
5317 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005318 }
Dan Gohmand3006222007-07-27 17:16:43 +00005319 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00005320 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005321 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005322 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00005323 false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005324 if (VT.isVector()) {
Dale Johannesenace16102009-02-03 19:33:06 +00005325 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
5326 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Scott Michelfdc40a02009-02-17 22:15:04 +00005327 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00005328 Op.getOperand(0)),
5329 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00005330 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00005331 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00005332 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005333}
5334
Dan Gohman475871a2008-07-27 21:46:04 +00005335SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
5336 SDValue Op0 = Op.getOperand(0);
5337 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005338 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005339 MVT VT = Op.getValueType();
5340 MVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00005341
5342 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00005343 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00005344 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00005345 SrcVT = VT;
5346 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00005347 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00005348 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00005349 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00005350 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00005351 }
5352
5353 // At this point the operands and the result should have the same
5354 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00005355
Evan Cheng68c47cb2007-01-05 07:55:56 +00005356 // First get the sign bit of second operand.
5357 std::vector<Constant*> CV;
5358 if (SrcVT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00005359 CV.push_back(ConstantFP::get(APFloat(APInt(64, 1ULL << 63))));
5360 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00005361 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00005362 CV.push_back(ConstantFP::get(APFloat(APInt(32, 1U << 31))));
5363 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5364 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5365 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00005366 }
Dan Gohmand3006222007-07-27 17:16:43 +00005367 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00005368 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005369 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005370 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00005371 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005372 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00005373
5374 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00005375 if (SrcVT.bitsGT(VT)) {
Evan Cheng68c47cb2007-01-05 07:55:56 +00005376 // Op0 is MVT::f32, Op1 is MVT::f64.
Dale Johannesenace16102009-02-03 19:33:06 +00005377 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
5378 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
Evan Cheng68c47cb2007-01-05 07:55:56 +00005379 DAG.getConstant(32, MVT::i32));
Dale Johannesenace16102009-02-03 19:33:06 +00005380 SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit);
5381 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00005382 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00005383 }
5384
Evan Cheng73d6cf12007-01-05 21:37:56 +00005385 // Clear first operand sign bit.
5386 CV.clear();
5387 if (VT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00005388 CV.push_back(ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63)))));
5389 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00005390 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00005391 CV.push_back(ConstantFP::get(APFloat(APInt(32, ~(1U << 31)))));
5392 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5393 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5394 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00005395 }
Dan Gohmand3006222007-07-27 17:16:43 +00005396 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00005397 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005398 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005399 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00005400 false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00005401 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00005402
5403 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00005404 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00005405}
5406
Dan Gohman076aee32009-03-04 19:44:21 +00005407/// Emit nodes that will be selected as "test Op0,Op0", or something
5408/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00005409SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
5410 SelectionDAG &DAG) {
Dan Gohman076aee32009-03-04 19:44:21 +00005411 DebugLoc dl = Op.getDebugLoc();
5412
Dan Gohman31125812009-03-07 01:58:32 +00005413 // CF and OF aren't always set the way we want. Determine which
5414 // of these we need.
5415 bool NeedCF = false;
5416 bool NeedOF = false;
5417 switch (X86CC) {
5418 case X86::COND_A: case X86::COND_AE:
5419 case X86::COND_B: case X86::COND_BE:
5420 NeedCF = true;
5421 break;
5422 case X86::COND_G: case X86::COND_GE:
5423 case X86::COND_L: case X86::COND_LE:
5424 case X86::COND_O: case X86::COND_NO:
5425 NeedOF = true;
5426 break;
5427 default: break;
5428 }
5429
Dan Gohman076aee32009-03-04 19:44:21 +00005430 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00005431 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
5432 // we prove that the arithmetic won't overflow, we can't use OF or CF.
5433 if (Op.getResNo() == 0 && !NeedOF && !NeedCF) {
Dan Gohman076aee32009-03-04 19:44:21 +00005434 unsigned Opcode = 0;
Dan Gohman51bb4742009-03-05 21:29:28 +00005435 unsigned NumOperands = 0;
Dan Gohman076aee32009-03-04 19:44:21 +00005436 switch (Op.getNode()->getOpcode()) {
5437 case ISD::ADD:
5438 // Due to an isel shortcoming, be conservative if this add is likely to
5439 // be selected as part of a load-modify-store instruction. When the root
5440 // node in a match is a store, isel doesn't know how to remap non-chain
5441 // non-flag uses of other nodes in the match, such as the ADD in this
5442 // case. This leads to the ADD being left around and reselected, with
5443 // the result being two adds in the output.
5444 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
5445 UE = Op.getNode()->use_end(); UI != UE; ++UI)
5446 if (UI->getOpcode() == ISD::STORE)
5447 goto default_case;
Dan Gohman076aee32009-03-04 19:44:21 +00005448 if (ConstantSDNode *C =
Dan Gohman4bfcf2a2009-03-05 19:32:48 +00005449 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
5450 // An add of one will be selected as an INC.
Dan Gohman076aee32009-03-04 19:44:21 +00005451 if (C->getAPIntValue() == 1) {
5452 Opcode = X86ISD::INC;
Dan Gohman51bb4742009-03-05 21:29:28 +00005453 NumOperands = 1;
Dan Gohman076aee32009-03-04 19:44:21 +00005454 break;
5455 }
Dan Gohman4bfcf2a2009-03-05 19:32:48 +00005456 // An add of negative one (subtract of one) will be selected as a DEC.
5457 if (C->getAPIntValue().isAllOnesValue()) {
5458 Opcode = X86ISD::DEC;
Dan Gohman51bb4742009-03-05 21:29:28 +00005459 NumOperands = 1;
Dan Gohman4bfcf2a2009-03-05 19:32:48 +00005460 break;
5461 }
5462 }
Dan Gohman076aee32009-03-04 19:44:21 +00005463 // Otherwise use a regular EFLAGS-setting add.
5464 Opcode = X86ISD::ADD;
Dan Gohman51bb4742009-03-05 21:29:28 +00005465 NumOperands = 2;
Dan Gohman076aee32009-03-04 19:44:21 +00005466 break;
5467 case ISD::SUB:
5468 // Due to the ISEL shortcoming noted above, be conservative if this sub is
5469 // likely to be selected as part of a load-modify-store instruction.
5470 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
5471 UE = Op.getNode()->use_end(); UI != UE; ++UI)
5472 if (UI->getOpcode() == ISD::STORE)
5473 goto default_case;
Dan Gohman076aee32009-03-04 19:44:21 +00005474 // Otherwise use a regular EFLAGS-setting sub.
5475 Opcode = X86ISD::SUB;
Dan Gohman51bb4742009-03-05 21:29:28 +00005476 NumOperands = 2;
Dan Gohman076aee32009-03-04 19:44:21 +00005477 break;
5478 case X86ISD::ADD:
5479 case X86ISD::SUB:
5480 case X86ISD::INC:
5481 case X86ISD::DEC:
5482 return SDValue(Op.getNode(), 1);
5483 default:
5484 default_case:
5485 break;
5486 }
5487 if (Opcode != 0) {
Dan Gohmanfc166572009-04-09 23:54:40 +00005488 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
Dan Gohman076aee32009-03-04 19:44:21 +00005489 SmallVector<SDValue, 4> Ops;
Dan Gohman31125812009-03-07 01:58:32 +00005490 for (unsigned i = 0; i != NumOperands; ++i)
Dan Gohman076aee32009-03-04 19:44:21 +00005491 Ops.push_back(Op.getOperand(i));
Dan Gohmanfc166572009-04-09 23:54:40 +00005492 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
Dan Gohman076aee32009-03-04 19:44:21 +00005493 DAG.ReplaceAllUsesWith(Op, New);
5494 return SDValue(New.getNode(), 1);
5495 }
5496 }
5497
5498 // Otherwise just emit a CMP with 0, which is the TEST pattern.
5499 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
5500 DAG.getConstant(0, Op.getValueType()));
5501}
5502
5503/// Emit nodes that will be selected as "cmp Op0,Op1", or something
5504/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00005505SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
5506 SelectionDAG &DAG) {
Dan Gohman076aee32009-03-04 19:44:21 +00005507 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
5508 if (C->getAPIntValue() == 0)
Dan Gohman31125812009-03-07 01:58:32 +00005509 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00005510
5511 DebugLoc dl = Op0.getDebugLoc();
5512 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
5513}
5514
Dan Gohman475871a2008-07-27 21:46:04 +00005515SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0488db92007-09-25 01:57:46 +00005516 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
Dan Gohman475871a2008-07-27 21:46:04 +00005517 SDValue Op0 = Op.getOperand(0);
5518 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005519 DebugLoc dl = Op.getDebugLoc();
Chris Lattnere55484e2008-12-25 05:34:37 +00005520 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00005521
Dan Gohmane5af2d32009-01-29 01:59:02 +00005522 // Lower (X & (1 << N)) == 0 to BT(X, N).
5523 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
5524 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Dan Gohman286575c2009-01-13 23:25:30 +00005525 if (Op0.getOpcode() == ISD::AND &&
5526 Op0.hasOneUse() &&
5527 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane5af2d32009-01-29 01:59:02 +00005528 cast<ConstantSDNode>(Op1)->getZExtValue() == 0 &&
Chris Lattnere55484e2008-12-25 05:34:37 +00005529 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Dan Gohmane5af2d32009-01-29 01:59:02 +00005530 SDValue LHS, RHS;
5531 if (Op0.getOperand(1).getOpcode() == ISD::SHL) {
5532 if (ConstantSDNode *Op010C =
5533 dyn_cast<ConstantSDNode>(Op0.getOperand(1).getOperand(0)))
5534 if (Op010C->getZExtValue() == 1) {
5535 LHS = Op0.getOperand(0);
5536 RHS = Op0.getOperand(1).getOperand(1);
5537 }
5538 } else if (Op0.getOperand(0).getOpcode() == ISD::SHL) {
5539 if (ConstantSDNode *Op000C =
5540 dyn_cast<ConstantSDNode>(Op0.getOperand(0).getOperand(0)))
5541 if (Op000C->getZExtValue() == 1) {
5542 LHS = Op0.getOperand(1);
5543 RHS = Op0.getOperand(0).getOperand(1);
5544 }
5545 } else if (Op0.getOperand(1).getOpcode() == ISD::Constant) {
5546 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op0.getOperand(1));
5547 SDValue AndLHS = Op0.getOperand(0);
5548 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
5549 LHS = AndLHS.getOperand(0);
5550 RHS = AndLHS.getOperand(1);
5551 }
5552 }
Evan Cheng0488db92007-09-25 01:57:46 +00005553
Dan Gohmane5af2d32009-01-29 01:59:02 +00005554 if (LHS.getNode()) {
Chris Lattnere55484e2008-12-25 05:34:37 +00005555 // If LHS is i8, promote it to i16 with any_extend. There is no i8 BT
5556 // instruction. Since the shift amount is in-range-or-undefined, we know
5557 // that doing a bittest on the i16 value is ok. We extend to i32 because
5558 // the encoding for the i16 version is larger than the i32 version.
5559 if (LHS.getValueType() == MVT::i8)
Dale Johannesenace16102009-02-03 19:33:06 +00005560 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00005561
5562 // If the operand types disagree, extend the shift amount to match. Since
5563 // BT ignores high bits (like shifts) we can use anyextend.
5564 if (LHS.getValueType() != RHS.getValueType())
Dale Johannesenace16102009-02-03 19:33:06 +00005565 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00005566
Dale Johannesenace16102009-02-03 19:33:06 +00005567 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Dan Gohman653456c2009-01-07 00:15:08 +00005568 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Dale Johannesenace16102009-02-03 19:33:06 +00005569 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnere55484e2008-12-25 05:34:37 +00005570 DAG.getConstant(Cond, MVT::i8), BT);
5571 }
5572 }
5573
5574 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
5575 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005576
Dan Gohman31125812009-03-07 01:58:32 +00005577 SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
Dale Johannesenace16102009-02-03 19:33:06 +00005578 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattner43287082008-12-24 00:11:37 +00005579 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00005580}
5581
Dan Gohman475871a2008-07-27 21:46:04 +00005582SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
5583 SDValue Cond;
5584 SDValue Op0 = Op.getOperand(0);
5585 SDValue Op1 = Op.getOperand(1);
5586 SDValue CC = Op.getOperand(2);
Nate Begeman30a0de92008-07-17 16:51:19 +00005587 MVT VT = Op.getValueType();
5588 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
5589 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005590 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00005591
5592 if (isFP) {
5593 unsigned SSECC = 8;
Evan Chenge9d50352008-08-05 22:19:15 +00005594 MVT VT0 = Op0.getValueType();
5595 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
5596 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00005597 bool Swap = false;
5598
5599 switch (SetCCOpcode) {
5600 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00005601 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00005602 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00005603 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00005604 case ISD::SETGT: Swap = true; // Fallthrough
5605 case ISD::SETLT:
5606 case ISD::SETOLT: SSECC = 1; break;
5607 case ISD::SETOGE:
5608 case ISD::SETGE: Swap = true; // Fallthrough
5609 case ISD::SETLE:
5610 case ISD::SETOLE: SSECC = 2; break;
5611 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00005612 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00005613 case ISD::SETNE: SSECC = 4; break;
5614 case ISD::SETULE: Swap = true;
5615 case ISD::SETUGE: SSECC = 5; break;
5616 case ISD::SETULT: Swap = true;
5617 case ISD::SETUGT: SSECC = 6; break;
5618 case ISD::SETO: SSECC = 7; break;
5619 }
5620 if (Swap)
5621 std::swap(Op0, Op1);
5622
Nate Begemanfb8ead02008-07-25 19:05:58 +00005623 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00005624 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00005625 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00005626 SDValue UNORD, EQ;
Dale Johannesenace16102009-02-03 19:33:06 +00005627 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
5628 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
5629 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00005630 }
5631 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00005632 SDValue ORD, NEQ;
Dale Johannesenace16102009-02-03 19:33:06 +00005633 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
5634 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
5635 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00005636 }
5637 assert(0 && "Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00005638 }
5639 // Handle all other FP comparisons here.
Dale Johannesenace16102009-02-03 19:33:06 +00005640 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00005641 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005642
Nate Begeman30a0de92008-07-17 16:51:19 +00005643 // We are handling one of the integer comparisons here. Since SSE only has
5644 // GT and EQ comparisons for integer, swapping operands and multiple
5645 // operations may be required for some comparisons.
5646 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
5647 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005648
Nate Begeman30a0de92008-07-17 16:51:19 +00005649 switch (VT.getSimpleVT()) {
5650 default: break;
5651 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
5652 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
5653 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
5654 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
5655 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005656
Nate Begeman30a0de92008-07-17 16:51:19 +00005657 switch (SetCCOpcode) {
5658 default: break;
5659 case ISD::SETNE: Invert = true;
5660 case ISD::SETEQ: Opc = EQOpc; break;
5661 case ISD::SETLT: Swap = true;
5662 case ISD::SETGT: Opc = GTOpc; break;
5663 case ISD::SETGE: Swap = true;
5664 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
5665 case ISD::SETULT: Swap = true;
5666 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
5667 case ISD::SETUGE: Swap = true;
5668 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
5669 }
5670 if (Swap)
5671 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005672
Nate Begeman30a0de92008-07-17 16:51:19 +00005673 // Since SSE has no unsigned integer comparisons, we need to flip the sign
5674 // bits of the inputs before performing those operations.
5675 if (FlipSigns) {
5676 MVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00005677 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
5678 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00005679 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00005680 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
5681 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00005682 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
5683 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00005684 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005685
Dale Johannesenace16102009-02-03 19:33:06 +00005686 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00005687
5688 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00005689 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00005690 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00005691
Nate Begeman30a0de92008-07-17 16:51:19 +00005692 return Result;
5693}
Evan Cheng0488db92007-09-25 01:57:46 +00005694
Evan Cheng370e5342008-12-03 08:38:43 +00005695// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00005696static bool isX86LogicalCmp(SDValue Op) {
5697 unsigned Opc = Op.getNode()->getOpcode();
5698 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
5699 return true;
5700 if (Op.getResNo() == 1 &&
5701 (Opc == X86ISD::ADD ||
5702 Opc == X86ISD::SUB ||
5703 Opc == X86ISD::SMUL ||
5704 Opc == X86ISD::UMUL ||
5705 Opc == X86ISD::INC ||
5706 Opc == X86ISD::DEC))
5707 return true;
5708
5709 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00005710}
5711
Dan Gohman475871a2008-07-27 21:46:04 +00005712SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) {
Evan Cheng734503b2006-09-11 02:19:56 +00005713 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005714 SDValue Cond = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005715 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005716 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00005717
Evan Cheng734503b2006-09-11 02:19:56 +00005718 if (Cond.getOpcode() == ISD::SETCC)
Evan Chenge5f62042007-09-29 00:00:36 +00005719 Cond = LowerSETCC(Cond, DAG);
Evan Cheng734503b2006-09-11 02:19:56 +00005720
Evan Cheng3f41d662007-10-08 22:16:29 +00005721 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5722 // setting operand in place of the X86ISD::SETCC.
Evan Cheng734503b2006-09-11 02:19:56 +00005723 if (Cond.getOpcode() == X86ISD::SETCC) {
5724 CC = Cond.getOperand(0);
5725
Dan Gohman475871a2008-07-27 21:46:04 +00005726 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00005727 unsigned Opc = Cmp.getOpcode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005728 MVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005729
Evan Cheng3f41d662007-10-08 22:16:29 +00005730 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005731 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00005732 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00005733 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00005734
Chris Lattnerd1980a52009-03-12 06:52:53 +00005735 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
5736 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00005737 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00005738 addTest = false;
5739 }
5740 }
5741
5742 if (addTest) {
5743 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman31125812009-03-07 01:58:32 +00005744 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00005745 }
5746
Dan Gohmanfc166572009-04-09 23:54:40 +00005747 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005748 SmallVector<SDValue, 4> Ops;
Evan Cheng0488db92007-09-25 01:57:46 +00005749 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
5750 // condition is true.
5751 Ops.push_back(Op.getOperand(2));
5752 Ops.push_back(Op.getOperand(1));
5753 Ops.push_back(CC);
5754 Ops.push_back(Cond);
Dan Gohmanfc166572009-04-09 23:54:40 +00005755 return DAG.getNode(X86ISD::CMOV, dl, VTs, &Ops[0], Ops.size());
Evan Cheng0488db92007-09-25 01:57:46 +00005756}
5757
Evan Cheng370e5342008-12-03 08:38:43 +00005758// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
5759// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
5760// from the AND / OR.
5761static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
5762 Opc = Op.getOpcode();
5763 if (Opc != ISD::OR && Opc != ISD::AND)
5764 return false;
5765 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5766 Op.getOperand(0).hasOneUse() &&
5767 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
5768 Op.getOperand(1).hasOneUse());
5769}
5770
Evan Cheng961d6d42009-02-02 08:19:07 +00005771// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
5772// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00005773static bool isXor1OfSetCC(SDValue Op) {
5774 if (Op.getOpcode() != ISD::XOR)
5775 return false;
5776 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
5777 if (N1C && N1C->getAPIntValue() == 1) {
5778 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5779 Op.getOperand(0).hasOneUse();
5780 }
5781 return false;
5782}
5783
Dan Gohman475871a2008-07-27 21:46:04 +00005784SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) {
Evan Cheng734503b2006-09-11 02:19:56 +00005785 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005786 SDValue Chain = Op.getOperand(0);
5787 SDValue Cond = Op.getOperand(1);
5788 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005789 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005790 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00005791
Evan Cheng0db9fe62006-04-25 20:13:52 +00005792 if (Cond.getOpcode() == ISD::SETCC)
Evan Chenge5f62042007-09-29 00:00:36 +00005793 Cond = LowerSETCC(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00005794#if 0
5795 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00005796 else if (Cond.getOpcode() == X86ISD::ADD ||
5797 Cond.getOpcode() == X86ISD::SUB ||
5798 Cond.getOpcode() == X86ISD::SMUL ||
5799 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00005800 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00005801#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00005802
Evan Cheng3f41d662007-10-08 22:16:29 +00005803 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5804 // setting operand in place of the X86ISD::SETCC.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005805 if (Cond.getOpcode() == X86ISD::SETCC) {
Evan Cheng734503b2006-09-11 02:19:56 +00005806 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005807
Dan Gohman475871a2008-07-27 21:46:04 +00005808 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00005809 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00005810 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00005811 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00005812 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00005813 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00005814 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00005815 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00005816 default: break;
5817 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00005818 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00005819 // These can only come from an arithmetic instruction with overflow,
5820 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00005821 Cond = Cond.getNode()->getOperand(1);
5822 addTest = false;
5823 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00005824 }
Evan Cheng0488db92007-09-25 01:57:46 +00005825 }
Evan Cheng370e5342008-12-03 08:38:43 +00005826 } else {
5827 unsigned CondOpc;
5828 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
5829 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00005830 if (CondOpc == ISD::OR) {
5831 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
5832 // two branches instead of an explicit OR instruction with a
5833 // separate test.
5834 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00005835 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00005836 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00005837 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00005838 Chain, Dest, CC, Cmp);
5839 CC = Cond.getOperand(1).getOperand(0);
5840 Cond = Cmp;
5841 addTest = false;
5842 }
5843 } else { // ISD::AND
5844 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
5845 // two branches instead of an explicit AND instruction with a
5846 // separate test. However, we only do this if this block doesn't
5847 // have a fall-through edge, because this requires an explicit
5848 // jmp when the condition is false.
5849 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00005850 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00005851 Op.getNode()->hasOneUse()) {
5852 X86::CondCode CCode =
5853 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5854 CCode = X86::GetOppositeBranchCondition(CCode);
5855 CC = DAG.getConstant(CCode, MVT::i8);
5856 SDValue User = SDValue(*Op.getNode()->use_begin(), 0);
5857 // Look for an unconditional branch following this conditional branch.
5858 // We need this because we need to reverse the successors in order
5859 // to implement FCMP_OEQ.
5860 if (User.getOpcode() == ISD::BR) {
5861 SDValue FalseBB = User.getOperand(1);
5862 SDValue NewBR =
5863 DAG.UpdateNodeOperands(User, User.getOperand(0), Dest);
5864 assert(NewBR == User);
5865 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00005866
Dale Johannesene4d209d2009-02-03 20:21:25 +00005867 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00005868 Chain, Dest, CC, Cmp);
5869 X86::CondCode CCode =
5870 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
5871 CCode = X86::GetOppositeBranchCondition(CCode);
5872 CC = DAG.getConstant(CCode, MVT::i8);
5873 Cond = Cmp;
5874 addTest = false;
5875 }
5876 }
Dan Gohman279c22e2008-10-21 03:29:32 +00005877 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00005878 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
5879 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
5880 // It should be transformed during dag combiner except when the condition
5881 // is set by a arithmetics with overflow node.
5882 X86::CondCode CCode =
5883 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5884 CCode = X86::GetOppositeBranchCondition(CCode);
5885 CC = DAG.getConstant(CCode, MVT::i8);
5886 Cond = Cond.getOperand(0).getOperand(1);
5887 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00005888 }
Evan Cheng0488db92007-09-25 01:57:46 +00005889 }
5890
5891 if (addTest) {
5892 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman31125812009-03-07 01:58:32 +00005893 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00005894 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00005895 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00005896 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00005897}
5898
Anton Korobeynikove060b532007-04-17 19:34:00 +00005899
5900// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
5901// Calls to _alloca is needed to probe the stack when allocating more than 4k
5902// bytes in one go. Touching the stack at 4K increments is necessary to ensure
5903// that the guard pages used by the OS virtual memory manager are allocated in
5904// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00005905SDValue
5906X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005907 SelectionDAG &DAG) {
Anton Korobeynikove060b532007-04-17 19:34:00 +00005908 assert(Subtarget->isTargetCygMing() &&
5909 "This should be used only on Cygwin/Mingw targets");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005910 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005911
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005912 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00005913 SDValue Chain = Op.getOperand(0);
5914 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005915 // FIXME: Ensure alignment here
5916
Dan Gohman475871a2008-07-27 21:46:04 +00005917 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005918
Duncan Sands83ec4b62008-06-06 12:08:01 +00005919 MVT IntPtr = getPointerTy();
5920 MVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005921
Chris Lattnere563bbc2008-10-11 22:08:30 +00005922 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005923
Dale Johannesendd64c412009-02-04 00:33:20 +00005924 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005925 Flag = Chain.getValue(1);
5926
5927 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005928 SDValue Ops[] = { Chain,
Bill Wendling056292f2008-09-16 21:48:12 +00005929 DAG.getTargetExternalSymbol("_alloca", IntPtr),
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005930 DAG.getRegister(X86::EAX, IntPtr),
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005931 DAG.getRegister(X86StackPtr, SPTy),
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005932 Flag };
Dale Johannesene4d209d2009-02-03 20:21:25 +00005933 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops, 5);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005934 Flag = Chain.getValue(1);
5935
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005936 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnere563bbc2008-10-11 22:08:30 +00005937 DAG.getIntPtrConstant(0, true),
5938 DAG.getIntPtrConstant(0, true),
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005939 Flag);
5940
Dale Johannesendd64c412009-02-04 00:33:20 +00005941 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005942
Dan Gohman475871a2008-07-27 21:46:04 +00005943 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00005944 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005945}
5946
Dan Gohman475871a2008-07-27 21:46:04 +00005947SDValue
Dale Johannesen0f502f62009-02-03 22:26:09 +00005948X86TargetLowering::EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl,
Bill Wendling6f287b22008-09-30 21:22:07 +00005949 SDValue Chain,
5950 SDValue Dst, SDValue Src,
5951 SDValue Size, unsigned Align,
5952 const Value *DstSV,
Bill Wendling6158d842008-10-01 00:59:58 +00005953 uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00005954 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005955
Bill Wendling6f287b22008-09-30 21:22:07 +00005956 // If not DWORD aligned or size is more than the threshold, call the library.
5957 // The libc version is likely to be faster for these cases. It can use the
5958 // address value and run time information about the CPU.
Evan Cheng1887c1c2008-08-21 21:00:15 +00005959 if ((Align & 3) != 0 ||
Dan Gohman707e0182008-04-12 04:36:06 +00005960 !ConstantSize ||
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005961 ConstantSize->getZExtValue() >
5962 getSubtarget()->getMaxInlineSizeThreshold()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005963 SDValue InFlag(0, 0);
Dan Gohman68d599d2008-04-01 20:38:36 +00005964
5965 // Check to see if there is a specialized entry-point for memory zeroing.
Dan Gohman707e0182008-04-12 04:36:06 +00005966 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
Bill Wendling6f287b22008-09-30 21:22:07 +00005967
Bill Wendling6158d842008-10-01 00:59:58 +00005968 if (const char *bzeroEntry = V &&
5969 V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
5970 MVT IntPtr = getPointerTy();
5971 const Type *IntPtrTy = TD->getIntPtrType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005972 TargetLowering::ArgListTy Args;
Bill Wendling6158d842008-10-01 00:59:58 +00005973 TargetLowering::ArgListEntry Entry;
5974 Entry.Node = Dst;
5975 Entry.Ty = IntPtrTy;
5976 Args.push_back(Entry);
5977 Entry.Node = Size;
5978 Args.push_back(Entry);
5979 std::pair<SDValue,SDValue> CallResult =
Scott Michelfdc40a02009-02-17 22:15:04 +00005980 LowerCallTo(Chain, Type::VoidTy, false, false, false, false,
5981 CallingConv::C, false,
Dale Johannesen0f502f62009-02-03 22:26:09 +00005982 DAG.getExternalSymbol(bzeroEntry, IntPtr), Args, DAG, dl);
Bill Wendling6158d842008-10-01 00:59:58 +00005983 return CallResult.second;
Dan Gohman68d599d2008-04-01 20:38:36 +00005984 }
5985
Dan Gohman707e0182008-04-12 04:36:06 +00005986 // Otherwise have the target-independent code call memset.
Dan Gohman475871a2008-07-27 21:46:04 +00005987 return SDValue();
Evan Cheng48090aa2006-03-21 23:01:21 +00005988 }
Evan Chengb9df0ca2006-03-22 02:53:00 +00005989
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005990 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00005991 SDValue InFlag(0, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005992 MVT AVT;
Dan Gohman475871a2008-07-27 21:46:04 +00005993 SDValue Count;
Dan Gohman707e0182008-04-12 04:36:06 +00005994 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005995 unsigned BytesLeft = 0;
5996 bool TwoRepStos = false;
5997 if (ValC) {
5998 unsigned ValReg;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005999 uint64_t Val = ValC->getZExtValue() & 255;
Evan Cheng5ced1d82006-04-06 23:23:56 +00006000
Evan Cheng0db9fe62006-04-25 20:13:52 +00006001 // If the value is a constant, then we can potentially use larger sets.
6002 switch (Align & 3) {
Evan Cheng1887c1c2008-08-21 21:00:15 +00006003 case 2: // WORD aligned
6004 AVT = MVT::i16;
6005 ValReg = X86::AX;
6006 Val = (Val << 8) | Val;
6007 break;
6008 case 0: // DWORD aligned
6009 AVT = MVT::i32;
6010 ValReg = X86::EAX;
6011 Val = (Val << 8) | Val;
6012 Val = (Val << 16) | Val;
6013 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
6014 AVT = MVT::i64;
6015 ValReg = X86::RAX;
6016 Val = (Val << 32) | Val;
6017 }
6018 break;
6019 default: // Byte aligned
6020 AVT = MVT::i8;
6021 ValReg = X86::AL;
6022 Count = DAG.getIntPtrConstant(SizeVal);
6023 break;
Evan Cheng80d428c2006-04-19 22:48:17 +00006024 }
6025
Duncan Sands8e4eb092008-06-08 20:54:56 +00006026 if (AVT.bitsGT(MVT::i8)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006027 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00006028 Count = DAG.getIntPtrConstant(SizeVal / UBytes);
6029 BytesLeft = SizeVal % UBytes;
Evan Cheng25ab6902006-09-08 06:48:29 +00006030 }
6031
Dale Johannesen0f502f62009-02-03 22:26:09 +00006032 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, AVT),
Evan Cheng0db9fe62006-04-25 20:13:52 +00006033 InFlag);
6034 InFlag = Chain.getValue(1);
6035 } else {
6036 AVT = MVT::i8;
Dan Gohmanbcda2852008-04-16 01:32:32 +00006037 Count = DAG.getIntPtrConstant(SizeVal);
Dale Johannesen0f502f62009-02-03 22:26:09 +00006038 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006039 InFlag = Chain.getValue(1);
Evan Chengb9df0ca2006-03-22 02:53:00 +00006040 }
Evan Chengc78d3b42006-04-24 18:01:45 +00006041
Scott Michelfdc40a02009-02-17 22:15:04 +00006042 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen0f502f62009-02-03 22:26:09 +00006043 X86::ECX,
Evan Cheng25ab6902006-09-08 06:48:29 +00006044 Count, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006045 InFlag = Chain.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006046 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen0f502f62009-02-03 22:26:09 +00006047 X86::EDI,
Dan Gohman707e0182008-04-12 04:36:06 +00006048 Dst, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006049 InFlag = Chain.getValue(1);
Evan Chenga0b3afb2006-03-27 07:00:16 +00006050
Chris Lattnerd96d0722007-02-25 06:40:16 +00006051 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006052 SmallVector<SDValue, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006053 Ops.push_back(Chain);
6054 Ops.push_back(DAG.getValueType(AVT));
6055 Ops.push_back(InFlag);
Dale Johannesen0f502f62009-02-03 22:26:09 +00006056 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Evan Chengc78d3b42006-04-24 18:01:45 +00006057
Evan Cheng0db9fe62006-04-25 20:13:52 +00006058 if (TwoRepStos) {
6059 InFlag = Chain.getValue(1);
Dan Gohman707e0182008-04-12 04:36:06 +00006060 Count = Size;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006061 MVT CVT = Count.getValueType();
Dale Johannesen0f502f62009-02-03 22:26:09 +00006062 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
Evan Cheng25ab6902006-09-08 06:48:29 +00006063 DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
Scott Michelfdc40a02009-02-17 22:15:04 +00006064 Chain = DAG.getCopyToReg(Chain, dl, (CVT == MVT::i64) ? X86::RCX :
Dale Johannesen0f502f62009-02-03 22:26:09 +00006065 X86::ECX,
Evan Cheng25ab6902006-09-08 06:48:29 +00006066 Left, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006067 InFlag = Chain.getValue(1);
Chris Lattnerd96d0722007-02-25 06:40:16 +00006068 Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006069 Ops.clear();
6070 Ops.push_back(Chain);
6071 Ops.push_back(DAG.getValueType(MVT::i8));
6072 Ops.push_back(InFlag);
Dale Johannesen0f502f62009-02-03 22:26:09 +00006073 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00006074 } else if (BytesLeft) {
Dan Gohman707e0182008-04-12 04:36:06 +00006075 // Handle the last 1 - 7 bytes.
6076 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006077 MVT AddrVT = Dst.getValueType();
6078 MVT SizeVT = Size.getValueType();
Dan Gohman707e0182008-04-12 04:36:06 +00006079
Dale Johannesen0f502f62009-02-03 22:26:09 +00006080 Chain = DAG.getMemset(Chain, dl,
6081 DAG.getNode(ISD::ADD, dl, AddrVT, Dst,
Dan Gohman707e0182008-04-12 04:36:06 +00006082 DAG.getConstant(Offset, AddrVT)),
6083 Src,
6084 DAG.getConstant(BytesLeft, SizeVT),
Dan Gohman1f13c682008-04-28 17:15:20 +00006085 Align, DstSV, DstSVOff + Offset);
Evan Cheng386031a2006-03-24 07:29:27 +00006086 }
Evan Cheng11e15b32006-04-03 20:53:28 +00006087
Dan Gohman707e0182008-04-12 04:36:06 +00006088 // TODO: Use a Tokenfactor, as in memcpy, instead of a single chain.
Evan Cheng0db9fe62006-04-25 20:13:52 +00006089 return Chain;
6090}
Evan Cheng11e15b32006-04-03 20:53:28 +00006091
Dan Gohman475871a2008-07-27 21:46:04 +00006092SDValue
Dale Johannesen0f502f62009-02-03 22:26:09 +00006093X86TargetLowering::EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
Evan Cheng1887c1c2008-08-21 21:00:15 +00006094 SDValue Chain, SDValue Dst, SDValue Src,
6095 SDValue Size, unsigned Align,
6096 bool AlwaysInline,
6097 const Value *DstSV, uint64_t DstSVOff,
Scott Michelfdc40a02009-02-17 22:15:04 +00006098 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00006099 // This requires the copy size to be a constant, preferrably
6100 // within a subtarget-specific limit.
6101 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
6102 if (!ConstantSize)
Dan Gohman475871a2008-07-27 21:46:04 +00006103 return SDValue();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006104 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohman707e0182008-04-12 04:36:06 +00006105 if (!AlwaysInline && SizeVal > getSubtarget()->getMaxInlineSizeThreshold())
Dan Gohman475871a2008-07-27 21:46:04 +00006106 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00006107
Evan Cheng1887c1c2008-08-21 21:00:15 +00006108 /// If not DWORD aligned, call the library.
6109 if ((Align & 3) != 0)
6110 return SDValue();
6111
6112 // DWORD aligned
6113 MVT AVT = MVT::i32;
6114 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) // QWORD aligned
Dan Gohman707e0182008-04-12 04:36:06 +00006115 AVT = MVT::i64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006116
Duncan Sands83ec4b62008-06-06 12:08:01 +00006117 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00006118 unsigned CountVal = SizeVal / UBytes;
Dan Gohman475871a2008-07-27 21:46:04 +00006119 SDValue Count = DAG.getIntPtrConstant(CountVal);
Evan Cheng1887c1c2008-08-21 21:00:15 +00006120 unsigned BytesLeft = SizeVal % UBytes;
Evan Cheng25ab6902006-09-08 06:48:29 +00006121
Dan Gohman475871a2008-07-27 21:46:04 +00006122 SDValue InFlag(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006123 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
Dale Johannesen0f502f62009-02-03 22:26:09 +00006124 X86::ECX,
Evan Cheng25ab6902006-09-08 06:48:29 +00006125 Count, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006126 InFlag = Chain.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006127 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
Dale Johannesen0f502f62009-02-03 22:26:09 +00006128 X86::EDI,
Dan Gohman707e0182008-04-12 04:36:06 +00006129 Dst, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006130 InFlag = Chain.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006131 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RSI :
Dale Johannesen0f502f62009-02-03 22:26:09 +00006132 X86::ESI,
Dan Gohman707e0182008-04-12 04:36:06 +00006133 Src, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006134 InFlag = Chain.getValue(1);
6135
Chris Lattnerd96d0722007-02-25 06:40:16 +00006136 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006137 SmallVector<SDValue, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006138 Ops.push_back(Chain);
6139 Ops.push_back(DAG.getValueType(AVT));
6140 Ops.push_back(InFlag);
Dale Johannesen0f502f62009-02-03 22:26:09 +00006141 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, dl, Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00006142
Dan Gohman475871a2008-07-27 21:46:04 +00006143 SmallVector<SDValue, 4> Results;
Evan Cheng2749c722008-04-25 00:26:43 +00006144 Results.push_back(RepMovs);
Rafael Espindola068317b2007-09-28 12:53:01 +00006145 if (BytesLeft) {
Dan Gohman707e0182008-04-12 04:36:06 +00006146 // Handle the last 1 - 7 bytes.
6147 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006148 MVT DstVT = Dst.getValueType();
6149 MVT SrcVT = Src.getValueType();
6150 MVT SizeVT = Size.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00006151 Results.push_back(DAG.getMemcpy(Chain, dl,
Dale Johannesen0f502f62009-02-03 22:26:09 +00006152 DAG.getNode(ISD::ADD, dl, DstVT, Dst,
Evan Cheng2749c722008-04-25 00:26:43 +00006153 DAG.getConstant(Offset, DstVT)),
Dale Johannesen0f502f62009-02-03 22:26:09 +00006154 DAG.getNode(ISD::ADD, dl, SrcVT, Src,
Evan Cheng2749c722008-04-25 00:26:43 +00006155 DAG.getConstant(Offset, SrcVT)),
Dan Gohman707e0182008-04-12 04:36:06 +00006156 DAG.getConstant(BytesLeft, SizeVT),
6157 Align, AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00006158 DstSV, DstSVOff + Offset,
6159 SrcSV, SrcSVOff + Offset));
Evan Chengb067a1e2006-03-31 19:22:53 +00006160 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006161
Scott Michelfdc40a02009-02-17 22:15:04 +00006162 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesen0f502f62009-02-03 22:26:09 +00006163 &Results[0], Results.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00006164}
6165
Dan Gohman475871a2008-07-27 21:46:04 +00006166SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) {
Dan Gohman69de1932008-02-06 22:27:42 +00006167 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006168 DebugLoc dl = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00006169
Evan Cheng25ab6902006-09-08 06:48:29 +00006170 if (!Subtarget->is64Bit()) {
6171 // vastart just stores the address of the VarArgsFrameIndex slot into the
6172 // memory location argument.
Dan Gohman475871a2008-07-27 21:46:04 +00006173 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesene4d209d2009-02-03 20:21:25 +00006174 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00006175 }
6176
6177 // __va_list_tag:
6178 // gp_offset (0 - 6 * 8)
6179 // fp_offset (48 - 48 + 8 * 16)
6180 // overflow_arg_area (point to parameters coming in memory).
6181 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00006182 SmallVector<SDValue, 8> MemOps;
6183 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00006184 // Store gp_offset
Dale Johannesene4d209d2009-02-03 20:21:25 +00006185 SDValue Store = DAG.getStore(Op.getOperand(0), dl,
Evan Cheng786225a2006-10-05 23:01:46 +00006186 DAG.getConstant(VarArgsGPOffset, MVT::i32),
Dan Gohman69de1932008-02-06 22:27:42 +00006187 FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00006188 MemOps.push_back(Store);
6189
6190 // Store fp_offset
Scott Michelfdc40a02009-02-17 22:15:04 +00006191 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00006192 FIN, DAG.getIntPtrConstant(4));
6193 Store = DAG.getStore(Op.getOperand(0), dl,
Evan Cheng786225a2006-10-05 23:01:46 +00006194 DAG.getConstant(VarArgsFPOffset, MVT::i32),
Dan Gohman69de1932008-02-06 22:27:42 +00006195 FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00006196 MemOps.push_back(Store);
6197
6198 // Store ptr to overflow_arg_area
Scott Michelfdc40a02009-02-17 22:15:04 +00006199 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00006200 FIN, DAG.getIntPtrConstant(4));
Dan Gohman475871a2008-07-27 21:46:04 +00006201 SDValue OVFIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dale Johannesene4d209d2009-02-03 20:21:25 +00006202 Store = DAG.getStore(Op.getOperand(0), dl, OVFIN, FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00006203 MemOps.push_back(Store);
6204
6205 // Store ptr to reg_save_area.
Scott Michelfdc40a02009-02-17 22:15:04 +00006206 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00006207 FIN, DAG.getIntPtrConstant(8));
Dan Gohman475871a2008-07-27 21:46:04 +00006208 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dale Johannesene4d209d2009-02-03 20:21:25 +00006209 Store = DAG.getStore(Op.getOperand(0), dl, RSFIN, FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00006210 MemOps.push_back(Store);
Scott Michelfdc40a02009-02-17 22:15:04 +00006211 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006212 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00006213}
6214
Dan Gohman475871a2008-07-27 21:46:04 +00006215SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) {
Dan Gohman9018e832008-05-10 01:26:14 +00006216 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
6217 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_arg!");
Dan Gohman475871a2008-07-27 21:46:04 +00006218 SDValue Chain = Op.getOperand(0);
6219 SDValue SrcPtr = Op.getOperand(1);
6220 SDValue SrcSV = Op.getOperand(2);
Dan Gohman9018e832008-05-10 01:26:14 +00006221
6222 assert(0 && "VAArgInst is not yet implemented for x86-64!");
6223 abort();
Dan Gohman475871a2008-07-27 21:46:04 +00006224 return SDValue();
Dan Gohman9018e832008-05-10 01:26:14 +00006225}
6226
Dan Gohman475871a2008-07-27 21:46:04 +00006227SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) {
Evan Chengae642192007-03-02 23:16:35 +00006228 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00006229 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00006230 SDValue Chain = Op.getOperand(0);
6231 SDValue DstPtr = Op.getOperand(1);
6232 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00006233 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
6234 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006235 DebugLoc dl = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00006236
Dale Johannesendd64c412009-02-04 00:33:20 +00006237 return DAG.getMemcpy(Chain, dl, DstPtr, SrcPtr,
Dan Gohman28269132008-04-18 20:55:41 +00006238 DAG.getIntPtrConstant(24), 8, false,
6239 DstSV, 0, SrcSV, 0);
Evan Chengae642192007-03-02 23:16:35 +00006240}
6241
Dan Gohman475871a2008-07-27 21:46:04 +00006242SDValue
6243X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006244 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006245 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006246 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00006247 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00006248 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00006249 case Intrinsic::x86_sse_comieq_ss:
6250 case Intrinsic::x86_sse_comilt_ss:
6251 case Intrinsic::x86_sse_comile_ss:
6252 case Intrinsic::x86_sse_comigt_ss:
6253 case Intrinsic::x86_sse_comige_ss:
6254 case Intrinsic::x86_sse_comineq_ss:
6255 case Intrinsic::x86_sse_ucomieq_ss:
6256 case Intrinsic::x86_sse_ucomilt_ss:
6257 case Intrinsic::x86_sse_ucomile_ss:
6258 case Intrinsic::x86_sse_ucomigt_ss:
6259 case Intrinsic::x86_sse_ucomige_ss:
6260 case Intrinsic::x86_sse_ucomineq_ss:
6261 case Intrinsic::x86_sse2_comieq_sd:
6262 case Intrinsic::x86_sse2_comilt_sd:
6263 case Intrinsic::x86_sse2_comile_sd:
6264 case Intrinsic::x86_sse2_comigt_sd:
6265 case Intrinsic::x86_sse2_comige_sd:
6266 case Intrinsic::x86_sse2_comineq_sd:
6267 case Intrinsic::x86_sse2_ucomieq_sd:
6268 case Intrinsic::x86_sse2_ucomilt_sd:
6269 case Intrinsic::x86_sse2_ucomile_sd:
6270 case Intrinsic::x86_sse2_ucomigt_sd:
6271 case Intrinsic::x86_sse2_ucomige_sd:
6272 case Intrinsic::x86_sse2_ucomineq_sd: {
6273 unsigned Opc = 0;
6274 ISD::CondCode CC = ISD::SETCC_INVALID;
6275 switch (IntNo) {
6276 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006277 case Intrinsic::x86_sse_comieq_ss:
6278 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006279 Opc = X86ISD::COMI;
6280 CC = ISD::SETEQ;
6281 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00006282 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006283 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006284 Opc = X86ISD::COMI;
6285 CC = ISD::SETLT;
6286 break;
6287 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006288 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006289 Opc = X86ISD::COMI;
6290 CC = ISD::SETLE;
6291 break;
6292 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006293 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006294 Opc = X86ISD::COMI;
6295 CC = ISD::SETGT;
6296 break;
6297 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006298 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006299 Opc = X86ISD::COMI;
6300 CC = ISD::SETGE;
6301 break;
6302 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006303 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006304 Opc = X86ISD::COMI;
6305 CC = ISD::SETNE;
6306 break;
6307 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006308 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006309 Opc = X86ISD::UCOMI;
6310 CC = ISD::SETEQ;
6311 break;
6312 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006313 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006314 Opc = X86ISD::UCOMI;
6315 CC = ISD::SETLT;
6316 break;
6317 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006318 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006319 Opc = X86ISD::UCOMI;
6320 CC = ISD::SETLE;
6321 break;
6322 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006323 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006324 Opc = X86ISD::UCOMI;
6325 CC = ISD::SETGT;
6326 break;
6327 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00006328 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006329 Opc = X86ISD::UCOMI;
6330 CC = ISD::SETGE;
6331 break;
6332 case Intrinsic::x86_sse_ucomineq_ss:
6333 case Intrinsic::x86_sse2_ucomineq_sd:
6334 Opc = X86ISD::UCOMI;
6335 CC = ISD::SETNE;
6336 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00006337 }
Evan Cheng734503b2006-09-11 02:19:56 +00006338
Dan Gohman475871a2008-07-27 21:46:04 +00006339 SDValue LHS = Op.getOperand(1);
6340 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00006341 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006342 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
6343 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Evan Cheng0ac3fc22008-08-17 19:22:34 +00006344 DAG.getConstant(X86CC, MVT::i8), Cond);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006345 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00006346 }
Evan Cheng5759f972008-05-04 09:15:50 +00006347
6348 // Fix vector shift instructions where the last operand is a non-immediate
6349 // i32 value.
6350 case Intrinsic::x86_sse2_pslli_w:
6351 case Intrinsic::x86_sse2_pslli_d:
6352 case Intrinsic::x86_sse2_pslli_q:
6353 case Intrinsic::x86_sse2_psrli_w:
6354 case Intrinsic::x86_sse2_psrli_d:
6355 case Intrinsic::x86_sse2_psrli_q:
6356 case Intrinsic::x86_sse2_psrai_w:
6357 case Intrinsic::x86_sse2_psrai_d:
6358 case Intrinsic::x86_mmx_pslli_w:
6359 case Intrinsic::x86_mmx_pslli_d:
6360 case Intrinsic::x86_mmx_pslli_q:
6361 case Intrinsic::x86_mmx_psrli_w:
6362 case Intrinsic::x86_mmx_psrli_d:
6363 case Intrinsic::x86_mmx_psrli_q:
6364 case Intrinsic::x86_mmx_psrai_w:
6365 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00006366 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00006367 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00006368 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00006369
6370 unsigned NewIntNo = 0;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006371 MVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00006372 switch (IntNo) {
6373 case Intrinsic::x86_sse2_pslli_w:
6374 NewIntNo = Intrinsic::x86_sse2_psll_w;
6375 break;
6376 case Intrinsic::x86_sse2_pslli_d:
6377 NewIntNo = Intrinsic::x86_sse2_psll_d;
6378 break;
6379 case Intrinsic::x86_sse2_pslli_q:
6380 NewIntNo = Intrinsic::x86_sse2_psll_q;
6381 break;
6382 case Intrinsic::x86_sse2_psrli_w:
6383 NewIntNo = Intrinsic::x86_sse2_psrl_w;
6384 break;
6385 case Intrinsic::x86_sse2_psrli_d:
6386 NewIntNo = Intrinsic::x86_sse2_psrl_d;
6387 break;
6388 case Intrinsic::x86_sse2_psrli_q:
6389 NewIntNo = Intrinsic::x86_sse2_psrl_q;
6390 break;
6391 case Intrinsic::x86_sse2_psrai_w:
6392 NewIntNo = Intrinsic::x86_sse2_psra_w;
6393 break;
6394 case Intrinsic::x86_sse2_psrai_d:
6395 NewIntNo = Intrinsic::x86_sse2_psra_d;
6396 break;
6397 default: {
6398 ShAmtVT = MVT::v2i32;
6399 switch (IntNo) {
6400 case Intrinsic::x86_mmx_pslli_w:
6401 NewIntNo = Intrinsic::x86_mmx_psll_w;
6402 break;
6403 case Intrinsic::x86_mmx_pslli_d:
6404 NewIntNo = Intrinsic::x86_mmx_psll_d;
6405 break;
6406 case Intrinsic::x86_mmx_pslli_q:
6407 NewIntNo = Intrinsic::x86_mmx_psll_q;
6408 break;
6409 case Intrinsic::x86_mmx_psrli_w:
6410 NewIntNo = Intrinsic::x86_mmx_psrl_w;
6411 break;
6412 case Intrinsic::x86_mmx_psrli_d:
6413 NewIntNo = Intrinsic::x86_mmx_psrl_d;
6414 break;
6415 case Intrinsic::x86_mmx_psrli_q:
6416 NewIntNo = Intrinsic::x86_mmx_psrl_q;
6417 break;
6418 case Intrinsic::x86_mmx_psrai_w:
6419 NewIntNo = Intrinsic::x86_mmx_psra_w;
6420 break;
6421 case Intrinsic::x86_mmx_psrai_d:
6422 NewIntNo = Intrinsic::x86_mmx_psra_d;
6423 break;
6424 default: abort(); // Can't reach here.
6425 }
6426 break;
6427 }
6428 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00006429 MVT VT = Op.getValueType();
Dale Johannesene4d209d2009-02-03 20:21:25 +00006430 ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT,
6431 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, ShAmtVT, ShAmt));
6432 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Evan Cheng5759f972008-05-04 09:15:50 +00006433 DAG.getConstant(NewIntNo, MVT::i32),
6434 Op.getOperand(1), ShAmt);
6435 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00006436 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006437}
Evan Cheng72261582005-12-20 06:22:03 +00006438
Dan Gohman475871a2008-07-27 21:46:04 +00006439SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
Bill Wendling64e87322009-01-16 19:25:27 +00006440 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006441 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00006442
6443 if (Depth > 0) {
6444 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
6445 SDValue Offset =
6446 DAG.getConstant(TD->getPointerSize(),
6447 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006448 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00006449 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00006450 FrameAddr, Offset),
Bill Wendling64e87322009-01-16 19:25:27 +00006451 NULL, 0);
6452 }
6453
6454 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00006455 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00006456 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00006457 RetAddrFI, NULL, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00006458}
6459
Dan Gohman475871a2008-07-27 21:46:04 +00006460SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
Evan Cheng184793f2008-09-27 01:56:22 +00006461 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6462 MFI->setFrameAddressIsTaken(true);
6463 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006464 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00006465 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
6466 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00006467 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00006468 while (Depth--)
Dale Johannesendd64c412009-02-04 00:33:20 +00006469 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, NULL, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00006470 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00006471}
6472
Dan Gohman475871a2008-07-27 21:46:04 +00006473SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Anton Korobeynikov260a6b82008-09-08 21:12:11 +00006474 SelectionDAG &DAG) {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00006475 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006476}
6477
Dan Gohman475871a2008-07-27 21:46:04 +00006478SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG)
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006479{
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006480 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00006481 SDValue Chain = Op.getOperand(0);
6482 SDValue Offset = Op.getOperand(1);
6483 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006484 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006485
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00006486 SDValue Frame = DAG.getRegister(Subtarget->is64Bit() ? X86::RBP : X86::EBP,
6487 getPointerTy());
6488 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006489
Dale Johannesene4d209d2009-02-03 20:21:25 +00006490 SDValue StoreAddr = DAG.getNode(ISD::SUB, dl, getPointerTy(), Frame,
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00006491 DAG.getIntPtrConstant(-TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006492 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
6493 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, NULL, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00006494 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00006495 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006496
Dale Johannesene4d209d2009-02-03 20:21:25 +00006497 return DAG.getNode(X86ISD::EH_RETURN, dl,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00006498 MVT::Other,
6499 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006500}
6501
Dan Gohman475871a2008-07-27 21:46:04 +00006502SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Duncan Sandsb116fac2007-07-27 20:02:49 +00006503 SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00006504 SDValue Root = Op.getOperand(0);
6505 SDValue Trmp = Op.getOperand(1); // trampoline
6506 SDValue FPtr = Op.getOperand(2); // nested function
6507 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006508 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00006509
Dan Gohman69de1932008-02-06 22:27:42 +00006510 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00006511
Duncan Sands339e14f2008-01-16 22:55:25 +00006512 const X86InstrInfo *TII =
6513 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
6514
Duncan Sandsb116fac2007-07-27 20:02:49 +00006515 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006516 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00006517
6518 // Large code-model.
6519
6520 const unsigned char JMP64r = TII->getBaseOpcodeFor(X86::JMP64r);
6521 const unsigned char MOV64ri = TII->getBaseOpcodeFor(X86::MOV64ri);
6522
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00006523 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
6524 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00006525
6526 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
6527
6528 // Load the pointer to the nested function into R11.
6529 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00006530 SDValue Addr = Trmp;
Dale Johannesene4d209d2009-02-03 20:21:25 +00006531 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6532 Addr, TrmpAddr, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00006533
Scott Michelfdc40a02009-02-17 22:15:04 +00006534 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006535 DAG.getConstant(2, MVT::i64));
6536 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr, TrmpAddr, 2, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00006537
6538 // Load the 'nest' parameter value into R10.
6539 // R10 is specified in X86CallingConv.td
6540 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Scott Michelfdc40a02009-02-17 22:15:04 +00006541 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006542 DAG.getConstant(10, MVT::i64));
6543 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6544 Addr, TrmpAddr, 10);
Duncan Sands339e14f2008-01-16 22:55:25 +00006545
Scott Michelfdc40a02009-02-17 22:15:04 +00006546 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006547 DAG.getConstant(12, MVT::i64));
6548 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 12, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00006549
6550 // Jump to the nested function.
6551 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Scott Michelfdc40a02009-02-17 22:15:04 +00006552 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006553 DAG.getConstant(20, MVT::i64));
6554 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6555 Addr, TrmpAddr, 20);
Duncan Sands339e14f2008-01-16 22:55:25 +00006556
6557 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Scott Michelfdc40a02009-02-17 22:15:04 +00006558 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006559 DAG.getConstant(22, MVT::i64));
6560 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Dan Gohman69de1932008-02-06 22:27:42 +00006561 TrmpAddr, 22);
Duncan Sands339e14f2008-01-16 22:55:25 +00006562
Dan Gohman475871a2008-07-27 21:46:04 +00006563 SDValue Ops[] =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006564 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
6565 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006566 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00006567 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00006568 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
6569 unsigned CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00006570 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006571
6572 switch (CC) {
6573 default:
6574 assert(0 && "Unsupported calling convention");
6575 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00006576 case CallingConv::X86_StdCall: {
6577 // Pass 'nest' parameter in ECX.
6578 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00006579 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006580
6581 // Check that ECX wasn't needed by an 'inreg' parameter.
6582 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00006583 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00006584
Chris Lattner58d74912008-03-12 17:45:29 +00006585 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00006586 unsigned InRegCount = 0;
6587 unsigned Idx = 1;
6588
6589 for (FunctionType::param_iterator I = FTy->param_begin(),
6590 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00006591 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00006592 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00006593 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006594
6595 if (InRegCount > 2) {
6596 cerr << "Nest register in use - reduce number of inreg parameters!\n";
6597 abort();
6598 }
6599 }
6600 break;
6601 }
6602 case CallingConv::X86_FastCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00006603 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00006604 // Pass 'nest' parameter in EAX.
6605 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00006606 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006607 break;
6608 }
6609
Dan Gohman475871a2008-07-27 21:46:04 +00006610 SDValue OutChains[4];
6611 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006612
Scott Michelfdc40a02009-02-17 22:15:04 +00006613 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006614 DAG.getConstant(10, MVT::i32));
6615 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006616
Duncan Sands339e14f2008-01-16 22:55:25 +00006617 const unsigned char MOV32ri = TII->getBaseOpcodeFor(X86::MOV32ri);
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00006618 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00006619 OutChains[0] = DAG.getStore(Root, dl,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006620 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Dan Gohman69de1932008-02-06 22:27:42 +00006621 Trmp, TrmpAddr, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006622
Scott Michelfdc40a02009-02-17 22:15:04 +00006623 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006624 DAG.getConstant(1, MVT::i32));
6625 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 1, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006626
Duncan Sands339e14f2008-01-16 22:55:25 +00006627 const unsigned char JMP = TII->getBaseOpcodeFor(X86::JMP);
Scott Michelfdc40a02009-02-17 22:15:04 +00006628 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006629 DAG.getConstant(5, MVT::i32));
6630 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Dan Gohman69de1932008-02-06 22:27:42 +00006631 TrmpAddr, 5, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006632
Scott Michelfdc40a02009-02-17 22:15:04 +00006633 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
Dale Johannesene4d209d2009-02-03 20:21:25 +00006634 DAG.getConstant(6, MVT::i32));
6635 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr, TrmpAddr, 6, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006636
Dan Gohman475871a2008-07-27 21:46:04 +00006637 SDValue Ops[] =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006638 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
6639 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006640 }
6641}
6642
Dan Gohman475871a2008-07-27 21:46:04 +00006643SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006644 /*
6645 The rounding mode is in bits 11:10 of FPSR, and has the following
6646 settings:
6647 00 Round to nearest
6648 01 Round to -inf
6649 10 Round to +inf
6650 11 Round to 0
6651
6652 FLT_ROUNDS, on the other hand, expects the following:
6653 -1 Undefined
6654 0 Round to 0
6655 1 Round to nearest
6656 2 Round to +inf
6657 3 Round to -inf
6658
6659 To perform the conversion, we do:
6660 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
6661 */
6662
6663 MachineFunction &MF = DAG.getMachineFunction();
6664 const TargetMachine &TM = MF.getTarget();
6665 const TargetFrameInfo &TFI = *TM.getFrameInfo();
6666 unsigned StackAlignment = TFI.getStackAlignment();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006667 MVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006668 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006669
6670 // Save FP Control Word to stack slot
6671 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment);
Dan Gohman475871a2008-07-27 21:46:04 +00006672 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006673
Dale Johannesene4d209d2009-02-03 20:21:25 +00006674 SDValue Chain = DAG.getNode(X86ISD::FNSTCW16m, dl, MVT::Other,
Evan Cheng8a186ae2008-09-24 23:26:36 +00006675 DAG.getEntryNode(), StackSlot);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006676
6677 // Load FP Control Word from stack slot
Dale Johannesene4d209d2009-02-03 20:21:25 +00006678 SDValue CWD = DAG.getLoad(MVT::i16, dl, Chain, StackSlot, NULL, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006679
6680 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00006681 SDValue CWD1 =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006682 DAG.getNode(ISD::SRL, dl, MVT::i16,
6683 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006684 CWD, DAG.getConstant(0x800, MVT::i16)),
6685 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00006686 SDValue CWD2 =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006687 DAG.getNode(ISD::SRL, dl, MVT::i16,
6688 DAG.getNode(ISD::AND, dl, MVT::i16,
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006689 CWD, DAG.getConstant(0x400, MVT::i16)),
6690 DAG.getConstant(9, MVT::i8));
6691
Dan Gohman475871a2008-07-27 21:46:04 +00006692 SDValue RetVal =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006693 DAG.getNode(ISD::AND, dl, MVT::i16,
6694 DAG.getNode(ISD::ADD, dl, MVT::i16,
6695 DAG.getNode(ISD::OR, dl, MVT::i16, CWD1, CWD2),
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006696 DAG.getConstant(1, MVT::i16)),
6697 DAG.getConstant(3, MVT::i16));
6698
6699
Duncan Sands83ec4b62008-06-06 12:08:01 +00006700 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006701 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006702}
6703
Dan Gohman475871a2008-07-27 21:46:04 +00006704SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006705 MVT VT = Op.getValueType();
6706 MVT OpVT = VT;
6707 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006708 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00006709
6710 Op = Op.getOperand(0);
6711 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00006712 // Zero extend to i32 since there is not an i8 bsr.
Evan Cheng18efe262007-12-14 02:13:44 +00006713 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00006714 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00006715 }
Evan Cheng18efe262007-12-14 02:13:44 +00006716
Evan Cheng152804e2007-12-14 08:30:15 +00006717 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
6718 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006719 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00006720
6721 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Dan Gohman475871a2008-07-27 21:46:04 +00006722 SmallVector<SDValue, 4> Ops;
Evan Cheng152804e2007-12-14 08:30:15 +00006723 Ops.push_back(Op);
6724 Ops.push_back(DAG.getConstant(NumBits+NumBits-1, OpVT));
6725 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6726 Ops.push_back(Op.getValue(1));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006727 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng152804e2007-12-14 08:30:15 +00006728
6729 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00006730 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00006731
Evan Cheng18efe262007-12-14 02:13:44 +00006732 if (VT == MVT::i8)
Dale Johannesene4d209d2009-02-03 20:21:25 +00006733 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00006734 return Op;
6735}
6736
Dan Gohman475871a2008-07-27 21:46:04 +00006737SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006738 MVT VT = Op.getValueType();
6739 MVT OpVT = VT;
6740 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006741 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00006742
6743 Op = Op.getOperand(0);
6744 if (VT == MVT::i8) {
6745 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00006746 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00006747 }
Evan Cheng152804e2007-12-14 08:30:15 +00006748
6749 // Issue a bsf (scan bits forward) which also sets EFLAGS.
6750 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006751 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00006752
6753 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Dan Gohman475871a2008-07-27 21:46:04 +00006754 SmallVector<SDValue, 4> Ops;
Evan Cheng152804e2007-12-14 08:30:15 +00006755 Ops.push_back(Op);
6756 Ops.push_back(DAG.getConstant(NumBits, OpVT));
6757 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6758 Ops.push_back(Op.getValue(1));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006759 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
Evan Cheng152804e2007-12-14 08:30:15 +00006760
Evan Cheng18efe262007-12-14 02:13:44 +00006761 if (VT == MVT::i8)
Dale Johannesene4d209d2009-02-03 20:21:25 +00006762 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00006763 return Op;
6764}
6765
Mon P Wangaf9b9522008-12-18 21:42:19 +00006766SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) {
6767 MVT VT = Op.getValueType();
6768 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006769 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00006770
Mon P Wangaf9b9522008-12-18 21:42:19 +00006771 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
6772 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
6773 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
6774 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
6775 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
6776 //
6777 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
6778 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
6779 // return AloBlo + AloBhi + AhiBlo;
6780
6781 SDValue A = Op.getOperand(0);
6782 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006783
Dale Johannesene4d209d2009-02-03 20:21:25 +00006784 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006785 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6786 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006787 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006788 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6789 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006790 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006791 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6792 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006793 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006794 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6795 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006796 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006797 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6798 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006799 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006800 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6801 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006802 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Mon P Wangaf9b9522008-12-18 21:42:19 +00006803 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6804 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006805 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
6806 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00006807 return Res;
6808}
6809
6810
Bill Wendling74c37652008-12-09 22:08:41 +00006811SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) {
6812 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
6813 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00006814 // looks for this combo and may remove the "setcc" instruction if the "setcc"
6815 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00006816 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00006817 SDValue LHS = N->getOperand(0);
6818 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00006819 unsigned BaseOp = 0;
6820 unsigned Cond = 0;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006821 DebugLoc dl = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00006822
6823 switch (Op.getOpcode()) {
6824 default: assert(0 && "Unknown ovf instruction!");
6825 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00006826 // A subtract of one will be selected as a INC. Note that INC doesn't
6827 // set CF, so we can't do this for UADDO.
6828 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
6829 if (C->getAPIntValue() == 1) {
6830 BaseOp = X86ISD::INC;
6831 Cond = X86::COND_O;
6832 break;
6833 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006834 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00006835 Cond = X86::COND_O;
6836 break;
6837 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006838 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00006839 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00006840 break;
6841 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00006842 // A subtract of one will be selected as a DEC. Note that DEC doesn't
6843 // set CF, so we can't do this for USUBO.
6844 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
6845 if (C->getAPIntValue() == 1) {
6846 BaseOp = X86ISD::DEC;
6847 Cond = X86::COND_O;
6848 break;
6849 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006850 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00006851 Cond = X86::COND_O;
6852 break;
6853 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006854 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00006855 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00006856 break;
6857 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00006858 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00006859 Cond = X86::COND_O;
6860 break;
6861 case ISD::UMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00006862 BaseOp = X86ISD::UMUL;
Dan Gohman653456c2009-01-07 00:15:08 +00006863 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00006864 break;
6865 }
Bill Wendling3fafd932008-11-26 22:37:40 +00006866
Bill Wendling61edeb52008-12-02 01:06:39 +00006867 // Also sets EFLAGS.
6868 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006869 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00006870
Bill Wendling61edeb52008-12-02 01:06:39 +00006871 SDValue SetCC =
Dale Johannesene4d209d2009-02-03 20:21:25 +00006872 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Bill Wendlingbc5e15e2008-12-10 02:01:32 +00006873 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00006874
Bill Wendling61edeb52008-12-02 01:06:39 +00006875 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
6876 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00006877}
6878
Dan Gohman475871a2008-07-27 21:46:04 +00006879SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanfd4418f2008-06-25 16:07:49 +00006880 MVT T = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006881 DebugLoc dl = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00006882 unsigned Reg = 0;
6883 unsigned size = 0;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006884 switch(T.getSimpleVT()) {
6885 default:
6886 assert(false && "Invalid value type!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00006887 case MVT::i8: Reg = X86::AL; size = 1; break;
6888 case MVT::i16: Reg = X86::AX; size = 2; break;
6889 case MVT::i32: Reg = X86::EAX; size = 4; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006890 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00006891 assert(Subtarget->is64Bit() && "Node not type legal!");
6892 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006893 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00006894 }
Dale Johannesendd64c412009-02-04 00:33:20 +00006895 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), dl, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00006896 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00006897 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00006898 Op.getOperand(1),
6899 Op.getOperand(3),
6900 DAG.getTargetConstant(size, MVT::i8),
6901 cpIn.getValue(1) };
Andrew Lenharth26ed8692008-03-01 21:52:34 +00006902 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006903 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG_DAG, dl, Tys, Ops, 5);
Scott Michelfdc40a02009-02-17 22:15:04 +00006904 SDValue cpOut =
Dale Johannesendd64c412009-02-04 00:33:20 +00006905 DAG.getCopyFromReg(Result.getValue(0), dl, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00006906 return cpOut;
6907}
6908
Duncan Sands1607f052008-12-01 11:39:25 +00006909SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Gabor Greif327ef032008-08-28 23:19:51 +00006910 SelectionDAG &DAG) {
Duncan Sands1607f052008-12-01 11:39:25 +00006911 assert(Subtarget->is64Bit() && "Result not type legalized?");
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006912 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00006913 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006914 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00006915 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Dale Johannesendd64c412009-02-04 00:33:20 +00006916 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
6917 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00006918 rax.getValue(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006919 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
Duncan Sands1607f052008-12-01 11:39:25 +00006920 DAG.getConstant(32, MVT::i8));
6921 SDValue Ops[] = {
Dale Johannesene4d209d2009-02-03 20:21:25 +00006922 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00006923 rdx.getValue(1)
6924 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00006925 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006926}
6927
Dale Johannesen71d1bf52008-09-29 22:25:26 +00006928SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
6929 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00006930 DebugLoc dl = Node->getDebugLoc();
Dale Johannesen71d1bf52008-09-29 22:25:26 +00006931 MVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00006932 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00006933 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00006934 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006935 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00006936 Node->getOperand(0),
6937 Node->getOperand(1), negOp,
6938 cast<AtomicSDNode>(Node)->getSrcValue(),
6939 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00006940}
6941
Evan Cheng0db9fe62006-04-25 20:13:52 +00006942/// LowerOperation - Provide custom lowering hooks for some operations.
6943///
Dan Gohman475871a2008-07-27 21:46:04 +00006944SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006945 switch (Op.getOpcode()) {
6946 default: assert(0 && "Should not custom lower this!");
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006947 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
6948 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006949 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
6950 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6951 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6952 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
6953 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
6954 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
6955 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006956 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00006957 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006958 case ISD::SHL_PARTS:
6959 case ISD::SRA_PARTS:
6960 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
6961 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006962 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006963 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
6964 case ISD::FABS: return LowerFABS(Op, DAG);
6965 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006966 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00006967 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00006968 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00006969 case ISD::SELECT: return LowerSELECT(Op, DAG);
6970 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006971 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng32fe1032006-05-25 00:59:30 +00006972 case ISD::CALL: return LowerCALL(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006973 case ISD::RET: return LowerRET(Op, DAG);
Evan Cheng1bc78042006-04-26 01:20:17 +00006974 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006975 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00006976 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00006977 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006978 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00006979 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
6980 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006981 case ISD::FRAME_TO_ARGS_OFFSET:
6982 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00006983 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006984 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006985 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00006986 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00006987 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
6988 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00006989 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00006990 case ISD::SADDO:
6991 case ISD::UADDO:
6992 case ISD::SSUBO:
6993 case ISD::USUBO:
6994 case ISD::SMULO:
6995 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00006996 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006997 }
Chris Lattner27a6c732007-11-24 07:07:01 +00006998}
6999
Duncan Sands1607f052008-12-01 11:39:25 +00007000void X86TargetLowering::
7001ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
7002 SelectionDAG &DAG, unsigned NewOp) {
7003 MVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007004 DebugLoc dl = Node->getDebugLoc();
Duncan Sands1607f052008-12-01 11:39:25 +00007005 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
7006
7007 SDValue Chain = Node->getOperand(0);
7008 SDValue In1 = Node->getOperand(1);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007009 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00007010 Node->getOperand(2), DAG.getIntPtrConstant(0));
Dale Johannesene4d209d2009-02-03 20:21:25 +00007011 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00007012 Node->getOperand(2), DAG.getIntPtrConstant(1));
7013 // This is a generalized SDNode, not an AtomicSDNode, so it doesn't
7014 // have a MemOperand. Pass the info through as a normal operand.
7015 SDValue LSI = DAG.getMemOperand(cast<MemSDNode>(Node)->getMemOperand());
7016 SDValue Ops[] = { Chain, In1, In2L, In2H, LSI };
7017 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007018 SDValue Result = DAG.getNode(NewOp, dl, Tys, Ops, 5);
Duncan Sands1607f052008-12-01 11:39:25 +00007019 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Dale Johannesene4d209d2009-02-03 20:21:25 +00007020 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00007021 Results.push_back(Result.getValue(2));
7022}
7023
Duncan Sands126d9072008-07-04 11:47:58 +00007024/// ReplaceNodeResults - Replace a node with an illegal result type
7025/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00007026void X86TargetLowering::ReplaceNodeResults(SDNode *N,
7027 SmallVectorImpl<SDValue>&Results,
7028 SelectionDAG &DAG) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00007029 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00007030 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00007031 default:
Duncan Sands1607f052008-12-01 11:39:25 +00007032 assert(false && "Do not know how to custom type legalize this operation!");
7033 return;
7034 case ISD::FP_TO_SINT: {
7035 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(SDValue(N, 0), DAG);
7036 SDValue FIST = Vals.first, StackSlot = Vals.second;
7037 if (FIST.getNode() != 0) {
7038 MVT VT = N->getValueType(0);
7039 // Return a load from the stack slot.
Dale Johannesene4d209d2009-02-03 20:21:25 +00007040 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot, NULL, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00007041 }
7042 return;
7043 }
7044 case ISD::READCYCLECOUNTER: {
7045 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
7046 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007047 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007048 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00007049 rd.getValue(1));
7050 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00007051 eax.getValue(2));
7052 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
7053 SDValue Ops[] = { eax, edx };
Dale Johannesene4d209d2009-02-03 20:21:25 +00007054 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00007055 Results.push_back(edx.getValue(1));
7056 return;
7057 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00007058 case ISD::ATOMIC_CMP_SWAP: {
Duncan Sands1607f052008-12-01 11:39:25 +00007059 MVT T = N->getValueType(0);
7060 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
7061 SDValue cpInL, cpInH;
Dale Johannesene4d209d2009-02-03 20:21:25 +00007062 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands1607f052008-12-01 11:39:25 +00007063 DAG.getConstant(0, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00007064 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
Duncan Sands1607f052008-12-01 11:39:25 +00007065 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00007066 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
7067 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00007068 cpInL.getValue(1));
7069 SDValue swapInL, swapInH;
Dale Johannesene4d209d2009-02-03 20:21:25 +00007070 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands1607f052008-12-01 11:39:25 +00007071 DAG.getConstant(0, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00007072 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
Duncan Sands1607f052008-12-01 11:39:25 +00007073 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00007074 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00007075 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00007076 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00007077 swapInL.getValue(1));
7078 SDValue Ops[] = { swapInH.getValue(0),
7079 N->getOperand(1),
7080 swapInH.getValue(1) };
7081 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007082 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG8_DAG, dl, Tys, Ops, 3);
Dale Johannesendd64c412009-02-04 00:33:20 +00007083 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
7084 MVT::i32, Result.getValue(1));
7085 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
7086 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00007087 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Dale Johannesene4d209d2009-02-03 20:21:25 +00007088 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00007089 Results.push_back(cpOutH.getValue(1));
7090 return;
7091 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00007092 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00007093 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
7094 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00007095 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00007096 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
7097 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00007098 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00007099 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
7100 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00007101 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00007102 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
7103 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00007104 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00007105 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
7106 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00007107 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00007108 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
7109 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00007110 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00007111 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
7112 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00007113 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007114}
7115
Evan Cheng72261582005-12-20 06:22:03 +00007116const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
7117 switch (Opcode) {
7118 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00007119 case X86ISD::BSF: return "X86ISD::BSF";
7120 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00007121 case X86ISD::SHLD: return "X86ISD::SHLD";
7122 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00007123 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00007124 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00007125 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00007126 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00007127 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00007128 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00007129 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
7130 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
7131 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00007132 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00007133 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00007134 case X86ISD::CALL: return "X86ISD::CALL";
7135 case X86ISD::TAILCALL: return "X86ISD::TAILCALL";
7136 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00007137 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00007138 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00007139 case X86ISD::COMI: return "X86ISD::COMI";
7140 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00007141 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Cheng72261582005-12-20 06:22:03 +00007142 case X86ISD::CMOV: return "X86ISD::CMOV";
7143 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00007144 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00007145 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
7146 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00007147 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00007148 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Nate Begeman14d12ca2008-02-11 04:19:36 +00007149 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00007150 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00007151 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
7152 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00007153 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00007154 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Evan Cheng8ca29322006-11-10 21:43:37 +00007155 case X86ISD::FMAX: return "X86ISD::FMAX";
7156 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00007157 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
7158 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007159 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Rafael Espindola094fad32009-04-08 21:14:34 +00007160 case X86ISD::SegmentBaseAddress: return "X86ISD::SegmentBaseAddress";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007161 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00007162 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00007163 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00007164 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
7165 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007166 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
7167 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
7168 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
7169 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
7170 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
7171 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00007172 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
7173 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00007174 case X86ISD::VSHL: return "X86ISD::VSHL";
7175 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00007176 case X86ISD::CMPPD: return "X86ISD::CMPPD";
7177 case X86ISD::CMPPS: return "X86ISD::CMPPS";
7178 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
7179 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
7180 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
7181 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
7182 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
7183 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
7184 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
7185 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00007186 case X86ISD::ADD: return "X86ISD::ADD";
7187 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingd350e022008-12-12 21:15:41 +00007188 case X86ISD::SMUL: return "X86ISD::SMUL";
7189 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00007190 case X86ISD::INC: return "X86ISD::INC";
7191 case X86ISD::DEC: return "X86ISD::DEC";
Evan Cheng73f24c92009-03-30 21:36:47 +00007192 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Evan Cheng72261582005-12-20 06:22:03 +00007193 }
7194}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007195
Chris Lattnerc9addb72007-03-30 23:15:24 +00007196// isLegalAddressingMode - Return true if the addressing mode represented
7197// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00007198bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00007199 const Type *Ty) const {
7200 // X86 supports extremely general addressing modes.
Scott Michelfdc40a02009-02-17 22:15:04 +00007201
Chris Lattnerc9addb72007-03-30 23:15:24 +00007202 // X86 allows a sign-extended 32-bit immediate field as a displacement.
7203 if (AM.BaseOffs <= -(1LL << 32) || AM.BaseOffs >= (1LL << 32)-1)
7204 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007205
Chris Lattnerc9addb72007-03-30 23:15:24 +00007206 if (AM.BaseGV) {
Evan Cheng52787842007-08-01 23:46:47 +00007207 // We can only fold this if we don't need an extra load.
Chris Lattnerc9addb72007-03-30 23:15:24 +00007208 if (Subtarget->GVRequiresExtraLoad(AM.BaseGV, getTargetMachine(), false))
7209 return false;
Dale Johannesen203af582008-12-05 21:47:27 +00007210 // If BaseGV requires a register, we cannot also have a BaseReg.
7211 if (Subtarget->GVRequiresRegister(AM.BaseGV, getTargetMachine(), false) &&
7212 AM.HasBaseReg)
7213 return false;
Evan Cheng52787842007-08-01 23:46:47 +00007214
7215 // X86-64 only supports addr of globals in small code model.
7216 if (Subtarget->is64Bit()) {
7217 if (getTargetMachine().getCodeModel() != CodeModel::Small)
7218 return false;
7219 // If lower 4G is not available, then we must use rip-relative addressing.
7220 if (AM.BaseOffs || AM.Scale > 1)
7221 return false;
7222 }
Chris Lattnerc9addb72007-03-30 23:15:24 +00007223 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007224
Chris Lattnerc9addb72007-03-30 23:15:24 +00007225 switch (AM.Scale) {
7226 case 0:
7227 case 1:
7228 case 2:
7229 case 4:
7230 case 8:
7231 // These scales always work.
7232 break;
7233 case 3:
7234 case 5:
7235 case 9:
7236 // These scales are formed with basereg+scalereg. Only accept if there is
7237 // no basereg yet.
7238 if (AM.HasBaseReg)
7239 return false;
7240 break;
7241 default: // Other stuff never works.
7242 return false;
7243 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007244
Chris Lattnerc9addb72007-03-30 23:15:24 +00007245 return true;
7246}
7247
7248
Evan Cheng2bd122c2007-10-26 01:56:11 +00007249bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
7250 if (!Ty1->isInteger() || !Ty2->isInteger())
7251 return false;
Evan Chenge127a732007-10-29 07:57:50 +00007252 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
7253 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00007254 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00007255 return false;
7256 return Subtarget->is64Bit() || NumBits1 < 64;
Evan Cheng2bd122c2007-10-26 01:56:11 +00007257}
7258
Duncan Sands83ec4b62008-06-06 12:08:01 +00007259bool X86TargetLowering::isTruncateFree(MVT VT1, MVT VT2) const {
7260 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00007261 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007262 unsigned NumBits1 = VT1.getSizeInBits();
7263 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00007264 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00007265 return false;
7266 return Subtarget->is64Bit() || NumBits1 < 64;
7267}
Evan Cheng2bd122c2007-10-26 01:56:11 +00007268
Dan Gohman97121ba2009-04-08 00:15:30 +00007269bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00007270 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Dan Gohman97121ba2009-04-08 00:15:30 +00007271 return Ty1 == Type::Int32Ty && Ty2 == Type::Int64Ty && Subtarget->is64Bit();
7272}
7273
7274bool X86TargetLowering::isZExtFree(MVT VT1, MVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00007275 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Dan Gohman97121ba2009-04-08 00:15:30 +00007276 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
7277}
7278
Evan Cheng60c07e12006-07-05 22:17:51 +00007279/// isShuffleMaskLegal - Targets can use this to indicate that they only
7280/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
7281/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
7282/// are assumed to be legal.
7283bool
Dan Gohman475871a2008-07-27 21:46:04 +00007284X86TargetLowering::isShuffleMaskLegal(SDValue Mask, MVT VT) const {
Evan Cheng60c07e12006-07-05 22:17:51 +00007285 // Only do shuffles on 128-bit vector types for now.
Nate Begemanb9a47b82009-02-23 08:49:38 +00007286 // FIXME: pshufb, blends
Duncan Sands83ec4b62008-06-06 12:08:01 +00007287 if (VT.getSizeInBits() == 64) return false;
Gabor Greifba36cb52008-08-28 21:40:38 +00007288 return (Mask.getNode()->getNumOperands() <= 4 ||
7289 isIdentityMask(Mask.getNode()) ||
7290 isIdentityMask(Mask.getNode(), true) ||
7291 isSplatMask(Mask.getNode()) ||
Nate Begemanb9a47b82009-02-23 08:49:38 +00007292 X86::isPSHUFHWMask(Mask.getNode()) ||
7293 X86::isPSHUFLWMask(Mask.getNode()) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00007294 X86::isUNPCKLMask(Mask.getNode()) ||
7295 X86::isUNPCKHMask(Mask.getNode()) ||
7296 X86::isUNPCKL_v_undef_Mask(Mask.getNode()) ||
7297 X86::isUNPCKH_v_undef_Mask(Mask.getNode()));
Evan Cheng60c07e12006-07-05 22:17:51 +00007298}
7299
Dan Gohman7d8143f2008-04-09 20:09:42 +00007300bool
Dan Gohman475871a2008-07-27 21:46:04 +00007301X86TargetLowering::isVectorClearMaskLegal(const std::vector<SDValue> &BVOps,
Duncan Sands83ec4b62008-06-06 12:08:01 +00007302 MVT EVT, SelectionDAG &DAG) const {
Evan Cheng60c07e12006-07-05 22:17:51 +00007303 unsigned NumElts = BVOps.size();
7304 // Only do shuffles on 128-bit vector types for now.
Duncan Sands83ec4b62008-06-06 12:08:01 +00007305 if (EVT.getSizeInBits() * NumElts == 64) return false;
Evan Cheng60c07e12006-07-05 22:17:51 +00007306 if (NumElts == 2) return true;
7307 if (NumElts == 4) {
Chris Lattner5a88b832007-02-25 07:10:00 +00007308 return (isMOVLMask(&BVOps[0], 4) ||
7309 isCommutedMOVL(&BVOps[0], 4, true) ||
Scott Michelfdc40a02009-02-17 22:15:04 +00007310 isSHUFPMask(&BVOps[0], 4) ||
Chris Lattner5a88b832007-02-25 07:10:00 +00007311 isCommutedSHUFP(&BVOps[0], 4));
Evan Cheng60c07e12006-07-05 22:17:51 +00007312 }
7313 return false;
7314}
7315
7316//===----------------------------------------------------------------------===//
7317// X86 Scheduler Hooks
7318//===----------------------------------------------------------------------===//
7319
Mon P Wang63307c32008-05-05 19:05:59 +00007320// private utility function
7321MachineBasicBlock *
7322X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
7323 MachineBasicBlock *MBB,
7324 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007325 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007326 unsigned LoadOpc,
7327 unsigned CXchgOpc,
7328 unsigned copyOpc,
7329 unsigned notOpc,
7330 unsigned EAXreg,
7331 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00007332 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00007333 // For the atomic bitwise operator, we generate
7334 // thisMBB:
7335 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00007336 // ld t1 = [bitinstr.addr]
7337 // op t2 = t1, [bitinstr.val]
7338 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00007339 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7340 // bz newMBB
7341 // fallthrough -->nextMBB
7342 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7343 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007344 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00007345 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00007346
Mon P Wang63307c32008-05-05 19:05:59 +00007347 /// First build the CFG
7348 MachineFunction *F = MBB->getParent();
7349 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007350 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7351 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7352 F->insert(MBBIter, newMBB);
7353 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007354
Mon P Wang63307c32008-05-05 19:05:59 +00007355 // Move all successors to thisMBB to nextMBB
7356 nextMBB->transferSuccessors(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007357
Mon P Wang63307c32008-05-05 19:05:59 +00007358 // Update thisMBB to fall through to newMBB
7359 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007360
Mon P Wang63307c32008-05-05 19:05:59 +00007361 // newMBB jumps to itself and fall through to nextMBB
7362 newMBB->addSuccessor(nextMBB);
7363 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007364
Mon P Wang63307c32008-05-05 19:05:59 +00007365 // Insert instructions into newMBB based on incoming instruction
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007366 assert(bInstr->getNumOperands() < X86AddrNumOperands + 4 &&
7367 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00007368 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00007369 MachineOperand& destOper = bInstr->getOperand(0);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007370 MachineOperand* argOpers[2 + X86AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00007371 int numArgs = bInstr->getNumOperands() - 1;
7372 for (int i=0; i < numArgs; ++i)
7373 argOpers[i] = &bInstr->getOperand(i+1);
7374
7375 // x86 address has 4 operands: base, index, scale, and displacement
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007376 int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
7377 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00007378
Dale Johannesen140be2d2008-08-19 18:47:28 +00007379 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007380 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00007381 for (int i=0; i <= lastAddrIndx; ++i)
7382 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007383
Dale Johannesen140be2d2008-08-19 18:47:28 +00007384 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007385 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00007386 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007387 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007388 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007389 tt = t1;
7390
Dale Johannesen140be2d2008-08-19 18:47:28 +00007391 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00007392 assert((argOpers[valArgIndx]->isReg() ||
7393 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00007394 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00007395 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00007396 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00007397 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00007398 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007399 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00007400 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007401
Dale Johannesene4d209d2009-02-03 20:21:25 +00007402 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00007403 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007404
Dale Johannesene4d209d2009-02-03 20:21:25 +00007405 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00007406 for (int i=0; i <= lastAddrIndx; ++i)
7407 (*MIB).addOperand(*argOpers[i]);
7408 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00007409 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7410 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7411
Dale Johannesene4d209d2009-02-03 20:21:25 +00007412 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00007413 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00007414
Mon P Wang63307c32008-05-05 19:05:59 +00007415 // insert branch
Dale Johannesene4d209d2009-02-03 20:21:25 +00007416 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00007417
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007418 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00007419 return nextMBB;
7420}
7421
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00007422// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00007423MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007424X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
7425 MachineBasicBlock *MBB,
7426 unsigned regOpcL,
7427 unsigned regOpcH,
7428 unsigned immOpcL,
7429 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00007430 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007431 // For the atomic bitwise operator, we generate
7432 // thisMBB (instructions are in pairs, except cmpxchg8b)
7433 // ld t1,t2 = [bitinstr.addr]
7434 // newMBB:
7435 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
7436 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00007437 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007438 // mov ECX, EBX <- t5, t6
7439 // mov EAX, EDX <- t1, t2
7440 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
7441 // mov t3, t4 <- EAX, EDX
7442 // bz newMBB
7443 // result in out1, out2
7444 // fallthrough -->nextMBB
7445
7446 const TargetRegisterClass *RC = X86::GR32RegisterClass;
7447 const unsigned LoadOpc = X86::MOV32rm;
7448 const unsigned copyOpc = X86::MOV32rr;
7449 const unsigned NotOpc = X86::NOT32r;
7450 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7451 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
7452 MachineFunction::iterator MBBIter = MBB;
7453 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00007454
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007455 /// First build the CFG
7456 MachineFunction *F = MBB->getParent();
7457 MachineBasicBlock *thisMBB = MBB;
7458 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7459 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7460 F->insert(MBBIter, newMBB);
7461 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007462
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007463 // Move all successors to thisMBB to nextMBB
7464 nextMBB->transferSuccessors(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007465
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007466 // Update thisMBB to fall through to newMBB
7467 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007468
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007469 // newMBB jumps to itself and fall through to nextMBB
7470 newMBB->addSuccessor(nextMBB);
7471 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007472
Dale Johannesene4d209d2009-02-03 20:21:25 +00007473 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007474 // Insert instructions into newMBB based on incoming instruction
7475 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007476 assert(bInstr->getNumOperands() < X86AddrNumOperands + 14 &&
7477 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007478 MachineOperand& dest1Oper = bInstr->getOperand(0);
7479 MachineOperand& dest2Oper = bInstr->getOperand(1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007480 MachineOperand* argOpers[2 + X86AddrNumOperands];
7481 for (int i=0; i < 2 + X86AddrNumOperands; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007482 argOpers[i] = &bInstr->getOperand(i+2);
7483
7484 // x86 address has 4 operands: base, index, scale, and displacement
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007485 int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00007486
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007487 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007488 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007489 for (int i=0; i <= lastAddrIndx; ++i)
7490 (*MIB).addOperand(*argOpers[i]);
7491 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007492 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00007493 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00007494 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007495 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00007496 MachineOperand newOp3 = *(argOpers[3]);
7497 if (newOp3.isImm())
7498 newOp3.setImm(newOp3.getImm()+4);
7499 else
7500 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007501 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00007502 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007503
7504 // t3/4 are defined later, at the bottom of the loop
7505 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
7506 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007507 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007508 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007509 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007510 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
7511
7512 unsigned tt1 = F->getRegInfo().createVirtualRegister(RC);
7513 unsigned tt2 = F->getRegInfo().createVirtualRegister(RC);
Scott Michelfdc40a02009-02-17 22:15:04 +00007514 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00007515 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt1).addReg(t1);
7516 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt2).addReg(t2);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007517 } else {
7518 tt1 = t1;
7519 tt2 = t2;
7520 }
7521
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007522 int valArgIndx = lastAddrIndx + 1;
7523 assert((argOpers[valArgIndx]->isReg() ||
7524 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007525 "invalid operand");
7526 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
7527 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007528 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00007529 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007530 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00007531 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00007532 if (regOpcL != X86::MOV32rr)
7533 MIB.addReg(tt1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007534 (*MIB).addOperand(*argOpers[valArgIndx]);
7535 assert(argOpers[valArgIndx + 1]->isReg() ==
7536 argOpers[valArgIndx]->isReg());
7537 assert(argOpers[valArgIndx + 1]->isImm() ==
7538 argOpers[valArgIndx]->isImm());
7539 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00007540 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007541 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00007542 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00007543 if (regOpcH != X86::MOV32rr)
7544 MIB.addReg(tt2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007545 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007546
Dale Johannesene4d209d2009-02-03 20:21:25 +00007547 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007548 MIB.addReg(t1);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007549 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007550 MIB.addReg(t2);
7551
Dale Johannesene4d209d2009-02-03 20:21:25 +00007552 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007553 MIB.addReg(t5);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007554 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007555 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00007556
Dale Johannesene4d209d2009-02-03 20:21:25 +00007557 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007558 for (int i=0; i <= lastAddrIndx; ++i)
7559 (*MIB).addOperand(*argOpers[i]);
7560
7561 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7562 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7563
Dale Johannesene4d209d2009-02-03 20:21:25 +00007564 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007565 MIB.addReg(X86::EAX);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007566 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007567 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00007568
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007569 // insert branch
Dale Johannesene4d209d2009-02-03 20:21:25 +00007570 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007571
7572 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
7573 return nextMBB;
7574}
7575
7576// private utility function
7577MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00007578X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
7579 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00007580 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00007581 // For the atomic min/max operator, we generate
7582 // thisMBB:
7583 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00007584 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00007585 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00007586 // cmp t1, t2
7587 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00007588 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00007589 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
7590 // bz newMBB
7591 // fallthrough -->nextMBB
7592 //
7593 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7594 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007595 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00007596 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00007597
Mon P Wang63307c32008-05-05 19:05:59 +00007598 /// First build the CFG
7599 MachineFunction *F = MBB->getParent();
7600 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007601 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7602 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7603 F->insert(MBBIter, newMBB);
7604 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007605
Mon P Wang63307c32008-05-05 19:05:59 +00007606 // Move all successors to thisMBB to nextMBB
7607 nextMBB->transferSuccessors(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007608
Mon P Wang63307c32008-05-05 19:05:59 +00007609 // Update thisMBB to fall through to newMBB
7610 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007611
Mon P Wang63307c32008-05-05 19:05:59 +00007612 // newMBB jumps to newMBB and fall through to nextMBB
7613 newMBB->addSuccessor(nextMBB);
7614 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00007615
Dale Johannesene4d209d2009-02-03 20:21:25 +00007616 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00007617 // Insert instructions into newMBB based on incoming instruction
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007618 assert(mInstr->getNumOperands() < X86AddrNumOperands + 4 &&
7619 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00007620 MachineOperand& destOper = mInstr->getOperand(0);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007621 MachineOperand* argOpers[2 + X86AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00007622 int numArgs = mInstr->getNumOperands() - 1;
7623 for (int i=0; i < numArgs; ++i)
7624 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007625
Mon P Wang63307c32008-05-05 19:05:59 +00007626 // x86 address has 4 operands: base, index, scale, and displacement
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00007627 int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
7628 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00007629
Mon P Wangab3e7472008-05-05 22:56:23 +00007630 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007631 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00007632 for (int i=0; i <= lastAddrIndx; ++i)
7633 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00007634
Mon P Wang63307c32008-05-05 19:05:59 +00007635 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00007636 assert((argOpers[valArgIndx]->isReg() ||
7637 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00007638 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00007639
7640 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00007641 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00007642 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00007643 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00007644 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00007645 (*MIB).addOperand(*argOpers[valArgIndx]);
7646
Dale Johannesene4d209d2009-02-03 20:21:25 +00007647 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00007648 MIB.addReg(t1);
7649
Dale Johannesene4d209d2009-02-03 20:21:25 +00007650 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00007651 MIB.addReg(t1);
7652 MIB.addReg(t2);
7653
7654 // Generate movc
7655 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007656 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00007657 MIB.addReg(t2);
7658 MIB.addReg(t1);
7659
7660 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00007661 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00007662 for (int i=0; i <= lastAddrIndx; ++i)
7663 (*MIB).addOperand(*argOpers[i]);
7664 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00007665 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7666 (*MIB).addMemOperand(*F, *mInstr->memoperands_begin());
Scott Michelfdc40a02009-02-17 22:15:04 +00007667
Dale Johannesene4d209d2009-02-03 20:21:25 +00007668 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +00007669 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +00007670
Mon P Wang63307c32008-05-05 19:05:59 +00007671 // insert branch
Dale Johannesene4d209d2009-02-03 20:21:25 +00007672 BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00007673
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007674 F->DeleteMachineInstr(mInstr); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00007675 return nextMBB;
7676}
7677
7678
Evan Cheng60c07e12006-07-05 22:17:51 +00007679MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00007680X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00007681 MachineBasicBlock *BB) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00007682 DebugLoc dl = MI->getDebugLoc();
Evan Chengc0f64ff2006-11-27 23:37:22 +00007683 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Evan Cheng60c07e12006-07-05 22:17:51 +00007684 switch (MI->getOpcode()) {
7685 default: assert(false && "Unexpected instr type to insert");
Mon P Wang9e5ecb82008-12-12 01:25:51 +00007686 case X86::CMOV_V1I64:
Evan Cheng60c07e12006-07-05 22:17:51 +00007687 case X86::CMOV_FR32:
7688 case X86::CMOV_FR64:
7689 case X86::CMOV_V4F32:
7690 case X86::CMOV_V2F64:
Evan Chenge5f62042007-09-29 00:00:36 +00007691 case X86::CMOV_V2I64: {
Evan Cheng60c07e12006-07-05 22:17:51 +00007692 // To "insert" a SELECT_CC instruction, we actually have to insert the
7693 // diamond control-flow pattern. The incoming instruction knows the
7694 // destination vreg to set, the condition code register to branch on, the
7695 // true/false values to select between, and a branch opcode to use.
7696 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007697 MachineFunction::iterator It = BB;
Evan Cheng60c07e12006-07-05 22:17:51 +00007698 ++It;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007699
Evan Cheng60c07e12006-07-05 22:17:51 +00007700 // thisMBB:
7701 // ...
7702 // TrueVal = ...
7703 // cmpTY ccX, r1, r2
7704 // bCC copy1MBB
7705 // fallthrough --> copy0MBB
7706 MachineBasicBlock *thisMBB = BB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007707 MachineFunction *F = BB->getParent();
7708 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7709 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007710 unsigned Opc =
Chris Lattner7fbe9722006-10-20 17:42:20 +00007711 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
Dale Johannesene4d209d2009-02-03 20:21:25 +00007712 BuildMI(BB, dl, TII->get(Opc)).addMBB(sinkMBB);
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007713 F->insert(It, copy0MBB);
7714 F->insert(It, sinkMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00007715 // Update machine-CFG edges by transferring all successors of the current
Evan Cheng60c07e12006-07-05 22:17:51 +00007716 // block to the new block which will contain the Phi node for the select.
Mon P Wang63307c32008-05-05 19:05:59 +00007717 sinkMBB->transferSuccessors(BB);
7718
7719 // Add the true and fallthrough blocks as its successors.
Evan Cheng60c07e12006-07-05 22:17:51 +00007720 BB->addSuccessor(copy0MBB);
7721 BB->addSuccessor(sinkMBB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007722
Evan Cheng60c07e12006-07-05 22:17:51 +00007723 // copy0MBB:
7724 // %FalseValue = ...
7725 // # fallthrough to sinkMBB
7726 BB = copy0MBB;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007727
Evan Cheng60c07e12006-07-05 22:17:51 +00007728 // Update machine-CFG edges
7729 BB->addSuccessor(sinkMBB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007730
Evan Cheng60c07e12006-07-05 22:17:51 +00007731 // sinkMBB:
7732 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7733 // ...
7734 BB = sinkMBB;
Dale Johannesene4d209d2009-02-03 20:21:25 +00007735 BuildMI(BB, dl, TII->get(X86::PHI), MI->getOperand(0).getReg())
Evan Cheng60c07e12006-07-05 22:17:51 +00007736 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7737 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7738
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007739 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +00007740 return BB;
7741 }
7742
Dale Johannesen849f2142007-07-03 00:53:03 +00007743 case X86::FP32_TO_INT16_IN_MEM:
7744 case X86::FP32_TO_INT32_IN_MEM:
7745 case X86::FP32_TO_INT64_IN_MEM:
7746 case X86::FP64_TO_INT16_IN_MEM:
7747 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +00007748 case X86::FP64_TO_INT64_IN_MEM:
7749 case X86::FP80_TO_INT16_IN_MEM:
7750 case X86::FP80_TO_INT32_IN_MEM:
7751 case X86::FP80_TO_INT64_IN_MEM: {
Evan Cheng60c07e12006-07-05 22:17:51 +00007752 // Change the floating point control register to use "round towards zero"
7753 // mode when truncating to an integer value.
7754 MachineFunction *F = BB->getParent();
7755 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007756 addFrameReference(BuildMI(BB, dl, TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007757
7758 // Load the old value of the high byte of the control word...
7759 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +00007760 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Scott Michelfdc40a02009-02-17 22:15:04 +00007761 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007762 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007763
7764 // Set the high part to be round to zero...
Dale Johannesene4d209d2009-02-03 20:21:25 +00007765 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +00007766 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +00007767
7768 // Reload the modified control word now...
Dale Johannesene4d209d2009-02-03 20:21:25 +00007769 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007770
7771 // Restore the memory image of control word to original value
Dale Johannesene4d209d2009-02-03 20:21:25 +00007772 addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +00007773 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +00007774
7775 // Get the X86 opcode to use.
7776 unsigned Opc;
7777 switch (MI->getOpcode()) {
7778 default: assert(0 && "illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +00007779 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
7780 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
7781 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
7782 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
7783 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
7784 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +00007785 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
7786 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
7787 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +00007788 }
7789
7790 X86AddressMode AM;
7791 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +00007792 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +00007793 AM.BaseType = X86AddressMode::RegBase;
7794 AM.Base.Reg = Op.getReg();
7795 } else {
7796 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +00007797 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +00007798 }
7799 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +00007800 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +00007801 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00007802 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +00007803 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +00007804 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00007805 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +00007806 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +00007807 AM.GV = Op.getGlobal();
7808 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +00007809 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00007810 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007811 addFullAddress(BuildMI(BB, dl, TII->get(Opc)), AM)
Rafael Espindola8ef2b892009-04-08 08:09:33 +00007812 .addReg(MI->getOperand(X86AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +00007813
7814 // Reload the original control word now.
Dale Johannesene4d209d2009-02-03 20:21:25 +00007815 addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007816
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007817 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +00007818 return BB;
7819 }
Mon P Wang63307c32008-05-05 19:05:59 +00007820 case X86::ATOMAND32:
7821 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00007822 X86::AND32ri, X86::MOV32rm,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007823 X86::LCMPXCHG32, X86::MOV32rr,
7824 X86::NOT32r, X86::EAX,
7825 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +00007826 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +00007827 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
7828 X86::OR32ri, X86::MOV32rm,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007829 X86::LCMPXCHG32, X86::MOV32rr,
7830 X86::NOT32r, X86::EAX,
7831 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +00007832 case X86::ATOMXOR32:
7833 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00007834 X86::XOR32ri, X86::MOV32rm,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007835 X86::LCMPXCHG32, X86::MOV32rr,
7836 X86::NOT32r, X86::EAX,
7837 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007838 case X86::ATOMNAND32:
7839 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007840 X86::AND32ri, X86::MOV32rm,
7841 X86::LCMPXCHG32, X86::MOV32rr,
7842 X86::NOT32r, X86::EAX,
7843 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +00007844 case X86::ATOMMIN32:
7845 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
7846 case X86::ATOMMAX32:
7847 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
7848 case X86::ATOMUMIN32:
7849 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
7850 case X86::ATOMUMAX32:
7851 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +00007852
7853 case X86::ATOMAND16:
7854 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7855 X86::AND16ri, X86::MOV16rm,
7856 X86::LCMPXCHG16, X86::MOV16rr,
7857 X86::NOT16r, X86::AX,
7858 X86::GR16RegisterClass);
7859 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +00007860 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007861 X86::OR16ri, X86::MOV16rm,
7862 X86::LCMPXCHG16, X86::MOV16rr,
7863 X86::NOT16r, X86::AX,
7864 X86::GR16RegisterClass);
7865 case X86::ATOMXOR16:
7866 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
7867 X86::XOR16ri, X86::MOV16rm,
7868 X86::LCMPXCHG16, X86::MOV16rr,
7869 X86::NOT16r, X86::AX,
7870 X86::GR16RegisterClass);
7871 case X86::ATOMNAND16:
7872 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7873 X86::AND16ri, X86::MOV16rm,
7874 X86::LCMPXCHG16, X86::MOV16rr,
7875 X86::NOT16r, X86::AX,
7876 X86::GR16RegisterClass, true);
7877 case X86::ATOMMIN16:
7878 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
7879 case X86::ATOMMAX16:
7880 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
7881 case X86::ATOMUMIN16:
7882 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
7883 case X86::ATOMUMAX16:
7884 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
7885
7886 case X86::ATOMAND8:
7887 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7888 X86::AND8ri, X86::MOV8rm,
7889 X86::LCMPXCHG8, X86::MOV8rr,
7890 X86::NOT8r, X86::AL,
7891 X86::GR8RegisterClass);
7892 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +00007893 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007894 X86::OR8ri, X86::MOV8rm,
7895 X86::LCMPXCHG8, X86::MOV8rr,
7896 X86::NOT8r, X86::AL,
7897 X86::GR8RegisterClass);
7898 case X86::ATOMXOR8:
7899 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
7900 X86::XOR8ri, X86::MOV8rm,
7901 X86::LCMPXCHG8, X86::MOV8rr,
7902 X86::NOT8r, X86::AL,
7903 X86::GR8RegisterClass);
7904 case X86::ATOMNAND8:
7905 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7906 X86::AND8ri, X86::MOV8rm,
7907 X86::LCMPXCHG8, X86::MOV8rr,
7908 X86::NOT8r, X86::AL,
7909 X86::GR8RegisterClass, true);
7910 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007911 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +00007912 case X86::ATOMAND64:
7913 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00007914 X86::AND64ri32, X86::MOV64rm,
Dale Johannesena99e3842008-08-20 00:48:50 +00007915 X86::LCMPXCHG64, X86::MOV64rr,
7916 X86::NOT64r, X86::RAX,
7917 X86::GR64RegisterClass);
7918 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +00007919 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
7920 X86::OR64ri32, X86::MOV64rm,
Dale Johannesena99e3842008-08-20 00:48:50 +00007921 X86::LCMPXCHG64, X86::MOV64rr,
7922 X86::NOT64r, X86::RAX,
7923 X86::GR64RegisterClass);
7924 case X86::ATOMXOR64:
7925 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00007926 X86::XOR64ri32, X86::MOV64rm,
Dale Johannesena99e3842008-08-20 00:48:50 +00007927 X86::LCMPXCHG64, X86::MOV64rr,
7928 X86::NOT64r, X86::RAX,
7929 X86::GR64RegisterClass);
7930 case X86::ATOMNAND64:
7931 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
7932 X86::AND64ri32, X86::MOV64rm,
7933 X86::LCMPXCHG64, X86::MOV64rr,
7934 X86::NOT64r, X86::RAX,
7935 X86::GR64RegisterClass, true);
7936 case X86::ATOMMIN64:
7937 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
7938 case X86::ATOMMAX64:
7939 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
7940 case X86::ATOMUMIN64:
7941 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
7942 case X86::ATOMUMAX64:
7943 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007944
7945 // This group does 64-bit operations on a 32-bit host.
7946 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007947 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007948 X86::AND32rr, X86::AND32rr,
7949 X86::AND32ri, X86::AND32ri,
7950 false);
7951 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007952 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007953 X86::OR32rr, X86::OR32rr,
7954 X86::OR32ri, X86::OR32ri,
7955 false);
7956 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007957 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007958 X86::XOR32rr, X86::XOR32rr,
7959 X86::XOR32ri, X86::XOR32ri,
7960 false);
7961 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007962 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007963 X86::AND32rr, X86::AND32rr,
7964 X86::AND32ri, X86::AND32ri,
7965 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007966 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007967 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007968 X86::ADD32rr, X86::ADC32rr,
7969 X86::ADD32ri, X86::ADC32ri,
7970 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007971 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007972 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007973 X86::SUB32rr, X86::SBB32rr,
7974 X86::SUB32ri, X86::SBB32ri,
7975 false);
Dale Johannesen880ae362008-10-03 22:25:52 +00007976 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00007977 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +00007978 X86::MOV32rr, X86::MOV32rr,
7979 X86::MOV32ri, X86::MOV32ri,
7980 false);
Evan Cheng60c07e12006-07-05 22:17:51 +00007981 }
7982}
7983
7984//===----------------------------------------------------------------------===//
7985// X86 Optimization Hooks
7986//===----------------------------------------------------------------------===//
7987
Dan Gohman475871a2008-07-27 21:46:04 +00007988void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +00007989 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00007990 APInt &KnownZero,
7991 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00007992 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +00007993 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007994 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +00007995 assert((Opc >= ISD::BUILTIN_OP_END ||
7996 Opc == ISD::INTRINSIC_WO_CHAIN ||
7997 Opc == ISD::INTRINSIC_W_CHAIN ||
7998 Opc == ISD::INTRINSIC_VOID) &&
7999 "Should use MaskedValueIsZero if you don't know whether Op"
8000 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +00008001
Dan Gohmanf4f92f52008-02-13 23:07:24 +00008002 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +00008003 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +00008004 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +00008005 case X86ISD::ADD:
8006 case X86ISD::SUB:
8007 case X86ISD::SMUL:
8008 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +00008009 case X86ISD::INC:
8010 case X86ISD::DEC:
Evan Cheng97d0e0e2009-02-02 09:15:04 +00008011 // These nodes' second result is a boolean.
8012 if (Op.getResNo() == 0)
8013 break;
8014 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008015 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00008016 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
8017 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +00008018 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +00008019 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +00008020}
Chris Lattner259e97c2006-01-31 19:43:35 +00008021
Evan Cheng206ee9d2006-07-07 08:33:52 +00008022/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +00008023/// node is a GlobalAddress + offset.
8024bool X86TargetLowering::isGAPlusOffset(SDNode *N,
8025 GlobalValue* &GA, int64_t &Offset) const{
8026 if (N->getOpcode() == X86ISD::Wrapper) {
8027 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +00008028 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00008029 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +00008030 return true;
8031 }
Evan Cheng206ee9d2006-07-07 08:33:52 +00008032 }
Evan Chengad4196b2008-05-12 19:56:52 +00008033 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +00008034}
8035
Evan Chengad4196b2008-05-12 19:56:52 +00008036static bool isBaseAlignmentOfN(unsigned N, SDNode *Base,
8037 const TargetLowering &TLI) {
Evan Cheng206ee9d2006-07-07 08:33:52 +00008038 GlobalValue *GV;
Nick Lewycky916a9f02008-02-02 08:29:58 +00008039 int64_t Offset = 0;
Evan Chengad4196b2008-05-12 19:56:52 +00008040 if (TLI.isGAPlusOffset(Base, GV, Offset))
Evan Cheng7e2ff772008-05-08 00:57:18 +00008041 return (GV->getAlignment() >= N && (Offset % N) == 0);
Chris Lattnerba96fbc2008-01-26 20:07:42 +00008042 // DAG combine handles the stack object case.
Evan Cheng206ee9d2006-07-07 08:33:52 +00008043 return false;
8044}
8045
Dan Gohman475871a2008-07-27 21:46:04 +00008046static bool EltsFromConsecutiveLoads(SDNode *N, SDValue PermMask,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008047 unsigned NumElems, MVT EVT,
Evan Chengad4196b2008-05-12 19:56:52 +00008048 SDNode *&Base,
8049 SelectionDAG &DAG, MachineFrameInfo *MFI,
8050 const TargetLowering &TLI) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00008051 Base = NULL;
8052 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00008053 SDValue Idx = PermMask.getOperand(i);
Evan Cheng7e2ff772008-05-08 00:57:18 +00008054 if (Idx.getOpcode() == ISD::UNDEF) {
8055 if (!Base)
8056 return false;
8057 continue;
8058 }
8059
Dan Gohman475871a2008-07-27 21:46:04 +00008060 SDValue Elt = DAG.getShuffleScalarElt(N, i);
Gabor Greifba36cb52008-08-28 21:40:38 +00008061 if (!Elt.getNode() ||
8062 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
Evan Cheng7e2ff772008-05-08 00:57:18 +00008063 return false;
8064 if (!Base) {
Gabor Greifba36cb52008-08-28 21:40:38 +00008065 Base = Elt.getNode();
Evan Cheng50d9e722008-05-10 06:46:49 +00008066 if (Base->getOpcode() == ISD::UNDEF)
8067 return false;
Evan Cheng7e2ff772008-05-08 00:57:18 +00008068 continue;
8069 }
8070 if (Elt.getOpcode() == ISD::UNDEF)
8071 continue;
8072
Gabor Greifba36cb52008-08-28 21:40:38 +00008073 if (!TLI.isConsecutiveLoad(Elt.getNode(), Base,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008074 EVT.getSizeInBits()/8, i, MFI))
Evan Cheng7e2ff772008-05-08 00:57:18 +00008075 return false;
8076 }
8077 return true;
8078}
Evan Cheng206ee9d2006-07-07 08:33:52 +00008079
8080/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
8081/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
8082/// if the load addresses are consecutive, non-overlapping, and in the right
Mon P Wang1e955802009-04-03 02:43:30 +00008083/// order. In the case of v2i64, it will see if it can rewrite the
8084/// shuffle to be an appropriate build vector so it can take advantage of
8085// performBuildVectorCombine.
Dan Gohman475871a2008-07-27 21:46:04 +00008086static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Evan Chengad4196b2008-05-12 19:56:52 +00008087 const TargetLowering &TLI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00008088 DebugLoc dl = N->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008089 MVT VT = N->getValueType(0);
8090 MVT EVT = VT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00008091 SDValue PermMask = N->getOperand(2);
Evan Cheng71f489d2008-05-05 22:12:23 +00008092 unsigned NumElems = PermMask.getNumOperands();
Mon P Wang1e955802009-04-03 02:43:30 +00008093
8094 // For x86-32 machines, if we see an insert and then a shuffle in a v2i64
8095 // where the upper half is 0, it is advantageous to rewrite it as a build
8096 // vector of (0, val) so it can use movq.
8097 if (VT == MVT::v2i64) {
8098 SDValue In[2];
8099 In[0] = N->getOperand(0);
8100 In[1] = N->getOperand(1);
8101 unsigned Idx0 =cast<ConstantSDNode>(PermMask.getOperand(0))->getZExtValue();
8102 unsigned Idx1 =cast<ConstantSDNode>(PermMask.getOperand(1))->getZExtValue();
8103 if (In[0].getValueType().getVectorNumElements() == NumElems &&
8104 In[Idx0/2].getOpcode() == ISD::INSERT_VECTOR_ELT &&
8105 In[Idx1/2].getOpcode() == ISD::BUILD_VECTOR) {
8106 ConstantSDNode* InsertVecIdx =
8107 dyn_cast<ConstantSDNode>(In[Idx0/2].getOperand(2));
8108 if (InsertVecIdx &&
8109 InsertVecIdx->getZExtValue() == (Idx0 % 2) &&
8110 isZeroNode(In[Idx1/2].getOperand(Idx1 % 2))) {
8111 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
8112 In[Idx0/2].getOperand(1),
8113 In[Idx1/2].getOperand(Idx1 % 2));
8114 }
8115 }
8116 }
8117
8118 // Try to combine a vector_shuffle into a 128-bit load.
8119 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Evan Cheng206ee9d2006-07-07 08:33:52 +00008120 SDNode *Base = NULL;
Evan Chengad4196b2008-05-12 19:56:52 +00008121 if (!EltsFromConsecutiveLoads(N, PermMask, NumElems, EVT, Base,
8122 DAG, MFI, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00008123 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +00008124
Dan Gohmand3006222007-07-27 17:16:43 +00008125 LoadSDNode *LD = cast<LoadSDNode>(Base);
Gabor Greifba36cb52008-08-28 21:40:38 +00008126 if (isBaseAlignmentOfN(16, Base->getOperand(1).getNode(), TLI))
Dale Johannesene4d209d2009-02-03 20:21:25 +00008127 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008128 LD->getSrcValue(), LD->getSrcValueOffset(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008129 LD->isVolatile());
8130 return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
8131 LD->getSrcValue(), LD->getSrcValueOffset(),
8132 LD->isVolatile(), LD->getAlignment());
Evan Cheng206ee9d2006-07-07 08:33:52 +00008133}
8134
Evan Cheng9bfa03c2008-05-12 23:04:07 +00008135/// PerformBuildVectorCombine - build_vector 0,(load i64 / f64) -> movq / movsd.
Dan Gohman475871a2008-07-27 21:46:04 +00008136static SDValue PerformBuildVectorCombine(SDNode *N, SelectionDAG &DAG,
Dan Gohmane5af2d32009-01-29 01:59:02 +00008137 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng8a186ae2008-09-24 23:26:36 +00008138 const X86Subtarget *Subtarget,
8139 const TargetLowering &TLI) {
Evan Chengf26ffe92008-05-29 08:22:04 +00008140 unsigned NumOps = N->getNumOperands();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008141 DebugLoc dl = N->getDebugLoc();
Evan Chengf26ffe92008-05-29 08:22:04 +00008142
Evan Chengd880b972008-05-09 21:53:03 +00008143 // Ignore single operand BUILD_VECTOR.
Evan Chengf26ffe92008-05-29 08:22:04 +00008144 if (NumOps == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00008145 return SDValue();
Evan Chengd880b972008-05-09 21:53:03 +00008146
Duncan Sands83ec4b62008-06-06 12:08:01 +00008147 MVT VT = N->getValueType(0);
8148 MVT EVT = VT.getVectorElementType();
Evan Chengd880b972008-05-09 21:53:03 +00008149 if ((EVT != MVT::i64 && EVT != MVT::f64) || Subtarget->is64Bit())
8150 // We are looking for load i64 and zero extend. We want to transform
8151 // it before legalizer has a chance to expand it. Also look for i64
8152 // BUILD_PAIR bit casted to f64.
Dan Gohman475871a2008-07-27 21:46:04 +00008153 return SDValue();
Evan Chengd880b972008-05-09 21:53:03 +00008154 // This must be an insertion into a zero vector.
Dan Gohman475871a2008-07-27 21:46:04 +00008155 SDValue HighElt = N->getOperand(1);
Evan Cheng25210da2008-05-10 00:58:41 +00008156 if (!isZeroNode(HighElt))
Dan Gohman475871a2008-07-27 21:46:04 +00008157 return SDValue();
Evan Chengd880b972008-05-09 21:53:03 +00008158
8159 // Value must be a load.
Gabor Greifba36cb52008-08-28 21:40:38 +00008160 SDNode *Base = N->getOperand(0).getNode();
Evan Chengd880b972008-05-09 21:53:03 +00008161 if (!isa<LoadSDNode>(Base)) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00008162 if (Base->getOpcode() != ISD::BIT_CONVERT)
Dan Gohman475871a2008-07-27 21:46:04 +00008163 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00008164 Base = Base->getOperand(0).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00008165 if (!isa<LoadSDNode>(Base))
Dan Gohman475871a2008-07-27 21:46:04 +00008166 return SDValue();
Evan Chengd880b972008-05-09 21:53:03 +00008167 }
Evan Chengd880b972008-05-09 21:53:03 +00008168
8169 // Transform it into VZEXT_LOAD addr.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00008170 LoadSDNode *LD = cast<LoadSDNode>(Base);
Scott Michelfdc40a02009-02-17 22:15:04 +00008171
Nate Begemanf7333bf2008-05-28 00:24:25 +00008172 // Load must not be an extload.
8173 if (LD->getExtensionType() != ISD::NON_EXTLOAD)
Dan Gohman475871a2008-07-27 21:46:04 +00008174 return SDValue();
Mon P Wang7ad9b512009-01-30 07:07:40 +00008175
8176 // Load type should legal type so we don't have to legalize it.
8177 if (!TLI.isTypeLegal(VT))
8178 return SDValue();
8179
Evan Cheng8a186ae2008-09-24 23:26:36 +00008180 SDVTList Tys = DAG.getVTList(VT, MVT::Other);
8181 SDValue Ops[] = { LD->getChain(), LD->getBasePtr() };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008182 SDValue ResNode = DAG.getNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008183 TargetLowering::TargetLoweringOpt TLO(DAG);
8184 TLO.CombineTo(SDValue(Base, 1), ResNode.getValue(1));
8185 DCI.CommitTargetLoweringOpt(TLO);
Evan Cheng8a186ae2008-09-24 23:26:36 +00008186 return ResNode;
Scott Michelfdc40a02009-02-17 22:15:04 +00008187}
Evan Chengd880b972008-05-09 21:53:03 +00008188
Chris Lattner83e6c992006-10-04 06:57:07 +00008189/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008190static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +00008191 const X86Subtarget *Subtarget) {
8192 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008193 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +00008194 // Get the LHS/RHS of the select.
8195 SDValue LHS = N->getOperand(1);
8196 SDValue RHS = N->getOperand(2);
8197
Chris Lattner83e6c992006-10-04 06:57:07 +00008198 // If we have SSE[12] support, try to form min/max nodes.
8199 if (Subtarget->hasSSE2() &&
Chris Lattner47b4ce82009-03-11 05:48:52 +00008200 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
8201 Cond.getOpcode() == ISD::SETCC) {
8202 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008203
Chris Lattner47b4ce82009-03-11 05:48:52 +00008204 unsigned Opcode = 0;
8205 if (LHS == Cond.getOperand(0) && RHS == Cond.getOperand(1)) {
8206 switch (CC) {
8207 default: break;
8208 case ISD::SETOLE: // (X <= Y) ? X : Y -> min
8209 case ISD::SETULE:
8210 case ISD::SETLE:
8211 if (!UnsafeFPMath) break;
8212 // FALL THROUGH.
8213 case ISD::SETOLT: // (X olt/lt Y) ? X : Y -> min
8214 case ISD::SETLT:
8215 Opcode = X86ISD::FMIN;
8216 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008217
Chris Lattner47b4ce82009-03-11 05:48:52 +00008218 case ISD::SETOGT: // (X > Y) ? X : Y -> max
8219 case ISD::SETUGT:
8220 case ISD::SETGT:
8221 if (!UnsafeFPMath) break;
8222 // FALL THROUGH.
8223 case ISD::SETUGE: // (X uge/ge Y) ? X : Y -> max
8224 case ISD::SETGE:
8225 Opcode = X86ISD::FMAX;
8226 break;
Chris Lattner83e6c992006-10-04 06:57:07 +00008227 }
Chris Lattner47b4ce82009-03-11 05:48:52 +00008228 } else if (LHS == Cond.getOperand(1) && RHS == Cond.getOperand(0)) {
8229 switch (CC) {
8230 default: break;
8231 case ISD::SETOGT: // (X > Y) ? Y : X -> min
8232 case ISD::SETUGT:
8233 case ISD::SETGT:
8234 if (!UnsafeFPMath) break;
8235 // FALL THROUGH.
8236 case ISD::SETUGE: // (X uge/ge Y) ? Y : X -> min
8237 case ISD::SETGE:
8238 Opcode = X86ISD::FMIN;
8239 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008240
Chris Lattner47b4ce82009-03-11 05:48:52 +00008241 case ISD::SETOLE: // (X <= Y) ? Y : X -> max
8242 case ISD::SETULE:
8243 case ISD::SETLE:
8244 if (!UnsafeFPMath) break;
8245 // FALL THROUGH.
8246 case ISD::SETOLT: // (X olt/lt Y) ? Y : X -> max
8247 case ISD::SETLT:
8248 Opcode = X86ISD::FMAX;
8249 break;
8250 }
Chris Lattner83e6c992006-10-04 06:57:07 +00008251 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008252
Chris Lattner47b4ce82009-03-11 05:48:52 +00008253 if (Opcode)
8254 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +00008255 }
Chris Lattner47b4ce82009-03-11 05:48:52 +00008256
Chris Lattnerd1980a52009-03-12 06:52:53 +00008257 // If this is a select between two integer constants, try to do some
8258 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +00008259 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
8260 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +00008261 // Don't do this for crazy integer types.
8262 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
8263 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +00008264 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +00008265 bool NeedsCondInvert = false;
8266
Chris Lattnercee56e72009-03-13 05:53:31 +00008267 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +00008268 // Efficiently invertible.
8269 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
8270 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
8271 isa<ConstantSDNode>(Cond.getOperand(1))))) {
8272 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +00008273 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +00008274 }
8275
8276 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +00008277 if (FalseC->getAPIntValue() == 0 &&
8278 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +00008279 if (NeedsCondInvert) // Invert the condition if needed.
8280 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
8281 DAG.getConstant(1, Cond.getValueType()));
8282
8283 // Zero extend the condition if needed.
8284 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
8285
Chris Lattnercee56e72009-03-13 05:53:31 +00008286 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +00008287 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
8288 DAG.getConstant(ShAmt, MVT::i8));
8289 }
Chris Lattner97a29a52009-03-13 05:22:11 +00008290
8291 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +00008292 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +00008293 if (NeedsCondInvert) // Invert the condition if needed.
8294 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
8295 DAG.getConstant(1, Cond.getValueType()));
8296
8297 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +00008298 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
8299 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +00008300 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +00008301 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +00008302 }
Chris Lattnercee56e72009-03-13 05:53:31 +00008303
8304 // Optimize cases that will turn into an LEA instruction. This requires
8305 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
8306 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
8307 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
8308 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
8309
8310 bool isFastMultiplier = false;
8311 if (Diff < 10) {
8312 switch ((unsigned char)Diff) {
8313 default: break;
8314 case 1: // result = add base, cond
8315 case 2: // result = lea base( , cond*2)
8316 case 3: // result = lea base(cond, cond*2)
8317 case 4: // result = lea base( , cond*4)
8318 case 5: // result = lea base(cond, cond*4)
8319 case 8: // result = lea base( , cond*8)
8320 case 9: // result = lea base(cond, cond*8)
8321 isFastMultiplier = true;
8322 break;
8323 }
8324 }
8325
8326 if (isFastMultiplier) {
8327 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
8328 if (NeedsCondInvert) // Invert the condition if needed.
8329 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
8330 DAG.getConstant(1, Cond.getValueType()));
8331
8332 // Zero extend the condition if needed.
8333 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
8334 Cond);
8335 // Scale the condition by the difference.
8336 if (Diff != 1)
8337 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
8338 DAG.getConstant(Diff, Cond.getValueType()));
8339
8340 // Add the base if non-zero.
8341 if (FalseC->getAPIntValue() != 0)
8342 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
8343 SDValue(FalseC, 0));
8344 return Cond;
8345 }
8346 }
Chris Lattnerd1980a52009-03-12 06:52:53 +00008347 }
8348 }
8349
Dan Gohman475871a2008-07-27 21:46:04 +00008350 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +00008351}
8352
Chris Lattnerd1980a52009-03-12 06:52:53 +00008353/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
8354static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
8355 TargetLowering::DAGCombinerInfo &DCI) {
8356 DebugLoc DL = N->getDebugLoc();
8357
8358 // If the flag operand isn't dead, don't touch this CMOV.
8359 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
8360 return SDValue();
8361
8362 // If this is a select between two integer constants, try to do some
8363 // optimizations. Note that the operands are ordered the opposite of SELECT
8364 // operands.
8365 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
8366 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
8367 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
8368 // larger than FalseC (the false value).
8369 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
8370
8371 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
8372 CC = X86::GetOppositeBranchCondition(CC);
8373 std::swap(TrueC, FalseC);
8374 }
8375
8376 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +00008377 // This is efficient for any integer data type (including i8/i16) and
8378 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +00008379 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
8380 SDValue Cond = N->getOperand(3);
8381 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8382 DAG.getConstant(CC, MVT::i8), Cond);
8383
8384 // Zero extend the condition if needed.
8385 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
8386
8387 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
8388 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
8389 DAG.getConstant(ShAmt, MVT::i8));
8390 if (N->getNumValues() == 2) // Dead flag value?
8391 return DCI.CombineTo(N, Cond, SDValue());
8392 return Cond;
8393 }
Chris Lattnercee56e72009-03-13 05:53:31 +00008394
8395 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
8396 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +00008397 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
8398 SDValue Cond = N->getOperand(3);
8399 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8400 DAG.getConstant(CC, MVT::i8), Cond);
8401
8402 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +00008403 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
8404 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +00008405 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
8406 SDValue(FalseC, 0));
Chris Lattnercee56e72009-03-13 05:53:31 +00008407
Chris Lattner97a29a52009-03-13 05:22:11 +00008408 if (N->getNumValues() == 2) // Dead flag value?
8409 return DCI.CombineTo(N, Cond, SDValue());
8410 return Cond;
8411 }
Chris Lattnercee56e72009-03-13 05:53:31 +00008412
8413 // Optimize cases that will turn into an LEA instruction. This requires
8414 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
8415 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
8416 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
8417 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
8418
8419 bool isFastMultiplier = false;
8420 if (Diff < 10) {
8421 switch ((unsigned char)Diff) {
8422 default: break;
8423 case 1: // result = add base, cond
8424 case 2: // result = lea base( , cond*2)
8425 case 3: // result = lea base(cond, cond*2)
8426 case 4: // result = lea base( , cond*4)
8427 case 5: // result = lea base(cond, cond*4)
8428 case 8: // result = lea base( , cond*8)
8429 case 9: // result = lea base(cond, cond*8)
8430 isFastMultiplier = true;
8431 break;
8432 }
8433 }
8434
8435 if (isFastMultiplier) {
8436 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
8437 SDValue Cond = N->getOperand(3);
8438 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8439 DAG.getConstant(CC, MVT::i8), Cond);
8440 // Zero extend the condition if needed.
8441 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
8442 Cond);
8443 // Scale the condition by the difference.
8444 if (Diff != 1)
8445 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
8446 DAG.getConstant(Diff, Cond.getValueType()));
8447
8448 // Add the base if non-zero.
8449 if (FalseC->getAPIntValue() != 0)
8450 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
8451 SDValue(FalseC, 0));
8452 if (N->getNumValues() == 2) // Dead flag value?
8453 return DCI.CombineTo(N, Cond, SDValue());
8454 return Cond;
8455 }
8456 }
Chris Lattnerd1980a52009-03-12 06:52:53 +00008457 }
8458 }
8459 return SDValue();
8460}
8461
8462
Evan Cheng0b0cd912009-03-28 05:57:29 +00008463/// PerformMulCombine - Optimize a single multiply with constant into two
8464/// in order to implement it with two cheaper instructions, e.g.
8465/// LEA + SHL, LEA + LEA.
8466static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
8467 TargetLowering::DAGCombinerInfo &DCI) {
8468 if (DAG.getMachineFunction().
8469 getFunction()->hasFnAttr(Attribute::OptimizeForSize))
8470 return SDValue();
8471
8472 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
8473 return SDValue();
8474
8475 MVT VT = N->getValueType(0);
8476 if (VT != MVT::i64)
8477 return SDValue();
8478
8479 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
8480 if (!C)
8481 return SDValue();
8482 uint64_t MulAmt = C->getZExtValue();
8483 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
8484 return SDValue();
8485
8486 uint64_t MulAmt1 = 0;
8487 uint64_t MulAmt2 = 0;
8488 if ((MulAmt % 9) == 0) {
8489 MulAmt1 = 9;
8490 MulAmt2 = MulAmt / 9;
8491 } else if ((MulAmt % 5) == 0) {
8492 MulAmt1 = 5;
8493 MulAmt2 = MulAmt / 5;
8494 } else if ((MulAmt % 3) == 0) {
8495 MulAmt1 = 3;
8496 MulAmt2 = MulAmt / 3;
8497 }
8498 if (MulAmt2 &&
8499 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
8500 DebugLoc DL = N->getDebugLoc();
8501
8502 if (isPowerOf2_64(MulAmt2) &&
8503 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
8504 // If second multiplifer is pow2, issue it first. We want the multiply by
8505 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
8506 // is an add.
8507 std::swap(MulAmt1, MulAmt2);
8508
8509 SDValue NewMul;
8510 if (isPowerOf2_64(MulAmt1))
8511 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
8512 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
8513 else
Evan Cheng73f24c92009-03-30 21:36:47 +00008514 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +00008515 DAG.getConstant(MulAmt1, VT));
8516
8517 if (isPowerOf2_64(MulAmt2))
8518 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
8519 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
8520 else
Evan Cheng73f24c92009-03-30 21:36:47 +00008521 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +00008522 DAG.getConstant(MulAmt2, VT));
8523
8524 // Do not add new nodes to DAG combiner worklist.
8525 DCI.CombineTo(N, NewMul, false);
8526 }
8527 return SDValue();
8528}
8529
8530
Nate Begeman740ab032009-01-26 00:52:55 +00008531/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
8532/// when possible.
8533static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
8534 const X86Subtarget *Subtarget) {
8535 // On X86 with SSE2 support, we can transform this to a vector shift if
8536 // all elements are shifted by the same amount. We can't do this in legalize
8537 // because the a constant vector is typically transformed to a constant pool
8538 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008539 if (!Subtarget->hasSSE2())
8540 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008541
Nate Begeman740ab032009-01-26 00:52:55 +00008542 MVT VT = N->getValueType(0);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008543 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
8544 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008545
Mon P Wang3becd092009-01-28 08:12:05 +00008546 SDValue ShAmtOp = N->getOperand(1);
8547 MVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +00008548 DebugLoc DL = N->getDebugLoc();
Mon P Wang3becd092009-01-28 08:12:05 +00008549 SDValue BaseShAmt;
8550 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
8551 unsigned NumElts = VT.getVectorNumElements();
8552 unsigned i = 0;
8553 for (; i != NumElts; ++i) {
8554 SDValue Arg = ShAmtOp.getOperand(i);
8555 if (Arg.getOpcode() == ISD::UNDEF) continue;
8556 BaseShAmt = Arg;
8557 break;
8558 }
8559 for (; i != NumElts; ++i) {
8560 SDValue Arg = ShAmtOp.getOperand(i);
8561 if (Arg.getOpcode() == ISD::UNDEF) continue;
8562 if (Arg != BaseShAmt) {
8563 return SDValue();
8564 }
8565 }
8566 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
8567 isSplatMask(ShAmtOp.getOperand(2).getNode())) {
Chris Lattner47b4ce82009-03-11 05:48:52 +00008568 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
Mon P Wang3becd092009-01-28 08:12:05 +00008569 DAG.getIntPtrConstant(0));
8570 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008571 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +00008572
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008573 if (EltVT.bitsGT(MVT::i32))
Chris Lattner47b4ce82009-03-11 05:48:52 +00008574 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008575 else if (EltVT.bitsLT(MVT::i32))
Chris Lattner47b4ce82009-03-11 05:48:52 +00008576 BaseShAmt = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +00008577
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008578 // The shift amount is identical so we can do a vector shift.
8579 SDValue ValOp = N->getOperand(0);
8580 switch (N->getOpcode()) {
8581 default:
8582 assert(0 && "Unknown shift opcode!");
8583 break;
8584 case ISD::SHL:
8585 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008586 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008587 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8588 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008589 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008590 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008591 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8592 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008593 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008594 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008595 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8596 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008597 break;
8598 case ISD::SRA:
8599 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008600 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008601 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
8602 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008603 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008604 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008605 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
8606 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008607 break;
8608 case ISD::SRL:
8609 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008610 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008611 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8612 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008613 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008614 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008615 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
8616 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008617 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +00008618 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Nate Begeman740ab032009-01-26 00:52:55 +00008619 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
8620 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +00008621 break;
Nate Begeman740ab032009-01-26 00:52:55 +00008622 }
8623 return SDValue();
8624}
8625
Chris Lattner149a4e52008-02-22 02:09:43 +00008626/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008627static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +00008628 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +00008629 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
8630 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +00008631 // A preferable solution to the general problem is to figure out the right
8632 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +00008633
8634 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +00008635 StoreSDNode *St = cast<StoreSDNode>(N);
Evan Cheng536e6672009-03-12 05:59:15 +00008636 MVT VT = St->getValue().getValueType();
8637 if (VT.getSizeInBits() != 64)
8638 return SDValue();
8639
8640 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloat && Subtarget->hasSSE2();
8641 if ((VT.isVector() ||
8642 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +00008643 isa<LoadSDNode>(St->getValue()) &&
8644 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
8645 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00008646 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +00008647 LoadSDNode *Ld = 0;
8648 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +00008649 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +00008650 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +00008651 // Must be a store of a load. We currently handle two cases: the load
8652 // is a direct child, and it's under an intervening TokenFactor. It is
8653 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +00008654 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +00008655 Ld = cast<LoadSDNode>(St->getChain());
8656 else if (St->getValue().hasOneUse() &&
8657 ChainVal->getOpcode() == ISD::TokenFactor) {
8658 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +00008659 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +00008660 TokenFactorIndex = i;
8661 Ld = cast<LoadSDNode>(St->getValue());
8662 } else
8663 Ops.push_back(ChainVal->getOperand(i));
8664 }
8665 }
Dale Johannesen079f2a62008-02-25 19:20:14 +00008666
Evan Cheng536e6672009-03-12 05:59:15 +00008667 if (!Ld || !ISD::isNormalLoad(Ld))
8668 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +00008669
Evan Cheng536e6672009-03-12 05:59:15 +00008670 // If this is not the MMX case, i.e. we are just turning i64 load/store
8671 // into f64 load/store, avoid the transformation if there are multiple
8672 // uses of the loaded value.
8673 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
8674 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +00008675
Evan Cheng536e6672009-03-12 05:59:15 +00008676 DebugLoc LdDL = Ld->getDebugLoc();
8677 DebugLoc StDL = N->getDebugLoc();
8678 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
8679 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
8680 // pair instead.
8681 if (Subtarget->is64Bit() || F64IsLegal) {
8682 MVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
8683 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(),
8684 Ld->getBasePtr(), Ld->getSrcValue(),
8685 Ld->getSrcValueOffset(), Ld->isVolatile(),
8686 Ld->getAlignment());
8687 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +00008688 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +00008689 Ops.push_back(NewChain);
8690 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +00008691 Ops.size());
8692 }
Evan Cheng536e6672009-03-12 05:59:15 +00008693 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner149a4e52008-02-22 02:09:43 +00008694 St->getSrcValue(), St->getSrcValueOffset(),
8695 St->isVolatile(), St->getAlignment());
8696 }
Evan Cheng536e6672009-03-12 05:59:15 +00008697
8698 // Otherwise, lower to two pairs of 32-bit loads / stores.
8699 SDValue LoAddr = Ld->getBasePtr();
8700 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
8701 DAG.getConstant(4, MVT::i32));
8702
8703 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
8704 Ld->getSrcValue(), Ld->getSrcValueOffset(),
8705 Ld->isVolatile(), Ld->getAlignment());
8706 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
8707 Ld->getSrcValue(), Ld->getSrcValueOffset()+4,
8708 Ld->isVolatile(),
8709 MinAlign(Ld->getAlignment(), 4));
8710
8711 SDValue NewChain = LoLd.getValue(1);
8712 if (TokenFactorIndex != -1) {
8713 Ops.push_back(LoLd);
8714 Ops.push_back(HiLd);
8715 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
8716 Ops.size());
8717 }
8718
8719 LoAddr = St->getBasePtr();
8720 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
8721 DAG.getConstant(4, MVT::i32));
8722
8723 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
8724 St->getSrcValue(), St->getSrcValueOffset(),
8725 St->isVolatile(), St->getAlignment());
8726 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
8727 St->getSrcValue(),
8728 St->getSrcValueOffset() + 4,
8729 St->isVolatile(),
8730 MinAlign(St->getAlignment(), 4));
8731 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +00008732 }
Dan Gohman475871a2008-07-27 21:46:04 +00008733 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +00008734}
8735
Chris Lattner6cf73262008-01-25 06:14:17 +00008736/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
8737/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008738static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +00008739 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
8740 // F[X]OR(0.0, x) -> x
8741 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +00008742 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8743 if (C->getValueAPF().isPosZero())
8744 return N->getOperand(1);
8745 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8746 if (C->getValueAPF().isPosZero())
8747 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00008748 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +00008749}
8750
8751/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008752static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +00008753 // FAND(0.0, x) -> 0.0
8754 // FAND(x, 0.0) -> 0.0
8755 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8756 if (C->getValueAPF().isPosZero())
8757 return N->getOperand(0);
8758 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8759 if (C->getValueAPF().isPosZero())
8760 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +00008761 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +00008762}
8763
Dan Gohmane5af2d32009-01-29 01:59:02 +00008764static SDValue PerformBTCombine(SDNode *N,
8765 SelectionDAG &DAG,
8766 TargetLowering::DAGCombinerInfo &DCI) {
8767 // BT ignores high bits in the bit index operand.
8768 SDValue Op1 = N->getOperand(1);
8769 if (Op1.hasOneUse()) {
8770 unsigned BitWidth = Op1.getValueSizeInBits();
8771 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
8772 APInt KnownZero, KnownOne;
8773 TargetLowering::TargetLoweringOpt TLO(DAG);
8774 TargetLowering &TLI = DAG.getTargetLoweringInfo();
8775 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
8776 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
8777 DCI.CommitTargetLoweringOpt(TLO);
8778 }
8779 return SDValue();
8780}
Chris Lattner83e6c992006-10-04 06:57:07 +00008781
Dan Gohman475871a2008-07-27 21:46:04 +00008782SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +00008783 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +00008784 SelectionDAG &DAG = DCI.DAG;
8785 switch (N->getOpcode()) {
8786 default: break;
Evan Chengad4196b2008-05-12 19:56:52 +00008787 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
8788 case ISD::BUILD_VECTOR:
Dan Gohmane5af2d32009-01-29 01:59:02 +00008789 return PerformBuildVectorCombine(N, DAG, DCI, Subtarget, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +00008790 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +00008791 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +00008792 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +00008793 case ISD::SHL:
8794 case ISD::SRA:
8795 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +00008796 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +00008797 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +00008798 case X86ISD::FOR: return PerformFORCombine(N, DAG);
8799 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008800 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Evan Cheng206ee9d2006-07-07 08:33:52 +00008801 }
8802
Dan Gohman475871a2008-07-27 21:46:04 +00008803 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +00008804}
8805
Evan Cheng60c07e12006-07-05 22:17:51 +00008806//===----------------------------------------------------------------------===//
8807// X86 Inline Assembly Support
8808//===----------------------------------------------------------------------===//
8809
Chris Lattnerf4dff842006-07-11 02:54:03 +00008810/// getConstraintType - Given a constraint letter, return the type of
8811/// constraint it is for this target.
8812X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00008813X86TargetLowering::getConstraintType(const std::string &Constraint) const {
8814 if (Constraint.size() == 1) {
8815 switch (Constraint[0]) {
8816 case 'A':
Dale Johannesen330169f2008-11-13 21:52:36 +00008817 return C_Register;
Chris Lattnerfce84ac2008-03-11 19:06:29 +00008818 case 'f':
Chris Lattner4234f572007-03-25 02:14:49 +00008819 case 'r':
8820 case 'R':
8821 case 'l':
8822 case 'q':
8823 case 'Q':
8824 case 'x':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +00008825 case 'y':
Chris Lattner4234f572007-03-25 02:14:49 +00008826 case 'Y':
8827 return C_RegisterClass;
Dale Johannesen78e3e522009-02-12 20:58:09 +00008828 case 'e':
8829 case 'Z':
8830 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +00008831 default:
8832 break;
8833 }
Chris Lattnerf4dff842006-07-11 02:54:03 +00008834 }
Chris Lattner4234f572007-03-25 02:14:49 +00008835 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +00008836}
8837
Dale Johannesenba2a0b92008-01-29 02:21:21 +00008838/// LowerXConstraint - try to replace an X constraint, which matches anything,
8839/// with another that has more specific requirements based on the type of the
8840/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +00008841const char *X86TargetLowering::
Duncan Sands83ec4b62008-06-06 12:08:01 +00008842LowerXConstraint(MVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +00008843 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
8844 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +00008845 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesenba2a0b92008-01-29 02:21:21 +00008846 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +00008847 return "Y";
8848 if (Subtarget->hasSSE1())
8849 return "x";
8850 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008851
Chris Lattner5e764232008-04-26 23:02:14 +00008852 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +00008853}
8854
Chris Lattner48884cd2007-08-25 00:47:38 +00008855/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
8856/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +00008857void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +00008858 char Constraint,
Evan Chengda43bcf2008-09-24 00:05:32 +00008859 bool hasMemory,
Dan Gohman475871a2008-07-27 21:46:04 +00008860 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +00008861 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008862 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008863
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008864 switch (Constraint) {
8865 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +00008866 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +00008867 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008868 if (C->getZExtValue() <= 31) {
8869 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +00008870 break;
8871 }
Devang Patel84f7fd22007-03-17 00:13:28 +00008872 }
Chris Lattner48884cd2007-08-25 00:47:38 +00008873 return;
Evan Cheng364091e2008-09-22 23:57:37 +00008874 case 'J':
8875 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8876 if (C->getZExtValue() <= 63) {
8877 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8878 break;
8879 }
8880 }
8881 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +00008882 case 'N':
8883 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008884 if (C->getZExtValue() <= 255) {
8885 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +00008886 break;
8887 }
Chris Lattner188b9fe2007-03-25 01:57:35 +00008888 }
Chris Lattner48884cd2007-08-25 00:47:38 +00008889 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +00008890 case 'e': {
8891 // 32-bit signed value
8892 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8893 const ConstantInt *CI = C->getConstantIntValue();
8894 if (CI->isValueValidForType(Type::Int32Ty, C->getSExtValue())) {
8895 // Widen to 64 bits here to get it sign extended.
8896 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
8897 break;
8898 }
8899 // FIXME gcc accepts some relocatable values here too, but only in certain
8900 // memory models; it's complicated.
8901 }
8902 return;
8903 }
8904 case 'Z': {
8905 // 32-bit unsigned value
8906 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8907 const ConstantInt *CI = C->getConstantIntValue();
8908 if (CI->isValueValidForType(Type::Int32Ty, C->getZExtValue())) {
8909 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8910 break;
8911 }
8912 }
8913 // FIXME gcc accepts some relocatable values here too, but only in certain
8914 // memory models; it's complicated.
8915 return;
8916 }
Chris Lattnerdc43a882007-05-03 16:52:29 +00008917 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008918 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +00008919 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +00008920 // Widen to 64 bits here to get it sign extended.
8921 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +00008922 break;
8923 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008924
Chris Lattnerdc43a882007-05-03 16:52:29 +00008925 // If we are in non-pic codegen mode, we allow the address of a global (with
8926 // an optional displacement) to be used with 'i'.
8927 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
8928 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008929
Chris Lattnerdc43a882007-05-03 16:52:29 +00008930 // Match either (GA) or (GA+C)
8931 if (GA) {
8932 Offset = GA->getOffset();
8933 } else if (Op.getOpcode() == ISD::ADD) {
8934 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8935 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
8936 if (C && GA) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008937 Offset = GA->getOffset()+C->getZExtValue();
Chris Lattnerdc43a882007-05-03 16:52:29 +00008938 } else {
8939 C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8940 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
8941 if (C && GA)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008942 Offset = GA->getOffset()+C->getZExtValue();
Chris Lattnerdc43a882007-05-03 16:52:29 +00008943 else
8944 C = 0, GA = 0;
8945 }
8946 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008947
Chris Lattnerdc43a882007-05-03 16:52:29 +00008948 if (GA) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008949 if (hasMemory)
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008950 Op = LowerGlobalAddress(GA->getGlobal(), Op.getDebugLoc(),
Dale Johannesen33c960f2009-02-04 20:06:27 +00008951 Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00008952 else
8953 Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
8954 Offset);
Chris Lattner48884cd2007-08-25 00:47:38 +00008955 Result = Op;
8956 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008957 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008958
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008959 // Otherwise, not valid for this mode.
Chris Lattner48884cd2007-08-25 00:47:38 +00008960 return;
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008961 }
Chris Lattnerdc43a882007-05-03 16:52:29 +00008962 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008963
Gabor Greifba36cb52008-08-28 21:40:38 +00008964 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +00008965 Ops.push_back(Result);
8966 return;
8967 }
Evan Chengda43bcf2008-09-24 00:05:32 +00008968 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, hasMemory,
8969 Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +00008970}
8971
Chris Lattner259e97c2006-01-31 19:43:35 +00008972std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +00008973getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008974 MVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +00008975 if (Constraint.size() == 1) {
8976 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +00008977 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +00008978 default: break; // Unknown constraint letter
Chris Lattner259e97c2006-01-31 19:43:35 +00008979 case 'q': // Q_REGS (GENERAL_REGS in 64-bit mode)
8980 case 'Q': // Q_REGS
Chris Lattner80a7ecc2006-05-06 00:29:37 +00008981 if (VT == MVT::i32)
8982 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
8983 else if (VT == MVT::i16)
8984 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
8985 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +00008986 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Chris Lattner03e6c702007-11-04 06:51:12 +00008987 else if (VT == MVT::i64)
8988 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
8989 break;
Chris Lattner259e97c2006-01-31 19:43:35 +00008990 }
8991 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008992
Chris Lattner1efa40f2006-02-22 00:56:39 +00008993 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +00008994}
Chris Lattnerf76d1802006-07-31 23:26:50 +00008995
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008996std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +00008997X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008998 MVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +00008999 // First, see if this is a constraint that directly corresponds to an LLVM
9000 // register class.
9001 if (Constraint.size() == 1) {
9002 // GCC Constraint Letters
9003 switch (Constraint[0]) {
9004 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +00009005 case 'r': // GENERAL_REGS
9006 case 'R': // LEGACY_REGS
9007 case 'l': // INDEX_REGS
Chris Lattner1fa71982008-10-17 18:15:05 +00009008 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +00009009 return std::make_pair(0U, X86::GR8RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +00009010 if (VT == MVT::i16)
9011 return std::make_pair(0U, X86::GR16RegisterClass);
9012 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +00009013 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +00009014 return std::make_pair(0U, X86::GR64RegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +00009015 case 'f': // FP Stack registers.
9016 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
9017 // value to the correct fpstack register class.
9018 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
9019 return std::make_pair(0U, X86::RFP32RegisterClass);
9020 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
9021 return std::make_pair(0U, X86::RFP64RegisterClass);
9022 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +00009023 case 'y': // MMX_REGS if MMX allowed.
9024 if (!Subtarget->hasMMX()) break;
9025 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00009026 case 'Y': // SSE_REGS if SSE2 allowed
9027 if (!Subtarget->hasSSE2()) break;
9028 // FALL THROUGH.
9029 case 'x': // SSE_REGS if SSE1 allowed
9030 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009031
9032 switch (VT.getSimpleVT()) {
Chris Lattner0f65cad2007-04-09 05:49:22 +00009033 default: break;
9034 // Scalar SSE types.
9035 case MVT::f32:
9036 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +00009037 return std::make_pair(0U, X86::FR32RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00009038 case MVT::f64:
9039 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +00009040 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00009041 // Vector types.
Chris Lattner0f65cad2007-04-09 05:49:22 +00009042 case MVT::v16i8:
9043 case MVT::v8i16:
9044 case MVT::v4i32:
9045 case MVT::v2i64:
9046 case MVT::v4f32:
9047 case MVT::v2f64:
9048 return std::make_pair(0U, X86::VR128RegisterClass);
9049 }
Chris Lattnerad043e82007-04-09 05:11:28 +00009050 break;
9051 }
9052 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009053
Chris Lattnerf76d1802006-07-31 23:26:50 +00009054 // Use the default implementation in TargetLowering to convert the register
9055 // constraint into a member of a register class.
9056 std::pair<unsigned, const TargetRegisterClass*> Res;
9057 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +00009058
9059 // Not found as a standard register?
9060 if (Res.second == 0) {
9061 // GCC calls "st(0)" just plain "st".
9062 if (StringsEqualNoCase("{st}", Constraint)) {
9063 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +00009064 Res.second = X86::RFP80RegisterClass;
Chris Lattner1a60aa72006-10-31 19:42:44 +00009065 }
Dale Johannesen330169f2008-11-13 21:52:36 +00009066 // 'A' means EAX + EDX.
9067 if (Constraint == "A") {
9068 Res.first = X86::EAX;
9069 Res.second = X86::GRADRegisterClass;
9070 }
Chris Lattner1a60aa72006-10-31 19:42:44 +00009071 return Res;
9072 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00009073
Chris Lattnerf76d1802006-07-31 23:26:50 +00009074 // Otherwise, check to see if this is a register class of the wrong value
9075 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
9076 // turn into {ax},{dx}.
9077 if (Res.second->hasType(VT))
9078 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00009079
Chris Lattnerf76d1802006-07-31 23:26:50 +00009080 // All of the single-register GCC register classes map their values onto
9081 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
9082 // really want an 8-bit or 32-bit register, map to the appropriate register
9083 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +00009084 if (Res.second == X86::GR16RegisterClass) {
9085 if (VT == MVT::i8) {
9086 unsigned DestReg = 0;
9087 switch (Res.first) {
9088 default: break;
9089 case X86::AX: DestReg = X86::AL; break;
9090 case X86::DX: DestReg = X86::DL; break;
9091 case X86::CX: DestReg = X86::CL; break;
9092 case X86::BX: DestReg = X86::BL; break;
9093 }
9094 if (DestReg) {
9095 Res.first = DestReg;
9096 Res.second = Res.second = X86::GR8RegisterClass;
9097 }
9098 } else if (VT == MVT::i32) {
9099 unsigned DestReg = 0;
9100 switch (Res.first) {
9101 default: break;
9102 case X86::AX: DestReg = X86::EAX; break;
9103 case X86::DX: DestReg = X86::EDX; break;
9104 case X86::CX: DestReg = X86::ECX; break;
9105 case X86::BX: DestReg = X86::EBX; break;
9106 case X86::SI: DestReg = X86::ESI; break;
9107 case X86::DI: DestReg = X86::EDI; break;
9108 case X86::BP: DestReg = X86::EBP; break;
9109 case X86::SP: DestReg = X86::ESP; break;
9110 }
9111 if (DestReg) {
9112 Res.first = DestReg;
9113 Res.second = Res.second = X86::GR32RegisterClass;
9114 }
9115 } else if (VT == MVT::i64) {
9116 unsigned DestReg = 0;
9117 switch (Res.first) {
9118 default: break;
9119 case X86::AX: DestReg = X86::RAX; break;
9120 case X86::DX: DestReg = X86::RDX; break;
9121 case X86::CX: DestReg = X86::RCX; break;
9122 case X86::BX: DestReg = X86::RBX; break;
9123 case X86::SI: DestReg = X86::RSI; break;
9124 case X86::DI: DestReg = X86::RDI; break;
9125 case X86::BP: DestReg = X86::RBP; break;
9126 case X86::SP: DestReg = X86::RSP; break;
9127 }
9128 if (DestReg) {
9129 Res.first = DestReg;
9130 Res.second = Res.second = X86::GR64RegisterClass;
9131 }
Chris Lattnerf76d1802006-07-31 23:26:50 +00009132 }
Chris Lattner6ba50a92008-08-26 06:19:02 +00009133 } else if (Res.second == X86::FR32RegisterClass ||
9134 Res.second == X86::FR64RegisterClass ||
9135 Res.second == X86::VR128RegisterClass) {
9136 // Handle references to XMM physical registers that got mapped into the
9137 // wrong class. This can happen with constraints like {xmm0} where the
9138 // target independent register mapper will just pick the first match it can
9139 // find, ignoring the required type.
9140 if (VT == MVT::f32)
9141 Res.second = X86::FR32RegisterClass;
9142 else if (VT == MVT::f64)
9143 Res.second = X86::FR64RegisterClass;
9144 else if (X86::VR128RegisterClass->hasType(VT))
9145 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +00009146 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00009147
Chris Lattnerf76d1802006-07-31 23:26:50 +00009148 return Res;
9149}
Mon P Wang0c397192008-10-30 08:01:45 +00009150
9151//===----------------------------------------------------------------------===//
9152// X86 Widen vector type
9153//===----------------------------------------------------------------------===//
9154
9155/// getWidenVectorType: given a vector type, returns the type to widen
9156/// to (e.g., v7i8 to v8i8). If the vector type is legal, it returns itself.
9157/// If there is no vector type that we want to widen to, returns MVT::Other
Mon P Wangf007a8b2008-11-06 05:31:54 +00009158/// When and where to widen is target dependent based on the cost of
Mon P Wang0c397192008-10-30 08:01:45 +00009159/// scalarizing vs using the wider vector type.
9160
Dan Gohmanc13cf132009-01-15 17:34:08 +00009161MVT X86TargetLowering::getWidenVectorType(MVT VT) const {
Mon P Wang0c397192008-10-30 08:01:45 +00009162 assert(VT.isVector());
9163 if (isTypeLegal(VT))
9164 return VT;
Scott Michelfdc40a02009-02-17 22:15:04 +00009165
Mon P Wang0c397192008-10-30 08:01:45 +00009166 // TODO: In computeRegisterProperty, we can compute the list of legal vector
9167 // type based on element type. This would speed up our search (though
9168 // it may not be worth it since the size of the list is relatively
9169 // small).
9170 MVT EltVT = VT.getVectorElementType();
9171 unsigned NElts = VT.getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00009172
Mon P Wang0c397192008-10-30 08:01:45 +00009173 // On X86, it make sense to widen any vector wider than 1
9174 if (NElts <= 1)
9175 return MVT::Other;
Scott Michelfdc40a02009-02-17 22:15:04 +00009176
9177 for (unsigned nVT = MVT::FIRST_VECTOR_VALUETYPE;
Mon P Wang0c397192008-10-30 08:01:45 +00009178 nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
9179 MVT SVT = (MVT::SimpleValueType)nVT;
Scott Michelfdc40a02009-02-17 22:15:04 +00009180
9181 if (isTypeLegal(SVT) &&
9182 SVT.getVectorElementType() == EltVT &&
Mon P Wang0c397192008-10-30 08:01:45 +00009183 SVT.getVectorNumElements() > NElts)
9184 return SVT;
9185 }
9186 return MVT::Other;
9187}